/* Laurien Hofkens 30/09/2024
* LCD hello world
*/
#include <Wire.h> // Library voor I2C
#include <LiquidCrystal_I2C.h> // Library voor LCD
LiquidCrystal_I2C lcd(0x27,16,2); // Adres 0x27 of 0x3F, aantal karakters 16 of 20, aantal rijen 2 of4
void setup()
{
lcd.init(); // initialize the lcd
// Print a message to the LCD.
lcd.backlight(); // Achtergrond verlichting aanzetten
lcd.setCursor(3,0); // 4e plaats op 1e lijn
lcd.print("Laurien"); // Print tekst
}
void loop()
{
}