#include <WiFi.h>
#include <WiFiManager.h>
#include <Adafruit_GFX.h>
#include <Adafruit_SSD1306.h>
#include <OneWire.h>
#include <DallasTemperature.h>
#include "DHTesp.h"
#include "core.h"
WiFiManager wm;
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
work::init(&wm);
}
void loop() {
delay(10); // this speeds up the simulation
}