2018-11-26 16:02:08 +00:00
|
|
|
#include <DNSServer.h>
|
2017-10-20 09:49:54 +00:00
|
|
|
#include <ESPUI.h>
|
2017-05-19 23:32:31 +00:00
|
|
|
|
2018-11-26 16:02:08 +00:00
|
|
|
const byte DNS_PORT = 53;
|
2022-01-08 16:31:37 +00:00
|
|
|
IPAddress apIP(192, 168, 4, 1);
|
2018-11-26 16:02:08 +00:00
|
|
|
DNSServer dnsServer;
|
|
|
|
|
2017-12-01 16:11:16 +00:00
|
|
|
#if defined(ESP32)
|
2018-11-26 16:02:08 +00:00
|
|
|
#include <WiFi.h>
|
2017-12-01 16:11:16 +00:00
|
|
|
#else
|
2023-07-19 10:07:25 +00:00
|
|
|
// esp8266
|
2018-11-26 16:02:08 +00:00
|
|
|
#include <ESP8266WiFi.h>
|
2023-07-19 10:07:25 +00:00
|
|
|
#include <umm_malloc/umm_heap_select.h>
|
2023-09-11 11:29:32 +00:00
|
|
|
#ifndef CORE_MOCK
|
2023-07-19 10:07:25 +00:00
|
|
|
#ifndef MMU_IRAM_HEAP
|
|
|
|
#warning Try MMU option '2nd heap shared' in 'tools' IDE menu (cf. https://arduino-esp8266.readthedocs.io/en/latest/mmu.html#option-summary)
|
|
|
|
#warning use decorators: { HeapSelectIram doAllocationsInIRAM; ESPUI.addControl(...) ... } (cf. https://arduino-esp8266.readthedocs.io/en/latest/mmu.html#how-to-select-heap)
|
|
|
|
#warning then check http://<ip>/heap
|
|
|
|
#endif // MMU_IRAM_HEAP
|
2023-09-11 11:29:32 +00:00
|
|
|
#ifndef DEBUG_ESP_OOM
|
2023-07-19 10:07:25 +00:00
|
|
|
#error on ESP8266 and ESPUI, you must define OOM debug option when developping
|
|
|
|
#endif
|
2017-12-01 16:11:16 +00:00
|
|
|
#endif
|
2023-09-11 11:29:32 +00:00
|
|
|
#endif
|
2017-12-01 16:11:16 +00:00
|
|
|
|
2022-01-04 10:20:04 +00:00
|
|
|
const char* ssid = "ESPUI";
|
|
|
|
const char* password = "espui";
|
2019-12-28 13:54:41 +00:00
|
|
|
|
2022-01-04 10:20:04 +00:00
|
|
|
const char* hostname = "espui";
|
2017-05-19 23:32:31 +00:00
|
|
|
|
2019-03-26 15:22:21 +00:00
|
|
|
int statusLabelId;
|
|
|
|
int graphId;
|
2019-03-24 18:18:53 +00:00
|
|
|
int millisLabelId;
|
|
|
|
int testSwitchId;
|
2019-03-04 19:49:18 +00:00
|
|
|
|
2022-01-04 10:20:04 +00:00
|
|
|
void numberCall(Control* sender, int type)
|
|
|
|
{
|
|
|
|
Serial.println(sender->value);
|
2019-03-03 20:17:49 +00:00
|
|
|
}
|
2018-11-26 17:25:10 +00:00
|
|
|
|
2022-01-04 10:20:04 +00:00
|
|
|
void textCall(Control* sender, int type)
|
|
|
|
{
|
|
|
|
Serial.print("Text: ID: ");
|
|
|
|
Serial.print(sender->id);
|
|
|
|
Serial.print(", Value: ");
|
|
|
|
Serial.println(sender->value);
|
2019-03-26 15:22:21 +00:00
|
|
|
}
|
|
|
|
|
2022-01-04 10:20:04 +00:00
|
|
|
void slider(Control* sender, int type)
|
|
|
|
{
|
|
|
|
Serial.print("Slider: ID: ");
|
|
|
|
Serial.print(sender->id);
|
|
|
|
Serial.print(", Value: ");
|
|
|
|
Serial.println(sender->value);
|
|
|
|
// Like all Control Values in ESPUI slider values are Strings. To use them as int simply do this:
|
|
|
|
int sliderValueWithOffset = sender->value.toInt() + 100;
|
|
|
|
Serial.print("SliderValue with offset");
|
|
|
|
Serial.println(sliderValueWithOffset);
|
2017-10-17 09:55:25 +00:00
|
|
|
}
|
2017-10-19 11:46:47 +00:00
|
|
|
|
2022-01-04 10:20:04 +00:00
|
|
|
void buttonCallback(Control* sender, int type)
|
|
|
|
{
|
|
|
|
switch (type)
|
|
|
|
{
|
|
|
|
case B_DOWN:
|
|
|
|
Serial.println("Button DOWN");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case B_UP:
|
|
|
|
Serial.println("Button UP");
|
|
|
|
break;
|
|
|
|
}
|
2017-10-17 09:55:25 +00:00
|
|
|
}
|
2022-01-04 10:20:04 +00:00
|
|
|
|
2022-06-11 14:56:35 +00:00
|
|
|
void buttonExample(Control* sender, int type, void* param)
|
2022-01-04 10:20:04 +00:00
|
|
|
{
|
2023-09-06 20:50:42 +00:00
|
|
|
Serial.print("param: ");
|
2023-09-11 11:29:32 +00:00
|
|
|
Serial.println((long)param);
|
2022-01-04 10:20:04 +00:00
|
|
|
switch (type)
|
|
|
|
{
|
|
|
|
case B_DOWN:
|
|
|
|
Serial.println("Status: Start");
|
|
|
|
ESPUI.print(statusLabelId, "Start");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case B_UP:
|
|
|
|
Serial.println("Status: Stop");
|
|
|
|
ESPUI.print(statusLabelId, "Stop");
|
|
|
|
break;
|
|
|
|
}
|
2017-10-19 15:39:31 +00:00
|
|
|
}
|
2022-01-04 10:20:04 +00:00
|
|
|
void padExample(Control* sender, int value)
|
|
|
|
{
|
|
|
|
switch (value)
|
|
|
|
{
|
|
|
|
case P_LEFT_DOWN:
|
|
|
|
Serial.print("left down");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case P_LEFT_UP:
|
|
|
|
Serial.print("left up");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case P_RIGHT_DOWN:
|
|
|
|
Serial.print("right down");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case P_RIGHT_UP:
|
|
|
|
Serial.print("right up");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case P_FOR_DOWN:
|
|
|
|
Serial.print("for down");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case P_FOR_UP:
|
|
|
|
Serial.print("for up");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case P_BACK_DOWN:
|
|
|
|
Serial.print("back down");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case P_BACK_UP:
|
|
|
|
Serial.print("back up");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case P_CENTER_DOWN:
|
|
|
|
Serial.print("center down");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case P_CENTER_UP:
|
|
|
|
Serial.print("center up");
|
|
|
|
break;
|
|
|
|
}
|
2017-10-19 15:39:31 +00:00
|
|
|
|
2022-01-04 10:20:04 +00:00
|
|
|
Serial.print(" ");
|
|
|
|
Serial.println(sender->id);
|
|
|
|
}
|
2019-03-03 20:17:49 +00:00
|
|
|
|
2022-01-04 10:20:04 +00:00
|
|
|
void switchExample(Control* sender, int value)
|
|
|
|
{
|
|
|
|
switch (value)
|
|
|
|
{
|
|
|
|
case S_ACTIVE:
|
|
|
|
Serial.print("Active:");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case S_INACTIVE:
|
|
|
|
Serial.print("Inactive");
|
|
|
|
break;
|
|
|
|
}
|
2019-03-03 20:17:49 +00:00
|
|
|
|
2022-01-04 10:20:04 +00:00
|
|
|
Serial.print(" ");
|
|
|
|
Serial.println(sender->id);
|
2017-10-19 15:39:31 +00:00
|
|
|
}
|
|
|
|
|
2022-01-04 10:20:04 +00:00
|
|
|
void otherSwitchExample(Control* sender, int value)
|
|
|
|
{
|
|
|
|
switch (value)
|
|
|
|
{
|
|
|
|
case S_ACTIVE:
|
|
|
|
Serial.print("Active:");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case S_INACTIVE:
|
|
|
|
Serial.print("Inactive");
|
|
|
|
break;
|
|
|
|
}
|
2019-03-03 20:17:49 +00:00
|
|
|
|
2022-01-04 10:20:04 +00:00
|
|
|
Serial.print(" ");
|
|
|
|
Serial.println(sender->id);
|
2017-05-19 23:32:31 +00:00
|
|
|
}
|
2018-01-08 11:25:36 +00:00
|
|
|
|
2022-01-04 10:20:04 +00:00
|
|
|
void setup(void)
|
|
|
|
{
|
|
|
|
ESPUI.setVerbosity(Verbosity::VerboseJSON);
|
|
|
|
Serial.begin(115200);
|
2019-03-03 20:17:49 +00:00
|
|
|
|
|
|
|
#if defined(ESP32)
|
2022-01-04 10:20:04 +00:00
|
|
|
WiFi.setHostname(hostname);
|
2019-03-03 20:17:49 +00:00
|
|
|
#else
|
2022-01-04 10:20:04 +00:00
|
|
|
WiFi.hostname(hostname);
|
2019-03-03 20:17:49 +00:00
|
|
|
#endif
|
|
|
|
|
2022-01-04 10:20:04 +00:00
|
|
|
// try to connect to existing network
|
|
|
|
WiFi.begin(ssid, password);
|
|
|
|
Serial.print("\n\nTry to connect to existing network");
|
|
|
|
|
|
|
|
{
|
|
|
|
uint8_t timeout = 10;
|
|
|
|
|
|
|
|
// Wait for connection, 5s timeout
|
|
|
|
do
|
|
|
|
{
|
|
|
|
delay(500);
|
|
|
|
Serial.print(".");
|
|
|
|
timeout--;
|
|
|
|
} while (timeout && WiFi.status() != WL_CONNECTED);
|
|
|
|
|
|
|
|
// not connected -> create hotspot
|
|
|
|
if (WiFi.status() != WL_CONNECTED)
|
|
|
|
{
|
|
|
|
Serial.print("\n\nCreating hotspot");
|
2022-09-21 07:58:05 +00:00
|
|
|
|
2022-01-04 10:20:04 +00:00
|
|
|
WiFi.mode(WIFI_AP);
|
2022-01-08 16:31:37 +00:00
|
|
|
delay(100);
|
2022-01-04 10:20:04 +00:00
|
|
|
WiFi.softAPConfig(apIP, apIP, IPAddress(255, 255, 255, 0));
|
2022-01-08 16:31:37 +00:00
|
|
|
#if defined(ESP32)
|
|
|
|
uint32_t chipid = 0;
|
|
|
|
for (int i = 0; i < 17; i = i + 8)
|
|
|
|
{
|
|
|
|
chipid |= ((ESP.getEfuseMac() >> (40 - i)) & 0xff) << i;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
uint32_t chipid = ESP.getChipId();
|
|
|
|
#endif
|
|
|
|
char ap_ssid[25];
|
|
|
|
snprintf(ap_ssid, 26, "ESPUI-%08X", chipid);
|
|
|
|
WiFi.softAP(ap_ssid);
|
2022-01-04 10:20:04 +00:00
|
|
|
|
|
|
|
timeout = 5;
|
|
|
|
|
|
|
|
do
|
|
|
|
{
|
|
|
|
delay(500);
|
|
|
|
Serial.print(".");
|
|
|
|
timeout--;
|
|
|
|
} while (timeout);
|
|
|
|
}
|
|
|
|
}
|
2019-03-03 20:17:49 +00:00
|
|
|
|
2022-01-04 10:20:04 +00:00
|
|
|
dnsServer.start(DNS_PORT, "*", apIP);
|
|
|
|
|
|
|
|
Serial.println("\n\nWiFi parameters:");
|
|
|
|
Serial.print("Mode: ");
|
|
|
|
Serial.println(WiFi.getMode() == WIFI_AP ? "Station" : "Client");
|
|
|
|
Serial.print("IP address: ");
|
|
|
|
Serial.println(WiFi.getMode() == WIFI_AP ? WiFi.softAPIP() : WiFi.localIP());
|
|
|
|
|
2023-07-19 10:07:25 +00:00
|
|
|
#ifdef ESP8266
|
|
|
|
{ HeapSelectIram doAllocationsInIRAM;
|
|
|
|
#endif
|
|
|
|
|
2022-01-04 10:20:04 +00:00
|
|
|
statusLabelId = ESPUI.label("Status:", ControlColor::Turquoise, "Stop");
|
|
|
|
millisLabelId = ESPUI.label("Millis:", ControlColor::Emerald, "0");
|
|
|
|
ESPUI.button("Push Button", &buttonCallback, ControlColor::Peterriver, "Press");
|
2022-06-11 14:56:35 +00:00
|
|
|
ESPUI.button("Other Button", &buttonExample, ControlColor::Wetasphalt, "Press", (void*)19);
|
2022-01-04 10:20:04 +00:00
|
|
|
ESPUI.padWithCenter("Pad with center", &padExample, ControlColor::Sunflower);
|
|
|
|
ESPUI.pad("Pad without center", &padExample, ControlColor::Carrot);
|
|
|
|
testSwitchId = ESPUI.switcher("Switch one", &switchExample, ControlColor::Alizarin, false);
|
|
|
|
ESPUI.switcher("Switch two", &otherSwitchExample, ControlColor::None, true);
|
|
|
|
ESPUI.slider("Slider one", &slider, ControlColor::Alizarin, 30);
|
|
|
|
ESPUI.slider("Slider two", &slider, ControlColor::None, 100);
|
|
|
|
ESPUI.text("Text Test:", &textCall, ControlColor::Alizarin, "a Text Field");
|
|
|
|
ESPUI.number("Numbertest", &numberCall, ControlColor::Alizarin, 5, 0, 10);
|
|
|
|
|
|
|
|
graphId = ESPUI.graph("Graph Test", ControlColor::Wetasphalt);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* .begin loads and serves all files from PROGMEM directly.
|
|
|
|
* If you want to serve the files from LITTLEFS use ESPUI.beginLITTLEFS
|
|
|
|
* (.prepareFileSystem has to be run in an empty sketch before)
|
|
|
|
*/
|
|
|
|
|
|
|
|
// Enable this option if you want sliders to be continuous (update during move) and not discrete (update on stop)
|
|
|
|
// ESPUI.sliderContinuous = true;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Optionally you can use HTTP BasicAuth. Keep in mind that this is NOT a
|
|
|
|
* SECURE way of limiting access.
|
|
|
|
* Anyone who is able to sniff traffic will be able to intercept your password
|
|
|
|
* since it is transmitted in cleartext. Just add a string as username and
|
|
|
|
* password, for example begin("ESPUI Control", "username", "password")
|
|
|
|
*/
|
|
|
|
ESPUI.begin("ESPUI Control");
|
2023-07-19 10:07:25 +00:00
|
|
|
|
|
|
|
#ifdef ESP8266
|
|
|
|
} // HeapSelectIram
|
|
|
|
#endif
|
2022-01-04 10:20:04 +00:00
|
|
|
}
|
2018-01-08 11:25:36 +00:00
|
|
|
|
2022-01-04 10:20:04 +00:00
|
|
|
void loop(void)
|
|
|
|
{
|
|
|
|
dnsServer.processNextRequest();
|
2019-03-03 20:17:49 +00:00
|
|
|
|
2022-01-04 10:20:04 +00:00
|
|
|
static long oldTime = 0;
|
|
|
|
static bool testSwitchState = false;
|
2019-03-03 20:17:49 +00:00
|
|
|
|
2022-01-04 10:20:04 +00:00
|
|
|
if (millis() - oldTime > 5000)
|
|
|
|
{
|
|
|
|
ESPUI.print(millisLabelId, String(millis()));
|
2019-03-03 20:17:49 +00:00
|
|
|
|
2022-01-04 10:20:04 +00:00
|
|
|
ESPUI.addGraphPoint(graphId, random(1, 50));
|
2019-03-03 20:17:49 +00:00
|
|
|
|
2022-01-04 10:20:04 +00:00
|
|
|
testSwitchState = !testSwitchState;
|
|
|
|
ESPUI.updateSwitcher(testSwitchId, testSwitchState);
|
|
|
|
|
|
|
|
oldTime = millis();
|
2019-03-03 20:17:49 +00:00
|
|
|
}
|
2018-01-08 11:25:36 +00:00
|
|
|
}
|