deconz-rest-plugin icon indicating copy to clipboard operation
deconz-rest-plugin copied to clipboard

DDF for SONOFF TRVZB Thermostat

Open fox34 opened this issue 2 years ago • 5 comments

As discussed in #7334. Thank you @Smanar!

  • Product name : TRVZB
  • Manufacturer : SONOFF
  • Model identifier : TRVZB

fox34 avatar Nov 15 '23 16:11 fox34

@fox34 are you still here ?

Smanar avatar Jan 10 '24 16:01 Smanar

I made the requested changes, however:

Please investigate which modes are supported by the device.

How would I do this? The device can be toggled between automatic and manual operation (and turned off, obviously). Automatic mode can (only?) be configured in the "official" SONOFF app, which I cannot use because I do not own the SONOFF gateway.

fox34 avatar Jan 10 '24 20:01 fox34

How would I do this? The device can be toggled between automatic and manual operation (and turned off, obviously). Automatic mode can (only?) be configured in the "official" SONOFF app, which I cannot use because I do not own the SONOFF gateway.

Yes, it's fine, just check wich one mode you can use on it. From Z2M they are using same

.withSystemMode(['off', 'auto', 'heat'], ea.ALL, 'Mode of the thermostat')

And they have too problem with the "auto" mode, it seem this device don't use zigbee classic request, and use instead a personnal one > https://github.com/Koenkk/zigbee-herdsman-converters/pull/6443

And BTW, they have too found some others request on the special cluster, for exemple can try


                {
                    "name": "config/locked",
                    "read": {
                        "at": "0x0000",
                        "cl": "0xFC11",
                        "ep": 1,
                        "fn": "zcl:attr"
                    },
                    "write": {
                        "at": "0x0000",
                        "cl": "0xFC11",
                        "dt": "0x30",
                        "ep": 1,
                        "eval": "Item.val ? 1 : 0;",
                        "fn": "zcl:attr"
                    },
                    "parse": {
                        "at": "0x0000",
                        "cl": "0xFC11",
                        "ep": 1,
                        "eval": "Item.val = Attr.val",
                        "fn": "zcl:attr"
                    },
                    "default": false,
                    "refresh.interval": 84000
                },

for the lock/unlock

Smanar avatar Jan 11 '24 16:01 Smanar

So ready for merging? :)

manup avatar Feb 05 '24 01:02 manup

For me yes, have checked again ,all @SwoopX remark are resolved.

Smanar avatar Feb 05 '24 16:02 Smanar

When merging?

coives avatar Mar 14 '24 10:03 coives