This commit is contained in:
DinoMalin 2025-03-05 16:37:04 +01:00
parent 9476f31986
commit aa0b879910

17
LCD.h
View File

@ -1,17 +0,0 @@
#pragma once
#include <Wire.h>
#include <hd44780.h>
#include <hd44780ioClass/hd44780_I2Cexp.h>
class LCD {
public:
hd44780_I2Cexp lcd;
LCD(hd44780_I2Cexp lcd);
void drawChar(int x, int y, char c);
void drawRectangle(int x, int y);
void drawBlink(int x, int y);
void clear();
};