From 71cab65df6f6c91674340a6464650c1327cb2c78 Mon Sep 17 00:00:00 2001 From: Thiago Oliveira Date: Mon, 26 Feb 2018 22:39:26 -0800 Subject: [PATCH] correct air index unit (#12730) AirVisual's air index unit is AQI (Air Quality Index), not PSI (Pressure per Square Inch). More details can be found at https://airvisual.com/ Cheers, --- homeassistant/components/sensor/airvisual.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/sensor/airvisual.py b/homeassistant/components/sensor/airvisual.py index d67415fc65e..b4007c8d744 100644 --- a/homeassistant/components/sensor/airvisual.py +++ b/homeassistant/components/sensor/airvisual.py @@ -210,7 +210,7 @@ class AirQualityIndexSensor(AirVisualBaseSensor): @property def unit_of_measurement(self): """Return the unit the value is expressed in.""" - return 'PSI' + return 'AQI' def update(self): """Update the status of the sensor."""