mirror of
https://github.com/pommi/python-itho-wpu.git
synced 2024-12-21 18:43:27 +01:00
WIP: getsetting support
This commit is contained in:
parent
da3b873174
commit
c9d82f67a0
73
itho-wpu.py
73
itho-wpu.py
@ -23,6 +23,7 @@ actions = {
|
|||||||
"getserial": [0x90, 0xE1],
|
"getserial": [0x90, 0xE1],
|
||||||
"getdatatype": [0xA4, 0x00],
|
"getdatatype": [0xA4, 0x00],
|
||||||
"getdatalog": [0xA4, 0x01],
|
"getdatalog": [0xA4, 0x01],
|
||||||
|
"getsetting": [0xA4, 0x10],
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -36,6 +37,12 @@ def parse_args():
|
|||||||
choices=actions.keys(),
|
choices=actions.keys(),
|
||||||
help="Execute an action",
|
help="Execute an action",
|
||||||
)
|
)
|
||||||
|
parser.add_argument(
|
||||||
|
"--settingid",
|
||||||
|
nargs="?",
|
||||||
|
type=int,
|
||||||
|
help="Setting identifier",
|
||||||
|
)
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
"--loglevel",
|
"--loglevel",
|
||||||
nargs="?",
|
nargs="?",
|
||||||
@ -75,7 +82,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):
|
def get(self, action, identifier=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:
|
||||||
@ -93,7 +100,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)
|
response = master.execute_action(action, identifier)
|
||||||
logger.debug(f"Response: {response}")
|
logger.debug(f"Response: {response}")
|
||||||
master.close()
|
master.close()
|
||||||
|
|
||||||
@ -150,6 +157,20 @@ class IthoWPU:
|
|||||||
return datalog
|
return datalog
|
||||||
return datalog
|
return datalog
|
||||||
|
|
||||||
|
def get_setting_by_id(self, settingid):
|
||||||
|
listversion = self.get_listversion_from_nodeid()
|
||||||
|
parameterlist_version = self.heatpump_db.execute(
|
||||||
|
f"SELECT parameterlist FROM versiebeheer WHERE version = {listversion}"
|
||||||
|
)[0]["parameterlist"]
|
||||||
|
if parameterlist_version is None or not type(parameterlist_version) == int:
|
||||||
|
logger.error(f"Parameterlist not found in database for version {listversion}")
|
||||||
|
return None
|
||||||
|
setting_details = self.heatpump_db.execute(
|
||||||
|
"SELECT name, min, max, def, title, description, unit "
|
||||||
|
+ f"FROM parameterlijst_v{parameterlist_version} WHERE id = {settingid}"
|
||||||
|
)[0]
|
||||||
|
return setting_details
|
||||||
|
|
||||||
|
|
||||||
class IthoWPUCache:
|
class IthoWPUCache:
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
@ -219,6 +240,8 @@ def process_response(action, response, args, wpu):
|
|||||||
from itho_export import export_to_influxdb
|
from itho_export import export_to_influxdb
|
||||||
|
|
||||||
export_to_influxdb(action, measurements)
|
export_to_influxdb(action, measurements)
|
||||||
|
elif action == "getsetting":
|
||||||
|
process_setting(response)
|
||||||
elif action == "getnodeid":
|
elif action == "getnodeid":
|
||||||
process_nodeid(response)
|
process_nodeid(response)
|
||||||
elif action == "getserial":
|
elif action == "getserial":
|
||||||
@ -272,6 +295,29 @@ def process_datalog(response, wpu):
|
|||||||
return measurements
|
return measurements
|
||||||
|
|
||||||
|
|
||||||
|
def process_setting(response):
|
||||||
|
message = response[5:]
|
||||||
|
|
||||||
|
settingid = int(message[17], 0)
|
||||||
|
setting = wpu.get_setting_by_id(settingid)
|
||||||
|
|
||||||
|
datatype = message[16]
|
||||||
|
value = format_datatype(setting["name"], message[0:4], datatype)
|
||||||
|
minimum = format_datatype(setting["name"], message[4:8], datatype)
|
||||||
|
maximum = format_datatype(setting["name"], message[8:12], datatype)
|
||||||
|
step = format_datatype(setting["name"], message[12:16], datatype)
|
||||||
|
logger.info(
|
||||||
|
"{}{}: {} (min: {}, max: {}, step: {})".format(
|
||||||
|
setting["title"],
|
||||||
|
f' ({setting["unit"]})' if setting["unit"] is not None else "",
|
||||||
|
value,
|
||||||
|
minimum,
|
||||||
|
maximum,
|
||||||
|
step,
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
def format_datatype(name, m, dt):
|
def format_datatype(name, m, dt):
|
||||||
num = None
|
num = None
|
||||||
if type(dt) is str:
|
if type(dt) is str:
|
||||||
@ -279,10 +325,31 @@ def format_datatype(name, m, dt):
|
|||||||
|
|
||||||
if dt == 0x0 or dt == 0xC:
|
if dt == 0x0 or dt == 0xC:
|
||||||
num = int(m[-1], 0)
|
num = int(m[-1], 0)
|
||||||
|
elif dt == 0x1:
|
||||||
|
num = round(int(m[-1], 0) / 10, 1)
|
||||||
elif dt == 0x10:
|
elif dt == 0x10:
|
||||||
num = (int(m[-2], 0) << 8) + int(m[-1], 0)
|
num = (int(m[-2], 0) << 8) + int(m[-1], 0)
|
||||||
elif dt == 0x12:
|
elif dt == 0x12:
|
||||||
num = round((int(m[-2], 0) << 8) + int(m[-1], 0) / 100, 2)
|
num = round((int(m[-2], 0) << 8) + int(m[-1], 0) / 100, 2)
|
||||||
|
elif dt == 0x80:
|
||||||
|
num = int(m[-1], 0)
|
||||||
|
if num >= 128:
|
||||||
|
num -= 256
|
||||||
|
elif dt == 0x81:
|
||||||
|
num = int(m[-1], 0)
|
||||||
|
if num >= 128:
|
||||||
|
num -= 256
|
||||||
|
num = round(num / 10, 1)
|
||||||
|
elif dt == 0x82:
|
||||||
|
num = int(m[-1], 0)
|
||||||
|
if num >= 128:
|
||||||
|
num -= 256
|
||||||
|
num = round(num / 100, 2)
|
||||||
|
elif dt == 0x8F:
|
||||||
|
num = int(m[-1], 0)
|
||||||
|
if num >= 128:
|
||||||
|
num -= 256
|
||||||
|
num = round(num / 1000, 3)
|
||||||
elif dt == 0x90:
|
elif dt == 0x90:
|
||||||
num = (int(m[-2], 0) << 8) + int(m[-1], 0)
|
num = (int(m[-2], 0) << 8) + int(m[-1], 0)
|
||||||
if num >= 32768:
|
if num >= 32768:
|
||||||
@ -311,6 +378,6 @@ if __name__ == "__main__":
|
|||||||
)
|
)
|
||||||
|
|
||||||
wpu = IthoWPU(args.master_only, args.slave_only, args.slave_timeout, args.no_cache)
|
wpu = IthoWPU(args.master_only, args.slave_only, args.slave_timeout, args.no_cache)
|
||||||
response = wpu.get(args.action)
|
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)
|
||||||
|
40
itho_i2c.py
40
itho_i2c.py
@ -12,6 +12,7 @@ actions = {
|
|||||||
"getserial": [0x90, 0xE1],
|
"getserial": [0x90, 0xE1],
|
||||||
"getdatatype": [0xA4, 0x00],
|
"getdatatype": [0xA4, 0x00],
|
||||||
"getdatalog": [0xA4, 0x01],
|
"getdatalog": [0xA4, 0x01],
|
||||||
|
"getsetting": [0xA4, 0x10],
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -45,9 +46,38 @@ 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):
|
def compose_request(self, action, identifier):
|
||||||
# 0x80 = source, 0x04 = msg_type, 0x00 = length
|
if action == "getsetting":
|
||||||
request = [0x80] + actions[action] + [0x04, 0x00]
|
request = (
|
||||||
|
[0x80]
|
||||||
|
+ actions[action]
|
||||||
|
+ [
|
||||||
|
0x04,
|
||||||
|
0x13,
|
||||||
|
0x00,
|
||||||
|
0x00,
|
||||||
|
0x00,
|
||||||
|
0x00,
|
||||||
|
0x00,
|
||||||
|
0x00,
|
||||||
|
0x00,
|
||||||
|
0x00,
|
||||||
|
0x00,
|
||||||
|
0x00,
|
||||||
|
0x00,
|
||||||
|
0x00,
|
||||||
|
0x00,
|
||||||
|
0x00,
|
||||||
|
0x00,
|
||||||
|
0x00,
|
||||||
|
0x00,
|
||||||
|
identifier,
|
||||||
|
0x00,
|
||||||
|
]
|
||||||
|
)
|
||||||
|
else:
|
||||||
|
# 0x80 = source, 0x04 = msg_type, 0x00 = length
|
||||||
|
request = [0x80] + actions[action] + [0x04, 0x00]
|
||||||
request.append(self.calculate_checksum(request))
|
request.append(self.calculate_checksum(request))
|
||||||
return request
|
return request
|
||||||
|
|
||||||
@ -60,8 +90,8 @@ class I2CMaster:
|
|||||||
checksum = 0
|
checksum = 0
|
||||||
return checksum
|
return checksum
|
||||||
|
|
||||||
def execute_action(self, action):
|
def execute_action(self, action, identifier):
|
||||||
request = self.compose_request(action)
|
request = self.compose_request(action, identifier)
|
||||||
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
|
||||||
|
Loading…
Reference in New Issue
Block a user