ESP32-PaxCounter/include/main.h

24 lines
570 B
C
Raw Normal View History

2018-07-17 15:15:58 +02:00
#ifndef _MAIN_H
#define _MAIN_H
2018-04-05 08:47:17 +02:00
2018-09-22 21:26:11 +02:00
#include <esp_spi_flash.h> // needed for reading ESP32 chip attributes
#include <esp_event_loop.h> // needed for Wifi event handler
#include <esp32-hal-timer.h> // needed for timers
2019-01-19 19:54:54 +01:00
#include <esp_coexist.h> // needed for showing coex sw version
2018-09-22 21:26:11 +02:00
2018-09-15 21:10:11 +02:00
#include "globals.h"
2019-01-20 15:53:31 +01:00
#include "blescan.h"
2018-07-31 10:05:32 +02:00
#include "wifiscan.h"
#include "configmanager.h"
2018-07-31 00:00:24 +02:00
#include "cyclic.h"
#include "beacon_array.h"
2018-09-22 21:26:11 +02:00
#include "ota.h"
#include "irqhandler.h"
2018-10-24 18:07:41 +02:00
#include "led.h"
2018-11-03 20:44:54 +01:00
#include "spislave.h"
#if(HAS_LORA)
2018-11-03 20:44:54 +01:00
#include "lorawan.h"
#endif
2019-02-24 01:44:55 +01:00
#include "timekeeper.h"
#endif