Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Define constants for the SleepIQ component."""
2 
3 DATA_SLEEPIQ = "data_sleepiq"
4 DOMAIN = "sleepiq"
5 
6 ACTUATOR = "actuator"
7 BED = "bed"
8 FIRMNESS = "firmness"
9 ICON_EMPTY = "mdi:bed-empty"
10 ICON_OCCUPIED = "mdi:bed"
11 IS_IN_BED = "is_in_bed"
12 PRESSURE = "pressure"
13 SLEEP_NUMBER = "sleep_number"
14 FOOT_WARMING_TIMER = "foot_warming_timer"
15 FOOT_WARMER = "foot_warmer"
16 ENTITY_TYPES = {
17  ACTUATOR: "Position",
18  FIRMNESS: "Firmness",
19  PRESSURE: "Pressure",
20  IS_IN_BED: "Is In Bed",
21  SLEEP_NUMBER: "SleepNumber",
22  FOOT_WARMING_TIMER: "Foot Warming Timer",
23  FOOT_WARMER: "Foot Warmer",
24 }
25 
26 LEFT = "left"
27 RIGHT = "right"
28 SIDES = [LEFT, RIGHT]
29 
30 SLEEPIQ_DATA = "sleepiq_data"
31 SLEEPIQ_STATUS_COORDINATOR = "sleepiq_status"