Add configuration flow to CPU Speed (#62929)

This commit is contained in:
Franck Nijhof 2021-12-28 21:17:53 +01:00 committed by GitHub
parent bc3bf2ffe3
commit 5ab527e59c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
15 changed files with 234 additions and 4 deletions

View file

@ -0,0 +1,10 @@
"""Constants for the CPU Speed integration."""
import logging
from typing import Final
from homeassistant.const import Platform
DOMAIN: Final = "cpuspeed"
PLATFORMS = [Platform.SENSOR]
LOGGER = logging.getLogger(__package__)