Files
OpenEPaperLink/esp32_fw/include/contentmanager.h
Nic Limper a0f7c84d30 big webpage overhaul
(not production ready yet, but feel free to try!)
2023-02-01 19:33:52 +01:00

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);