homebridge-tcc
Advanced tools
Comparing version 0.2.19 to 0.2.20
@@ -31,7 +31,7 @@ { | ||
"title": "Refresh Token", | ||
"default": 300, | ||
"default": 600, | ||
"type": "integer", | ||
"minimum": 30, | ||
"maximum": 3600, | ||
"description": "Data polling interval in seconds, defaults to 5 minutes." | ||
"description": "Data polling interval in seconds, defaults to 10 minutes. Setting lower than 10 minutes may trigger request rate limiter on Honeywell site." | ||
}, | ||
@@ -38,0 +38,0 @@ "storage": { |
@@ -31,3 +31,3 @@ /*jslint node: true */ | ||
this.password = config['password']; | ||
this.refresh = config['refresh'] || 300; // Update every minute | ||
this.refresh = config['refresh'] || 600; // Lower than 10 minutes triggers request rate limiter on Honeywell site. | ||
this.usePermanentHolds = config['usePermanentHolds'] || false; | ||
@@ -34,0 +34,0 @@ this.log = log; |
{ | ||
"name": "homebridge-tcc", | ||
"version": "0.2.19", | ||
"version": "0.2.20", | ||
"description": "Honeywell Total Connect Comfort support for Homebridge: https://github.com/nfarina/homebridge", | ||
@@ -5,0 +5,0 @@ "license": "ISC", |
@@ -56,6 +56,6 @@ # homebridge-tcc | ||
* `refresh` - Data polling interval in seconds, defaults to 60 seconds | ||
* `refresh` - Data polling interval in seconds, defaults to 10 minutes. Setting lower than 10 minutes may trigger request rate limiter on Honeywell backend. | ||
* `storage` - Storage of chart graphing data for history graphing, either fs or googleDrive, defaults to fs | ||
* `usePermanentHolds` - If set to `true`, temperature changes will be set as permanent holds, rather than temporary holds. This will allow you to use HomeKit automations to completely replace your thermostat's schedule. If set to `false`, the temperature changes will expire after a certain period of time and resume your normal schedule. By default, this is off. | ||
* `sensors` - Enables temperature/humidity HomeKit sensors (useful for automations), options include: | ||
* `sensors` - Enables temperature/humidity HomeKit sensors (useful for automations), options include: | ||
* `none` - No sensors will be shown (this is default setting) | ||
@@ -62,0 +62,0 @@ * `all` - Enables all available temperature/humidity sensors |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
57938