Skip to content

Commit 605a514

Browse files
committed
Fix error 404 page
1 parent 4533ae0 commit 605a514

File tree

10 files changed

+209
-229
lines changed

10 files changed

+209
-229
lines changed

Ethernet_SW_Reset.md

Lines changed: 0 additions & 44 deletions
This file was deleted.

Payload-data-write.md

Lines changed: 27 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -66,33 +66,38 @@ Observations show that a few hundred parameters can be exchanged via packet type
6666

6767
### Packet type 0x35
6868

69-
| Parameter number | Description | Data type | Byte: description |
70-
| ---------------- | ------------------------ | --------- | ------------------------------ |
71-
| 03 | Silent mode | u8 | 0x00: off<br>0x01: on |
72-
| 2F | LWT control | u8 | 0x00: off<br/>0x01: on |
73-
| 31 | Room temperature control | u8 | 0x00: off<br/>0x01: on |
74-
| 3A* | Heating/cooling | u8 | 0x01: heating<br>0x02: cooling |
75-
| 40 | DHW control | u8 | 0x00: off<br/>0x01: on |
76-
| 48 | DHW boost | u8 | 0x00: off<br/>0x01: on |
69+
| Parameter number | Description | Applies for | Data type | Byte: description |
70+
| ---------------- | ------------------------ | ----------- | --------- | ------------------------------ |
71+
| 03 | Quiet mode | | u8 | 0x00: off<br>0x01: on |
72+
| 2F | Climate control | LWT mode | u8 | 0x00: off<br/>0x01: on |
73+
| 31 | Climate control | RT mode | u8 | 0x00: off<br/>0x01: on |
74+
| 3A* | Heating/cooling | | u8 | 0x01: heating<br>0x02: cooling |
75+
| 36 | Defrost request | | u8 | 0x00: off<br>0x01: on (request) |
76+
| 40 | DHW control | | u8 | 0x00: off<br/>0x01: on |
77+
| 48 | DHW boost | | u8 | 0x00: off<br/>0x01: on |
78+
| 56 | Weather dependent / Fixed mode | LWT mode | u8 | 0x00: fixed<br/>0x01: weather dep.<br>0x02: fixed+scheduled<br>0x03: weather dep.+scheduled |
7779

7880
*not working correctly, use packet type 0x3A, parameter 4E instead
7981

8082
### Packet type 0x36
8183

8284
All temperature values in this table are in 0.1 °C resolution.
8385

84-
| Parameter number | Description | Data type | Byte: description |
85-
| ---------------- | ---------------------------------------- | --------- | ----------------- |
86-
| 00 | Room temperature setpoint | s16 | |
87-
| 03 | DHW setpoint | s16 | |
88-
| 06* | LWT setpoint (main zone) | s16 | |
89-
| 08** | LWT setpoint deviation (main zone) | s16 | |
90-
| 0B* | LWT setpoint (additional zone) | s16 | |
91-
| 0D** | LWT setpoint deviation (additional zone) | s16 | |
86+
| Parameter number | Description | Applies for | Data type | Byte: description |
87+
| ---------------- | ---------------------------------------- | ----------- | --------- | ----------------- |
88+
| 00 | Room heating setpoint | RT mode | s16 | |
89+
| 01 | Room cooling setpoint | RT mode | s16 | |
90+
| 03 | DHW setpoint | | s16 | |
91+
| 06 | LWT heating setpoint (main zone) | LWT - Fixed mode | s16 | |
92+
| 07 | LWT cooling setpoint (main zone) | LWT - Fixed mode | s16 | |
93+
| 08 | LWT heating deviation (main zone) | LWT - WD mode | s16 | |
94+
| 09 | LWT cooling deviation (main zone) | LWT - WD mode | s16 | |
95+
| 0B | LWT heating setpoint (additional zone) | LWT - Fixed mode | s16 | |
96+
| 0C | LWT cooling setpoint (additional zone) | LWT - Fixed mode | s16 | |
97+
| 0D | LWT heating deviation (additional zone) | LWT - WD mode | s16 | |
98+
| 0E | LWT cooling deviation (additional zone) | LWT - WD mode | s16 | |
9299

93-
*applies only in Fixed LWT mode
94100

95-
**applies only in Weather dep. LWT mode
96101

97102
### Packet type 0x3A
98103

@@ -105,11 +110,11 @@ All temperature values in this table are in 0.1 °C resolution.
105110
| 3F | Temperature units | u8 | 0x00: °F<br/>0x01: °C |
106111
| 40 | Energy units | u8 | 0x00: kWh<br/>0x01: MBtu |
107112
| 4B | Daylight saving time | u8 | 0x00: manual<br>0x01: auto |
108-
| 4C | Silent mode | u8 | 0x00: auto<br/>0x01: off<br>0x02: on |
109-
| 4D | Silent mode level | u8 | 0x00: level 1<br/>0x01: level 2<br/>0x02: level 3 |
113+
| 4C | Quiet mode | u8 | 0x00: auto<br/>0x01: always off<br>0x02: on |
114+
| 4D | Quiet mode level | u8 | 0x00: level 1<br/>0x01: level 2<br/>0x02: level 3 |
110115
| 4E | Operation mode | u8 | 0x00: heating<br/>0x01: cooling<br/>0x02: auto |
111116
| 5B | Holiday | u8 | 0x00: off<br>0x01: on |
112-
| 5E | Space heating schedule | u8 | 0x00: Predefined 1<br>0x01: Predefined 2<br>0x02: Predefined 3<br>0x03: User defined 1<br>0x04: User defined 2<br>0x05: User defined 3<br>0x06: No schedule<br> |
113-
| 5F | Space cooling schedule | u8 | 0x00: Predefined 1<br>0x01: Predefined 2<br>0x02: Predefined 3<br>0x03: User defined 1<br>0x04: No schedule<br/> |
117+
| 5E | Heating schedule | u8 | 0x00: Predefined 1<br>0x01: Predefined 2<br>0x02: Predefined 3<br>0x03: User defined 1<br>0x04: User defined 2<br>0x05: User defined 3<br>0x06: No schedule<br> |
118+
| 5F | Cooling schedule | u8 | 0x00: Predefined 1<br>0x01: Predefined 2<br>0x02: Predefined 3<br>0x03: User defined 1<br>0x04: No schedule<br/> |
114119
| 64 | DHW schedule | u8 | 0x00: Predefined 1<br>0x01: Predefined 2<br>0x02: Predefined 3<br>0x03: User defined 1<br>0x04: No schedule |
115120

0 commit comments

Comments
 (0)