Skip to content

Commit 9af7b43

Browse files
committed
Fix examples
During the various rebases a \n got lost :(
1 parent efdf6d1 commit 9af7b43

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

examples/Blink/Blink.ino

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@
4242
#include <LiquidCrystal.h>
4343

4444
// initialize the library by associating any needed LCD interface pin
45-
// with the arduino pin number it is connected toconst int rs=12, en=11, d4=5, d5=4, d6=3, d7=2;
45+
// with the arduino pin number it is connected to
46+
const int rs = 12, en = 11, d4 = 5, d5 = 4, d6 = 3, d7 = 2;
4647
LiquidCrystal lcd(rs, en, d4, d5, d6, d7);
4748

4849
void setup() {

examples/Cursor/Cursor.ino

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@
4343
#include <LiquidCrystal.h>
4444

4545
// initialize the library by associating any needed LCD interface pin
46-
// with the arduino pin number it is connected toconst int rs=12, en=11, d4=5, d5=4, d6=3, d7=2;
46+
// with the arduino pin number it is connected to
47+
const int rs = 12, en = 11, d4 = 5, d5 = 4, d6 = 3, d7 = 2;
4748
LiquidCrystal lcd(rs, en, d4, d5, d6, d7);
4849

4950
void setup() {

0 commit comments

Comments
 (0)