mirror of
https://github.com/pommi/python-itho-wpu.git
synced 2024-11-22 14:02:15 +01:00
feat(itho-wpu): setsetting support
With action "setsetting" settings of an Itho WPU can be modified.
This commit is contained in:
parent
1ffd5a72d7
commit
381dd4c6ec
11
README.md
11
README.md
@ -121,6 +121,17 @@ See the [pislave](https://github.com/ootjersb/pislave#wiring) project
|
|||||||
...
|
...
|
||||||
```
|
```
|
||||||
|
|
||||||
|
* Change a setting of the WPU
|
||||||
|
```
|
||||||
|
# ./itho-wpu.py --action setsetting --settingid 139 --value 48
|
||||||
|
Current setting:
|
||||||
|
139. Blokkade Tijd Van Verwarmen Naar Koelen (uur): 24 (min: 0, max: 168, step: 1)
|
||||||
|
Setting `139` will be changed to `48`? [y/N] y
|
||||||
|
Updating setting 139 to `48`
|
||||||
|
Are you really sure? (Type uppercase yes): YES
|
||||||
|
139. Blokkade Tijd Van Verwarmen Naar Koelen (uur): 48 (min: 0, max: 168, step: 1)
|
||||||
|
```
|
||||||
|
|
||||||
# Exporting measurements
|
# Exporting measurements
|
||||||
|
|
||||||
## InfluxDB
|
## InfluxDB
|
||||||
|
62
itho-wpu.py
62
itho-wpu.py
@ -24,6 +24,7 @@ actions = {
|
|||||||
"getdatatype": [0xA4, 0x00],
|
"getdatatype": [0xA4, 0x00],
|
||||||
"getdatalog": [0xA4, 0x01],
|
"getdatalog": [0xA4, 0x01],
|
||||||
"getsetting": [0xA4, 0x10],
|
"getsetting": [0xA4, 0x10],
|
||||||
|
"setsetting": [0xA4, 0x10],
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -43,6 +44,11 @@ def parse_args():
|
|||||||
type=int,
|
type=int,
|
||||||
help="Setting identifier",
|
help="Setting identifier",
|
||||||
)
|
)
|
||||||
|
parser.add_argument(
|
||||||
|
"--value",
|
||||||
|
nargs="?",
|
||||||
|
help="Setting value",
|
||||||
|
)
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
"--loglevel",
|
"--loglevel",
|
||||||
nargs="?",
|
nargs="?",
|
||||||
@ -82,7 +88,7 @@ class IthoWPU:
|
|||||||
self.datatype = self.get("getdatatype")
|
self.datatype = self.get("getdatatype")
|
||||||
self.heatpump_db = db.sqlite("heatpump.sqlite")
|
self.heatpump_db = db.sqlite("heatpump.sqlite")
|
||||||
|
|
||||||
def get(self, action, identifier=None):
|
def get(self, action, identifier=None, value=None):
|
||||||
if not self.no_cache:
|
if not self.no_cache:
|
||||||
response = self.cache.get(action.replace("get", ""))
|
response = self.cache.get(action.replace("get", ""))
|
||||||
if response is not None:
|
if response is not None:
|
||||||
@ -100,7 +106,7 @@ class IthoWPU:
|
|||||||
if not self.slave_only:
|
if not self.slave_only:
|
||||||
master = I2CMaster(address=0x41, bus=1, queue=self._q)
|
master = I2CMaster(address=0x41, bus=1, queue=self._q)
|
||||||
if action:
|
if action:
|
||||||
response = master.execute_action(action, identifier)
|
response = master.execute_action(action, identifier, value)
|
||||||
logger.debug(f"Response: {response}")
|
logger.debug(f"Response: {response}")
|
||||||
master.close()
|
master.close()
|
||||||
|
|
||||||
@ -361,6 +367,52 @@ def process_settings(wpu, args):
|
|||||||
process_response("getsetting", response, args, wpu)
|
process_response("getsetting", response, args, wpu)
|
||||||
|
|
||||||
|
|
||||||
|
def process_setsetting(wpu, args):
|
||||||
|
logger.info("Current setting:")
|
||||||
|
response = wpu.get("getsetting", int(args.settingid))
|
||||||
|
if response is None:
|
||||||
|
return
|
||||||
|
process_response("getsetting", response, args, wpu)
|
||||||
|
message = response[5:]
|
||||||
|
datatype = message[16]
|
||||||
|
|
||||||
|
if args.value is None:
|
||||||
|
value = input("Provide a new value: ")
|
||||||
|
else:
|
||||||
|
value = args.value
|
||||||
|
|
||||||
|
# TODO: add support for negative values
|
||||||
|
if float(value) < 0:
|
||||||
|
logger.error("Negative values are not supported yet.")
|
||||||
|
return
|
||||||
|
|
||||||
|
logger.debug(f"New setting datatype: {datatype}")
|
||||||
|
logger.debug(f"New setting (input): {value}")
|
||||||
|
normalized_value = int(value.replace(".", ""))
|
||||||
|
logger.debug(f"New setting (normalized): {normalized_value}")
|
||||||
|
hex_list_value = [hex(v) for v in list(normalized_value.to_bytes(4, byteorder="big"))]
|
||||||
|
logger.debug(f"New setting (hex): {hex_list_value}")
|
||||||
|
parsed_value = format_datatype(args.settingid, hex_list_value, datatype)
|
||||||
|
logger.debug(f"New setting (parsed): {parsed_value}")
|
||||||
|
|
||||||
|
_, minimum, maximum, _ = parse_setting(response, wpu)
|
||||||
|
if parsed_value < minimum or parsed_value > maximum:
|
||||||
|
logger.error(f"New value `{parsed_value}` is not between `{minimum}` and `{maximum}`")
|
||||||
|
return
|
||||||
|
|
||||||
|
sure = input(f"Setting `{args.settingid}` will be changed to `{parsed_value}`? [y/N] ")
|
||||||
|
if sure in ["y", "Y"]:
|
||||||
|
logger.info(f"Updating setting {args.settingid} to `{parsed_value}`")
|
||||||
|
else:
|
||||||
|
logger.error("Aborted")
|
||||||
|
return
|
||||||
|
|
||||||
|
response = wpu.get("setsetting", args.settingid, normalized_value)
|
||||||
|
if response is None:
|
||||||
|
return
|
||||||
|
process_response("getsetting", response, args, wpu)
|
||||||
|
|
||||||
|
|
||||||
def format_datatype(name, m, dt):
|
def format_datatype(name, m, dt):
|
||||||
"""
|
"""
|
||||||
Transform a list of bytes to a readable number based on the datatype.
|
Transform a list of bytes to a readable number based on the datatype.
|
||||||
@ -441,7 +493,7 @@ def main():
|
|||||||
logging.Formatter("%(asctime)-15s %(levelname)s: %(message)s")
|
logging.Formatter("%(asctime)-15s %(levelname)s: %(message)s")
|
||||||
)
|
)
|
||||||
|
|
||||||
if args.action == "getsetting" and args.settingid is None:
|
if args.action in ["getsetting", "setsetting"] and args.settingid is None:
|
||||||
logger.error("`--settingid` is required with `--action getsetting`")
|
logger.error("`--settingid` is required with `--action getsetting`")
|
||||||
return
|
return
|
||||||
|
|
||||||
@ -451,6 +503,10 @@ def main():
|
|||||||
process_settings(wpu, args)
|
process_settings(wpu, args)
|
||||||
return
|
return
|
||||||
|
|
||||||
|
if args.action == "setsetting":
|
||||||
|
process_setsetting(wpu, args)
|
||||||
|
return
|
||||||
|
|
||||||
response = wpu.get(args.action, args.settingid)
|
response = wpu.get(args.action, args.settingid)
|
||||||
if response is not None:
|
if response is not None:
|
||||||
process_response(args.action, response, args, wpu)
|
process_response(args.action, response, args, wpu)
|
||||||
|
24
itho_i2c.py
24
itho_i2c.py
@ -18,6 +18,7 @@ actions = {
|
|||||||
"getdatatype": [0xA4, 0x00],
|
"getdatatype": [0xA4, 0x00],
|
||||||
"getdatalog": [0xA4, 0x01],
|
"getdatalog": [0xA4, 0x01],
|
||||||
"getsetting": [0xA4, 0x10],
|
"getsetting": [0xA4, 0x10],
|
||||||
|
"setsetting": [0xA4, 0x10],
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -51,7 +52,7 @@ class I2CMaster:
|
|||||||
self.i = I2CRaw(address=address, bus=bus)
|
self.i = I2CRaw(address=address, bus=bus)
|
||||||
self.queue = queue
|
self.queue = queue
|
||||||
|
|
||||||
def compose_request(self, action, identifier):
|
def compose_request(self, action, identifier, value):
|
||||||
if action == "getsetting":
|
if action == "getsetting":
|
||||||
request = (
|
request = (
|
||||||
[0x80]
|
[0x80]
|
||||||
@ -63,6 +64,18 @@ class I2CMaster:
|
|||||||
+ [0x00, 0x00, 0x00, 0x00] # step
|
+ [0x00, 0x00, 0x00, 0x00] # step
|
||||||
+ [0x00, identifier, 0x00]
|
+ [0x00, identifier, 0x00]
|
||||||
)
|
)
|
||||||
|
elif action == "setsetting":
|
||||||
|
byte_list_value = list(value.to_bytes(4, byteorder="big"))
|
||||||
|
request = (
|
||||||
|
[0x80]
|
||||||
|
+ actions[action]
|
||||||
|
+ [0x06, 0x13] # write, length
|
||||||
|
+ byte_list_value # new
|
||||||
|
+ [0x00, 0x00, 0x00, 0x00] # min
|
||||||
|
+ [0x00, 0x00, 0x00, 0x00] # max
|
||||||
|
+ [0x00, 0x00, 0x00, 0x00] # step
|
||||||
|
+ [0x00, identifier, 0x00]
|
||||||
|
)
|
||||||
else:
|
else:
|
||||||
# 0x80 = source, 0x04 = msg_type, 0x00 = length
|
# 0x80 = source, 0x04 = msg_type, 0x00 = length
|
||||||
request = [0x80] + actions[action] + [0x04, 0x00]
|
request = [0x80] + actions[action] + [0x04, 0x00]
|
||||||
@ -78,11 +91,16 @@ class I2CMaster:
|
|||||||
checksum = 0
|
checksum = 0
|
||||||
return checksum
|
return checksum
|
||||||
|
|
||||||
def execute_action(self, action, identifier):
|
def execute_action(self, action, identifier, value):
|
||||||
request = self.compose_request(action, identifier)
|
request = self.compose_request(action, identifier, value)
|
||||||
request_in_hex = [hex(c) for c in request]
|
request_in_hex = [hex(c) for c in request]
|
||||||
logger.debug(f"Request: {request_in_hex}")
|
logger.debug(f"Request: {request_in_hex}")
|
||||||
result = None
|
result = None
|
||||||
|
if action == "setsetting":
|
||||||
|
sure = input("Are you really sure? (Type uppercase yes): ")
|
||||||
|
if sure != "YES":
|
||||||
|
logger.error("Aborted")
|
||||||
|
return
|
||||||
for i in range(0, 20):
|
for i in range(0, 20):
|
||||||
logger.debug(f"Executing action: {action}")
|
logger.debug(f"Executing action: {action}")
|
||||||
self.i.write_i2c_block_data(request)
|
self.i.write_i2c_block_data(request)
|
||||||
|
Loading…
Reference in New Issue
Block a user