12 lines
202 B
C
12 lines
202 B
C
#pragma once
|
|
|
|
#include <stdbool.h>
|
|
#include <stddef.h>
|
|
#include "esp_err.h"
|
|
|
|
esp_err_t wifi_manager_start(void);
|
|
|
|
bool wifi_manager_is_ready(void);
|
|
|
|
void wifi_manager_get_ip(char *buf, size_t buf_len);
|