iot-firmware/src/external_lcd.cpp

5 lines
149 B
C++
Raw Normal View History

#include <external_lcd.hpp>
void ExternalLCD::callTriggerFunction() {
uint8_t touch_hex = Serial2.read();
external_lcd_callback(touch_hex);
}