This commit is contained in:
michael
2026-01-17 02:49:32 +01:00
parent a1ccda2e88
commit 4905663933
283 changed files with 32074 additions and 15759 deletions

View File

@@ -0,0 +1,24 @@
#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