Added header files to display.ino. Just for confidence

This commit is contained in:
Blue Fox 2022-08-21 17:18:39 +02:00
parent 189b107db9
commit abb7adabbd

View File

@ -1,3 +1,5 @@
#include "epdpaint.h"
String pad(String text, int pad_length, char pad_letter) {
if(text.length() >= pad_length) return text; // if theres nothing to fill, return the text unmodified