Skip to content

Commit

Permalink
Fix #202 Correctly defining water level sensors (#203)
Browse files Browse the repository at this point in the history
  • Loading branch information
nao-pon authored Nov 27, 2024
1 parent ebf1d04 commit 71051e9
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions custom_components/echonetlite/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -997,6 +997,16 @@
},
},
},
0xA6: { # Hybrid Water Heater
0xE1: { # Measured amount of hot water remaining in tank
CONF_TYPE: SensorDeviceClass.WATER,
CONF_UNIT_OF_MEASUREMENT: UnitOfVolume.LITERS,
},
0xE2: { # Tank Capacity
CONF_TYPE: SensorDeviceClass.WATER,
CONF_UNIT_OF_MEASUREMENT: UnitOfVolume.LITERS,
},
},
},
0x03: { # Cooking/housework-related device class group
0xB7: { # Refrigerator
Expand Down

0 comments on commit 71051e9

Please sign in to comment.