Use enums in toon (#62021)
This commit is contained in:
parent
11fde22d45
commit
087724d2f2
2 changed files with 41 additions and 47 deletions
homeassistant/components/toon
|
@ -4,8 +4,7 @@ from __future__ import annotations
|
||||||
from dataclasses import dataclass
|
from dataclasses import dataclass
|
||||||
|
|
||||||
from homeassistant.components.binary_sensor import (
|
from homeassistant.components.binary_sensor import (
|
||||||
DEVICE_CLASS_CONNECTIVITY,
|
BinarySensorDeviceClass,
|
||||||
DEVICE_CLASS_PROBLEM,
|
|
||||||
BinarySensorEntity,
|
BinarySensorEntity,
|
||||||
BinarySensorEntityDescription,
|
BinarySensorEntityDescription,
|
||||||
)
|
)
|
||||||
|
@ -113,7 +112,7 @@ BINARY_SENSOR_ENTITIES = (
|
||||||
name="Boiler Module Connection",
|
name="Boiler Module Connection",
|
||||||
section="thermostat",
|
section="thermostat",
|
||||||
measurement="boiler_module_connected",
|
measurement="boiler_module_connected",
|
||||||
device_class=DEVICE_CLASS_CONNECTIVITY,
|
device_class=BinarySensorDeviceClass.CONNECTIVITY,
|
||||||
entity_registry_enabled_default=False,
|
entity_registry_enabled_default=False,
|
||||||
cls=ToonBoilerModuleBinarySensor,
|
cls=ToonBoilerModuleBinarySensor,
|
||||||
),
|
),
|
||||||
|
@ -167,7 +166,7 @@ BINARY_SENSOR_ENTITIES_BOILER: tuple[ToonBinarySensorEntityDescription, ...] = (
|
||||||
name="Boiler Status",
|
name="Boiler Status",
|
||||||
section="thermostat",
|
section="thermostat",
|
||||||
measurement="error_found",
|
measurement="error_found",
|
||||||
device_class=DEVICE_CLASS_PROBLEM,
|
device_class=BinarySensorDeviceClass.PROBLEM,
|
||||||
icon="mdi:alert",
|
icon="mdi:alert",
|
||||||
cls=ToonBoilerBinarySensor,
|
cls=ToonBoilerBinarySensor,
|
||||||
),
|
),
|
||||||
|
@ -176,7 +175,7 @@ BINARY_SENSOR_ENTITIES_BOILER: tuple[ToonBinarySensorEntityDescription, ...] = (
|
||||||
name="OpenTherm Connection",
|
name="OpenTherm Connection",
|
||||||
section="thermostat",
|
section="thermostat",
|
||||||
measurement="opentherm_communication_error",
|
measurement="opentherm_communication_error",
|
||||||
device_class=DEVICE_CLASS_PROBLEM,
|
device_class=BinarySensorDeviceClass.PROBLEM,
|
||||||
icon="mdi:check-network-outline",
|
icon="mdi:check-network-outline",
|
||||||
entity_registry_enabled_default=False,
|
entity_registry_enabled_default=False,
|
||||||
cls=ToonBoilerBinarySensor,
|
cls=ToonBoilerBinarySensor,
|
||||||
|
|
|
@ -4,18 +4,13 @@ from __future__ import annotations
|
||||||
from dataclasses import dataclass
|
from dataclasses import dataclass
|
||||||
|
|
||||||
from homeassistant.components.sensor import (
|
from homeassistant.components.sensor import (
|
||||||
STATE_CLASS_MEASUREMENT,
|
SensorDeviceClass,
|
||||||
STATE_CLASS_TOTAL_INCREASING,
|
|
||||||
SensorEntity,
|
SensorEntity,
|
||||||
SensorEntityDescription,
|
SensorEntityDescription,
|
||||||
|
SensorStateClass,
|
||||||
)
|
)
|
||||||
from homeassistant.config_entries import ConfigEntry
|
from homeassistant.config_entries import ConfigEntry
|
||||||
from homeassistant.const import (
|
from homeassistant.const import (
|
||||||
DEVICE_CLASS_ENERGY,
|
|
||||||
DEVICE_CLASS_GAS,
|
|
||||||
DEVICE_CLASS_HUMIDITY,
|
|
||||||
DEVICE_CLASS_POWER,
|
|
||||||
DEVICE_CLASS_TEMPERATURE,
|
|
||||||
ENERGY_KILO_WATT_HOUR,
|
ENERGY_KILO_WATT_HOUR,
|
||||||
PERCENTAGE,
|
PERCENTAGE,
|
||||||
POWER_WATT,
|
POWER_WATT,
|
||||||
|
@ -137,9 +132,9 @@ SENSOR_ENTITIES: tuple[ToonSensorEntityDescription, ...] = (
|
||||||
section="thermostat",
|
section="thermostat",
|
||||||
measurement="current_display_temperature",
|
measurement="current_display_temperature",
|
||||||
native_unit_of_measurement=TEMP_CELSIUS,
|
native_unit_of_measurement=TEMP_CELSIUS,
|
||||||
device_class=DEVICE_CLASS_TEMPERATURE,
|
device_class=SensorDeviceClass.TEMPERATURE,
|
||||||
entity_registry_enabled_default=False,
|
entity_registry_enabled_default=False,
|
||||||
state_class=STATE_CLASS_MEASUREMENT,
|
state_class=SensorStateClass.MEASUREMENT,
|
||||||
cls=ToonDisplayDeviceSensor,
|
cls=ToonDisplayDeviceSensor,
|
||||||
),
|
),
|
||||||
ToonSensorEntityDescription(
|
ToonSensorEntityDescription(
|
||||||
|
@ -148,9 +143,9 @@ SENSOR_ENTITIES: tuple[ToonSensorEntityDescription, ...] = (
|
||||||
section="thermostat",
|
section="thermostat",
|
||||||
measurement="current_humidity",
|
measurement="current_humidity",
|
||||||
native_unit_of_measurement=PERCENTAGE,
|
native_unit_of_measurement=PERCENTAGE,
|
||||||
device_class=DEVICE_CLASS_HUMIDITY,
|
device_class=SensorDeviceClass.HUMIDITY,
|
||||||
entity_registry_enabled_default=False,
|
entity_registry_enabled_default=False,
|
||||||
state_class=STATE_CLASS_MEASUREMENT,
|
state_class=SensorStateClass.MEASUREMENT,
|
||||||
cls=ToonDisplayDeviceSensor,
|
cls=ToonDisplayDeviceSensor,
|
||||||
),
|
),
|
||||||
ToonSensorEntityDescription(
|
ToonSensorEntityDescription(
|
||||||
|
@ -167,7 +162,7 @@ SENSOR_ENTITIES: tuple[ToonSensorEntityDescription, ...] = (
|
||||||
name="Average Daily Gas Usage",
|
name="Average Daily Gas Usage",
|
||||||
section="gas_usage",
|
section="gas_usage",
|
||||||
measurement="day_average",
|
measurement="day_average",
|
||||||
device_class=DEVICE_CLASS_GAS,
|
device_class=SensorDeviceClass.GAS,
|
||||||
native_unit_of_measurement=VOLUME_CUBIC_METERS,
|
native_unit_of_measurement=VOLUME_CUBIC_METERS,
|
||||||
entity_registry_enabled_default=False,
|
entity_registry_enabled_default=False,
|
||||||
cls=ToonGasMeterDeviceSensor,
|
cls=ToonGasMeterDeviceSensor,
|
||||||
|
@ -177,7 +172,7 @@ SENSOR_ENTITIES: tuple[ToonSensorEntityDescription, ...] = (
|
||||||
name="Gas Usage Today",
|
name="Gas Usage Today",
|
||||||
section="gas_usage",
|
section="gas_usage",
|
||||||
measurement="day_usage",
|
measurement="day_usage",
|
||||||
device_class=DEVICE_CLASS_GAS,
|
device_class=SensorDeviceClass.GAS,
|
||||||
native_unit_of_measurement=VOLUME_CUBIC_METERS,
|
native_unit_of_measurement=VOLUME_CUBIC_METERS,
|
||||||
cls=ToonGasMeterDeviceSensor,
|
cls=ToonGasMeterDeviceSensor,
|
||||||
),
|
),
|
||||||
|
@ -196,8 +191,8 @@ SENSOR_ENTITIES: tuple[ToonSensorEntityDescription, ...] = (
|
||||||
section="gas_usage",
|
section="gas_usage",
|
||||||
measurement="meter",
|
measurement="meter",
|
||||||
native_unit_of_measurement=VOLUME_CUBIC_METERS,
|
native_unit_of_measurement=VOLUME_CUBIC_METERS,
|
||||||
state_class=STATE_CLASS_TOTAL_INCREASING,
|
state_class=SensorStateClass.TOTAL_INCREASING,
|
||||||
device_class=DEVICE_CLASS_GAS,
|
device_class=SensorDeviceClass.GAS,
|
||||||
cls=ToonGasMeterDeviceSensor,
|
cls=ToonGasMeterDeviceSensor,
|
||||||
),
|
),
|
||||||
ToonSensorEntityDescription(
|
ToonSensorEntityDescription(
|
||||||
|
@ -215,7 +210,7 @@ SENSOR_ENTITIES: tuple[ToonSensorEntityDescription, ...] = (
|
||||||
section="power_usage",
|
section="power_usage",
|
||||||
measurement="average",
|
measurement="average",
|
||||||
native_unit_of_measurement=POWER_WATT,
|
native_unit_of_measurement=POWER_WATT,
|
||||||
device_class=DEVICE_CLASS_POWER,
|
device_class=SensorDeviceClass.POWER,
|
||||||
entity_registry_enabled_default=False,
|
entity_registry_enabled_default=False,
|
||||||
cls=ToonElectricityMeterDeviceSensor,
|
cls=ToonElectricityMeterDeviceSensor,
|
||||||
),
|
),
|
||||||
|
@ -225,7 +220,7 @@ SENSOR_ENTITIES: tuple[ToonSensorEntityDescription, ...] = (
|
||||||
section="power_usage",
|
section="power_usage",
|
||||||
measurement="day_average",
|
measurement="day_average",
|
||||||
native_unit_of_measurement=ENERGY_KILO_WATT_HOUR,
|
native_unit_of_measurement=ENERGY_KILO_WATT_HOUR,
|
||||||
device_class=DEVICE_CLASS_ENERGY,
|
device_class=SensorDeviceClass.ENERGY,
|
||||||
entity_registry_enabled_default=False,
|
entity_registry_enabled_default=False,
|
||||||
cls=ToonElectricityMeterDeviceSensor,
|
cls=ToonElectricityMeterDeviceSensor,
|
||||||
),
|
),
|
||||||
|
@ -244,7 +239,7 @@ SENSOR_ENTITIES: tuple[ToonSensorEntityDescription, ...] = (
|
||||||
section="power_usage",
|
section="power_usage",
|
||||||
measurement="day_usage",
|
measurement="day_usage",
|
||||||
native_unit_of_measurement=ENERGY_KILO_WATT_HOUR,
|
native_unit_of_measurement=ENERGY_KILO_WATT_HOUR,
|
||||||
device_class=DEVICE_CLASS_ENERGY,
|
device_class=SensorDeviceClass.ENERGY,
|
||||||
cls=ToonElectricityMeterDeviceSensor,
|
cls=ToonElectricityMeterDeviceSensor,
|
||||||
),
|
),
|
||||||
ToonSensorEntityDescription(
|
ToonSensorEntityDescription(
|
||||||
|
@ -253,8 +248,8 @@ SENSOR_ENTITIES: tuple[ToonSensorEntityDescription, ...] = (
|
||||||
section="power_usage",
|
section="power_usage",
|
||||||
measurement="meter_high",
|
measurement="meter_high",
|
||||||
native_unit_of_measurement=ENERGY_KILO_WATT_HOUR,
|
native_unit_of_measurement=ENERGY_KILO_WATT_HOUR,
|
||||||
device_class=DEVICE_CLASS_ENERGY,
|
device_class=SensorDeviceClass.ENERGY,
|
||||||
state_class=STATE_CLASS_TOTAL_INCREASING,
|
state_class=SensorStateClass.TOTAL_INCREASING,
|
||||||
cls=ToonElectricityMeterDeviceSensor,
|
cls=ToonElectricityMeterDeviceSensor,
|
||||||
),
|
),
|
||||||
ToonSensorEntityDescription(
|
ToonSensorEntityDescription(
|
||||||
|
@ -263,8 +258,8 @@ SENSOR_ENTITIES: tuple[ToonSensorEntityDescription, ...] = (
|
||||||
section="power_usage",
|
section="power_usage",
|
||||||
measurement="meter_low",
|
measurement="meter_low",
|
||||||
native_unit_of_measurement=ENERGY_KILO_WATT_HOUR,
|
native_unit_of_measurement=ENERGY_KILO_WATT_HOUR,
|
||||||
device_class=DEVICE_CLASS_ENERGY,
|
device_class=SensorDeviceClass.ENERGY,
|
||||||
state_class=STATE_CLASS_TOTAL_INCREASING,
|
state_class=SensorStateClass.TOTAL_INCREASING,
|
||||||
cls=ToonElectricityMeterDeviceSensor,
|
cls=ToonElectricityMeterDeviceSensor,
|
||||||
),
|
),
|
||||||
ToonSensorEntityDescription(
|
ToonSensorEntityDescription(
|
||||||
|
@ -273,8 +268,8 @@ SENSOR_ENTITIES: tuple[ToonSensorEntityDescription, ...] = (
|
||||||
section="power_usage",
|
section="power_usage",
|
||||||
measurement="current",
|
measurement="current",
|
||||||
native_unit_of_measurement=POWER_WATT,
|
native_unit_of_measurement=POWER_WATT,
|
||||||
device_class=DEVICE_CLASS_POWER,
|
device_class=SensorDeviceClass.POWER,
|
||||||
state_class=STATE_CLASS_MEASUREMENT,
|
state_class=SensorStateClass.MEASUREMENT,
|
||||||
cls=ToonElectricityMeterDeviceSensor,
|
cls=ToonElectricityMeterDeviceSensor,
|
||||||
),
|
),
|
||||||
ToonSensorEntityDescription(
|
ToonSensorEntityDescription(
|
||||||
|
@ -283,8 +278,8 @@ SENSOR_ENTITIES: tuple[ToonSensorEntityDescription, ...] = (
|
||||||
section="power_usage",
|
section="power_usage",
|
||||||
measurement="meter_produced_high",
|
measurement="meter_produced_high",
|
||||||
native_unit_of_measurement=ENERGY_KILO_WATT_HOUR,
|
native_unit_of_measurement=ENERGY_KILO_WATT_HOUR,
|
||||||
device_class=DEVICE_CLASS_ENERGY,
|
device_class=SensorDeviceClass.ENERGY,
|
||||||
state_class=STATE_CLASS_TOTAL_INCREASING,
|
state_class=SensorStateClass.TOTAL_INCREASING,
|
||||||
cls=ToonElectricityMeterDeviceSensor,
|
cls=ToonElectricityMeterDeviceSensor,
|
||||||
),
|
),
|
||||||
ToonSensorEntityDescription(
|
ToonSensorEntityDescription(
|
||||||
|
@ -293,8 +288,8 @@ SENSOR_ENTITIES: tuple[ToonSensorEntityDescription, ...] = (
|
||||||
section="power_usage",
|
section="power_usage",
|
||||||
measurement="meter_produced_low",
|
measurement="meter_produced_low",
|
||||||
native_unit_of_measurement=ENERGY_KILO_WATT_HOUR,
|
native_unit_of_measurement=ENERGY_KILO_WATT_HOUR,
|
||||||
device_class=DEVICE_CLASS_ENERGY,
|
device_class=SensorDeviceClass.ENERGY,
|
||||||
state_class=STATE_CLASS_TOTAL_INCREASING,
|
state_class=SensorStateClass.TOTAL_INCREASING,
|
||||||
cls=ToonElectricityMeterDeviceSensor,
|
cls=ToonElectricityMeterDeviceSensor,
|
||||||
),
|
),
|
||||||
ToonSensorEntityDescription(
|
ToonSensorEntityDescription(
|
||||||
|
@ -335,7 +330,7 @@ SENSOR_ENTITIES: tuple[ToonSensorEntityDescription, ...] = (
|
||||||
native_unit_of_measurement=VOLUME_CUBIC_METERS,
|
native_unit_of_measurement=VOLUME_CUBIC_METERS,
|
||||||
icon="mdi:water",
|
icon="mdi:water",
|
||||||
entity_registry_enabled_default=False,
|
entity_registry_enabled_default=False,
|
||||||
state_class=STATE_CLASS_TOTAL_INCREASING,
|
state_class=SensorStateClass.TOTAL_INCREASING,
|
||||||
cls=ToonWaterMeterDeviceSensor,
|
cls=ToonWaterMeterDeviceSensor,
|
||||||
),
|
),
|
||||||
ToonSensorEntityDescription(
|
ToonSensorEntityDescription(
|
||||||
|
@ -346,7 +341,7 @@ SENSOR_ENTITIES: tuple[ToonSensorEntityDescription, ...] = (
|
||||||
native_unit_of_measurement=VOLUME_LMIN,
|
native_unit_of_measurement=VOLUME_LMIN,
|
||||||
icon="mdi:water-pump",
|
icon="mdi:water-pump",
|
||||||
entity_registry_enabled_default=False,
|
entity_registry_enabled_default=False,
|
||||||
state_class=STATE_CLASS_MEASUREMENT,
|
state_class=SensorStateClass.MEASUREMENT,
|
||||||
cls=ToonWaterMeterDeviceSensor,
|
cls=ToonWaterMeterDeviceSensor,
|
||||||
),
|
),
|
||||||
ToonSensorEntityDescription(
|
ToonSensorEntityDescription(
|
||||||
|
@ -368,8 +363,8 @@ SENSOR_ENTITIES_SOLAR: tuple[ToonSensorEntityDescription, ...] = (
|
||||||
section="power_usage",
|
section="power_usage",
|
||||||
measurement="current_solar",
|
measurement="current_solar",
|
||||||
native_unit_of_measurement=POWER_WATT,
|
native_unit_of_measurement=POWER_WATT,
|
||||||
device_class=DEVICE_CLASS_POWER,
|
device_class=SensorDeviceClass.POWER,
|
||||||
state_class=STATE_CLASS_MEASUREMENT,
|
state_class=SensorStateClass.MEASUREMENT,
|
||||||
cls=ToonSolarDeviceSensor,
|
cls=ToonSolarDeviceSensor,
|
||||||
),
|
),
|
||||||
ToonSensorEntityDescription(
|
ToonSensorEntityDescription(
|
||||||
|
@ -378,7 +373,7 @@ SENSOR_ENTITIES_SOLAR: tuple[ToonSensorEntityDescription, ...] = (
|
||||||
section="power_usage",
|
section="power_usage",
|
||||||
measurement="day_max_solar",
|
measurement="day_max_solar",
|
||||||
native_unit_of_measurement=POWER_WATT,
|
native_unit_of_measurement=POWER_WATT,
|
||||||
device_class=DEVICE_CLASS_POWER,
|
device_class=SensorDeviceClass.POWER,
|
||||||
cls=ToonSolarDeviceSensor,
|
cls=ToonSolarDeviceSensor,
|
||||||
),
|
),
|
||||||
ToonSensorEntityDescription(
|
ToonSensorEntityDescription(
|
||||||
|
@ -387,8 +382,8 @@ SENSOR_ENTITIES_SOLAR: tuple[ToonSensorEntityDescription, ...] = (
|
||||||
section="power_usage",
|
section="power_usage",
|
||||||
measurement="current_produced",
|
measurement="current_produced",
|
||||||
native_unit_of_measurement=POWER_WATT,
|
native_unit_of_measurement=POWER_WATT,
|
||||||
device_class=DEVICE_CLASS_POWER,
|
device_class=SensorDeviceClass.POWER,
|
||||||
state_class=STATE_CLASS_MEASUREMENT,
|
state_class=SensorStateClass.MEASUREMENT,
|
||||||
cls=ToonSolarDeviceSensor,
|
cls=ToonSolarDeviceSensor,
|
||||||
),
|
),
|
||||||
ToonSensorEntityDescription(
|
ToonSensorEntityDescription(
|
||||||
|
@ -397,8 +392,8 @@ SENSOR_ENTITIES_SOLAR: tuple[ToonSensorEntityDescription, ...] = (
|
||||||
section="power_usage",
|
section="power_usage",
|
||||||
measurement="day_produced_solar",
|
measurement="day_produced_solar",
|
||||||
native_unit_of_measurement=ENERGY_KILO_WATT_HOUR,
|
native_unit_of_measurement=ENERGY_KILO_WATT_HOUR,
|
||||||
device_class=DEVICE_CLASS_ENERGY,
|
device_class=SensorDeviceClass.ENERGY,
|
||||||
state_class=STATE_CLASS_TOTAL_INCREASING,
|
state_class=SensorStateClass.TOTAL_INCREASING,
|
||||||
cls=ToonSolarDeviceSensor,
|
cls=ToonSolarDeviceSensor,
|
||||||
),
|
),
|
||||||
ToonSensorEntityDescription(
|
ToonSensorEntityDescription(
|
||||||
|
@ -407,7 +402,7 @@ SENSOR_ENTITIES_SOLAR: tuple[ToonSensorEntityDescription, ...] = (
|
||||||
section="power_usage",
|
section="power_usage",
|
||||||
measurement="day_to_grid_usage",
|
measurement="day_to_grid_usage",
|
||||||
native_unit_of_measurement=ENERGY_KILO_WATT_HOUR,
|
native_unit_of_measurement=ENERGY_KILO_WATT_HOUR,
|
||||||
device_class=DEVICE_CLASS_ENERGY,
|
device_class=SensorDeviceClass.ENERGY,
|
||||||
entity_registry_enabled_default=False,
|
entity_registry_enabled_default=False,
|
||||||
cls=ToonSolarDeviceSensor,
|
cls=ToonSolarDeviceSensor,
|
||||||
),
|
),
|
||||||
|
@ -417,7 +412,7 @@ SENSOR_ENTITIES_SOLAR: tuple[ToonSensorEntityDescription, ...] = (
|
||||||
section="power_usage",
|
section="power_usage",
|
||||||
measurement="day_from_grid_usage",
|
measurement="day_from_grid_usage",
|
||||||
native_unit_of_measurement=ENERGY_KILO_WATT_HOUR,
|
native_unit_of_measurement=ENERGY_KILO_WATT_HOUR,
|
||||||
device_class=DEVICE_CLASS_ENERGY,
|
device_class=SensorDeviceClass.ENERGY,
|
||||||
entity_registry_enabled_default=False,
|
entity_registry_enabled_default=False,
|
||||||
cls=ToonSolarDeviceSensor,
|
cls=ToonSolarDeviceSensor,
|
||||||
),
|
),
|
||||||
|
@ -427,7 +422,7 @@ SENSOR_ENTITIES_SOLAR: tuple[ToonSensorEntityDescription, ...] = (
|
||||||
section="power_usage",
|
section="power_usage",
|
||||||
measurement="average_produced",
|
measurement="average_produced",
|
||||||
native_unit_of_measurement=POWER_WATT,
|
native_unit_of_measurement=POWER_WATT,
|
||||||
device_class=DEVICE_CLASS_POWER,
|
device_class=SensorDeviceClass.POWER,
|
||||||
entity_registry_enabled_default=False,
|
entity_registry_enabled_default=False,
|
||||||
cls=ToonSolarDeviceSensor,
|
cls=ToonSolarDeviceSensor,
|
||||||
),
|
),
|
||||||
|
@ -438,7 +433,7 @@ SENSOR_ENTITIES_SOLAR: tuple[ToonSensorEntityDescription, ...] = (
|
||||||
measurement="current_covered_by_solar",
|
measurement="current_covered_by_solar",
|
||||||
native_unit_of_measurement=PERCENTAGE,
|
native_unit_of_measurement=PERCENTAGE,
|
||||||
icon="mdi:solar-power",
|
icon="mdi:solar-power",
|
||||||
state_class=STATE_CLASS_MEASUREMENT,
|
state_class=SensorStateClass.MEASUREMENT,
|
||||||
cls=ToonSolarDeviceSensor,
|
cls=ToonSolarDeviceSensor,
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
|
@ -452,7 +447,7 @@ SENSOR_ENTITIES_BOILER: tuple[ToonSensorEntityDescription, ...] = (
|
||||||
native_unit_of_measurement=PERCENTAGE,
|
native_unit_of_measurement=PERCENTAGE,
|
||||||
icon="mdi:percent",
|
icon="mdi:percent",
|
||||||
entity_registry_enabled_default=False,
|
entity_registry_enabled_default=False,
|
||||||
state_class=STATE_CLASS_MEASUREMENT,
|
state_class=SensorStateClass.MEASUREMENT,
|
||||||
cls=ToonBoilerDeviceSensor,
|
cls=ToonBoilerDeviceSensor,
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Reference in a new issue