mirror of
https://github.com/jomjol/AI-on-the-edge-device.git
synced 2025-12-08 12:36:52 +03:00
19 lines
366 B
C
19 lines
366 B
C
#ifndef SOFTAP_H
|
|
#define SOFTAP_H
|
|
|
|
#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 "protocol_examples_common.h"
|
|
#include "esp_tls_crypto.h"
|
|
#include <esp_http_server.h>
|
|
|
|
void CheckStartAPMode();
|
|
|
|
#endif |