|
#include <Arduino.h>
|
|
#include <ESP8266WiFi.h>
|
|
#include <ESPAsyncTCP.h>
|
|
#include <ESPAsyncWebServer.h>
|
|
#include <AsyncElegantOTA.h>
|
|
#include <Wire.h>
|
|
|
|
AsyncWebServer server(80);
|
|
|
|
// WiFi settings
|
|
const char* ssid = "LILiK_WiFi"; //replace with your SSID
|
|
const char* password = "pippopippo"; //password
|
|
String hostname = "PyCoffee";
|
|
|
|
|
|
// HTML WEB interface
|
|
const char index_html[] PROGMEM = R"rawliteral(
|
|
<!DOCTYPE HTML><html><head>
|
|
<title>PyCoffee HTML interface</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
</head><body>
|
|
<h2>Ciao! Sono l'ESP8266 che gestisce la PyCoffee!</h2>
|
|
<style>
|
|
html {font-family: Times New Roman; display: inline-block; text-align: center;}
|
|
h2 {font-size: 2.0rem;}
|
|
h3 {font-size: 2.0rem; color: #FF0000;}
|
|
</style>
|
|
|
|
<h2>Clicca qui sotto per aggiornare il firmware, o il secondo link per il sorgente.</h2>
|
|
<a href='/update'>⬆️ OTA Firmware_Update ⬆️</a>
|
|
<a href='https://projects.lilik.it/LILiK/PyCoffee_ESP8266'>☕Gitea☕</a><br><br>
|
|
|
|
</body></html>)rawliteral";
|
|
|
|
void notFound(AsyncWebServerRequest *request) {
|
|
request->send(404, "text/plain", "Not found");
|
|
}
|
|
|
|
// the setup function runs once when you press reset or power the board
|
|
void setup(void) {
|
|
WiFi.mode(WIFI_STA);
|
|
// WiFi.config(INADDR_NONE, INADDR_NONE, INADDR_NONE, INADDR_NONE);
|
|
WiFi.setHostname(hostname.c_str()); //define hostname
|
|
WiFi.begin(ssid, password);
|
|
|
|
|
|
// Send web page with input fields to client
|
|
server.on("/", HTTP_GET, [](AsyncWebServerRequest * request) {
|
|
request->send(200, "text/html", index_html);
|
|
});
|
|
|
|
server.onNotFound(notFound);
|
|
AsyncElegantOTA.begin(&server); // Start ElegantOTA
|
|
server.begin();
|
|
Serial.println("HTTP server started");
|
|
}
|
|
|
|
// the loop function runs over and over again forever
|
|
void loop() {
|
|
|
|
}
|