19 lines
241 B
C
19 lines
241 B
C
|
#include "shared.h"
|
||
|
#include "network.h"
|
||
|
#include "rom/ets_sys.h"
|
||
|
|
||
|
#include <stdio.h>
|
||
|
#include <string.h>
|
||
|
|
||
|
#include <esp_http_server.h>
|
||
|
|
||
|
void app_main() {
|
||
|
LOGLN("starting {");
|
||
|
|
||
|
wifi_init();
|
||
|
softap_init();
|
||
|
|
||
|
LOGLN("}");
|
||
|
}
|
||
|
|