2023-09-30 08:42:52 +00:00
|
|
|
#include <EasyNextionLibrary.h>
|
|
|
|
#ifndef trigger_h
|
|
|
|
#include "trigger.h"
|
|
|
|
#endif
|
|
|
|
#ifndef EXTERNAL_LCD_LOADED
|
|
|
|
#define EXTERNAL_LCD_LOADED
|
|
|
|
#include "user_code.hpp"
|
2023-09-30 09:29:16 +00:00
|
|
|
|
|
|
|
extern void ext_lcd_callback(int id);
|
|
|
|
|
2023-09-30 08:42:52 +00:00
|
|
|
class ExternalLCD: public EasyNex {
|
2023-09-30 09:29:16 +00:00
|
|
|
using EasyNex::EasyNex;
|
2023-09-30 08:42:52 +00:00
|
|
|
protected:
|
|
|
|
void callTriggerFunction();
|
|
|
|
};
|
|
|
|
#endif
|