Enphase remove operating (#98682)

This commit is contained in:
Charles Garwood 2023-08-19 13:30:12 -04:00 committed by GitHub
parent 5965918c86
commit 91965a74d8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 15 deletions

View file

@ -51,12 +51,6 @@ ENCHARGE_SENSORS = (
entity_category=EntityCategory.DIAGNOSTIC,
value_fn=lambda encharge: not encharge.dc_switch_off,
),
EnvoyEnchargeBinarySensorEntityDescription(
key="operating",
translation_key="operating",
entity_category=EntityCategory.DIAGNOSTIC,
value_fn=lambda encharge: encharge.operating,
),
)
RELAY_STATUS_SENSOR = BinarySensorEntityDescription(
@ -88,12 +82,6 @@ ENPOWER_SENSORS = (
entity_category=EntityCategory.DIAGNOSTIC,
value_fn=lambda enpower: enpower.communicating,
),
EnvoyEnpowerBinarySensorEntityDescription(
key="operating",
translation_key="operating",
entity_category=EntityCategory.DIAGNOSTIC,
value_fn=lambda enpower: enpower.operating,
),
EnvoyEnpowerBinarySensorEntityDescription(
key="mains_oper_state",
translation_key="grid_status",

View file

@ -29,9 +29,6 @@
"dc_switch": {
"name": "DC switch"
},
"operating": {
"name": "Operating"
},
"grid_status": {
"name": "Grid status"
},