added celet type thermostat controls

This commit is contained in:
Khalim Conn-Kowlessar 2023-07-01 18:22:45 +01:00
parent 702d3f10de
commit 7b96d30073
2 changed files with 7 additions and 1 deletions

View file

@ -11,6 +11,7 @@ class MainheatControlAttributes(BaseUtility):
'room thermostat',
'temperature zone control',
'time and temperature zone control',
'celect-type control' # This is a specific type of thermostat controls
# 'no thermostatic control',
# 'no room thermostat'
]

View file

@ -123,5 +123,10 @@ mainheat_control_cases = [
{'original_description': 'Time and temperature zone control',
'thermostatic_control': 'time and temperature zone control', 'charging_system': None, 'switch_system': None,
'no_control': None, 'dhw_control': None, 'community_heating': None, 'multiple_room_thermostats': False,
'auxiliary_systems': None, 'trvs': None}
'auxiliary_systems': None, 'trvs': None},
{'original_description': 'Celect-type controls', 'thermostatic_control': 'celect-type control',
'charging_system': None, 'switch_system': None, 'no_control': None,
'dhw_control': None, 'community_heating': None, 'multiple_room_thermostats': False, 'auxiliary_systems': None,
'trvs': None}
]