Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/AutoConnect/commit/0cbb08a6f1b95406242029799824121292439f79?style=unified&whitespace=ignore-change You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fixed missing #include <WebServer.h>

pull/41/head
Hieromon Ikasamo 6 years ago
parent d148602358
commit 0cbb08a6f1
  1. 1
      examples/mqttRSSI/mqttRSSI.ino
  2. 1
      examples/mqttRSSI_FS/mqttRSSI_FS.ino

@ -19,6 +19,7 @@ https://opensource.org/licenses/MIT
#define GET_CHIPID() (ESP.getChipId())
#elif defined(ARDUINO_ARCH_ESP32)
#include <WiFi.h>
#include <WebServer.h>
#include <SPIFFS.h>
#include <HTTPClient.h>
#define GET_CHIPID() ((uint16_t)(ESP.getEfuseMac()>>32))

@ -24,6 +24,7 @@
#define GET_CHIPID() (ESP.getChipId())
#elif defined(ARDUINO_ARCH_ESP32)
#include <WiFi.h>
#include <WebServer.h>
#include <SPIFFS.h>
#include <HTTPClient.h>
#define GET_CHIPID() ((uint16_t)(ESP.getEfuseMac()>>32))

Loading…
Cancel
Save