mirror of
https://github.com/home-assistant/core.git
synced 2025-05-12 01:49:16 +00:00
15 lines
356 B
Python
15 lines
356 B
Python
"""Constants for the microBees integration."""
|
|
|
|
from homeassistant.const import Platform
|
|
|
|
DOMAIN = "microbees"
|
|
OAUTH2_AUTHORIZE = "https://dev.microbees.com/oauth/authorize"
|
|
OAUTH2_TOKEN = "https://dev.microbees.com/oauth/token"
|
|
PLATFORMS = [
|
|
Platform.BINARY_SENSOR,
|
|
Platform.BUTTON,
|
|
Platform.LIGHT,
|
|
Platform.SENSOR,
|
|
Platform.SWITCH,
|
|
]
|