Make SSIDs appear in a certain order?
Posted: Tue Mar 26, 2019 7:17 am
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?
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!
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!