Add configuration flow to CPU Speed (#62929)
This commit is contained in:
parent
bc3bf2ffe3
commit
5ab527e59c
15 changed files with 234 additions and 4 deletions
10
homeassistant/components/cpuspeed/const.py
Normal file
10
homeassistant/components/cpuspeed/const.py
Normal 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__)
|
Loading…
Add table
Add a link
Reference in a new issue