Files
core/homeassistant/components/microbees/const.py
T
Federico D'Amico bf9c4197b9 Add light platform to microBees and change docstring in sensor (#111093)
* Add light platform to microBees and change docstring in sensor

* update .coveragerc

* fixes review

* fixes review

* fixes async_add_entities
2024-02-24 20:07:04 +01:00

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