Ken Van Hoeylandt a3d7a2745d WIP
2026-01-22 00:15:53 +01:00

28 lines
457 B
C++

#include "TloraPager.h"
#include <Tactility/Driver.h>
#include <esp_log.h>
extern "C" {
static int start(Device* device) {
return 0;
}
static int stop(Device* device) {
return 0;
}
extern Driver tlora_pager_driver = {
.name = "T-Lora Pager",
.compatible = (const char*[]) { "lilygo,tlora-pager", nullptr },
.start_device = start,
.stop_device = stop,
.api = nullptr,
.device_type = nullptr,
.internal = { 0 }
};
}