Skip to content

Commit 2ceb49c

Browse files
committed
Fixed OpenTherm commands codes
1 parent de6be20 commit 2ceb49c

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=OpenTherm Library
2-
version=1.0.0
2+
version=1.0.1
33
author=Ihor Melnyk <ihor.melnyk@gmail.com>
44
maintainer=Ihor Melnyk <ihor.melnyk@gmail.com>
55
sentence=OpenTherm Library for HVAC system control communication using Arduino and ESP8266 hardware.

src/OpenTherm.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,14 +62,14 @@ enum OpenThermMessageID {
6262
TflowCH2, // f8.8 Flow water temperature CH2 circuit (°C)
6363
Tdhw2, // f8.8 Domestic hot water temperature 2 (°C)
6464
Texhaust, // s16 Boiler exhaust temperature (°C)
65-
TdhwSetUBTdhwSetLB, // s8 / s8 DHW setpoint upper & lower bounds for adjustment (°C)
65+
TdhwSetUBTdhwSetLB = 48, // s8 / s8 DHW setpoint upper & lower bounds for adjustment (°C)
6666
MaxTSetUBMaxTSetLB, // s8 / s8 Max CH water setpoint upper & lower bounds for adjustment (°C)
6767
HcratioUBHcratioLB, // s8 / s8 OTC heat curve ratio upper & lower bounds for adjustment
68-
TdhwSet, // f8.8 DHW setpoint (°C) (Remote parameter 1)
68+
TdhwSet = 56, // f8.8 DHW setpoint (°C) (Remote parameter 1)
6969
MaxTSet, // f8.8 Max CH water setpoint (°C) (Remote parameters 2)
7070
Hcratio, // f8.8 OTC heat curve ratio (°C) (Remote parameter 3)
71-
RemoteOverrideFunction, // flag8 / - Function of manual and program changes in master and remote room setpoint.
72-
OEMDiagnosticCode, // u16 OEM-specific diagnostic/service code
71+
RemoteOverrideFunction = 100, // flag8 / - Function of manual and program changes in master and remote room setpoint.
72+
OEMDiagnosticCode = 115, // u16 OEM-specific diagnostic/service code
7373
BurnerStarts, // u16 Number of starts burner
7474
CHPumpStarts, // u16 Number of starts CH pump
7575
DHWPumpValveStarts, // u16 Number of starts DHW pump/valve

0 commit comments

Comments
 (0)