setHostname()



Açıklama

Bir DHCP sunucusundan bir IP adresi istendiğinde modülün ana bilgisayar adını ayarlar, ana bilgisayar adı WiFi .begin (...) içinde gönderilir.

Sözdizimi

WiFi .setHostname (ana bilgisayar adı)

Parametreler

hostname - kullanılacak yeni hostname

İadeler

Hiçbir şey değil

Misal


  WiFi.setHostname(“MyArduino”);

  // 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