Files
Watch-OS/hal/esp32/wifi_server.h
Kazimierz Ciołek f17984820f Initialize git
2026-02-25 01:56:31 +01:00

23 lines
391 B
C

/**
* @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 */