mirror of
https://gitlab.com/eql/lqml.git
synced 2025-12-06 02:30:38 -08:00
14 lines
599 B
C++
14 lines
599 B
C++
#include "rep_qtandroidservice_source.h"
|
|
#include "../ble/ble_meshtastic.h"
|
|
|
|
class QtAndroidService : public QtAndroidServiceSource {
|
|
public:
|
|
BLE_ME* ble = nullptr;
|
|
|
|
public slots:
|
|
void startDeviceDiscovery(const QString& a1) override { ble->startDeviceDiscovery(a1); }
|
|
void setDeviceFilter(const QString& a1) override { ble->setDeviceFilter(a1); }
|
|
void read() override { ble->read(); }
|
|
void write(const QByteArray& a1) override { ble->write(a1); }
|
|
void setBackgroundMode(bool a1) override { ble->setBackgroundMode(a1); }
|
|
};
|