Files
PianoProject/ControlBox/lcd.h
Brandon Switzer e01441da84 code now compiles
2019-07-25 16:06:12 -04:00

25 lines
423 B
C

#ifndef LCD_H
#define LCD_H
#include <Arduino.h>
enum class MenuStates
{
WELCOME,
SETTINGS,
VOLUME,
RESET
}; extern MenuStates menuState;
extern const String MENU_NAMES[];
extern const int SPECIAL_MENU_TIMEOUT;
extern const int NUM_OF_MENUS;
extern int currentMenu;
extern unsigned long exitScreen;
void initializeLCD();
void printHomeScreen();
void updateDisplay();
void checkSchedule();
#endif