Skip to content

Commit a41a08b

Browse files
authored
Fix Wire.h include (#493)
1 parent 321e217 commit a41a08b

File tree

9 files changed

+3
-3
lines changed

9 files changed

+3
-3
lines changed

libraries/LiquidCrystal/I2CIO.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232

3333
#include <inttypes.h>
3434

35-
#include <../Wire/Wire.h>
35+
#include <Wire.h>
3636
#include "I2CIO.h"
3737

3838
// CLASS VARIABLES

libraries/LiquidCrystal/LiquidCrystal_I2C_ByVac.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
#include <inttypes.h>
3131
#include <Print.h>
3232

33-
#include <../Wire/Wire.h>
33+
#include <Wire.h>
3434
#include "LCD.h"
3535

3636

libraries/LiquidCrystal/examples/HelloWorld_4bit/HelloWorld_4bit.pde renamed to libraries/LiquidCrystal/examples/HelloWorld_4bit/HelloWorld_4bit.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#define CONTRAST_PIN 9
66
#define BACKLIGHT_PIN 7
77
#define CONTRAST 110
8-
LiquidCrystal lcd(12, 11, 5, 4, 3, 2, BACKLIGH_PIN, POSITIVE );
8+
LiquidCrystal lcd(12, 11, 5, 4, 3, 2, BACKLIGHT_PIN, POSITIVE );
99

1010

1111
// Creat a set of new characters

0 commit comments

Comments
 (0)