Skip to content

Instantly share code, notes, and snippets.

@sachendra003
Last active July 4, 2019 08:44
Show Gist options
  • Save sachendra003/3cd8a23fc5d7dfc4db7ac74f19e3e07b to your computer and use it in GitHub Desktop.
Save sachendra003/3cd8a23fc5d7dfc4db7ac74f19e3e07b to your computer and use it in GitHub Desktop.
LCD+I2C adapter Basic
#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x27,16,2);
void setup() {
lcd.init();
lcd.backlight();
lcd.setCursor(0, 0);
lcd.print("Noobie Electronic");
lcd.setCursor(0, 1);
lcd.print("LCD_I2C tutorial");
// put your setup code here, to run once:
}
void loop() {
// put your main code here, to run repeatedly:
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment