Jacek Kończewski
Jacek Kończewski
Check and modify replacement element that I've wrote above. After changes in Python code you need to restart HomeAssistant, and best is to repair device.
After modify of .py file you need to restart HomeAssistant, and best is to remove folder __pycache__ from zha_custom_quirks folder That element steers the temperature of the valve in Auto...
- The battery state is not reporting Yes - your valve have battery state on different attribute tsn=35 instead of tsn=34. Also you have different level for the value given....
For the battery change to: ``` MOES_ALT_BATTERY_ATTR = 0x0223 ``` But the level will be probably over 100% Code for battery level is here: ``` if attrid == MOES_ALT_BATTERY_ATTR: self.endpoint.device.battery_bus.listener_event(...
Auto, Manual and Away modes are using same attribute 0x0402, only the value changes. You see that in your logs Auto -> Received value [0] for attribute 0x0402 (command 0x0002)...
ZHA is not Z2M. In Z2M each attribute/value you expose gets his entity and edit works just like that. In ZHA you need to write big amount of code to...
@MattWestb Ok, but tell me why I need Away mode Preset when I can't edit the Away details, like start date, how long it should work. Same for Schedule -...
_TZE200_fhn3negr and _TZE200_i48qyn9s are exact clones of mine _TZE200_qc4fpmcn _TZE200_chyvmhay is 90% compatible with mine _TZE200_qc4fpmcn Differences are in the attributes of: - battery level - child lock - cluster...
I've checked https://github.com/Koenkk/zigbee-herdsman-converters/blob/master/lib/tuya.js None of Moes settings are 100% proper for mine or Silvercrest valve. Some DP's are OK, but most are wrong. For example: moesHeatingSetpoint: 16, It's OK, but...
@Youpimatin if you wanna to move this forward please enable debug logging in configuration.yaml ``` logger: default: info logs: homeassistant.components.zha: debug zigpy: debug zhaquirks: debug ``` and the resend pairing...