You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

46 lines
730 B
C++

#include <Arduino.h>
#include <SPI.h>
#include "device.h"
#include "wlan.h"
#include "display.h"
#include "settings.h"
#include "cloud.h"
#include "configure.h"
void gotoDeepSleep();
String getWakeupReason();
void setup()
{
// put your setup code here, to run once:
Serial.begin(115200);
delay(100); //Take some time to open up the Serial Monitor
Serial.println();
Serial.println("setup...");
Serial.println();
setupDisplay();
setupSettings();
// setup hardware
//setupConfig();
//setupDeepSleep();
setupDevice();
setupWlan();
setupCloud();
Serial.println();
Serial.println("setup... done");
}
void loop()
{
// put your main code here, to run repeatedly:
loopCloud();
loopDevice();
loopConfigure();
}