diff --git a/homeassistant/components/homekit_controller/const.py b/homeassistant/components/homekit_controller/const.py index 32ce3c7a874..f60dc669968 100644 --- a/homeassistant/components/homekit_controller/const.py +++ b/homeassistant/components/homekit_controller/const.py @@ -77,6 +77,8 @@ CHARACTERISTIC_PLATFORMS = { CharacteristicsTypes.VENDOR_EVE_ENERGY_WATT: "sensor", CharacteristicsTypes.VENDOR_EVE_DEGREE_AIR_PRESSURE: "sensor", CharacteristicsTypes.VENDOR_EVE_DEGREE_ELEVATION: "number", + CharacteristicsTypes.VENDOR_EVE_MOTION_DURATION: "number", + CharacteristicsTypes.VENDOR_EVE_MOTION_SENSITIVITY: "number", CharacteristicsTypes.VENDOR_EVE_THERMO_VALVE_POSITION: "sensor", CharacteristicsTypes.VENDOR_HAA_SETUP: "button", CharacteristicsTypes.VENDOR_HAA_UPDATE: "button", diff --git a/homeassistant/components/homekit_controller/number.py b/homeassistant/components/homekit_controller/number.py index b44aed16143..c453efb8219 100644 --- a/homeassistant/components/homekit_controller/number.py +++ b/homeassistant/components/homekit_controller/number.py @@ -49,6 +49,18 @@ NUMBER_ENTITIES: dict[str, NumberEntityDescription] = { icon="mdi:volume-high", entity_category=EntityCategory.CONFIG, ), + CharacteristicsTypes.VENDOR_EVE_MOTION_DURATION: NumberEntityDescription( + key=CharacteristicsTypes.VENDOR_EVE_MOTION_DURATION, + name="Duration", + icon="mdi:timer", + entity_category=EntityCategory.CONFIG, + ), + CharacteristicsTypes.VENDOR_EVE_MOTION_SENSITIVITY: NumberEntityDescription( + key=CharacteristicsTypes.VENDOR_EVE_MOTION_SENSITIVITY, + name="Sensitivity", + icon="mdi:knob", + entity_category=EntityCategory.CONFIG, + ), }