2020-10-08 20:06:57 +02:00
|
|
|
#include "omobidisplaybackend.h"
|
|
|
|
|
|
|
|
OmobiDisplayBackend::OmobiDisplayBackend(QObject *parent) : QObject(parent)
|
|
|
|
{
|
|
|
|
|
|
|
|
this->ble = new QBluetoothLeUart();
|
|
|
|
|
|
|
|
connect(this->ble, &QBluetoothLeUart::stateChanged, this, &OmobiDisplayBackend::handleBluetoothStateChange);
|
|
|
|
connect(this->ble, &QBluetoothLeUart::foundNewDevice, this, &OmobiDisplayBackend::handleFoundNewDevice);
|
|
|
|
connect(this->ble, &QBluetoothLeUart::dataReceived, this, &OmobiDisplayBackend::DataHandler);
|
2020-10-09 00:03:50 +02:00
|
|
|
connect(this->ble, &QBluetoothLeUart::connectedToDevice, this, &OmobiDisplayBackend::handleBluetoothDeviceConected);
|
2020-10-08 20:06:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void OmobiDisplayBackend::startScanning() {
|
|
|
|
this->ble->startScanningForDevices();
|
|
|
|
}
|
|
|
|
|
|
|
|
void OmobiDisplayBackend::handleBluetoothStateChange(QBluetoothLeUart::BluetoothLeUartState state){
|
|
|
|
|
|
|
|
qDebug() << state;
|
|
|
|
|
|
|
|
switch(state){
|
|
|
|
case QBluetoothLeUart::AcquireData:
|
|
|
|
{
|
|
|
|
qDebug() << "Now acquiring data!";
|
|
|
|
|
|
|
|
/* Initialise Slot DataHandler(QString) - gets new data */
|
|
|
|
|
|
|
|
this->ble->sendData("Hat geklappt");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
//nothing for now
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-09 00:03:50 +02:00
|
|
|
void OmobiDisplayBackend::handleBluetoothDeviceConected() {
|
|
|
|
this->ble->sendData("Hallihallo ich bin Julia Mueller");
|
|
|
|
}
|
|
|
|
|
2020-10-08 22:03:30 +02:00
|
|
|
void OmobiDisplayBackend::handleFoundNewDevice(QBluetoothLeUartDevice* device) {
|
2020-10-08 20:06:57 +02:00
|
|
|
qDebug() << "Found a device: name: " << device->getName() << " address: " << device->getAddress();
|
|
|
|
}
|
|
|
|
|
|
|
|
void OmobiDisplayBackend::DataHandler(const QString &s){
|
|
|
|
|
|
|
|
qDebug() << "NEw data: " << s;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-10-09 00:03:50 +02:00
|
|
|
QBluetoothLeUart* OmobiDisplayBackend::getBleController() {
|
|
|
|
return this->ble;
|
|
|
|
}
|