javicalle
javicalle
Can you try replacing this expression?: ```python lambda x: None if (value == 0xaaac or value == 0xaaab) else x, ```
I have made a mess trying to put everything in a single file. Could you try with the new version (from the previous comment)? Delete any `__pycache__` folder in your...
> formaldehyde dropped from 360ppm to 4ppm You can try to change in your quirk this part: ```python 20: DPToAttributeMapping( TuyaAirQualityFormaldehyde.ep_attribute, "measured_value", lambda x: x * 1e-3, ), ``` There's...
Apart from the temperature and humidity, the rest of the values I have no way of validating them. Values for CO2 may be in the correct range values. It seems...
Ummm, it seems that CO2 and VOC values are fine (VOC: 15µg/m3 ~ 0,012mg/m3) The measuring range of the device seems to be 0-10µg/m3 (possibly without decimals) HA assumes that...
Can you just try to update the `ac_current_divisor (id: 0x0603)` attribute from the `ElectricalMeasurement (Endpoint id: 1, Id: 0x0b04, Type: in)` cluster? This can be done from device info, manage...
If you want to try, this is my proposed quirk: ```python class Plug_TZ3000_2AC(CustomDevice): """TS0011F 2 outlet plug.""" signature = { MODEL: "TS011F", ENDPOINTS: { # 1: { PROFILE_ID: zha.PROFILE_ID, DEVICE_TYPE:...
Have you tried to get the attribute value for `num_zone_sensitivity_levels_supported`? Also, the attribute value for `current_zone_sensitivity_level` can give you a clue about the possible values (0-10, 0-100, 0-255,...)
I think that trhere is no way to ask to device for the proper values. Is a matter of trial and error. According to '[zigbee-herdsman-converters](https://github.com/Koenkk/zigbee-herdsman-converters/blob/a97649c1a6fb57eee5d90c3e8edbd848a619e246/converters/fromZigbee.js#L7395-L7402)' the posible values for the...
> What is the function of 'Manufacturer Code Override'? This allows to override the manufacturer code in the Zigbee message. That's needed for some devices (maybe also yours). > I'm...