
ESP32 wifi manager
Zdravím
Protože mám desku https://arduino-shop.cz/arduino/1581-esp-32s-esp32-development-board-2-4ghz-dual-mode-wifi-bluetooth-antenna-module.html?gclid=EAIaIQobChMIru-i3L7q5gIVz-d3Ch0yWAgoEAQYASABEgJYjvD_BwE tak bych potřeboval abych si mohl ověřit funkci WiFi manageru našel jsem si projekt https://www.instructables.com/id/ESP8266-and-ESP32-With-WiFiManager/ postupoval jsem tak jak to tam je stáhl jsem si ti tři knihovny a naimportoval je ale zamrz jsem tady
okopíroval jsem toto
#if defined(ESP8266)
#include <ESP8266WiFi.h> //ESP8266 Core WiFi Library
#else
#include <WiFi.h> //ESP32 Core WiFi Library
#endif
#if defined(ESP8266)
#include <ESP8266WebServer.h> //Local WebServer used to serve the configuration portal
#else
#include <WebServer.h> //Local DNS Server used for redirecting all requests to the configuration portal ( https://github.com/zhouhan0126/DNSServer---esp32 )
#endif
#include <DNSServer.h> //Local WebServer used to serve the configuration portal ( https://github.com/zhouhan0126/DNSServer---esp32 )
#include <WiFiManager.h> // WiFi Configuration Magic ( https://github.com/zhouhan0126/DNSServer---esp32 ) >> https://github.com/zhouhan0126/DNSServer---esp32 (ORIGINAL)
kde je problém? předem díky za pomoc