mirror of
https://github.com/XiaoMi/ha_xiaomi_home.git
synced 2025-04-03 16:25:28 +08:00
fix: limit *light.mode count (value-range) (#535)
* feat: spec filter add lemesh.switch.sw3f13 indicator-light.mode * feat: limit mode count (value-range) * revert: spec-filter.json * fix: fix judgment logic * style: remove unuse code * style: change light log level
This commit is contained in:
parent
5438698a6e
commit
b75cafb184
@ -95,6 +95,7 @@ async def async_setup_entry(
|
|||||||
class Light(MIoTServiceEntity, LightEntity):
|
class Light(MIoTServiceEntity, LightEntity):
|
||||||
"""Light entities for Xiaomi Home."""
|
"""Light entities for Xiaomi Home."""
|
||||||
# pylint: disable=unused-argument
|
# pylint: disable=unused-argument
|
||||||
|
_VALUE_RANGE_MODE_COUNT_MAX = 30
|
||||||
_prop_on: Optional[MIoTSpecProperty]
|
_prop_on: Optional[MIoTSpecProperty]
|
||||||
_prop_brightness: Optional[MIoTSpecProperty]
|
_prop_brightness: Optional[MIoTSpecProperty]
|
||||||
_prop_color_temp: Optional[MIoTSpecProperty]
|
_prop_color_temp: Optional[MIoTSpecProperty]
|
||||||
@ -147,13 +148,13 @@ class Light(MIoTServiceEntity, LightEntity):
|
|||||||
self._attr_supported_features |= LightEntityFeature.EFFECT
|
self._attr_supported_features |= LightEntityFeature.EFFECT
|
||||||
self._prop_mode = prop
|
self._prop_mode = prop
|
||||||
else:
|
else:
|
||||||
_LOGGER.error(
|
_LOGGER.info(
|
||||||
'invalid brightness format, %s', self.entity_id)
|
'invalid brightness format, %s', self.entity_id)
|
||||||
continue
|
continue
|
||||||
# color-temperature
|
# color-temperature
|
||||||
if prop.name == 'color-temperature':
|
if prop.name == 'color-temperature':
|
||||||
if not isinstance(prop.value_range, dict):
|
if not isinstance(prop.value_range, dict):
|
||||||
_LOGGER.error(
|
_LOGGER.info(
|
||||||
'invalid color-temperature value_range format, %s',
|
'invalid color-temperature value_range format, %s',
|
||||||
self.entity_id)
|
self.entity_id)
|
||||||
continue
|
continue
|
||||||
@ -179,16 +180,29 @@ class Light(MIoTServiceEntity, LightEntity):
|
|||||||
for item in prop.value_list}
|
for item in prop.value_list}
|
||||||
elif isinstance(prop.value_range, dict):
|
elif isinstance(prop.value_range, dict):
|
||||||
mode_list = {}
|
mode_list = {}
|
||||||
for value in range(
|
if (
|
||||||
prop.value_range['min'], prop.value_range['max']):
|
int((
|
||||||
mode_list[value] = f'{value}'
|
prop.value_range['max']
|
||||||
|
- prop.value_range['min']
|
||||||
|
) / prop.value_range['step'])
|
||||||
|
> self._VALUE_RANGE_MODE_COUNT_MAX
|
||||||
|
):
|
||||||
|
_LOGGER.info(
|
||||||
|
'too many mode values, %s, %s, %s',
|
||||||
|
self.entity_id, prop.name, prop.value_range)
|
||||||
|
else:
|
||||||
|
for value in range(
|
||||||
|
prop.value_range['min'],
|
||||||
|
prop.value_range['max'],
|
||||||
|
prop.value_range['step']):
|
||||||
|
mode_list[value] = f'mode {value}'
|
||||||
if mode_list:
|
if mode_list:
|
||||||
self._mode_list = mode_list
|
self._mode_list = mode_list
|
||||||
self._attr_effect_list = list(self._mode_list.values())
|
self._attr_effect_list = list(self._mode_list.values())
|
||||||
self._attr_supported_features |= LightEntityFeature.EFFECT
|
self._attr_supported_features |= LightEntityFeature.EFFECT
|
||||||
self._prop_mode = prop
|
self._prop_mode = prop
|
||||||
else:
|
else:
|
||||||
_LOGGER.error('invalid mode format, %s', self.entity_id)
|
_LOGGER.info('invalid mode format, %s', self.entity_id)
|
||||||
continue
|
continue
|
||||||
|
|
||||||
if not self._attr_supported_color_modes:
|
if not self._attr_supported_color_modes:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user