From 58695e88c6c78b45129df7415230876959210311 Mon Sep 17 00:00:00 2001 From: Felix Rusu Date: Thu, 7 May 2020 12:14:54 -0400 Subject: [PATCH] add function protos --- Examples/MightyHat/MightyHat.ino | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Examples/MightyHat/MightyHat.ino b/Examples/MightyHat/MightyHat.ino index bf44520..57596b4 100644 --- a/Examples/MightyHat/MightyHat.ino +++ b/Examples/MightyHat/MightyHat.ino @@ -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;