feat: base

This commit is contained in:
DinoMalin 2025-03-04 14:15:00 +01:00
commit 2fa0dc735c

14
sketch/sketch.ino Normal file
View File

@ -0,0 +1,14 @@
#include <Wire.h>
#include <hd44780.h>
#include <hd44780ioClass/hd44780_I2Cexp.h>
hd44780_I2Cexp lcd; // auto-detects the I2C address
void setup() {
lcd.begin(16, 2);
lcd.print("lorem ipsum dolor sit amet");
}
void loop() {
}