- iconography updates

This commit is contained in:
Jack Simbach 2021-07-24 13:17:18 -04:00
parent 3310a4dba3
commit d93949f2c4
2 changed files with 2 additions and 2 deletions

View File

@ -91,7 +91,7 @@ class FridgeApi(ApplianceApi):
dispenser_entities.extend([ dispenser_entities.extend([
GeErdBinarySensor(self, ErdCode.HOT_WATER_IN_USE), GeErdBinarySensor(self, ErdCode.HOT_WATER_IN_USE),
GeErdSensor(self, ErdCode.HOT_WATER_SET_TEMP), GeErdSensor(self, ErdCode.HOT_WATER_SET_TEMP),
GeErdPropertySensor(self, ErdCode.HOT_WATER_STATUS, "status"), GeErdPropertySensor(self, ErdCode.HOT_WATER_STATUS, "status", icon_override="mdi:information-outline"),
GeErdPropertySensor(self, ErdCode.HOT_WATER_STATUS, "time_until_ready", icon_override="mdi:timer-outline"), GeErdPropertySensor(self, ErdCode.HOT_WATER_STATUS, "time_until_ready", icon_override="mdi:timer-outline"),
GeErdPropertySensor(self, ErdCode.HOT_WATER_STATUS, "current_temp", device_class_override=DEVICE_CLASS_TEMPERATURE), GeErdPropertySensor(self, ErdCode.HOT_WATER_STATUS, "current_temp", device_class_override=DEVICE_CLASS_TEMPERATURE),
GeErdPropertyBinarySensor(self, ErdCode.HOT_WATER_STATUS, "faulted", device_class_override=DEVICE_CLASS_PROBLEM), GeErdPropertyBinarySensor(self, ErdCode.HOT_WATER_STATUS, "faulted", device_class_override=DEVICE_CLASS_PROBLEM),

View File

@ -27,7 +27,7 @@ class FilterPositionOptionsConverter(OptionsConverter):
class GeErdFilterPositionSelect(GeErdSelect): class GeErdFilterPositionSelect(GeErdSelect):
def __init__(self, api: ApplianceApi, erd_code: ErdCodeType): def __init__(self, api: ApplianceApi, erd_code: ErdCodeType):
super().__init__(api, erd_code, FilterPositionOptionsConverter()) super().__init__(api, erd_code, FilterPositionOptionsConverter(), icon_override="mdi:valve")
@property @property
def current_option(self): def current_option(self):