bool wifiScan(WiFly myWiFly) { // un scan wifi via le RN 171 met environ 2500ms par défaut: // - 200ms par canal // - 13 canaux if (myWiFly.sendCommand(wifiScanStr)) { return true; } else { return false; } }
bool wifiSetup(WiFly myWiFly) { // Scan, nouveau mode nécessite un firmware >= 2.22 if (myWiFly.version() < 2.22) { return false; } if (myWiFly.sendCommand(wifiCompactModeStr)) { return true; } else { return false; } }