forked from electro/esp-irblaster
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
189 B
15 lines
189 B
3 years ago
|
/**
|
||
|
* Integrated webserver
|
||
|
*
|
||
|
* Created on 2019/07/13.
|
||
|
*/
|
||
|
|
||
|
#ifndef CSPEMU_WEBSRV_H
|
||
|
#define CSPEMU_WEBSRV_H
|
||
|
|
||
|
#include <esp_err.h>
|
||
|
|
||
|
esp_err_t websrv_init(void);
|
||
|
|
||
|
#endif //CSPEMU_WEBSRV_H
|