-
Notifications
You must be signed in to change notification settings - Fork 695
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] TY0201 - Temperature + Humdity Sensor #2851
Comments
I have the same device with the same issue. However, if I run the Sonoff Bridge Pro (Tasmota) in non TCP mode (zha), Tasmota sees temperature, signal, battery and humidity properly. |
I tried the quirk file in #2862 (comment) and it seems to work for me. My device is reported as manufacturer: "_TZ3000_zl1kmjqx", model: "", so I changed the file to have that model too: signature = {
MODELS_INFO: [("_TZ3000_bjawzodf", "TY0201")],
...
} to: signature = {
MODELS_INFO: [
("_TZ3000_bjawzodf", "TY0201"),
("_TZ3000_zl1kmjqx", ""),
],
...
} For the original reporter, it seems to be model "TY0201", so you could probably add your model too and it should work: signature = {
MODELS_INFO: [
("_TZ3000_bjawzodf", "TY0201"),
("_TZ3000_zl1kmjqx", "TY0201"),
("_TZ3000_zl1kmjqx", ""),
],
...
} It took adding and removing a few times, and I also tried reading the value manually from the device via the "Manage Zigbee device". I don't know it is so flaky but I eventually got it working: Hope it helps! |
This is working for me :) Needed some reloading, restarting and reconnecting of the device, but finally it seems to be working! Thx @llucax |
@llucax that seems to be working for one of mine. I'm not sure what started it working for it, but I have several others that are not working still. Same manufacturer as yours. However, it seems that if this quirk applies, I get "Firmware: 0x10013001". I also have some units that identify as TS0201 (instead of TY) and have the manufacturer "_TZ3000_dowj6gyi" and they just work without needing this quirk added. They look identical to these. |
This seems to be a pretty common sensor, for which several models seem to exist : _TZ3000_bjawzodf and _TZ3000_zl1kmjqx Fixes: issues zigpy#2862, zigpy#2851, zigpy#2701 Signed-off-by: Philippe De Swert <philippedeswert@gmail.com>
This seems to be a pretty common sensor, for which several models seem to exist : _TZ3000_bjawzodf and _TZ3000_zl1kmjqx Fixes: zigpy#2862, zigpy#2851, zigpy#2701 Signed-off-by: Philippe De Swert <philippedeswert@gmail.com>
This seems to be a pretty common sensor, for which several models seem to exist : _TZ3000_bjawzodf and _TZ3000_zl1kmjqx Fixes: zigpy#2862, zigpy#2851, zigpy#2701 Signed-off-by: Philippe De Swert <philippedeswert@gmail.com>
This seems to be a pretty common sensor, for which several models seem to exist : _TZ3000_bjawzodf and _TZ3000_zl1kmjqx Fixes: zigpy#2862, zigpy#2851, zigpy#2701 Signed-off-by: Philippe De Swert <philippedeswert@gmail.com>
This seems to be a pretty common sensor, for which several models seem to exist : _TZ3000_bjawzodf and _TZ3000_zl1kmjqx Fixes: zigpy#2862, zigpy#2851, zigpy#2701 Signed-off-by: Philippe De Swert <philippedeswert@gmail.com>
This seems to be a pretty common sensor, for which several models seem to exist : _TZ3000_bjawzodf and _TZ3000_zl1kmjqx Fixes: zigpy#2862, zigpy#2851, zigpy#2701 Signed-off-by: Philippe De Swert <philippedeswert@gmail.com>
OK, I actually got it to work? Kinda? The key for me was to have it exactly like this, like you said (but I misunderstood and kept adding "TY0201" to the second model information:
Also, I was wrong about the firmware thing I think. I needed to go to Zigbee Info and identify the I have five of these sensors. I thought I got them all running great but then discovered last night that only one of them is reporting. They are all reporting that they are using the quirk. |
Problem description
This device is recognized and temperature is working, but the device also supports humidity which is unfortunately not working, It is missing.
Solution description
Support for retrieving and displaying the humidity from this device
Screenshots/Video
Screenshots/Video
![TY0201](https://github.com/zigpy/zha-device-handlers/assets/46293765/c667220c-50bc-435b-942b-1a71682d701f)Device signature
Device signature
Diagnostic information
Diagnostic information
Logs
Logs
Custom quirk
Custom quirk
Additional information
The details of this device are:
Model RSH-HS06 manufactured by Tuya
Zigbee ID: TY0201 by _TZ3000_zl1kmjqx
The device seems (from physical aspect, description and the id code) as the fully supported device:
Model IH-K009 manufactured by Tuya
Zigbee ID: TS0201 | _TZ3000_dowj6gyi | _TZ3000_8ybe88nf
Maybe it is the newer version of this one and the solution for the humidity can be re-used
The text was updated successfully, but these errors were encountered: