Hi to all,
someone bought soil moisture sensor Model QT-07S?
ZHA recognized it as “TS0601 _TZE200_ga1maeof”.
After pairing using ZHA, no sensors were showned.
Thanks
Hi to all,
someone bought soil moisture sensor Model QT-07S?
ZHA recognized it as “TS0601 _TZE200_ga1maeof”.
After pairing using ZHA, no sensors were showned.
Thanks
I have same device and i’ve managed to have all the sensor worlking
what you have to do is to copy the file:
and replace the line:
class TuyaSoilSensor(CustomDevice):
"""Tuya temp and humidity sensor (variation 03)."""
signature = {
# "profile_id": 260,
# "device_type": "0x0051",
# "in_clusters": ["0x0000","0x0004","0x0005","0xef00"],
# "out_clusters": ["0x000a","0x0019"]
MODELS_INFO: [("_TZE200_myd45weu", "TS0601")], <----- here add "_TZE200_ga1maeof" instead of "_TZE200_myd45weu"
then save file in HA folder (how to add custom quirks): How to setup local ZHA quirks
Thank You very much!
Hello there. I’ve just bought one of these too, except I also have the earlier one (the _TZE200_myd45weu ) which is working. How do I add the newer one, but retain the existing, please.
In fact, I can’t even see the file you’ve mentioned, which means I’m failing very quickly.
Thank you
simple just follow this example:
MODELS_INFO: [
("_TZE200_bjawzodf", "TS0601"), <----- existing
("_TZE200_zl1kmjqx", "TS0601"), <----- add new
],
Hello, I’ve just purchased one QT-07S sensor. My ZHA detect it as TS0601
by _TZE204_myd45weu. I’ve created the quirk file (and related HA config) without change the type as explained because recognized as myd45weu and not ga1maeof but I’m still not able to get the information.
HA Logs report :
Logger: zhaquirks
Source: /usr/local/lib/python3.12/site-packages/zhaquirks/init.py:465
First occurred: 9:06:27 AM (1 occurrences)
Last logged: 9:06:27 AM
Loaded custom quirks. Please contribute them to GitHub - zigpy/zha-device-handlers: ZHA device handlers bridge the functionality gap created when manufacturers deviate from the ZCL specification, handling deviations and exceptions by parsing custom messages to and from Zigbee devices.
Where I did mistake? Any suggestion?
Thanks in advance.
Same issue here but with a slightly different error:
Logger: homeassistant.setup
Source: setup.py:269
First occurred: 21:46:01 (1 occurrences)
Last logged: 21:46:01
Setup failed for 'zha': Invalid config.
and
Logger: homeassistant.config
Source: config.py:1327
First occurred: 21:46:01 (1 occurrences)
Last logged: 21:46:01
Invalid config for 'zha' at configuration.yaml, line 119: not a directory for dictionary value 'zha->custom_quirks_path', got '/config/custom_zha_quirks/', please check the docs at https://www.home-assistant.io/integrations/zha
Did you manage to make it work?
Hi, I have exactly copied the file to directorsy mentioned (on a Synology NAS running Home Assistant Core) and did as you descirbed to setup local quirks.
In HA I’m using the Tuya-Integration, have a lot of devices already running.
Nevertheless, the soil sensor does still not show any entities. I have no deep knowledge in all this home assistant programming, so I would be very happy to get an step-by-step introduction to make it work.
Here is a section of the diagnostic-data I downloaded for this device within the Tuya-integration:
.....
},
"data": {
"endpoint": "https://openapi.tuyaeu.com",
"auth_type": 0,
"country_code": "41",
"app_type": "smartlife",
"mqtt_connected": true,
"disabled_by": null,
"disabled_polling": false,
"name": "Soil sensor 6",
"model": "QT-07S-Zigbee",
"category": "zwjcy",
"product_id": "myd45weu",
"product_name": "Soil sensor",
"online": true,
"sub": true,
"time_zone": "+01:00",
"active_time": "2024-06-26T09:25:21+00:00",
"create_time": "2024-06-26T09:25:21+00:00",
"update_time": "2024-06-26T09:25:21+00:00",
"function": {
"temp_unit_convert": {
"type": "Enum",
"value": {
"range": [
"c",
"f"
]
}
}
},
"status_range": {
"humidity": {
"type": "Integer",
"value": {
"unit": "%",
"min": 0,
"max": 100,
"scale": 0,
"step": 1
}
.....
Can you help?
Thank you
Andreas
Hi, I am getting back to the issues mentioned above. I have also bought _TZE204_myd45weu - it looks like _TZE200_myd45weu but all the zha quirks I found for the latter one do not work for the model I have.
Can anyone help with adapting the quirk to work with TZE204? Changing the models info is not enough - temperature is shown, but humidity stays at 0 all the time.