Fix Airthings BLE illuminance sensor name (#113560)

This commit is contained in:
Joost Lekkerkerker 2024-03-15 23:48:47 +01:00 committed by GitHub
parent 2b04975332
commit 53a76fc792
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 0 deletions

View File

@ -108,6 +108,7 @@ SENSORS_MAPPING_TEMPLATE: dict[str, SensorEntityDescription] = {
), ),
"illuminance": SensorEntityDescription( "illuminance": SensorEntityDescription(
key="illuminance", key="illuminance",
translation_key="illuminance",
native_unit_of_measurement=PERCENTAGE, native_unit_of_measurement=PERCENTAGE,
state_class=SensorStateClass.MEASUREMENT, state_class=SensorStateClass.MEASUREMENT,
), ),

View File

@ -33,6 +33,9 @@
}, },
"radon_longterm_level": { "radon_longterm_level": {
"name": "Radon longterm level" "name": "Radon longterm level"
},
"illuminance": {
"name": "[%key:component::sensor::entity_component::illuminance::name%]"
} }
} }
} }