mirror of
https://github.com/Electric-Special/ha-core.git
synced 2026-03-21 21:05:02 +01:00
15 lines
244 B
Python
15 lines
244 B
Python
"""Constants for the Valve entity platform."""
|
|
|
|
from enum import StrEnum
|
|
|
|
DOMAIN = "valve"
|
|
|
|
|
|
class ValveState(StrEnum):
|
|
"""State of Valve entities."""
|
|
|
|
OPENING = "opening"
|
|
CLOSING = "closing"
|
|
CLOSED = "closed"
|
|
OPEN = "open"
|