deconz-rest-plugin
deconz-rest-plugin copied to clipboard
DDF for SONOFF TRVZB Thermostat
As discussed in #7334. Thank you @Smanar!
- Product name : TRVZB
- Manufacturer : SONOFF
- Model identifier : TRVZB
@fox34 are you still here ?
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.
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
So ready for merging? :)
For me yes, have checked again ,all @SwoopX remark are resolved.
When merging?