#include <Arduino_FreeRTOS.h>
//LCD Display Pins
#define LCD_RS 22
#define LCD_EN 23
#define LCD_D0 24
#define LCD_D1 25
#define LCD_D2 26
#define LCD_D3 27
// LCD functions //
void initLCD(){
// Pin setup
// Display setup
}
void setup() {
//Initialize LCD
initLCD();
}
void loop() {
// put your main code here, to run repeatedly:
}