I would like to change the channel assigned to an ESP8266 WIFI module and I did not find any usefull information ...
I did a test with the following instructions:
const char *ssid = "ESP8266";
const char *password = "hello2017";
int channel = 6;
WiFi.mode(WIFI_AP);
WiFi.softAP(ssid, password, channel);
Compilation is ok but the ESP8266 channel does not change ...
(I use WIFI Analyze for Android to check ).
Thank you for your help.
Pascal