Initialize git
This commit is contained in:
22
hal/esp32/wifi_server.h
Normal file
22
hal/esp32/wifi_server.h
Normal file
@@ -0,0 +1,22 @@
|
||||
/**
|
||||
* @file wifi_server.h
|
||||
* @brief WiFi Access Point + WebServer for time sync and notes management
|
||||
*/
|
||||
|
||||
#ifndef WIFI_SERVER_H
|
||||
#define WIFI_SERVER_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
void wifi_server_start(void);
|
||||
void wifi_server_stop(void);
|
||||
void wifi_server_handle(void);
|
||||
bool wifi_server_is_running(void);
|
||||
|
||||
#ifdef __cplusplus
|
||||
} /* extern "C" */
|
||||
#endif
|
||||
|
||||
#endif /* WIFI_SERVER_H */
|
||||
Reference in New Issue
Block a user