Add SenseME integration (#62909)

Co-authored-by: Big Mike <mikelawrence@users.noreply.github.com>
This commit is contained in:
J. Nick Koston 2022-01-07 22:53:05 -10:00 committed by GitHub
parent 509ddc84a5
commit 943aaaeb3f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
18 changed files with 929 additions and 0 deletions

View 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]