mirror of
https://github.com/DinoMalin/paranoia-1.0.git
synced 2025-10-30 11:06:00 +00:00
15 lines
245 B
C++
15 lines
245 B
C++
|
|
#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() {
|
|
}
|