diff --git a/homeassistant/components/litterrobot/sensor.py b/homeassistant/components/litterrobot/sensor.py index c904335d23f..1a8f066f54b 100644 --- a/homeassistant/components/litterrobot/sensor.py +++ b/homeassistant/components/litterrobot/sensor.py @@ -100,12 +100,18 @@ ROBOT_SENSOR_MAP: dict[type[Robot], list[RobotSensorEntityDescription]] = { ), ], LitterRobot4: [ + RobotSensorEntityDescription[LitterRobot4]( + key="litter_level", + name="Litter level", + native_unit_of_measurement=PERCENTAGE, + icon_fn=lambda state: icon_for_gauge_level(state, 10), + ), RobotSensorEntityDescription[LitterRobot4]( key="pet_weight", name="Pet weight", icon="mdi:scale", native_unit_of_measurement=MASS_POUNDS, - ) + ), ], FeederRobot: [ RobotSensorEntityDescription[FeederRobot](