13 lines
137 B
C++
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 */
|