Files
tactility/Devices/waveshare-esp32-s3-rlcd/Source/module.cpp
T
2026-07-09 21:44:49 -04:00

22 lines
326 B
C++

#include <tactility/module.h>
extern "C" {
static error_t start() {
return ERROR_NONE;
}
static error_t stop() {
return ERROR_NONE;
}
struct Module waveshare_esp32_s3_rlcd_module = {
.name = "waveshare-esp32-s3-rlcd",
.start = start,
.stop = stop,
.symbols = nullptr,
.internal = nullptr
};
}