Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions luxtronik/definitions/calculations.py
Original file line number Diff line number Diff line change
Expand Up @@ -2558,6 +2558,17 @@
"unit": 'K/10',
"description": '',
},
{
"index": 244,
"count": 1,
"names": ['flow_temp_limit'],
"type": Celsius,
"writeable": False,
"datatype": 'UINT32',
"unit": '°C/10',
"since": "3.88.0",
"description": 'PRELIMINARY: Max supply (flow) temperature setpoint',
},
{
"index": 244,
"count": 1,
Expand Down Expand Up @@ -2638,6 +2649,17 @@
"unit": '',
"description": '',
},
{
"index": 252,
"count": 1,
"names": ['hot_gas_temp_limit'],
"type": Celsius,
"writeable": False,
"datatype": 'UINT32',
"unit": '°C/10',
"since": "3.88.0",
"description": 'PRELIMINARY: Max hot-gas (discharge) cut-off setpoint',
},
{
"index": 252,
"count": 1,
Expand Down
3 changes: 3 additions & 0 deletions tests/test_compatibility.py
Original file line number Diff line number Diff line change
Expand Up @@ -1622,6 +1622,9 @@ def test_compatibilities(self):
"Unknown_Calculation_272": (272, Unknown),
"Unknown_Calculation_273": (273, Unknown),
"Unknown_Calculation_274": (274, Unknown),
# New in 'main' branch (after next release):
"flow_temp_limit": (244, Celsius),
"hot_gas_temp_limit": (252, Celsius),
}

visis = {
Expand Down
Loading