2020-09-26 09:49:51 +02:00
|
|
|
// This include is intended to visually simplify the .ino for the end users.
|
|
|
|
// If there were any #ifdefs required they are much better handled in here.
|
|
|
|
|
|
|
|
#ifndef DCCEX_h
|
|
|
|
#define DCCEX_h
|
|
|
|
|
|
|
|
#include "defines.h"
|
|
|
|
#include "DCC.h"
|
|
|
|
#include "DIAG.h"
|
|
|
|
#include "DCCEXParser.h"
|
|
|
|
#include "version.h"
|
|
|
|
#include "WifiInterface.h"
|
2020-11-29 10:48:39 +01:00
|
|
|
#if ETHERNET_ON == true
|
2020-09-26 13:01:00 +02:00
|
|
|
#include "EthernetInterface.h"
|
2020-11-29 10:48:39 +01:00
|
|
|
#endif
|
2020-10-12 20:32:47 +02:00
|
|
|
#include "LCD_Implementation.h"
|
2021-03-23 15:37:05 +01:00
|
|
|
#include "LCN.h"
|
2020-10-12 20:32:47 +02:00
|
|
|
#include "freeMemory.h"
|
2020-09-26 09:49:51 +02:00
|
|
|
|
2021-01-05 19:05:17 +01:00
|
|
|
#if __has_include ( "myAutomation.h")
|
|
|
|
#include "RMFT.h"
|
|
|
|
#define RMFT_ACTIVE
|
|
|
|
#endif
|
|
|
|
|
2020-09-26 09:49:51 +02:00
|
|
|
#endif
|