122k views
0 votes
Write the Arduino code to make NodeMCU as an access point and serve static HTML web page in response to the HTTP GET requests. You dont have to use external router. Your HTML page should have buttons

User LiuXiMin
by
7.1k points

1 Answer

2 votes

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.

User KCzar
by
7.6k points