iot-firmware/src/espmega_iot_external_lcd.hpp

16 lines
323 B
C++
Raw Normal View History

#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);
class ExternalLCD: public EasyNex {
2023-09-30 09:29:16 +00:00
using EasyNex::EasyNex;
protected:
void callTriggerFunction();
};
#endif