Ken Van Hoeylandt cd7ffd3cb1 WIP
2026-01-20 23:33:41 +01:00

27 lines
422 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;
}
Driver tlora_pager_driver = {
.name = "T-Lora Pager",
.compatible = (const char*[]) { "lilygo,tlora-pager", nullptr },
.start_device = start,
.stop_device = stop,
.api = nullptr,
.internal = { 0 }
};
}