From aa0b87991062d50b31646f1d54a6713682567e2a Mon Sep 17 00:00:00 2001 From: DinoMalin Date: Wed, 5 Mar 2025 16:37:04 +0100 Subject: [PATCH] oops --- LCD.h | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 LCD.h diff --git a/LCD.h b/LCD.h deleted file mode 100644 index 490804b..0000000 --- a/LCD.h +++ /dev/null @@ -1,17 +0,0 @@ -#pragma once - -#include -#include -#include - -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(); -};