mirror of
https://github.com/home-assistant/core.git
synced 2026-08-26 08:03:44 +01:00
* add microBees sensor * add a sensor.py in .coveragerc * fixes review --------- Co-authored-by: FedDam <noceracity@gmail.com>
11 lines
286 B
Python
11 lines
286 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.SENSOR,
|
|
Platform.SWITCH,
|
|
]
|