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.

42 lines
649 B
C++

#include <Arduino.h>
#include <SPI.h>
#include "device.h"
#include "wlan.h"
#include "display.h"
#include "cloud.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();
// 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();
}