Final answer:
To make the NodeMCU an access point and serve a static HTML web page, you can use the provided Arduino code. Replace "Your_SSID" and "Your_Password" with your network name and password.
Step-by-step explanation:
Arduino Code to Make NodeMCU as an Access Point
In order to make the NodeMCU act as an access point and serve a static HTML web page, you can use the following Arduino code:
#include <ESP8266WiFi.h>
const char* ssid = "Your_SSID";
const char* password = "Your_Password";
void setup() {
WiFi.softAP(ssid, password);
IPAddress IP = WiFi.softAPIP();
server.on("/", handleRoot);
server.begin();
}
void loop() {
server.handleClient();
}
void handleRoot() {
String webpage = "<html><head></head><body><h1>Welcome to my webpage</h1><button>Button 1</button><button>Button 2</button></body></html>";
server.send(200, "text/html", webpage);
}
Make sure to replace "Your_SSID" and "Your_Password" with your desired network name and password. The code sets up the NodeMCU as an access point, defines a simple web page, and sends it in response to any HTTP GET request received.