mirror of
https://github.com/PiBrewing/craftbeerpi4.git
synced 2024-11-09 17:07:43 +01:00
d7c1b64493
Added fermenter type Added fermenter logic (incl. new class) -> will require cbpi4ui -> >= 0.1.a1 Still under development, but fermentation w/o steps should be working
13 lines
225 B
Python
13 lines
225 B
Python
from enum import Enum
|
|
|
|
class ConfigType(Enum):
|
|
STRING = "string"
|
|
NUMBER = "number"
|
|
SELECT = "select"
|
|
KETTLE = "kettle"
|
|
ACTOR = "actor"
|
|
SENSOR = "sensor"
|
|
STEP = "step"
|
|
FERMENTER = "fermenter"
|
|
|
|
|