Komut
setTimeout()
Açıklama
WiFi .begin (...) için bağlantı zaman aşımı değerini milisaniye olarak ayarlar.
Sözdizimi
WiFi .setTimeout (zaman aşımı)
Parametreler
timeout - milisaniye cinsinden bağlantı zaman aşımı değeri
İadeler
Hiçbir şey değil
Misal
…
WiF.setTimeout(120 * 1000);
// attempt to connect to Wifi network:
while (status != WL_CONNECTED) {
Serial.print("Attempting to connect to SSID: ");
Serial.println(ssid);
// Connect to WPA/WPA2 network. Change this line if using open or WEP network:
status = WiFi.begin(ssid, pass);
// wait 10 seconds for connection:
delay(10000);
}
…
WiF.setTimeout(120 * 1000);
// attempt to connect to Wifi network:
while (status != WL_CONNECTED) {
Serial.print("Attempting to connect to SSID: ");
Serial.println(ssid);
// Connect to WPA/WPA2 network. Change this line if using open or WEP network:
status = WiFi.begin(ssid, pass);
// wait 10 seconds for connection:
delay(10000);
}
…
See Also
- begin()
- end()
- beginAP()
- beginEnterprise()
- disconnect()
- config()
- setDNS()
- setHostname()
- SSID()
- BSSID()
- RSSI()
- channel()
- encryptionType()
- scanNetworks()
- ping()
- status()
- macAddress()
- firmwareVersion()
- lowPowerMode()
- noLowPowerMode()
- reasonCode()
- hostByName()
- localIP()
- subnetMask()
- gatewayIP()