TS0601 _TZE200_ga1maeof soil moisture sensor and ZHA

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 :slight_smile:
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

1 Like

Thank You very much! :grinning:

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
        ],