Files
IoTManager/include/ESP32.h

26 lines
369 B
C
Raw Normal View History

2020-06-20 14:27:58 +03:00
#pragma once
#ifdef ESP32
2020-06-21 03:43:15 +03:00
// don't change order
#include "WiFi.h"
//
#include "ESPAsyncWebServer.h"
#include "SPIFFSEditor.h"
// don't change order
2020-06-20 14:27:58 +03:00
#include <AsyncUDP.h>
#include <ESP32Servo.h>
#include <HTTPClient.h>
#include <HTTPUpdate.h>
2020-06-21 03:43:15 +03:00
//
2020-06-20 14:27:58 +03:00
#include <WiFi.h>
#include <analogWrite.h>
2020-06-21 03:43:15 +03:00
#ifdef MDNS_ENABLED
2020-06-20 14:27:58 +03:00
#include <ESPmDNS.h>
#endif
extern AsyncUDP udp;
2020-06-21 03:43:15 +03:00
2020-06-20 14:27:58 +03:00
#endif