15 lines
319 B
C
15 lines
319 B
C
#pragma once
|
|
|
|
typedef enum _Output
|
|
{
|
|
ENABLED,
|
|
DISABLED
|
|
} eOutput;
|
|
|
|
void initOutputs(void);
|
|
eOutput getCirculationPumpState(void);
|
|
void setCirculationPumpState(eOutput in);
|
|
eOutput getBurnerState(void);
|
|
void setBurnerState(eOutput in);
|
|
eOutput getSafetyControlState(void);
|
|
void setSafetyControlState(eOutput in); |