Latest Domoticz bettas (e.g. 3.8968) return AirQuality States as
"Excellent","Good","Fair","Mediocre","Bad"
in domoticz_accessory.js first 3 are correctly mapped to "Excellent","Good","Fair",
but not last 2, they both are mapped as default to "Fair"
can you, please, add this 2 states:
case "Mediocre":
{
value = Characteristic.AirQuality.INFERIOR;
break;
}
case "Bad":
{
value = Characteristic.AirQuality.POOR;
break;
}
Hi,
Latest Domoticz bettas (e.g. 3.8968) return AirQuality States as "Excellent","Good","Fair","Mediocre","Bad" in domoticz_accessory.js first 3 are correctly mapped to "Excellent","Good","Fair", but not last 2, they both are mapped as default to "Fair"
can you, please, add this 2 states: