From 73d3b6f9c148b36f8695b63c656f379165556ffb Mon Sep 17 00:00:00 2001 From: ENGO150 Date: Mon, 20 Jan 2025 19:57:26 +0100 Subject: [PATCH] declared overloaded print fn you can print from end now --- display.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/display.hpp b/display.hpp index 3392594..71fb35a 100644 --- a/display.hpp +++ b/display.hpp @@ -20,4 +20,5 @@ namespace display { void begin(void); //INIT LCD DISPLAY void print(String line_1, String line_2); //PRINT INTO LCD (OVERWRITING) + void print(String line_1, String line_2, bool end); //PRINT INTO LCD WITH OPTION TO PRINT FROM END }