So you're a Noob? Post your questions here until you graduate! Don't be shy.

User avatar
By pablopablo
#81372 Hey guys,

For a project I would like to create a list of SSIDs from a sentence that will appear in the correct order and just trying to figure out a way of doing it?

Code: Select all#include <ESP8266WiFi.h>
void setup() {
  WiFi.persistent(false); // What does this mean?
  WiFi.mode(WIFI_AP); // What does this mean??

}

void loop() {
String ssids[] = { "All work ", "no Play ", "makes","Jack","a ","dull boy"};
int howManySsids = 6;
int i;
  for (i = 0; i<howManySsids; i++){
  WiFi.softAP(ssids[i].c_str());
  delay(5000);
  }


So for example I would like the above to appear on any surrounding computers as

All Work
no Play
Makes
Jack
A
Dull Boy

I just found this project https://github.com/H-LK/ESP8266-SSID-Text-Broadcast

Which I would like to do, without the numbers - ....

Any suggestions, would be great!