2018-07-17 15:15:58 +02:00
|
|
|
#ifndef _MAIN_H
|
|
|
|
#define _MAIN_H
|
2018-04-05 08:47:17 +02:00
|
|
|
|
2018-07-31 10:05:32 +02:00
|
|
|
//#include "led.h"
|
2018-07-17 11:53:43 +02:00
|
|
|
#include "macsniff.h"
|
2018-07-31 10:05:32 +02:00
|
|
|
#include "wifiscan.h"
|
2018-06-09 22:28:20 +02:00
|
|
|
#include "configmanager.h"
|
2018-07-14 19:12:20 +02:00
|
|
|
#include "senddata.h"
|
2018-07-31 00:00:24 +02:00
|
|
|
#include "cyclic.h"
|
|
|
|
#include "beacon_array.h"
|
2018-09-15 18:59:20 +02:00
|
|
|
#include "ota.h"
|
2018-06-09 22:28:20 +02:00
|
|
|
|
2018-07-15 14:28:05 +02:00
|
|
|
#include <esp_spi_flash.h> // needed for reading ESP32 chip attributes
|
2018-07-17 11:53:43 +02:00
|
|
|
#include <esp_event_loop.h> // needed for Wifi event handler
|
2018-06-16 19:50:36 +02:00
|
|
|
|
2018-07-17 11:53:43 +02:00
|
|
|
#endif
|