This commit is contained in:
GavinIves 2025-07-09 03:42:05 +00:00
parent 99ddf9bbc0
commit ed76ae9cd1

View File

@ -125,7 +125,9 @@ class LightCommandSendMode(SelectEntity, RestoreEntity):
self.hass = hass
self._device_id = device_id
self._attr_name = "Command Send Mode"
self._attr_unique_id = f"{DOMAIN}.light_{device_id}_command_send_mode"
self.entity_id = f"select.light_{device_id}_command_send_mode"
self._attr_unique_id = self.entity_id
self._attr_options = [
"Send One by One", "Send Turn On First", "Send Together"
]