mirror of
https://gitlab.com/eql/lqml.git
synced 2026-01-11 03:31:55 -08:00
11 lines
403 B
Text
11 lines
403 B
Text
class QtAndroidService {
|
|
SLOT(void startDeviceDiscovery(const QString&));
|
|
SLOT(void setDeviceFilter(const QString&));
|
|
SLOT(void read());
|
|
SLOT(void write(const QByteArray&));
|
|
SIGNAL(deviceDiscovered(const QString&));
|
|
SIGNAL(bleError());
|
|
SIGNAL(setReady(bool, const QString&, const QStringList&));
|
|
SIGNAL(receivedFromRadio(const QByteArray&, const QString&));
|
|
SIGNAL(receivingDone());
|
|
}
|