Files
AI-on-the-edge-device/code/components/jomjol_network/connect_wifi_ap.h
michael 4905663933 test1
2026-01-17 02:49:32 +01:00

25 lines
470 B
C++

#pragma once
#ifndef CONNECT_WIFI_AP_H
#define CONNECT_WIFI_AP_H
#include <string>
#include <esp_wifi.h>
#include <esp_event.h>
#include <esp_log.h>
#include <esp_system.h>
#include <nvs_flash.h>
#include <sys/param.h>
#include "nvs_flash.h"
#include "esp_netif.h"
#include "esp_eth.h"
#include "esp_tls_crypto.h"
#include <esp_http_server.h>
esp_err_t wifi_init_ap(void);
void wifi_deinit_ap(void);
bool get_wifi_ap_is_connected(void);
#endif // CONNECT_WIFI_AP_H