ESP32-PaxCounter/include/main.h
August Quint 5007373f58
Update main.h
added: CWA-handling
2020-09-01 11:34:13 +02:00

26 lines
615 B
C

#ifndef _MAIN_H
#define _MAIN_H
#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
#include <esp_coexist.h> // needed for showing coex sw version
#include "globals.h"
#include "reset.h"
#include "i2c.h"
#include "blescan.h"
#include "wifiscan.h"
#include "configmanager.h"
#include "cyclic.h"
#include "beacon_array.h"
#include "ota.h"
#include "irqhandler.h"
#include "spislave.h"
#include "sensor.h"
#include "lorawan.h"
#include "timekeeper.h"
#include "corona.h"
#endif