1
0
mirror of https://github.com/pommi/python-itho-wpu.git synced 2025-06-30 23:45:43 +02:00

feat(itho-wpu): setsetting support

With action "setsetting" settings of an Itho WPU can be modified.
This commit is contained in:
2023-07-18 17:23:26 +02:00
parent 1ffd5a72d7
commit 381dd4c6ec
3 changed files with 91 additions and 6 deletions

View File

@ -18,6 +18,7 @@ actions = {
"getdatatype": [0xA4, 0x00],
"getdatalog": [0xA4, 0x01],
"getsetting": [0xA4, 0x10],
"setsetting": [0xA4, 0x10],
}
@ -51,7 +52,7 @@ class I2CMaster:
self.i = I2CRaw(address=address, bus=bus)
self.queue = queue
def compose_request(self, action, identifier):
def compose_request(self, action, identifier, value):
if action == "getsetting":
request = (
[0x80]
@ -63,6 +64,18 @@ class I2CMaster:
+ [0x00, 0x00, 0x00, 0x00] # step
+ [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:
# 0x80 = source, 0x04 = msg_type, 0x00 = length
request = [0x80] + actions[action] + [0x04, 0x00]
@ -78,11 +91,16 @@ class I2CMaster:
checksum = 0
return checksum
def execute_action(self, action, identifier):
request = self.compose_request(action, identifier)
def execute_action(self, action, identifier, value):
request = self.compose_request(action, identifier, value)
request_in_hex = [hex(c) for c in request]
logger.debug(f"Request: {request_in_hex}")
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):
logger.debug(f"Executing action: {action}")
self.i.write_i2c_block_data(request)