Moved logbook to seperate cpp
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
#ifndef LOGBOOK_H
|
||||
#define LOGBOOK_H
|
||||
|
||||
#include <Arduino.h>
|
||||
#include <TFT_eSPI.h>
|
||||
#include <WiFi.h>
|
||||
#include <WebServer.h>
|
||||
#include <SPIFFS.h>
|
||||
#include "TEF6686.h"
|
||||
|
||||
extern bool autoDST;
|
||||
extern bool clockampm;
|
||||
extern bool NTPupdated;
|
||||
extern bool rtcset;
|
||||
extern byte language;
|
||||
extern byte unit;
|
||||
extern int16_t SStatus;
|
||||
extern int8_t NTPoffset;
|
||||
extern unsigned int ConverterSet;
|
||||
extern unsigned int frequency;
|
||||
extern unsigned int logcounter;
|
||||
|
||||
extern TEF6686 radio;
|
||||
extern WebServer webserver;
|
||||
|
||||
void handleRoot();
|
||||
void handleDownloadCSV();
|
||||
bool handleCreateNewLogbook();
|
||||
byte addRowToCSV();
|
||||
String getCurrentDateTime();
|
||||
bool isDST(time_t t);
|
||||
void handleLogo();
|
||||
void printLogbookCSV();
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user