#include <WiFi.h>
const char* ssid = "tendaivl";
const char* password = "thangbomay";
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
WiFi.softAP(ssid, password);
Serial.println();
Serial.print("Access point SSID: ");
Serial.println(ssid);
Serial.print("Ip address: ");
Serial.println(WiFi.softAPIP());
}
void loop() {
// put your main code here, to run repeatedly:
// this speeds up the simulation
}