Files
IoTManager/include/ESP8266.h

19 lines
328 B
C
Raw Normal View History

2020-06-20 14:27:58 +03:00
#pragma once
#ifdef ESP8266
2020-06-21 03:43:15 +03:00
2020-06-20 14:27:58 +03:00
#include <ESP8266HTTPClient.h>
#include <ESP8266HTTPUpdateServer.h>
#include <ESP8266httpUpdate.h>
2020-06-21 03:43:15 +03:00
#include <ESPAsyncWebServer.h>
#include <LittleFS.h>
#include <SPIFFSEditor.h>
2020-06-20 14:27:58 +03:00
#include <Servo.h>
#include <WiFiUdp.h>
2020-06-21 03:43:15 +03:00
#ifdef MDNS_ENABLED
2020-06-20 14:27:58 +03:00
#include <ESP8266mDNS.h>
#endif
extern WiFiUDP Udp;
#endif