File tree Expand file tree Collapse file tree 2 files changed +5
-18
lines changed Expand file tree Collapse file tree 2 files changed +5
-18
lines changed Original file line number Diff line number Diff line change @@ -238,7 +238,11 @@ void setupSplash()
238
238
SerLCD.setCursor (0 , 0 ); // First position, 1st row
239
239
SerLCD.print (" SparkFun OpenLCD" );
240
240
SerLCD.setCursor (0 , 1 ); // First position, 2nd row
241
- SerLCD.print (" Baud: " );
241
+ SerLCD.print (" v" );
242
+ SerLCD.print (firmwareVersionMajor);
243
+ SerLCD.print (" ." );
244
+ SerLCD.print (firmwareVersionMinor);
245
+ SerLCD.print (" Baud: " );
242
246
243
247
// Read what the current UART speed is from EEPROM memory
244
248
// Default is 9600
Original file line number Diff line number Diff line change 14
14
#define SIZE_JUMPER 8
15
15
#define LCD_CONTRAST 9 //PWM
16
16
17
- //These worked for v1 Xiamen protos
18
- /*#define LCD_RS A0
19
- #define LCD_RW A1
20
- #define LCD_EN A2
21
- #define LCD_D4 A3
22
- #define LCD_D5 2
23
- #define LCD_D6 3
24
- #define LCD_D7 4
25
- #define BL_RW 5 //PWM
26
- #define BL_G 6 //PWM
27
- #define BL_B 7
28
- #define SIZE_JUMPER 8
29
- #define LCD_CONTRAST 9 //PWM
30
- //#define BL_B 9 //PWM
31
- //#define SIZE_JUMPER 7
32
- */
33
-
34
17
#define SPI_CS 10 //As a slave device CS pin must always be 10
35
18
#define SPI_MOSI 11
36
19
#define SPI_MISO 12
You can’t perform that action at this time.
0 commit comments