-
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move v2.4.0-alpha.5 from development branch to master (#112)
Fixes issues: - #63 - undefined fanSpeed - #66 - &s in passwords - #89 - vertical swing state New features: - AirQuality (VOC) + disable - CO2 + disable - Disable Humidity - Swing changes, including disable VerticalSwing - ModesToExclude Other changes: - README.md copy and style changes - package.json version bumps - Linting and code style changes, logging changes - API error handling, token re-use - New logic for max and mins to reduce warnings thrown to HB logs - Started extracting common functionality out to Utils
- Loading branch information
1 parent
6e0747c
commit 1425c12
Showing
24 changed files
with
2,666 additions
and
2,937 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
sign-git-tag=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,40 @@ | ||
{ | ||
"bridge": { | ||
"name": "Homebridge", | ||
"username": "CD:22:3D:E3:CE:30", | ||
"port": 51826, | ||
"pin": "031-45-154" | ||
}, | ||
"bridge": { | ||
"name": "Homebridge", | ||
"username": "AA:22:00:FF:55:EE", | ||
"port": 51826, | ||
"pin": "012-45-789" | ||
}, | ||
|
||
"description": "This is an example configuration for the sensibo-ac homebridge plugin", | ||
"platforms": [ | ||
{ | ||
"platform": "SensiboAC", | ||
"username": "******@*******.**", | ||
"password": "*******", | ||
"disableFan": false, | ||
"disableDry": false, | ||
"enableSyncButton": true, | ||
"syncButtonInAccessory": false, | ||
"enableOccupancySensor": true, | ||
"enableClimateReactSwitch": true, | ||
"enableHistoryStorage": true, | ||
"disableHorizontalSwing": false, | ||
"disableLightSwitch": false, | ||
"externalHumiditySensor": false, | ||
"devicesToExclude": [], | ||
"locationsToInclude": [], | ||
"debug": false | ||
} | ||
], | ||
"description": "This is an example configuration for the sensibo-ac homebridge plugin", | ||
"platforms": [ | ||
{ | ||
"platform": "SensiboAC", | ||
"apiKey": "***************", | ||
"allowRepeatedCommands": false, | ||
"carbonDioxideAlertThreshold": 1500, | ||
"disableAirQuality": false, | ||
"disableCarbonDioxide": false, | ||
"disableDry": false, | ||
"disableFan": false, | ||
"disableHorizontalSwing": false, | ||
"disableHumidity": false, | ||
"disableLightSwitch": false, | ||
"disableVerticalSwing": false, | ||
"enableClimateReactSwitch": false, | ||
"enableHistoryStorage": false, | ||
"enableOccupancySensor": false, | ||
"enableSyncButton": false, | ||
"syncButtonInAccessory": false, | ||
"externalHumiditySensor": false, | ||
"devicesToExclude": [], | ||
"ignoreHomeKitDevices": false, | ||
"locationsToInclude": [], | ||
"modesToExclude": [], | ||
"debug": false | ||
} | ||
], | ||
|
||
"accessories": [ | ||
] | ||
} | ||
"accessories": [ | ||
] | ||
} |
Oops, something went wrong.