mirror of
https://github.com/IoTManagerProject/IoTManager.git
synced 2026-03-26 22:22:16 +03:00
26 lines
345 B
C
26 lines
345 B
C
#pragma once
|
|
|
|
#ifdef ESP32
|
|
// don't change order
|
|
#include "WiFi.h"
|
|
//
|
|
|
|
#include "ESPAsyncWebServer.h"
|
|
#include "SPIFFSEditor.h"
|
|
// don't change order
|
|
#include <AsyncUDP.h>
|
|
#include <ESP32Servo.h>
|
|
#include <HTTPClient.h>
|
|
#include <HTTPUpdate.h>
|
|
|
|
//
|
|
#include <WiFi.h>
|
|
|
|
|
|
#ifdef MDNS_ENABLED
|
|
#include <ESPmDNS.h>
|
|
#endif
|
|
|
|
extern AsyncUDP udp;
|
|
|
|
#endif |