max80_wifi.h 242 B

123456789101112131415161718
  1. #ifndef __max80_WIFI_H__
  2. #define __max80_WIFI_H__
  3. #include <Arduino.h>
  4. #include "max80_config.h"
  5. #include <WiFi.h>
  6. namespace max80 {
  7. class wifi {
  8. public:
  9. void setup();
  10. void reconnect();
  11. private:
  12. };
  13. }
  14. #endif // __max80_WIFI_H__