Skip to content

Instantly share code, notes, and snippets.

View Boy254023's full-sized avatar

ัเ้รคสมเะัร Boy254023

View GitHub Profile
#include<WiFi.h>
#define WIFI_AP_NAME "ESP32 AP mode"
#define WIFI_AP_PASS NULL
void setup() {
Serial.begin(115200);
WiFi.mode(WIFI_AP);
WiFi.softAP(WIFI_AP_NAME, WIFI_AP_PASS);