Browse Source

Added wifi.ap command to go into AP mode

i18n
Xose Pérez 6 years ago
parent
commit
6c25ae5c07
1 changed files with 5 additions and 0 deletions
  1. +5
    -0
      code/espurna/wifi.ino

+ 5
- 0
code/espurna/wifi.ino View File

@ -285,6 +285,11 @@ void _wifiInitCommands() {
DEBUG_MSG_P(PSTR("+OK\n"));
});
settingsRegisterCommand(F("WIFI.AP"), [](Embedis* e) {
createAP();
DEBUG_MSG_P(PSTR("+OK\n"));
});
settingsRegisterCommand(F("WIFI.SCAN"), [](Embedis* e) {
_wifiScan();
DEBUG_MSG_P(PSTR("+OK\n"));


Loading…
Cancel
Save