Add select platform to LaMetric (#79803)
This commit is contained in:
parent
7fae85ee85
commit
575501d26a
5 changed files with 185 additions and 1 deletions
|
@ -7,7 +7,13 @@ from typing import Final
|
|||
from homeassistant.const import Platform
|
||||
|
||||
DOMAIN: Final = "lametric"
|
||||
PLATFORMS = [Platform.BUTTON, Platform.NUMBER, Platform.SENSOR, Platform.SWITCH]
|
||||
PLATFORMS = [
|
||||
Platform.BUTTON,
|
||||
Platform.NUMBER,
|
||||
Platform.SELECT,
|
||||
Platform.SENSOR,
|
||||
Platform.SWITCH,
|
||||
]
|
||||
|
||||
LOGGER = logging.getLogger(__package__)
|
||||
SCAN_INTERVAL = timedelta(seconds=30)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue