Add firmness number entity to SleepIQ (#65841)

This commit is contained in:
Mike Fugate 2022-03-05 16:45:56 -05:00 committed by GitHub
parent a8baebee8d
commit cc9fd2bcba
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 129 additions and 4 deletions

View file

@ -2,18 +2,19 @@
DATA_SLEEPIQ = "data_sleepiq"
DOMAIN = "sleepiq"
SLEEPYQ_INVALID_CREDENTIALS_MESSAGE = "username or password"
BED = "bed"
FIRMNESS = "firmness"
ICON_EMPTY = "mdi:bed-empty"
ICON_OCCUPIED = "mdi:bed"
IS_IN_BED = "is_in_bed"
SLEEP_NUMBER = "sleep_number"
PRESSURE = "pressure"
SLEEP_NUMBER = "sleep_number"
SENSOR_TYPES = {
SLEEP_NUMBER: "SleepNumber",
IS_IN_BED: "Is In Bed",
FIRMNESS: "Firmness",
PRESSURE: "Pressure",
IS_IN_BED: "Is In Bed",
SLEEP_NUMBER: "SleepNumber",
}
LEFT = "left"