From e1ab56a0794da459662d6a62b70220b150da1a69 Mon Sep 17 00:00:00 2001 From: Tom Bombadil Date: Sat, 28 Dec 2024 16:17:09 +0100 Subject: [PATCH] Update const.py update register names --- custom_components/helios_vallox_ventilation/const.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/custom_components/helios_vallox_ventilation/const.py b/custom_components/helios_vallox_ventilation/const.py index b427660..5897aa8 100644 --- a/custom_components/helios_vallox_ventilation/const.py +++ b/custom_components/helios_vallox_ventilation/const.py @@ -66,13 +66,13 @@ # Maximum settable fanspeed "max_fanspeed" : {"varid" : 0xA5, 'type': 'fanspeed', 'bitposition': -1, 'read': True, 'write': True }, # NTC5K sensors: outside air temperature - "outside_temp" : {"varid" : 0x32, 'type': 'temperature', 'bitposition': -1, 'read': True, 'write': False }, + "temperature_outside" : {"varid" : 0x32, 'type': 'temperature', 'bitposition': -1, 'read': True, 'write': False }, # NTC5K sensors: supply air temperature - "inlet_temp" : {"varid" : 0x35, 'type': 'temperature', 'bitposition': -1, 'read': True, 'write': False }, + "temperature_inlet" : {"varid" : 0x35, 'type': 'temperature', 'bitposition': -1, 'read': True, 'write': False }, # NTC5K sensors: extract / inside air temperature - "outlet_temp" : {"varid" : 0x34, 'type': 'temperature', 'bitposition': -1, 'read': True, 'write': False }, + "temperature_outlet" : {"varid" : 0x34, 'type': 'temperature', 'bitposition': -1, 'read': True, 'write': False }, # NTC5K sensors: exhaust air temperature - "exhaust_temp" : {"varid" : 0x33, 'type': 'temperature', 'bitposition': -1, 'read': True, 'write': False }, + "temperature_exhaust" : {"varid" : 0x33, 'type': 'temperature', 'bitposition': -1, 'read': True, 'write': False }, # various coils in register 0xA3 that are displayed on the remote controls (0..3 read/write, 4..7 readonly) # FB LED1: on/off Caution: Remotes will not be switched back on automatically; initial_fanspeed set if done manually. "powerstate" : {"varid" : 0xA3, 'type': 'bit', 'bitposition': 0, 'read': True, 'write': True },