add input for Burner Error

This commit is contained in:
2024-12-07 18:37:09 +01:00
parent 9ac3792c6c
commit 3c5f0835f5
4 changed files with 147 additions and 36 deletions

View File

@ -0,0 +1,13 @@
#pragma once
typedef enum _BurnerErrorState{
NO_ERROR,
FAULT
} eBurnerErrorState;
void initInputs(void);
float getChamberTemperature(void);
float getOutdoorTemperature(void);
float getInletFlowTemperature(void);
float getReturnFlowTemperature(void);
eBurnerErrorState getBurnerError(void);