feat: cubee.airrtc.1230t hvac mode

This commit is contained in:
LiShuzhen 2025-03-05 18:29:02 +08:00
parent b8da812434
commit 8ed972cdb0
2 changed files with 19 additions and 8 deletions

View File

@ -1453,10 +1453,12 @@ class MIoTSpecParser:
key=':'.join(p_type_strs[:5])) key=':'.join(p_type_strs[:5]))
or property_['description'] or property_['description']
or spec_prop.name) or spec_prop.name)
if 'value-range' in property_: # Modify value-list before translation
spec_prop.value_range = property_['value-range'] v_list: list[dict] = self._spec_modify.get_prop_value_list(
elif 'value-list' in property_: siid=service['iid'], piid=property_['iid'])
v_list: list[dict] = property_['value-list'] if (v_list is None) and ('value-list' in property_):
v_list = property_['value-list']
if v_list is not None:
for index, v in enumerate(v_list): for index, v in enumerate(v_list):
if v['description'].strip() == '': if v['description'].strip() == '':
v['description'] = f'v_{v["value"]}' v['description'] = f'v_{v["value"]}'
@ -1470,6 +1472,8 @@ class MIoTSpecParser:
f'{v["description"]}') f'{v["description"]}')
or v['name']) or v['name'])
spec_prop.value_list = MIoTSpecValueList.from_spec(v_list) spec_prop.value_list = MIoTSpecValueList.from_spec(v_list)
if 'value-range' in property_:
spec_prop.value_range = property_['value-range']
elif property_['format'] == 'bool': elif property_['format'] == 'bool':
v_tag = ':'.join(p_type_strs[:5]) v_tag = ':'.join(p_type_strs[:5])
v_descriptions = ( v_descriptions = (
@ -1494,10 +1498,6 @@ class MIoTSpecParser:
siid=service['iid'], piid=property_['iid']) siid=service['iid'], piid=property_['iid'])
if custom_range: if custom_range:
spec_prop.value_range = custom_range spec_prop.value_range = custom_range
custom_list = self._spec_modify.get_prop_value_list(
siid=service['iid'], piid=property_['iid'])
if custom_list:
spec_prop.value_list = custom_list
# Parse service event # Parse service event
for event in service.get('events', []): for event in service.get('events', []):
if ( if (

View File

@ -58,3 +58,14 @@ urn:miot-spec-v2:device:bath-heater:0000A028:opple-acmoto:1:
description: medium description: medium
- value: 255 - value: 255
description: high description: high
urn:miot-spec-v2:device:thermostat:0000A031:cubee-1230t:1:
prop.2.4:
value-list:
- value: 0
description: cool
- value: 1
description: heat
- value: 2
description: fan
- value: 3
description: auto