Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /**
- * Name: mod6_LCD1602_I2C.ino
- * Date: 2021/10/14
- * Author: fsc
- * Version 1.0
- * https://wokwi.com/arduino/projects/312097610958635585
- */
- #include <LiquidCrystal_I2C.h>
- LiquidCrystal_I2C lcd(0x27,16,2); // LCD-I2C-Adresse auf 0x27 setzen (16 Zeichen, 2 Zeilen)
- void setup()
- {
- lcd.init(); // LCD initialisieren
- // Anzeigetext und Textposition festlegen.
- lcd.backlight();
- lcd.setCursor(0,0);
- lcd.print("Themenwoche:");
- lcd.setCursor(0,1);
- lcd.print("18.10.-22.10.21");
- }
- void loop()
- {
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement