Skip to content

Instantly share code, notes, and snippets.

@ArduinoDiscordBot
Created August 7, 2019 20:27
Show Gist options
  • Save ArduinoDiscordBot/430ed2aa227a01d6bab8628886fa136b to your computer and use it in GitHub Desktop.
Save ArduinoDiscordBot/430ed2aa227a01d6bab8628886fa136b to your computer and use it in GitHub Desktop.
Code by Running shibe#4208 - Wed Aug 07 2019 20:27:15 GMT+0000 (Coordinated Universal Time)
#include <LCD.h>
#include <LiquidCrystal_SI2C.h>
#include <LiquidCrystal_SR.h>
#include <LiquidCrystal_SR1W.h>
#include <LiquidCrystal_SR2W.h>
#include <LiquidCrystal_SR3W.h>
#include <LCD.h>
#include <LiquidCrystal.h>
#include <LiquidCrystal_I2C.h>
#include <Wire.h>
LiquidCrystal_I2C lcd(0x27); // set the LCD address to 0x27 for a 16 chars and 2 line display
void setup()
{
lcd.begin(16,2);
lcd.clear();
lcd.print("Hello");
}
void loop()
{
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment