2 (DeviceClass.TEMPERATURE, Units.TEMP_CELSIUS): SensorEntityDescription(
3 key=f
"{DeviceClass.TEMPERATURE}_{Units.TEMP_CELSIUS}",
4 device_class=SensorDeviceClass.TEMPERATURE,
5 native_unit_of_measurement=UnitOfTemperature.CELSIUS,
6 state_class=SensorStateClass.MEASUREMENT,
8 (DeviceClass.HUMIDITY, Units.PERCENTAGE): SensorEntityDescription(
9 key=f
"{DeviceClass.HUMIDITY}_{Units.PERCENTAGE}",
10 device_class=SensorDeviceClass.HUMIDITY,
11 native_unit_of_measurement=PERCENTAGE,
12 state_class=SensorStateClass.MEASUREMENT,
14 (DeviceClass.PRESSURE, Units.PRESSURE_MBAR): SensorEntityDescription(
15 key=f
"{DeviceClass.PRESSURE}_{Units.PRESSURE_MBAR}",
16 device_class=SensorDeviceClass.PRESSURE,
17 native_unit_of_measurement=UnitOfPressure.MBAR,
18 state_class=SensorStateClass.MEASUREMENT,
21 DeviceClass.SIGNAL_STRENGTH,
22 Units.SIGNAL_STRENGTH_DECIBELS_MILLIWATT,
23 ): SensorEntityDescription(
24 key=f
"{DeviceClass.SIGNAL_STRENGTH}_{Units.SIGNAL_STRENGTH_DECIBELS_MILLIWATT}",
25 device_class=SensorDeviceClass.SIGNAL_STRENGTH,
26 native_unit_of_measurement=SIGNAL_STRENGTH_DECIBELS_MILLIWATT,
27 state_class=SensorStateClass.MEASUREMENT,
28 entity_registry_enabled_default=
False,