Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for the microBees integration."""
2 
3 from homeassistant.const import Platform
4 
5 DOMAIN = "microbees"
6 OAUTH2_AUTHORIZE = "https://dev.microbees.com/oauth/authorize"
7 OAUTH2_TOKEN = "https://dev.microbees.com/oauth/token"
8 PLATFORMS = [
9  Platform.BINARY_SENSOR,
10  Platform.BUTTON,
11  Platform.CLIMATE,
12  Platform.COVER,
13  Platform.LIGHT,
14  Platform.SENSOR,
15  Platform.SWITCH,
16 ]