Your new topic does not fit any of the above??? Check first. Then post here. Thanks.

Moderator: igrr

User avatar
By alonewolfx2
#12952 hotspot or access point? you cant use esp8266 as hotspot.
User avatar
By voyager
#12961
hotspot or access point? you cant use esp8266 as hotspot.

What do mean? With ESPArduino or at all? Thats not true. Using nodemcu with lua or with pure AT commands you surely can build an AP or a hotspot and i believe with the right commands it is also possible with ESPArduino. Maybe the creators of this wonderful softwarecould answer this.
User avatar
By igrr
#12964 Something along these lines:

Code: Select all#include <ESP8266WiFi.h>

void setup() {
  const int channel = 6;
  WiFi.softAP("ssid", "passphrase", channel);
}