diff --git a/ge_kitchen/devices/dishwasher.py b/ge_kitchen/devices/dishwasher.py index b89c374..918e3be 100644 --- a/ge_kitchen/devices/dishwasher.py +++ b/ge_kitchen/devices/dishwasher.py @@ -19,12 +19,12 @@ class DishwasherApi(ApplianceApi): dishwasher_entities = [ #GeDishwasherControlLockedSwitch(self, ErdCode.USER_INTERFACE_LOCKED), - GeErdSensor(self, ErdCode.CYCLE_NAME), - GeErdSensor(self, ErdCode.CYCLE_STATE), - GeErdSensor(self, ErdCode.OPERATING_MODE), - GeErdSensor(self, ErdCode.PODS_REMAINING_VALUE), - GeErdSensor(self, ErdCode.RINSE_AGENT, icon_override="mdi:sparkles"), - GeErdSensor(self, ErdCode.TIME_REMAINING), + GeErdSensor(self, ErdCode.DISHWASHER_CYCLE_NAME), + GeErdSensor(self, ErdCode.DISHWASHER_CYCLE_STATE), + GeErdSensor(self, ErdCode.DISHWASHER_OPERATING_MODE), + GeErdSensor(self, ErdCode.DISHWASHER_PODS_REMAINING_VALUE), + GeErdSensor(self, ErdCode.DISHWASHER_RINSE_AGENT, icon_override="mdi:sparkles"), + GeErdSensor(self, ErdCode.DISHWASHER_TIME_REMAINING), ] entities = base_entities + dishwasher_entities return entities diff --git a/ge_kitchen/manifest.json b/ge_kitchen/manifest.json index 363fe18..15e4a85 100644 --- a/ge_kitchen/manifest.json +++ b/ge_kitchen/manifest.json @@ -3,6 +3,6 @@ "name": "GE Kitchen", "config_flow": true, "documentation": "https://github.com/simbaja/ha_components", - "requirements": ["gekitchensdk==0.3.6","magicattr==0.1.5"], + "requirements": ["gekitchensdk==0.3.8","magicattr==0.1.5"], "codeowners": ["@simbaja"] }