Fixes for media_player.FireTV config language (#6720)

* Fixes for media_player.FireTV config language

* Resolve comments

* More fixes

* Remove title line...
This commit is contained in:
Travis Carr 2018-10-14 00:33:38 -07:00 committed by Franck Nijhof
parent 3551e14e61
commit d39f744a12

View File

@ -56,13 +56,28 @@ media_player:
- platform: firetv
```
Configuration variables:
- **host** (*Optional*): The host where `firetv-server` is running. Default is localhost.
- **port** (*Optional*): The port where `firetv-server` is running. Default is 5556.
- **device** (*Optional*): The device ID. Defaults to `default`.
- **name** (*Optional*): The friendly name of the device, default is 'Amazon Fire TV'.
{% configuration %}
host:
description: "The host where `firetv-server` is running."
required: false
type: string
default: localhost
port:
description: "The port where `firetv-server` is running."
required: false
type: integer
default: 5556
device:
description: The device ID.
required: false
type: string
default: default
name:
description: The friendly name of the device.
required: false
type: string
default: Amazon Fire TV
{% endconfiguration %}
<p class='note warning'>
Note that python-firetv has support for multiple Amazon Fire TV devices. If you have more than one configured, be sure to specify the device ID in `device`. Run `firetv-server -h` and/or view the source for complete capabilities.