Fork of the espurna firmware for `mhsw` switches
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
285 B

  1. /*
  2. LLMNR MODULE
  3. Copyright (C) 2017-2018 by Xose Pérez <xose dot perez at gmail dot com>
  4. */
  5. #if LLMNR_SUPPORT
  6. #include <ESP8266LLMNR.h>
  7. void llmnrSetup() {
  8. LLMNR.begin(getSetting("hostname").c_str());
  9. DEBUG_MSG_P(PSTR("[LLMNR] Configured\n"));
  10. }
  11. #endif // LLMNR_SUPPORT