-
Notifications
You must be signed in to change notification settings - Fork 703
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Tuya vibration door sensor _TZE200_kzm5w4iz
#3246
Merged
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
74cdc21
Added quirk for Tuya Vibration Door Sensor.
adam-zlatniczki 5b44d58
Merge branch 'dev' into dev
TheJulianJES c4a9c74
Merge branch 'zigpy:dev' into dev
adam-zlatniczki 6e02fdd
Code style improvement for tuya vibration sensor
adam-zlatniczki 469c668
Merge branch 'zigpy:dev' into dev
adam-zlatniczki b4dd9fe
Remove always initializing fake attributes
TheJulianJES 9148010
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,198 @@ | ||
"""Device handler for Tuya Zigbee Vibration Door Sensor. | ||
|
||
The device reports: | ||
- Vibration | ||
- Open/Closed door/window | ||
- Remaining battery percentage | ||
|
||
Extra details: https://www.aliexpress.com/item/1005004443361928.html?spm=a2g0o.order_list.order_list_main.53.35a81802wiZASs | ||
""" | ||
|
||
from zigpy.profiles import zha | ||
from zigpy.quirks import CustomCluster, CustomDevice | ||
from zigpy.zcl.clusters.general import ( | ||
Basic, | ||
Groups, | ||
Ota, | ||
PowerConfiguration, | ||
Scenes, | ||
Time, | ||
) | ||
from zigpy.zcl.clusters.security import IasZone, ZoneStatus, ZoneType | ||
|
||
from zhaquirks.const import ( | ||
DEVICE_TYPE, | ||
ENDPOINTS, | ||
INPUT_CLUSTERS, | ||
MODELS_INFO, | ||
OUTPUT_CLUSTERS, | ||
PROFILE_ID, | ||
ZONE_STATE, | ||
) | ||
from zhaquirks.tuya import ( | ||
TUYA_CLUSTER_ID, | ||
DPToAttributeMapping, | ||
TuyaLocalCluster, | ||
TuyaNewManufCluster, | ||
) | ||
|
||
DOOR_HANDLE_DP_ID = 1 | ||
BATTERY_STATE_DP_ID = 3 | ||
VIBRATION_DP_ID = 10 | ||
|
||
DP_HANDLER_EP_ID = 1 | ||
DOOR_HANDLE_EP_ID = 2 | ||
VIBRATION_EP_ID = 3 | ||
|
||
|
||
class CustomBasicCluster(CustomCluster, Basic): | ||
"""Custom Basic cluster to report power source.""" | ||
|
||
_CONSTANT_ATTRIBUTES = { | ||
Basic.AttributeDefs.power_source.id: Basic.PowerSource.Battery | ||
} | ||
|
||
|
||
class CustomTuyaPowerConfigurationCluster(TuyaLocalCluster, PowerConfiguration): | ||
"""Custom Power Configuration cluster that represents battery reports.""" | ||
|
||
_CONSTANT_ATTRIBUTES = { | ||
PowerConfiguration.AttributeDefs.battery_size.id: PowerConfiguration.BatterySize.AAA, | ||
PowerConfiguration.AttributeDefs.battery_quantity.id: 2, | ||
} | ||
|
||
|
||
class CustomTuyaContactSwitchCluster(TuyaLocalCluster, IasZone): | ||
"""Custom IasZone cluster that represents the Open/Closed sensor.""" | ||
|
||
_CONSTANT_ATTRIBUTES = { | ||
IasZone.AttributeDefs.zone_state.id: ZONE_STATE, | ||
IasZone.AttributeDefs.zone_type.id: ZoneType.Contact_Switch, | ||
} | ||
|
||
|
||
class CustomTuyaVibrationCluster(TuyaLocalCluster, IasZone): | ||
"""Custom IasZone cluster that represents the vibration sensor.""" | ||
|
||
_CONSTANT_ATTRIBUTES = { | ||
IasZone.AttributeDefs.zone_state.id: ZONE_STATE, | ||
IasZone.AttributeDefs.zone_type.id: ZoneType.Vibration_Movement_Sensor, | ||
} | ||
|
||
|
||
class CustomTuyaDPProcessor(TuyaNewManufCluster): | ||
"""Custom cluster that translates Tuya's data point reporting. | ||
|
||
Tuya data points are parsed and their values are used to update the | ||
specified endpoint's (endpoint_id) cluster's (ep_attribute) | ||
attribute (attribute_name). | ||
""" | ||
|
||
dp_to_attribute: dict[int, DPToAttributeMapping] = { | ||
DOOR_HANDLE_DP_ID: DPToAttributeMapping( | ||
endpoint_id=DOOR_HANDLE_EP_ID, | ||
ep_attribute=IasZone.ep_attribute, | ||
attribute_name=IasZone.AttributeDefs.zone_status.name, | ||
converter=lambda x: ZoneStatus.Alarm_1 & x, | ||
), | ||
VIBRATION_DP_ID: DPToAttributeMapping( | ||
endpoint_id=VIBRATION_EP_ID, | ||
ep_attribute=IasZone.ep_attribute, | ||
attribute_name=IasZone.AttributeDefs.zone_status.name, | ||
converter=lambda x: ZoneStatus.Alarm_1 & x, | ||
), | ||
BATTERY_STATE_DP_ID: DPToAttributeMapping( | ||
endpoint_id=DP_HANDLER_EP_ID, | ||
ep_attribute=PowerConfiguration.ep_attribute, | ||
attribute_name=PowerConfiguration.AttributeDefs.battery_percentage_remaining.name, | ||
converter=lambda x: 2 * x, | ||
# Device measures battery in 1% steps, while the ZCL specifies it in 0.5% steps | ||
), | ||
} | ||
|
||
data_point_handlers = { | ||
DOOR_HANDLE_DP_ID: "_dp_2_attr_update", | ||
VIBRATION_DP_ID: "_dp_2_attr_update", | ||
BATTERY_STATE_DP_ID: "_dp_2_attr_update", | ||
} | ||
|
||
|
||
class TS0601Door(CustomDevice): | ||
"""Quirk for Tuya Zigbee Vibration Door Sensor. | ||
|
||
The device reports: | ||
- Vibration | ||
- Open/closed door/window | ||
- Remaining battery percentage | ||
|
||
The original device has a single endpoint that corresponds to the Tuya | ||
manufacturer specific cluster. The replacement has 3 endpoints, where | ||
- the first is responsible for handling the Tuya data point reports, | ||
- the second represents the open/closed sensor, | ||
- and the third represents the vibration sensor. | ||
The latter two are both IasZone cluster extensions, that's why they had to | ||
be put into different endpoints (otherwise we would have two of the same | ||
cluster for an endpoint, which is prohibited by the Zigbee standard). | ||
|
||
Extra details about the physical device: https://www.aliexpress.com/item/1005004443361928.html?spm=a2g0o.order_list.order_list_main.53.35a81802wiZASs | ||
""" | ||
|
||
signature = { | ||
# <SimpleDescriptor endpoint=1 profile=260 device_type=81 | ||
# device_version=1 | ||
# input_clusters=[4, 5, 61184, 0] | ||
# output_clusters=[25, 10]> | ||
MODELS_INFO: [("_TZE200_kzm5w4iz", "TS0601")], | ||
ENDPOINTS: { | ||
1: { | ||
PROFILE_ID: zha.PROFILE_ID, | ||
DEVICE_TYPE: zha.DeviceType.SMART_PLUG, | ||
INPUT_CLUSTERS: [ | ||
Basic.cluster_id, | ||
Groups.cluster_id, | ||
Scenes.cluster_id, | ||
TUYA_CLUSTER_ID, | ||
], | ||
OUTPUT_CLUSTERS: [Time.cluster_id, Ota.cluster_id], | ||
}, | ||
}, | ||
} | ||
|
||
replacement = { | ||
ENDPOINTS: { | ||
DP_HANDLER_EP_ID: { | ||
PROFILE_ID: zha.PROFILE_ID, | ||
DEVICE_TYPE: zha.DeviceType.SMART_PLUG, | ||
INPUT_CLUSTERS: [ | ||
CustomBasicCluster, | ||
Groups.cluster_id, | ||
Scenes.cluster_id, | ||
CustomTuyaPowerConfigurationCluster, | ||
CustomTuyaDPProcessor, | ||
], | ||
OUTPUT_CLUSTERS: [Time.cluster_id, Ota.cluster_id], | ||
}, | ||
DOOR_HANDLE_EP_ID: { | ||
PROFILE_ID: zha.PROFILE_ID, | ||
DEVICE_TYPE: zha.DeviceType.IAS_ZONE, | ||
INPUT_CLUSTERS: [ | ||
CustomBasicCluster, | ||
Groups.cluster_id, | ||
Scenes.cluster_id, | ||
CustomTuyaContactSwitchCluster, | ||
], | ||
OUTPUT_CLUSTERS: [Time.cluster_id], | ||
}, | ||
VIBRATION_EP_ID: { | ||
PROFILE_ID: zha.PROFILE_ID, | ||
DEVICE_TYPE: zha.DeviceType.IAS_ZONE, | ||
INPUT_CLUSTERS: [ | ||
CustomBasicCluster, | ||
Groups.cluster_id, | ||
Scenes.cluster_id, | ||
CustomTuyaVibrationCluster, | ||
], | ||
OUTPUT_CLUSTERS: [Time.cluster_id], | ||
}, | ||
}, | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure we need this, not an issue for now though. Was it shown wrong on the HA device page?
That data comes from the node descriptor though.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ZHA displayed the power source as "battery or unknown", which was bothering me a little, and in hopes of fixing that I tried setting it this way. However, it didn't really help, so I guess that is solely based on the device signature.