added scan_interval (#2220)

* added scan_interval

Default scan_interval for climate platform causes you to be rate-limited by Honeywell API.

* Update climate.honeywell.markdown
This commit is contained in:
Scott Reston 2017-03-09 15:47:08 -05:00 committed by Fredrik Lindqvist
parent a8d4d74c8c
commit 4e60e4dea0

View File

@ -21,11 +21,16 @@ climate:
platform: honeywell platform: honeywell
username: YOUR_USERNAME username: YOUR_USERNAME
password: YOUR_PASSWORD password: YOUR_PASSWORD
scan_interval: 600
``` ```
<p class='note'>
Scan interval is expressed in seconds. Omitting scan_interval may result in too-frequent polling and cause you to rate-limited by Honeywell.
</p>
Configuration variables: Configuration variables:
- **username** (*Required*): The username of an user with access. - **username** (*Required*): The username of an user with access.
- **password** (*Required*): The password for your given admin account. - **password** (*Required*): The password for your given admin account.
- **away_temperature** (*optional*): Heating setpoint when away mode is on. If omitted it defaults to 16.0 deg C. - **away_temperature** (*Optional*): Heating setpoint when away mode is on. If omitted it defaults to 16.0 deg C.
- **region** (*optional*): Region identifier (either 'eu' or 'us'). Defaults to 'eu' if not provided. - **region** (*Optional*): Region identifier (either 'eu' or 'us'). Defaults to 'eu' if not provided.
- **scan_interval**(*Optional*): Scan interval is expressed in seconds. Recommended value of 600 seconds. Default value is 120 seconds. Omitting scan_interval may result in too-frequent polling and cause you to rate-limited by Honeywell.