Remove "max_current" from TechnoVE sensors (#108898)

This commit is contained in:
Christophe Gagnier 2024-01-26 03:05:36 -05:00 committed by GitHub
parent dff5e45761
commit b91e9edd16
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 0 additions and 12 deletions

View File

@ -57,15 +57,6 @@ SENSORS: tuple[TechnoVESensorEntityDescription, ...] = (
entity_category=EntityCategory.DIAGNOSTIC,
value_fn=lambda station: station.info.voltage_out,
),
TechnoVESensorEntityDescription(
key="max_current",
translation_key="max_current",
native_unit_of_measurement=UnitOfElectricCurrent.AMPERE,
device_class=SensorDeviceClass.CURRENT,
state_class=SensorStateClass.MEASUREMENT,
entity_category=EntityCategory.DIAGNOSTIC,
value_fn=lambda station: station.info.max_current,
),
TechnoVESensorEntityDescription(
key="max_station_current",
translation_key="max_station_current",

View File

@ -32,9 +32,6 @@
"voltage_out": {
"name": "Output voltage"
},
"max_current": {
"name": "Max current"
},
"max_station_current": {
"name": "Max station current"
},