commit 2fa0dc735ccbca2d9696b09c98d1bed1e7bad2ec Author: DinoMalin Date: Tue Mar 4 14:15:00 2025 +0100 feat: base diff --git a/sketch/sketch.ino b/sketch/sketch.ino new file mode 100644 index 0000000..f0222f8 --- /dev/null +++ b/sketch/sketch.ino @@ -0,0 +1,14 @@ + +#include +#include +#include + +hd44780_I2Cexp lcd; // auto-detects the I2C address + +void setup() { + lcd.begin(16, 2); + lcd.print("lorem ipsum dolor sit amet"); +} + +void loop() { +}