mirror of
https://github.com/letscontrolit/ESPEasy.git
synced 2026-09-15 02:54:26 +00:00
37 lines
450 B
C++
37 lines
450 B
C++
#include <Arduino.h>
|
|
|
|
#include "ESPEasy-Globals.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
boolean printToWeb = false;
|
|
String printWebString;
|
|
boolean printToWebJSON = false;
|
|
|
|
|
|
|
|
unsigned long timermqtt_interval = 250;
|
|
unsigned long lastSend = 0;
|
|
unsigned long lastWeb = 0;
|
|
|
|
unsigned long wdcounter = 0;
|
|
unsigned long timerAwakeFromDeepSleep = 0;
|
|
|
|
|
|
#if FEATURE_ADC_VCC
|
|
float vcc = -1.0f;
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
bool shouldReboot(false);
|
|
bool firstLoop(true);
|
|
|
|
|
|
boolean UseRTOSMultitasking(false);
|