ESPArduino Hotspot
Posted: Sun Mar 29, 2015 12:43 pm
Can anyone help with a code snippet for a hotspot written with Arduino IDE ?
-->
Open Community Forum for ESP8266, Come share Arduino and IoT (Internet of Things)
https://www.esp8266.com/
hotspot or access point? you cant use esp8266 as hotspot.
#include <ESP8266WiFi.h>
void setup() {
const int channel = 6;
WiFi.softAP("ssid", "passphrase", channel);
}