Skip to content

Commit 02d2584

Browse files
committed
Change order in which version is printed
1 parent bdf6273 commit 02d2584

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

firmware/OpenLCD/Setting_Control.ino

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,9 +156,11 @@ void changeBacklightRGB(byte red, byte green, byte blue) {
156156
//update red
157157
EEPROM.write(LOCATION_RED_BRIGHTNESS, red); //Record new setting
158158
analogWrite(BL_RW, 255 - red); //Controlled by PNP so reverse the brightness value
159+
159160
//update green
160161
EEPROM.write(LOCATION_GREEN_BRIGHTNESS, green); //Record new setting
161162
analogWrite(BL_G, 255 - green); //Controlled by PNP so reverse the brightness value
163+
162164
//update blue (SoftPWM)
163165
EEPROM.write(LOCATION_BLUE_BRIGHTNESS, blue); //Record new setting
164166
//analogWrite(BL_B, 255 - brightness); //Controlled by PNP so reverse the brightness value

firmware/OpenLCD/System_Functions.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -238,11 +238,11 @@ void setupSplash()
238238
SerLCD.setCursor(0, 0); //First position, 1st row
239239
SerLCD.print(F("SparkFun OpenLCD"));
240240
SerLCD.setCursor(0, 1); //First position, 2nd row
241-
SerLCD.print(F("v"));
241+
SerLCD.print(F("Baud: "));
242+
SerLCD.print(F(" v"));
242243
SerLCD.print(firmwareVersionMajor);
243244
SerLCD.print(F("."));
244245
SerLCD.print(firmwareVersionMinor);
245-
SerLCD.print(F(" Baud: "));
246246

247247
//Read what the current UART speed is from EEPROM memory
248248
//Default is 9600

0 commit comments

Comments
 (0)