mirror of
https://gitee.com/beecue/fastbee.git
synced 2025-12-20 01:45:55 +08:00
30 lines
738 B
C
30 lines
738 B
C
/******************************************************************************
|
||
* 作者:kerwincui
|
||
* 时间:2021-06-08
|
||
* 邮箱:164770707@qq.com
|
||
* 源码地址:https://gitee.com/kerwincui/wumei-smart
|
||
* author: kerwincui
|
||
* create: 2021-06-08
|
||
* email:164770707@qq.com
|
||
* source:https://github.com/kerwincui/wumei-smart
|
||
******************************************************************************/
|
||
#ifndef _HTTP_SERVER_H_
|
||
#define _HTTP_SERVER_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 <esp_http_server.h>
|
||
|
||
void http_server_start(void);
|
||
|
||
|
||
#endif
|