123456789101112131415161718 |
- #ifndef __max80_WIFI_H__
- #define __max80_WIFI_H__
- #include <Arduino.h>
- #include "max80_config.h"
- #include <WiFi.h>
- namespace max80 {
- class wifi {
- public:
- void setup();
- void reconnect();
- private:
- };
- }
- #endif // __max80_WIFI_H__
|