mirror of
https://github.com/home-assistant/core.git
synced 2025-07-08 22:07:10 +00:00
Add duration and sensitivity configuration for Eve Motion (#100861)
This commit is contained in:
parent
4c255677c3
commit
8ed0f05270
@ -77,6 +77,8 @@ CHARACTERISTIC_PLATFORMS = {
|
|||||||
CharacteristicsTypes.VENDOR_EVE_ENERGY_WATT: "sensor",
|
CharacteristicsTypes.VENDOR_EVE_ENERGY_WATT: "sensor",
|
||||||
CharacteristicsTypes.VENDOR_EVE_DEGREE_AIR_PRESSURE: "sensor",
|
CharacteristicsTypes.VENDOR_EVE_DEGREE_AIR_PRESSURE: "sensor",
|
||||||
CharacteristicsTypes.VENDOR_EVE_DEGREE_ELEVATION: "number",
|
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_EVE_THERMO_VALVE_POSITION: "sensor",
|
||||||
CharacteristicsTypes.VENDOR_HAA_SETUP: "button",
|
CharacteristicsTypes.VENDOR_HAA_SETUP: "button",
|
||||||
CharacteristicsTypes.VENDOR_HAA_UPDATE: "button",
|
CharacteristicsTypes.VENDOR_HAA_UPDATE: "button",
|
||||||
|
@ -49,6 +49,18 @@ NUMBER_ENTITIES: dict[str, NumberEntityDescription] = {
|
|||||||
icon="mdi:volume-high",
|
icon="mdi:volume-high",
|
||||||
entity_category=EntityCategory.CONFIG,
|
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,
|
||||||
|
),
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user