Skip to content

Commit

Permalink
fix(device): change ADEO for Adeo
Browse files Browse the repository at this point in the history
related to #648
  • Loading branch information
xaviml committed Dec 31, 2022
1 parent 9f27b15 commit ad24345
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ _This minor change does not contain any breaking changes._
## :video_game: New devices

- [Philips929002398602](https://BASE_URL/controllerx/controllers/Philips929002398602) - add ZHA support. [ #580 ] @cznewt @ScratMan
- [ADEOHRC99CZC045](https://BASE_URL/controllerx/controllers/ADEOHRC99CZC045) - add device with Z2M support. [ #648 ]
- [AdeoHRC99CZC045](https://BASE_URL/controllerx/controllers/AdeoHRC99CZC045) - add device with Z2M support. [ #648 ]
4 changes: 2 additions & 2 deletions apps/controllerx/cx_devices/adeo.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from cx_core import LightController, Z2MLightController


class ADEOHRC99CZC045LightController(LightController):
class AdeoHRC99CZC045LightController(LightController):
def get_z2m_actions_mapping(self) -> DefaultActionsMapping:
return {
"on": Light.ON,
Expand All @@ -24,7 +24,7 @@ def get_z2m_actions_mapping(self) -> DefaultActionsMapping:
}


class ADEOHRC99CZC045Z2MLightController(Z2MLightController):
class AdeoHRC99CZC045Z2MLightController(Z2MLightController):
def get_z2m_actions_mapping(self) -> DefaultActionsMapping:
return {
"on": Z2MLight.ON,
Expand Down

0 comments on commit ad24345

Please sign in to comment.