mirror of
https://gitlab.com/eql/lqml.git
synced 2025-12-31 14:22:29 -08:00
13 lines
486 B
Text
13 lines
486 B
Text
class QtAndroidService {
|
|
SLOT(void startDeviceDiscovery(const QString&));
|
|
SLOT(void setDeviceFilter(const QString&));
|
|
SLOT(void read());
|
|
SLOT(void write(const QByteArray&));
|
|
SLOT(void setBackgroundMode(bool));
|
|
SIGNAL(deviceDiscovered(const QString&));
|
|
SIGNAL(bleError());
|
|
SIGNAL(setReady(bool, const QString&, const QStringList&));
|
|
SIGNAL(receivedFromRadio(const QByteArray&, const QString&));
|
|
SIGNAL(receivingDone());
|
|
SIGNAL(sendSavedPackets(const QVariant&));
|
|
}
|