Skip to content

Commit 34a4e98

Browse files
authored
Split DEFAULT_BRIGHTNESS into red, green and blue
exchange DEFAULT_BRIGHTNESS for DEFAULT_RED, DEFAULT_GREEN and DEFAULT_BLUE
1 parent e331c2e commit 34a4e98

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

firmware/OpenLCD/settings.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,9 @@
3434

3535
const byte DEFAULT_TWI_ADDRESS = 0x72; //0x71 for Serial7Segment. 0x72 for SerLCD.
3636
const byte DEFAULT_BAUD = BAUD_9600; //9600 for 8MHz, 2x speed
37-
const byte DEFAULT_BRIGHTNESS = 255; //100%, full brightness
37+
const byte DEFAULT_RED = 255;
38+
const byte DEFAULT_GREEN = 255;
39+
const byte DEFAULT_BLUE = 255;
3840
const byte DEFAULT_LINES = 2;
3941
const byte DEFAULT_WIDTH = 16;
4042
const byte DEFAULT_SPLASH = true; //Default on

0 commit comments

Comments
 (0)