Skip to content

Commit

Permalink
Support current mode = dehumidify|fanonly (#9)
Browse files Browse the repository at this point in the history
* Support current mode = dehumidify
* Support current mode = fanonly
* v1.1.3
  • Loading branch information
grivkees authored May 24, 2021
1 parent 77ef287 commit 004145b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"displayName": "Homebridge Carrier Infinity",
"name": "homebridge-carrier-infinity",
"version": "1.1.2",
"version": "1.1.3",
"description": "Standalone homebridge plugin for Carrier Infinity / Bryant Evolution / ICP Brands Ion thermostats.",
"license": "MIT",
"repository": {
Expand Down
4 changes: 4 additions & 0 deletions src/infinityApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -285,6 +285,10 @@ export class InfinityEvolutionSystemStatus extends BaseInfinityEvolutionSystemAp
case 'gasheat':
case 'electric':
return SYSTEM_MODE.HEAT;
case 'dehumidify':
return SYSTEM_MODE.COOL;
case 'fanonly':
return SYSTEM_MODE.OFF;
default:
return raw_mode;
}
Expand Down

0 comments on commit 004145b

Please sign in to comment.