mirror of https://github.com/Andre0512/hon.git
remove old stuff
This commit is contained in:
parent
9a3036b161
commit
f66bd14ed1
|
@ -510,7 +510,6 @@ class HonControlSwitchEntity(HonEntity, SwitchEntity):
|
||||||
async def async_turn_on(self, **kwargs: Any) -> None:
|
async def async_turn_on(self, **kwargs: Any) -> None:
|
||||||
desc = self.entity_description
|
desc = self.entity_description
|
||||||
self._device.sync_command(desc.turn_on_key, "settings", desc.to_sync)
|
self._device.sync_command(desc.turn_on_key, "settings", desc.to_sync)
|
||||||
//await self.coordinator.async_refresh()
|
|
||||||
self.coordinator.async_set_updated_data({})
|
self.coordinator.async_set_updated_data({})
|
||||||
command = self._device.commands[desc.turn_on_key]
|
command = self._device.commands[desc.turn_on_key]
|
||||||
await command.send(desc.only_mandatory_parameters)
|
await command.send(desc.only_mandatory_parameters)
|
||||||
|
@ -520,7 +519,6 @@ class HonControlSwitchEntity(HonEntity, SwitchEntity):
|
||||||
async def async_turn_off(self, **kwargs: Any) -> None:
|
async def async_turn_off(self, **kwargs: Any) -> None:
|
||||||
desc = self.entity_description
|
desc = self.entity_description
|
||||||
self._device.sync_command(desc.turn_off_key, "settings", desc.to_sync)
|
self._device.sync_command(desc.turn_off_key, "settings", desc.to_sync)
|
||||||
//await self.coordinator.async_refresh()
|
|
||||||
self.coordinator.async_set_updated_data({})
|
self.coordinator.async_set_updated_data({})
|
||||||
command = self._device.commands[desc.turn_off_key]
|
command = self._device.commands[desc.turn_off_key]
|
||||||
await command.send(desc.only_mandatory_parameters)
|
await command.send(desc.only_mandatory_parameters)
|
||||||
|
|
Loading…
Reference in New Issue