16 lines
382 B
Python
16 lines
382 B
Python
"""Constants for the Smappee integration."""
|
|
|
|
from datetime import timedelta
|
|
|
|
DOMAIN = "smappee"
|
|
DATA_CLIENT = "smappee_data"
|
|
|
|
BASE = "BASE"
|
|
|
|
SMAPPEE_PLATFORMS = ["binary_sensor", "sensor", "switch"]
|
|
|
|
MIN_TIME_BETWEEN_UPDATES = timedelta(seconds=5)
|
|
|
|
AUTHORIZE_URL = "https://app1pub.smappee.net/dev/v1/oauth2/authorize"
|
|
TOKEN_URL = "https://app1pub.smappee.net/dev/v3/oauth2/token"
|