From 4e60e4dea0283104fd6665a682fdb03119ca5631 Mon Sep 17 00:00:00 2001 From: Scott Reston Date: Thu, 9 Mar 2017 15:47:08 -0500 Subject: [PATCH] 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 --- source/_components/climate.honeywell.markdown | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/source/_components/climate.honeywell.markdown b/source/_components/climate.honeywell.markdown index 82d7a40f81c..1b7a7465360 100644 --- a/source/_components/climate.honeywell.markdown +++ b/source/_components/climate.honeywell.markdown @@ -21,11 +21,16 @@ climate: platform: honeywell username: YOUR_USERNAME password: YOUR_PASSWORD + scan_interval: 600 ``` +

+Scan interval is expressed in seconds. Omitting scan_interval may result in too-frequent polling and cause you to rate-limited by Honeywell. +

Configuration variables: - **username** (*Required*): The username of an user with access. - **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. -- **region** (*optional*): Region identifier (either 'eu' or 'us'). Defaults to 'eu' if not provided. +- **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. +- **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.