smart-oil-heating-control-s.../main/control.h
2024-12-21 22:02:16 +01:00

14 lines
273 B
C

#pragma once
typedef enum _ControlState
{
CONTROL_STARTING,
CONTROL_HEATING,
CONTROL_OUTDOOR_TOO_WARM,
CONTROL_RETURN_FLOW_TOO_WARM,
CONTROL_BURNER_FAULT,
CONTROL_FAULT,
} eControlState;
void initControl(void);
eControlState getControlState(void);