-
Notifications
You must be signed in to change notification settings - Fork 9
0004: Zone Name
brucemiranda edited this page Nov 22, 2022
·
16 revisions
The controller will respond to a RQ
/ 0004
with the name of that zone:
16:16:49.159 095 RQ --- 18:013393 01:145038 --:------ 0004 002 0600
16:16:49.186 045 RP --- 01:145038 18:013393 --:------ 0004 022 060042617468726F6F6D00000...
When you press the button on a HR92, it will RQ
the zone name to display on its LCD display.
The payload has 2 byte header (for the zone index), followed by a 20-byte null-terminated string:
0600-42617468726F6F6D000000000000000000000000
In the Evohome UI, zone names appear to be limited to 12 characters.
After removing the header, the payload - like most strings - can be decoded using the method described here:
{'zone_idx': '06', 'name': 'Bathroom'}
A payload of "7F" * 20
will be returned if a RQ
is sent for a non-existent zones.
def parser_0004(payload) -> Optional[dict]:
assert len(payload) / 2 == 22
assert int(payload[:2], 16) < 12 # zone idx
assert payload[2:4] == "00"
if payload[4:] == "7F" * 20:
return {"zone_idx": parser[:2]}
return {"zone_idx": parser[:2], "name": _str(payload[4:])}
The W
verb can be used to change the name of a zone:
The I
verb messages appear on startup of the controller.
0001
RF Check0004
Zone name0008
Relay demand0009
Relay failsafe000A
Zone config000C
Zone actuators0016
RF signal test0100
Localisation0404
Zone schedule0418
System fault1030
Mix zone config1060
Battery state10A0
DHW setpoint10E0
Device info1100
Boiler relay info1260
DHW temperature12B0
Window sensor1F09
System Sync1F41
DHW mode1FC9
RF bind1FD4
Opentherm ticker22C9
UFH setpoint22D9
Boiler setpoint2309
Zone setpoint2349
Setpoint override2E04
Controller mode30C9
Zone temperature313F
System datetime3150
Heat demand3220
Opentherm message3B00
Actuator sync3EF0
Actuator info3EF1
Actuator unknown
0002
External sensor0005
Zone management0006
Schedule sync000E
Unknown01D0
Unknown01E9
Unknown042F
Unknown1280
Outdoor humidity1290
Outdoor temp12A0
Indoor humidity2249
Now/next setpoint22D0
UFH unknown22F1
Ventilation unit command22F3
Ventilation unit temp. high2389
Unknown2D49
Unknown3120
Unknown31D9
HVAC Unknown31DA
HVAC Unknown31E0
HVAC Unknown