Skip to content

Commit b5749fc

Browse files
committed
Remove a include that seems bogus.
Make backlight on the default, seems more reasonable and looks prettier during startup.
1 parent a3b43d6 commit b5749fc

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

LiquidCrystal_I2C.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ LiquidCrystal_I2C::LiquidCrystal_I2C(uint8_t lcd_addr, uint8_t lcd_cols, uint8_t
2828
_cols = lcd_cols;
2929
_rows = lcd_rows;
3030
_charsize = charsize;
31-
_backlightval = LCD_NOBACKLIGHT;
31+
_backlightval = LCD_BACKLIGHT;
3232
}
3333

3434
void LiquidCrystal_I2C::begin() {

LiquidCrystal_I2C.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22
#define FDB_LIQUID_CRYSTAL_I2C_H
33

44
#include <inttypes.h>
5-
#include "Print.h"
6-
#include <Wire.h>
5+
#include <Print.h>
76

87
// commands
98
#define LCD_CLEARDISPLAY 0x01

0 commit comments

Comments
 (0)