-
Notifications
You must be signed in to change notification settings - Fork 721
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 temp/humidity sensor _TZE204_s139roas
variant
#3503
Add Tuya temp/humidity sensor _TZE204_s139roas
variant
#3503
Conversation
variant has e-ink screen and cr2430 battery. seems to work like the variant without screen. tested by copying to zha.custom_quirks_path closes zigpy#3402 ```python """Tuya temp and humidity sensors.""" from zhaquirks.tuya.builder import TuyaQuirkBuilder ( TuyaQuirkBuilder("_TZE204_s139roas", "TS0601") .tuya_temperature(dp_id=1, scale=10) .tuya_humidity(dp_id=2) .tuya_battery(dp_id=4) .skip_configuration() .add_to_registry() ) ```
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## dev #3503 +/- ##
=======================================
Coverage 89.44% 89.44%
=======================================
Files 311 311
Lines 10033 10033
=======================================
Hits 8974 8974
Misses 1059 1059 ☔ View full report in Codecov by Sentry. 🚨 Try these New Features:
|
_TZE204_s139roas
variant
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.
Thanks!
Hello guys, is recently buyed the e-ink temerature and humidity zigbee sensor i tried to you ur quirks but i always got this error 2024-12-04 19:27:23.408 INFO (MainThread) [zigpy.device] [0x6633] Read model 'TS0601' and manufacturer '_TZE204_s139roas' from <Endpoint id=1 in=[basic:0x0000, groups:0x0004, scenes:0x0005, None:0xEF00] out=[ota:0x0019, time:0x000A] status=<Status.ZDO_INIT: 1>> Do you have some tips ? |
variant has e-ink screen and cr2430 battery. seems to work like the variant without screen. tested by copying to zha.custom_quirks_path
closes #3402
Proposed change
Additional information
Checklist
pre-commit
checks pass / the code has been formatted using Black