Your new topic does not fit any of the above??? Check first. Then post here. Thanks.

Moderator: igrr

User avatar
By marklein
#40594 I'd like to allow the user of my device to store a custom name for the device to use on MDNS, but it doesn't compile if I try to use MDNS.begin(x); Is this simply not supported?
User avatar
By schufti
#40651 if you look at the examples, it is used like this
Code: Select all  if (!MDNS.begin("esp8266")) {
    Serial.println("Error setting up MDNS responder!");
    while(1) {
      delay(1000);
    }
  }
  Serial.println("mDNS responder started");