mirror of
https://gitlab.com/eql/lqml.git
synced 2025-12-24 02:50:36 -08:00
15 lines
375 B
C++
15 lines
375 B
C++
#include "qtandroidservice_ro.h"
|
|
#include "../ble/ble_meshtastic.h"
|
|
#include <QAndroidService>
|
|
|
|
int main(int argc, char* argv[]) {
|
|
QAndroidService app(argc, argv);
|
|
|
|
QRemoteObjectHost srcNode(QUrl(QStringLiteral("local:replica")));
|
|
QtAndroidService qtAndroidService;
|
|
srcNode.enableRemoting(&qtAndroidService);
|
|
|
|
BLE_ME ble(&qtAndroidService);
|
|
|
|
return app.exec();
|
|
}
|