Files
2026-08-14 00:51:51 -05:00

13 lines
137 B
C++

#ifndef _WIFI_HPP
#define _WIFI_HPP
#include "esp_err.h"
class Wifi {
public:
static esp_err_t init();
};
#endif /* _WIFI_HPP */