Skip to content

Commit

Permalink
Support ion and keypadlock control. (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
LW-Ho authored Jul 22, 2024
1 parent 3dc8951 commit 341c888
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions JciHitachi/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -1822,11 +1822,14 @@ def __init__(self, status, default=0):
"is_numeric": True,
"legacy_name": "power_kwh",
},
"Ion": { # currently not supported
"controllable": False,
"Ion": {
"controllable": True,
"is_numeric": False,
"legacy_name": None,
"id2str": {},
"id2str": {
0: "disabled",
1: "enabled",
},
},
"HumiditySetting": {
"controllable": True,
Expand All @@ -1846,7 +1849,10 @@ def __init__(self, status, default=0):
"controllable": True,
"is_numeric": False,
"legacy_name": None,
"id2str": {},
"id2str": {
0: "disabled",
1: "enabled",
},
},
"DisplayBrightness": {
"controllable": True,
Expand Down

0 comments on commit 341c888

Please sign in to comment.