TS0601 by_TZE284_8se38w3c not showing sensor data

Hi, I got two of these temperature sensors with external probe for monitoring my fridge and freezer.

They are Tuya Zigbees and pair nicely with my ZHA controller, however, no sensor data is shown - just one firmware entity.

Device info says TS0601 by_TZE284_8se38w3c

It seems that these are quite new. Converters were published in Github in Dec-25. As I’m fresh on HA I wonder if anyone has found a way to get their sensor data to work with HA using ZHA? Does one have to become a quirk hacker, or is there an easier way?

1 Like

Quirks ZHA Device Handlers & How-to & Older How-to

I have filed a device support request since my temperature sensor does not exist amongst the ZHA device handlers, see below.

https://github.com/zigpy/zha-device-handlers/issues/4753

However, the device exists in the .ts converter for Zigbee2MQTT. I’m totally new to to this. If someone wants to have fun and make a new quirk out of the below, it would would be great!


{
    fingerprint: [{modelID: "TS0601", manufacturerName: "_TZE284_8se38w3c"}],
    model: "TZ-ZT01_GA4",
    vendor: "Tuya",
    description: "Temperature & humidity Sensor with external probe",
    extend: [tuya.modernExtend.tuyaBase({dp: true})],
    exposes: [
        e.temperature(),
        e.numeric("temperature_probe", ea.STATE).withUnit("°C").withDescription("Probe temperature"),
        e.humidity(),
        tuya.exposes.batteryState(),
    ],
    meta: {
        tuyaDatapoints: [
            [1, "temperature", tuya.valueConverter.divideBy10],
            [2, "humidity", tuya.valueConverter.raw],
            [3, "battery_state", tuya.valueConverter.batteryState],
            [38, "temperature_probe", tuya.valueConverter.divideBy10],
        ],
    },
},

I just received the exact same device, shame on me for assuming that because there’s so many Tuya devices out there that they would work easily.

Did you ever get this working? Did you manage to write a quirk for it? I liked your issue in github but there’s another issue with a potential solution already - have you tried it?

The other github issue with quirk has helped, I’m only getting the probe data but there’s two temperature readings and I’m only seeing one.