Add SenseME integration (#62909)
Co-authored-by: Big Mike <mikelawrence@users.noreply.github.com>
This commit is contained in:
parent
509ddc84a5
commit
943aaaeb3f
18 changed files with 929 additions and 0 deletions
23
homeassistant/components/senseme/const.py
Normal file
23
homeassistant/components/senseme/const.py
Normal file
|
@ -0,0 +1,23 @@
|
|||
"""Constants for the SenseME integration."""
|
||||
|
||||
|
||||
from homeassistant.const import Platform
|
||||
|
||||
DOMAIN = "senseme"
|
||||
|
||||
# Periodic fan update rate in minutes
|
||||
UPDATE_RATE = 1
|
||||
|
||||
# data storage
|
||||
CONF_INFO = "info"
|
||||
CONF_HOST_MANUAL = "IP Address"
|
||||
DISCOVERY = "discovery"
|
||||
|
||||
# Fan Preset Modes
|
||||
PRESET_MODE_WHOOSH = "Whoosh"
|
||||
|
||||
# Fan Directions
|
||||
SENSEME_DIRECTION_FORWARD = "FWD"
|
||||
SENSEME_DIRECTION_REVERSE = "REV"
|
||||
|
||||
PLATFORMS = [Platform.FAN]
|
Loading…
Add table
Add a link
Reference in a new issue