12 lines
241 B
C
12 lines
241 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); |