Skip to content
This repository has been archived by the owner on Jul 10, 2022. It is now read-only.

Commit

Permalink
Rollback mode for a heater
Browse files Browse the repository at this point in the history
  • Loading branch information
cyr-ius committed Jun 13, 2020
1 parent 184a276 commit c4c4b12
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions custom_components/cozytouch/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,13 +94,13 @@

HVAC_MODE_TO_HEATER = {
HVAC_MODE_AUTO: "internal",
HVAC_MODE_HEAT: "on",
HVAC_MODE_OFF: "off",
HVAC_MODE_HEAT: "basic",
HVAC_MODE_OFF: "standby",
}
HEATER_TO_HVAC_MODE = {
"internal": HVAC_MODE_AUTO,
"off": HVAC_MODE_OFF,
"on": HVAC_MODE_HEAT,
"standby": HVAC_MODE_OFF,
"basic": HVAC_MODE_HEAT,
}

SCHEMA_HEATER = {
Expand Down
2 changes: 1 addition & 1 deletion custom_components/cozytouch/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "Cozytouch",
"config_flow": true,
"documentation": "https://www.home-assistant.io/components/cozytouch",
"requirements": ["cozytouchpy==1.9.2"],
"requirements": ["cozytouchpy==1.9.3"],
"dependencies": [],
"codeowners": ["@biker91620", "@cyr-ius"]
}

0 comments on commit c4c4b12

Please sign in to comment.