mirror of
https://github.com/home-assistant/core.git
synced 2026-09-17 05:58:41 +01:00
* Add light platform to microBees and change docstring in sensor * update .coveragerc * fixes review * fixes review * fixes async_add_entities
12 lines
306 B
Python
12 lines
306 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.LIGHT,
|
|
Platform.SENSOR,
|
|
Platform.SWITCH,
|
|
]
|