Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ _This minor change does not contain any breaking changes._
- [XYZ](https://BASE_URL/controllerx/controllers/XYZ) - add device with Z2M support. [ #123 ]
-->

<!--
## :hammer: Fixes
-->

- [TS0043](https://BASE_URL/controllerx/controllers/TS0043) - fix cover mapping [ #1082 ] @ChristopheBraud

<!--
## :scroll: Docs
Expand Down
4 changes: 2 additions & 2 deletions apps/controllerx/cx_devices/tuya.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,9 @@ def get_zha_action(self, data: EventData) -> str:
class TS0043CoverController(CoverController):
def get_z2m_actions_mapping(self) -> DefaultActionsMapping:
return {
"1_single": Cover.TOGGLE_OPEN,
"1_single": Cover.OPEN,
"2_single": Cover.STOP,
"3_single": Cover.TOGGLE_CLOSE,
"3_single": Cover.CLOSE,
}


Expand Down