mirror of
https://github.com/OpenEPaperLink/OpenEPaperLink.git
synced 2026-03-25 16:08:04 +01:00
15 lines
494 B
C
15 lines
494 B
C
#include <Arduino.h>
|
|
|
|
#include <LittleFS.h>
|
|
#include "makeimage.h"
|
|
#include <time.h>
|
|
#include "tag_db.h"
|
|
#include <TFT_eSPI.h>
|
|
|
|
void contentRunner();
|
|
void drawNew(uint8_t mac[8], bool buttonPressed, tagRecord *&taginfo);
|
|
bool updateTagImage(String &filename, uint8_t *dst, uint16_t nextCheckin);
|
|
void drawDate(String &filename);
|
|
void drawNumber(String &filename, int32_t count, int32_t thresholdred);
|
|
bool getImgURL(String &filename, String URL, time_t fetched);
|
|
char *formatHttpDate(time_t t); |