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.

29 lines
454 B

  1. /*
  2. WIFI MODULE
  3. Copyright (C) 2016-2019 by Xose Pérez <xose dot perez at gmail dot com>
  4. */
  5. uint8_t wifiState();
  6. void wifiReconnectCheck();
  7. bool wifiConnected();
  8. String getNetwork();
  9. String getIP();
  10. void wifiDebug();
  11. void wifiDebug(WiFiMode_t modes);
  12. void wifiStartAP();
  13. void wifiStartSTA();
  14. void wifiDisconnect();
  15. void wifiStartWPS();
  16. void wifiStartSmartConfig();
  17. void wifiRegister(wifi_callback_f callback);
  18. void wifiSetup();
  19. void wifiLoop();