This tutorial will teach you how to deploy a Flutter-based app to Play Store using GitLab CI.
If you encounter a variable you don't recognize while reading, take a look here.
Variable name | Description |
---|
/* Create a WiFi access point and provide a web server on it. */ | |
#include <ESP8266WiFi.h> | |
#include "./DNSServer.h" // Patched lib | |
#include <ESP8266WebServer.h> | |
const byte DNS_PORT = 53; // Capture DNS requests on port 53 | |
IPAddress apIP(10, 10, 10, 1); // Private network for server | |
DNSServer dnsServer; // Create the DNS object | |
ESP8266WebServer webServer(80); // HTTP server |