mirror of
https://github.com/home-assistant/core.git
synced 2025-11-10 11:29:46 +00: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"
|