Skip to content

Commit

Permalink
Add Tuya TS130F _TZ3000_qqdbccb3 curtain roller (#3380)
Browse files Browse the repository at this point in the history
Co-authored-by: TheJulianJES <TheJulianJES@users.noreply.github.com>
  • Loading branch information
ethervoid and TheJulianJES authored Sep 24, 2024
1 parent d42d0d2 commit fafbd71
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions zhaquirks/tuya/ts130f.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,52 @@ class TuyaZemismartTS130F(CustomDevice):
}


class TuyaZemismartWNEC1ETS130F(CustomDevice):
"""Tuya ZemiSmart smart curtain roller shutter. WN-EC1E version."""

signature = {
MODEL: "TS130F",
ENDPOINTS: {
1: {
PROFILE_ID: zha.PROFILE_ID,
DEVICE_TYPE: zha.DeviceType.WINDOW_COVERING_DEVICE,
INPUT_CLUSTERS: [
Basic.cluster_id,
Identify.cluster_id,
Groups.cluster_id,
Scenes.cluster_id,
OnOff.cluster_id,
WindowCovering.cluster_id,
],
OUTPUT_CLUSTERS: [
Time.cluster_id,
Ota.cluster_id,
],
},
},
}
replacement = {
ENDPOINTS: {
1: {
PROFILE_ID: zha.PROFILE_ID,
DEVICE_TYPE: zha.DeviceType.WINDOW_COVERING_DEVICE,
INPUT_CLUSTERS: [
Basic.cluster_id,
Identify.cluster_id,
Groups.cluster_id,
Scenes.cluster_id,
TuyaWithBacklightOnOffCluster,
TuyaCoveringCluster,
],
OUTPUT_CLUSTERS: [
Time.cluster_id,
Ota.cluster_id,
],
},
},
}


class TuyaTS130FTOGP(CustomDevice):
"""Tuya Oxt smart curtain roller shutter."""

Expand Down

0 comments on commit fafbd71

Please sign in to comment.