first commit
This commit is contained in:
19
LCD_I2C_1602/LCD_I2C_1602.ino
Normal file
19
LCD_I2C_1602/LCD_I2C_1602.ino
Normal file
@@ -0,0 +1,19 @@
|
||||
//DFRobot.com
|
||||
//Compatible with the Arduino IDE 1.0
|
||||
//Library version:1.1
|
||||
#include <Wire.h>
|
||||
#include <LiquidCrystal_I2C.h>
|
||||
|
||||
LiquidCrystal_I2C lcd(0x27,16,2); //l adresse 0x27 est a changé en fonction de votre écrant
|
||||
void setup()
|
||||
{
|
||||
lcd.init(); // initialize the lcd
|
||||
|
||||
// Print a message to the LCD.
|
||||
lcd.backlight();
|
||||
lcd.print("Hello, world!");
|
||||
}
|
||||
|
||||
void loop()
|
||||
{
|
||||
}
|
||||
Reference in New Issue
Block a user