-
Notifications
You must be signed in to change notification settings - Fork 740
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
[Device Support Request] TS0601 _TZE284_n4ttsck2 #3820
Comments
What is this device? I don't see it listed in z2m, do you have a Tuya hub to capture the data points with? |
You can try something like this, since we don't have any details on the DPs. from zhaquirks.tuya.builder import TuyaQuirkBuilder
from zhaquirks.tuya import BatterySize
(
TuyaQuirkBuilder("_TZE284_n4ttsck2", "TS0601")
.tuya_smoke(dp_id=1)
.tuya_battery(dp_id=15, battery_type=BatterySize.CR123A, battery_qty=1)
.skip_configuration()
.add_to_registry()
) |
i was using this quirk ts0601_smoke.py |
Delete that file, create a new file, something like |
Logs? Quirk isn't loaded. |
Diagnostic information"data": {
"ieee": "**REDACTED**",
"nwk": 29172,
"manufacturer": "_TZE284_n4ttsck2",
"model": "TS0601",
"name": "_TZE284_n4ttsck2 TS0601",
"quirk_applied": false,
"quirk_class": "zigpy.device.Device",
"quirk_id": null,
"manufacturer_code": 4417,
"power_source": "Battery or Unknown",
"lqi": 168,
"rssi": -58,
"last_seen": "2025-02-01T20:44:16",
"available": true,
"device_type": "EndDevice",
"signature": {
"node_descriptor": {
"logical_type": 2,
"complex_descriptor_available": 0,
"user_descriptor_available": 0,
"reserved": 0,
"aps_flags": 0,
"frequency_band": 8,
"mac_capability_flags": 128,
"manufacturer_code": 4417,
"maximum_buffer_size": 66,
"maximum_incoming_transfer_size": 66,
"server_mask": 10752,
"maximum_outgoing_transfer_size": 66,
"descriptor_capability_field": 0
},
"endpoints": {
"1": {
"profile_id": "0x0104",
"device_type": "0x0051",
"input_clusters": [
"0x0000",
"0x0004",
"0x0005",
"0xed00",
"0xef00"
],
"output_clusters": [
"0x000a",
"0x0019"
]
}
},
"manufacturer": "_TZE284_n4ttsck2",
"model": "TS0601"
},
"active_coordinator": false,
"entities": [
{
"entity_id": "update.tze284_n4ttsck2_ts0601_firmware",
"name": "_TZE284_n4ttsck2 TS0601"
},
{
"entity_id": "update.sf_camino_firmware",
"name": "_TZE284_n4ttsck2 TS0601"
}
],
"neighbors": [],
"routes": [],
"endpoint_names": [
{
"name": "SMART_PLUG"
}
],
"user_given_name": "SF camino",
"device_reg_id": "0c589f216d47a40f1a6e6a0541402ea2",
"area_id": null,
"cluster_details": { I think that quirk is loaded ( i have another device that works with it in another quirk conf.) |
It's not matching, turn on debug logging, reload ZHA and then see why it didn't match the quirk. |
|
Ahh, that's part of 2025.2, we can remove it for now. from zhaquirks.tuya.builder import TuyaQuirkBuilder
(
TuyaQuirkBuilder("_TZE284_n4ttsck2", "TS0601")
.tuya_smoke(dp_id=1)
.tuya_battery(dp_id=15)
.skip_configuration()
.add_to_registry()
) |
Turn on debug logging and see if you have any messages about unknown data points for that device. Sometimes it takes awhile for the battery to check in, but could also be the wrong DP. Also, verify that HA shows alarm when triggered. |
Problem description
I bought this type of sensor but can't get it to work even using the quirk currently around.
i noticed that by searching google for this type of sensor there are no threads about it.
Would anyone be able to help me
Thank you in advance
Solution description
working quirk file for this device
Screenshots/Video
Screenshots/Video
[Paste/upload your media here]
Device signature
Device signature
[Paste the device signature here]
Diagnostic information
Diagnostic information
Logs
Logs
Custom quirk
Custom quirk
Additional information
No response
The text was updated successfully, but these errors were encountered: