Update to reflect latest update (#3676)

* Update to reflect latest update

https://github.com/home-assistant/home-assistant/pull/9968

* Adding new optional variable 'interval_seconds'
This commit is contained in:
Jan Almeroth 2017-10-31 10:42:35 +01:00 committed by Fabian Affolter
parent d573ebeb68
commit 45483ed434

View File

@ -26,9 +26,9 @@ media_player:
``` ```
Configuration variables: Configuration variables:
- **name** (*Optional*): Name of the device
- **host** (*Required*): IP address or hostname of the device - **host** (*Required*): IP address or hostname of the device
- **port** (*Optional*): UDP Port - **port** (*Optional*): UDP Port
- **interval_seconds** (*Optional*): Polling interval (default: 480 seconds = 8 minutes)
A few notes: A few notes:
@ -39,7 +39,6 @@ A full configuration example will look like the sample below:
# Example configuration.yaml entry # Example configuration.yaml entry
media_player: media_player:
- platform: yamaha_musiccast - platform: yamaha_musiccast
name: "Living Room"
host: 192.168.178.97 host: 192.168.178.97
port: 5005 port: 5005
``` ```