add function protos

This commit is contained in:
Felix Rusu 2020-05-07 12:14:54 -04:00
parent 13d4ba8eae
commit 58695e88c6
1 changed files with 8 additions and 0 deletions

View File

@ -103,6 +103,14 @@ typedef struct req {
REQUEST* queue = NULL;
byte size_of_queue = 0;
//******************************************** END ADVANCED variables ********************************************************************************
//******************************************** BEGIN FUNCTION prototypes ********************************************************************************
boolean BOOTOK();
void POWER(uint8_t ON_OFF);
void Beep(byte theDelay, boolean twoSounds);
int freeRAM();
void handleSerialData();
void printQueue(REQUEST* p);
//******************************************** END FUNCTION prototypes ********************************************************************************
//******************************************** BEGIN GENERAL variables ********************************************************************************
byte lastValidReading = 1;
unsigned long lastValidReadingTime = 0;