-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.ino
86 lines (73 loc) · 2.23 KB
/
project.ino
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
/*
* project.ino has the loop() and setup() functions for main program
*/
#include "main_menu.h"
#include "utils.h"
bool startup = true;
const int startupTime = 3000;
void setup()
{
appInitSuccessfully = readIntFromEEPROM(eepromAppInitSuccessfullyAddress);
// Init only when asked
if (appInitSuccessfully == OFF)
{
initDefaults();
}
// Init if memory is unknown
if (appInitSuccessfully != OFF && appInitSuccessfully != ON)
{
initDefaults();
}
// the zero refers to the MAX7219 number, it is zero for 1 chip
lc.shutdown(0, false); // turn off power saving, enables display
lc.setIntensity(0, matrixBrightness); // sets brightness (0~15 possible values)
lc.clearDisplay(0); // clear screen
lcd.begin(16, 2);
//custom characters
lcd.createChar(0, upArrowChar);
lcd.createChar(1, scrollArrowChar);
lcd.createChar(2, leftArrowChar);
lcd.createChar(3, rightArrowChar);
lcd.createChar(4, downArrowChar);
lcd.createChar(5, horizontalArrowsChar);
lcd.createChar(6, downSign);
currentContrast = readIntFromEEPROM(eepromContrastAddress);
LCDBrightness = readIntFromEEPROM(eepromScreenBrightnessAddress);
matrixBrightness = readIntFromEEPROM(eepromMatrixBrightnessAddress);
difficultyValue = readIntFromEEPROM(eepromDifficultyAddress);
reverseJoystick = (readIntFromEEPROM(eepromReverseJoystickAddress) > 0) ? true : false;
readStringFromEEPROM(eepromCurrentUsernameStartOffset, ¤tUsername);
analogWrite(contrastPin, currentContrast);
analogWrite(LCDBrightnessPin, LCDBrightness);
// set up joy pins
pinMode(buttonPin, INPUT_PULLUP);
pinMode(pauseButtonPin, INPUT_PULLUP);
pinMode(BUZZER, OUTPUT);
// Init vars
screenStatus = STATUS_MAINMENU;
pointerMode = POINTER_SCROLL;
currentMainMenuIndex = 0;
}
void loop()
{
if(millis() > startupTime && startup) {
startup = false;
pauseSong();}
if(startup) {
// resumeSong();
lcd.setCursor(0,0);
if(currentUsername == defaultUsername) {
lcd.print("Hello! Please");
lcd.setCursor(0,1);
lcd.print("add your name!");
}
else {
lcd.print("Welcome,");
lcd.setCursor(8,1);
lcd.print(currentUsername);
}
}
if(!startup) {
handleMenu();
}
}