Skip to content

Commit

Permalink
Merge pull request johnrickman#24 from maduperera/master
Browse files Browse the repository at this point in the history
Removed lcd.init()
  • Loading branch information
marcoschwartz authored Mar 11, 2018
2 parents 58ed0d4 + ea17a6c commit 5c0be63
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions examples/HelloWorld/HelloWorld.pde
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
//YWROBOT
//Compatible with the Arduino IDE 1.0
//Library version:1.1
#include <Wire.h>
#include <LiquidCrystal_I2C.h>

LiquidCrystal_I2C lcd(0x27,20,4); // set the LCD address to 0x27 for a 16 chars and 2 line display

void setup()
{
lcd.init(); // initialize the lcd
lcd.init();
// Print a message to the LCD.
lcd.backlight();
lcd.setCursor(3,0);
Expand Down

0 comments on commit 5c0be63

Please sign in to comment.