Nerivec
Nerivec
Is it running on baremetal? I know some virtualization software will automatically generate a config file for z2m unless explicitly turned off. Any chance you have a backup/restore app/script that...
Can you make sure your external converters match the current typing? https://github.com/Koenkk/zigbee-herdsman-converters/blob/dedbf69866b1a7882109c8be4ecccb3120d5fdc5/src/lib/types.ts#L263-L296 More specifically, your devices supporting OTA should have the [ota](https://github.com/Koenkk/zigbee-herdsman-converters/blob/dedbf69866b1a7882109c8be4ecccb3120d5fdc5/src/lib/types.ts#L280) field set to `true` or to the appropriate...
> This is my current external converter. Not sure if this is a typo on copy/paste, but this is not valid JS. ```diff ota: true, - } ``` (The old...
If you keep getting the same error (`Device '${device.name}' does not support OTA updates`), it means the definition isn't found (converter not matching), or `ota` prop is undefined/falsy. Can you...
Set `log_level: debug` and grab the logs from the file directly (`debug` is not shown in frontend by default).
Sorry, should have been more precise. I need the logs from startup (to see if converter is properly loadded) and from pairing (to see detection).
Detection looks fine: ``` Device 'AFT01STH' is supported, identified as: TeXXXInstruments AFT Temperature Sensor with SHT35 and NTC (AFTSHT35X2) ``` However the state is a bit weird, I'm not seeing...
The errors come from: - missing `genBasic` `appVersion` attribute - missing `genBasic` `stackVersion` attribute - missing `genBasic` `dateCode` attribute - missing `genBasic` `swBuildId` attribute - failure to configure with INVALID_VALUE...
Did you have any more troubles, or is it okay to close this?
This will be enforced in https://github.com/Koenkk/zigbee-herdsman/pull/1503 https://github.com/Nerivec/zigbee-herdsman/blob/zap/src/zspec/zcl/definition/cluster.ts#L3131 I guess unless otherwise specified, ZHC should then follow the spec for min/max (if they exist).