craftbeerpi4-pione/cbpi/api/config.py
avollkopf baf285be9f Added ConfigType.STEP
This supports also the pre-configuration of steps in the cbpi settings
2021-03-20 21:02:05 +01:00

12 lines
197 B
Python

from enum import Enum
class ConfigType(Enum):
STRING = "string"
NUMBER = "number"
SELECT = "select"
KETTLE = "kettle"
ACTOR = "actor"
SENSOR = "sensor"
STEP = "step"