summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJavier S. Pedro <dev.git@javispedro.com>2014-09-20 19:18:00 +0200
committerJavier S. Pedro <dev.git@javispedro.com>2014-09-20 19:18:00 +0200
commitcc1af30276d3650dd71589cd1d7c005da3a64873 (patch)
tree6e6ab2a2e1d4c8f8567d7785e34dfe5b043b2ebd
parentbca10d6ab21bf0e49253fc01e313a4618b7fcae7 (diff)
downloadsalmeta-cc1af30276d3650dd71589cd1d7c005da3a64873.tar.gz
salmeta-cc1af30276d3650dd71589cd1d7c005da3a64873.zip
add normal/rfcomm bluetooth transport for older MWs
-rw-r--r--rpm/salmeta.spec2
-rw-r--r--rpm/salmeta.yaml2
-rw-r--r--salmeta.pro6
-rw-r--r--src/controller.cpp38
-rw-r--r--src/controller.h6
-rw-r--r--src/metawatch.cpp22
-rw-r--r--src/metawatch.h12
-rw-r--r--src/metawatchbletransport.cpp10
-rw-r--r--src/metawatchbletransport.h3
-rw-r--r--src/metawatchbttransport.cpp241
-rw-r--r--src/metawatchbttransport.h38
-rw-r--r--src/metawatchtransport.h1
12 files changed, 362 insertions, 19 deletions
diff --git a/rpm/salmeta.spec b/rpm/salmeta.spec
index 971d0aa..a20e578 100644
--- a/rpm/salmeta.spec
+++ b/rpm/salmeta.spec
@@ -13,7 +13,7 @@ Name: salmeta
%{!?qtc_make:%define qtc_make make}
%{?qtc_builddir:%define _builddir %qtc_builddir}
Summary: Salmeta
-Version: 0.1.1
+Version: 0.1.2
Release: 1
Group: Communications/Bluetooth
License: GPLv3
diff --git a/rpm/salmeta.yaml b/rpm/salmeta.yaml
index 1432f81..35ac8e2 100644
--- a/rpm/salmeta.yaml
+++ b/rpm/salmeta.yaml
@@ -1,6 +1,6 @@
Name: salmeta
Summary: Salmeta
-Version: 0.1.1
+Version: 0.1.2
Release: 1
Group: Communications/Bluetooth
URL: http://javispedro.com
diff --git a/salmeta.pro b/salmeta.pro
index 2a6014a..eccfb3f 100644
--- a/salmeta.pro
+++ b/salmeta.pro
@@ -18,7 +18,8 @@ SOURCES += src/salmeta.cpp \
src/notificationmonitor.cpp \
src/widgetinfo.cpp \
src/widgetinfomodel.cpp \
- src/availablewidgetsmodel.cpp
+ src/availablewidgetsmodel.cpp \
+ src/metawatchbttransport.cpp
HEADERS += \
src/controller.h \
@@ -29,7 +30,8 @@ HEADERS += \
src/notificationmonitor.h \
src/widgetinfo.h \
src/widgetinfomodel.h \
- src/availablewidgetsmodel.h
+ src/availablewidgetsmodel.h \
+ src/metawatchbttransport.h
OTHER_FILES += qml/salmeta.qml \
qml/cover/CoverPage.qml \
diff --git a/src/controller.cpp b/src/controller.cpp
index 70be33a..5593582 100644
--- a/src/controller.cpp
+++ b/src/controller.cpp
@@ -7,6 +7,7 @@
#include "controller.h"
static const QLatin1String setting_address("address");
+static const QLatin1String setting_transport("transport");
static const QLatin1String setting_cur_page("cur-page");
static const QLatin1String setting_24h_mode("24h-mode");
static const QLatin1String setting_ddmm_mode("ddmm-mode");
@@ -31,13 +32,18 @@ Controller::Controller(const QString &settingsPrefix, QQuickView *view, QObject
connect(_monitor, &NotificationMonitor::incomingNotification, this, &Controller::handleIncomingNotification);
connect(_widgets, &QAbstractItemModel::dataChanged, this, &Controller::handleWidgetChanged);
- connectToAddress(_settings->value(setting_address).toString());
+ connectToDevice();
}
Controller::~Controller()
{
}
+bool Controller::isWatchConnected() const
+{
+ return _metawatch && _metawatch->isDeviceConnected();
+}
+
MetaWatch::WatchMode Controller::mode() const
{
return _curMode;
@@ -52,7 +58,9 @@ void Controller::setPage(int page)
{
if (page != _curPage) {
_curPage = page;
- _metawatch->updateLcdDisplayPage(_curPage);
+ if (isWatchConnected()) {
+ _metawatch->updateLcdDisplayPage(_curPage);
+ }
emit pageChanged();
}
}
@@ -67,8 +75,19 @@ bool Controller::batteryCharging() const
return _batteryCharging;
}
-void Controller::connectToAddress(const QString &address)
+void Controller::connectToDevice()
{
+ const QString address = _settings->value(setting_address).toString();
+ const QString transport_name = _settings->value(setting_transport).toString();
+
+ qDebug() << "Using transport" << transport_name;
+
+ MetaWatch::TransportType transport = MetaWatch::TransportBluetoothLowEnergy; // Default
+
+ if (transport_name.compare("bluetooth", Qt::CaseInsensitive) == 0) {
+ transport = MetaWatch::TransportBluetooth;
+ }
+
if (_metawatch) {
if (address == _address) {
// Connecting to the same address and there's already a watch object created
@@ -89,7 +108,7 @@ void Controller::connectToAddress(const QString &address)
return;
}
- _metawatch = new MetaWatch(_address, this);
+ _metawatch = new MetaWatch(_address, transport, this);
connect(_metawatch, &MetaWatch::connected, _reconnect, &ReconnectTimer::stop);
connect(_metawatch, &MetaWatch::connected, this, &Controller::handleMetaWatchConnected);
connect(_metawatch, &MetaWatch::disconnected, _reconnect, &ReconnectTimer::scheduleNextAttempt);
@@ -106,6 +125,8 @@ void Controller::updateProperties()
{
MetaWatch::WatchProperties props;
+ if (!isWatchConnected()) return;
+
if (_settings->value(setting_24h_mode).toBool()) {
props |= MetaWatch::WatchPropertyHourFormat24h;
}
@@ -133,7 +154,7 @@ void Controller::handleSettingChanged(const QString &key)
{
qDebug() << "Setting" << key << "changed";
if (key == setting_address) {
- connectToAddress(_settings->value(setting_address).toString());
+ connectToDevice();
} else if (key == setting_cur_page) {
int page = _settings->value(setting_cur_page).toInt();
if (_curPage != page) {
@@ -195,6 +216,10 @@ void Controller::handleMetaWatchBatteryStatus(bool charging, int charge)
void Controller::handleIncomingNotification(const QString &sender, const QIcon &icon, const QString &summary, const QString &body)
{
+ if (!isWatchConnected()) {
+ return; // Ignoring notification if metawatch is not connected.
+ }
+
QImage image(96, 96, QImage::Format_MonoLSB);
QPainter p(&image);
@@ -249,10 +274,13 @@ void Controller::handleIncomingNotification(const QString &sender, const QIcon &
void Controller::handleWidgetChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight, const QVector<int> &roles)
{
if (roles.indexOf(WidgetInfoModel::UrlRole) >= 0) {
+ if (!isWatchConnected()) return;
+
// Can't send partial updates to watch, so entire list must be
// resubmitted everytime something important changes
_metawatch->updateWidgetList(_widgets->toList());
+ // If the changed widget is on the current page, watch needs to refresh.
if (_widgets->data(topLeft, WidgetInfoModel::PageRole).toInt() == _curPage) {
_metawatch->updateLcdDisplayPage(_curPage);
}
diff --git a/src/controller.h b/src/controller.h
index a375247..900f763 100644
--- a/src/controller.h
+++ b/src/controller.h
@@ -20,9 +20,11 @@ class Controller : public QObject
Q_PROPERTY(bool batteryCharging READ batteryCharging NOTIFY batteryChargingChanged)
public:
- Controller(const QString &settingsPrefix, QQuickView *view = 0, QObject *parent = 0);
+ explicit Controller(const QString &settingsPrefix, QQuickView *view = 0, QObject *parent = 0);
~Controller();
+ bool isWatchConnected() const;
+
MetaWatch::WatchMode mode() const;
int page() const;
@@ -38,7 +40,7 @@ signals:
void batteryChargingChanged();
private:
- void connectToAddress(const QString &address);
+ void connectToDevice();
void updateProperties();
private slots:
diff --git a/src/metawatch.cpp b/src/metawatch.cpp
index ff05aca..41b32aa 100644
--- a/src/metawatch.cpp
+++ b/src/metawatch.cpp
@@ -5,19 +5,35 @@
#include <QtGui/QImage>
#include "metawatch.h"
+#include "metawatchbttransport.h"
#include "metawatchbletransport.h"
-MetaWatch::MetaWatch(const QString &btAddr, QObject *parent) :
+MetaWatch::MetaWatch(const QString &btAddr, TransportType transport, QObject *parent) :
QObject(parent)
{
- GatoPeripheral *peripheral = new GatoPeripheral(GatoAddress(btAddr), this);
- _transport = new MetaWatchBLETransport(peripheral, this);
+ switch (transport) {
+ case TransportBluetooth:
+ _transport = new MetaWatchBTTransport(QBluetoothAddress(btAddr), this);
+ break;
+ case TransportBluetoothLowEnergy:
+ _transport = new MetaWatchBLETransport(GatoAddress(btAddr), this);
+ break;
+ }
connect(_transport, &MetaWatchTransport::connected, this, &MetaWatch::connected);
connect(_transport, &MetaWatchTransport::disconnected, this, &MetaWatch::disconnected);
connect(_transport, &MetaWatchTransport::messageReceived, this, &MetaWatch::handleTransportMessage);
}
+MetaWatch::~MetaWatch()
+{
+}
+
+bool MetaWatch::isDeviceConnected() const
+{
+ return _transport && _transport->isDeviceConnected();
+}
+
void MetaWatch::setVibrateMode(bool enable, int on_duration, int off_duration, int cycles)
{
QByteArray data;
diff --git a/src/metawatch.h b/src/metawatch.h
index 61eaa3a..606e478 100644
--- a/src/metawatch.h
+++ b/src/metawatch.h
@@ -12,11 +12,17 @@ QT_USE_NAMESPACE_BLUETOOTH
class MetaWatch : public QObject
{
Q_OBJECT
- Q_ENUMS(MessageTypes DeviceType WatchMode WatchProperty UiStyle)
+ Q_ENUMS(TransportType MessageTypes DeviceType WatchMode WatchProperty UiStyle)
Q_FLAGS(WatchProperties)
public:
- explicit MetaWatch(const QString &btAddr, QObject *parent = 0);
+ enum TransportType {
+ TransportBluetooth,
+ TransportBluetoothLowEnergy
+ };
+
+ explicit MetaWatch(const QString &btAddr, TransportType transport, QObject *parent = 0);
+ ~MetaWatch();
enum MessageTypes {
MessageGetDeviceType = 0x01,
@@ -77,6 +83,8 @@ public:
UiGen2 = 1
};
+ bool isDeviceConnected() const;
+
void setVibrateMode(bool enable, int on_duration, int off_duration, int cycles);
void setDateTime(const QDateTime &dt);
void configure(WatchProperties props);
diff --git a/src/metawatchbletransport.cpp b/src/metawatchbletransport.cpp
index 6df6c2a..cd03415 100644
--- a/src/metawatchbletransport.cpp
+++ b/src/metawatchbletransport.cpp
@@ -5,8 +5,9 @@ const GatoUUID MetaWatchBLETransport::ServiceUuid(quint16(0x8880));
const GatoUUID MetaWatchBLETransport::InputCharacteristicUuid(quint16(0x8882));
const GatoUUID MetaWatchBLETransport::OutputCharacteristicUuid(quint16(0x8881));
-MetaWatchBLETransport::MetaWatchBLETransport(GatoPeripheral *peripheral, QObject *parent) :
- MetaWatchTransport(parent), _dev(peripheral)
+MetaWatchBLETransport::MetaWatchBLETransport(const GatoAddress &address, QObject *parent) :
+ MetaWatchTransport(parent),
+ _dev(new GatoPeripheral(address, this))
{
connect(_dev, SIGNAL(connected()), SLOT(handleDeviceConnected()));
connect(_dev, SIGNAL(disconnected()), SLOT(handleDeviceDisconnected()));
@@ -22,6 +23,11 @@ MetaWatchBLETransport::~MetaWatchBLETransport()
disconnectDevice();
}
+bool MetaWatchBLETransport::isDeviceConnected() const
+{
+ return _dev->state() == GatoPeripheral::StateConnected;
+}
+
void MetaWatchBLETransport::sendMessage(quint8 type, quint8 options, const QByteArray &payload)
{
QByteArray packet = encode(type, options, payload);
diff --git a/src/metawatchbletransport.h b/src/metawatchbletransport.h
index 973c4a8..6097829 100644
--- a/src/metawatchbletransport.h
+++ b/src/metawatchbletransport.h
@@ -14,13 +14,14 @@ class MetaWatchBLETransport : public MetaWatchTransport
{
Q_OBJECT
public:
- explicit MetaWatchBLETransport(GatoPeripheral *peripheral, QObject *parent = 0);
+ explicit MetaWatchBLETransport(const GatoAddress &address, QObject *parent = 0);
~MetaWatchBLETransport();
static const GatoUUID ServiceUuid;
static const GatoUUID InputCharacteristicUuid;
static const GatoUUID OutputCharacteristicUuid;
+ bool isDeviceConnected() const;
void sendMessage(quint8 type, quint8 options, const QByteArray &payload);
public slots:
diff --git a/src/metawatchbttransport.cpp b/src/metawatchbttransport.cpp
new file mode 100644
index 0000000..63996e9
--- /dev/null
+++ b/src/metawatchbttransport.cpp
@@ -0,0 +1,241 @@
+#include <QtBluetooth/QBluetoothServiceInfo>
+
+#include "metawatchbttransport.h"
+
+namespace
+{
+
+const quint8 bit_rev_table[16] = {
+ 0, 8, 4, 12, 2, 10, 6, 14, 1, 9, 5, 13, 3, 11, 7, 15
+};
+
+const quint16 crc_table[256] = {
+ 0x0000, 0x1021, 0x2042, 0x3063, 0x4084, 0x50a5, 0x60c6, 0x70e7,
+ 0x8108, 0x9129, 0xa14a, 0xb16b, 0xc18c, 0xd1ad, 0xe1ce, 0xf1ef,
+ 0x1231, 0x0210, 0x3273, 0x2252, 0x52b5, 0x4294, 0x72f7, 0x62d6,
+ 0x9339, 0x8318, 0xb37b, 0xa35a, 0xd3bd, 0xc39c, 0xf3ff, 0xe3de,
+ 0x2462, 0x3443, 0x0420, 0x1401, 0x64e6, 0x74c7, 0x44a4, 0x5485,
+ 0xa56a, 0xb54b, 0x8528, 0x9509, 0xe5ee, 0xf5cf, 0xc5ac, 0xd58d,
+ 0x3653, 0x2672, 0x1611, 0x0630, 0x76d7, 0x66f6, 0x5695, 0x46b4,
+ 0xb75b, 0xa77a, 0x9719, 0x8738, 0xf7df, 0xe7fe, 0xd79d, 0xc7bc,
+ 0x48c4, 0x58e5, 0x6886, 0x78a7, 0x0840, 0x1861, 0x2802, 0x3823,
+ 0xc9cc, 0xd9ed, 0xe98e, 0xf9af, 0x8948, 0x9969, 0xa90a, 0xb92b,
+ 0x5af5, 0x4ad4, 0x7ab7, 0x6a96, 0x1a71, 0x0a50, 0x3a33, 0x2a12,
+ 0xdbfd, 0xcbdc, 0xfbbf, 0xeb9e, 0x9b79, 0x8b58, 0xbb3b, 0xab1a,
+ 0x6ca6, 0x7c87, 0x4ce4, 0x5cc5, 0x2c22, 0x3c03, 0x0c60, 0x1c41,
+ 0xedae, 0xfd8f, 0xcdec, 0xddcd, 0xad2a, 0xbd0b, 0x8d68, 0x9d49,
+ 0x7e97, 0x6eb6, 0x5ed5, 0x4ef4, 0x3e13, 0x2e32, 0x1e51, 0x0e70,
+ 0xff9f, 0xefbe, 0xdfdd, 0xcffc, 0xbf1b, 0xaf3a, 0x9f59, 0x8f78,
+ 0x9188, 0x81a9, 0xb1ca, 0xa1eb, 0xd10c, 0xc12d, 0xf14e, 0xe16f,
+ 0x1080, 0x00a1, 0x30c2, 0x20e3, 0x5004, 0x4025, 0x7046, 0x6067,
+ 0x83b9, 0x9398, 0xa3fb, 0xb3da, 0xc33d, 0xd31c, 0xe37f, 0xf35e,
+ 0x02b1, 0x1290, 0x22f3, 0x32d2, 0x4235, 0x5214, 0x6277, 0x7256,
+ 0xb5ea, 0xa5cb, 0x95a8, 0x8589, 0xf56e, 0xe54f, 0xd52c, 0xc50d,
+ 0x34e2, 0x24c3, 0x14a0, 0x0481, 0x7466, 0x6447, 0x5424, 0x4405,
+ 0xa7db, 0xb7fa, 0x8799, 0x97b8, 0xe75f, 0xf77e, 0xc71d, 0xd73c,
+ 0x26d3, 0x36f2, 0x0691, 0x16b0, 0x6657, 0x7676, 0x4615, 0x5634,
+ 0xd94c, 0xc96d, 0xf90e, 0xe92f, 0x99c8, 0x89e9, 0xb98a, 0xa9ab,
+ 0x5844, 0x4865, 0x7806, 0x6827, 0x18c0, 0x08e1, 0x3882, 0x28a3,
+ 0xcb7d, 0xdb5c, 0xeb3f, 0xfb1e, 0x8bf9, 0x9bd8, 0xabbb, 0xbb9a,
+ 0x4a75, 0x5a54, 0x6a37, 0x7a16, 0x0af1, 0x1ad0, 0x2ab3, 0x3a92,
+ 0xfd2e, 0xed0f, 0xdd6c, 0xcd4d, 0xbdaa, 0xad8b, 0x9de8, 0x8dc9,
+ 0x7c26, 0x6c07, 0x5c64, 0x4c45, 0x3ca2, 0x2c83, 0x1ce0, 0x0cc1,
+ 0xef1f, 0xff3e, 0xcf5d, 0xdf7c, 0xaf9b, 0xbfba, 0x8fd9, 0x9ff8,
+ 0x6e17, 0x7e36, 0x4e55, 0x5e74, 0x2e93, 0x3eb2, 0x0ed1, 0x1ef0
+};
+
+#if 0 /* This snippet was used to build the table seen above. */
+ quint16 remainder;
+ int dividend;
+ quint8 bit;
+
+ for (dividend = 0; dividend < 256; dividend++) {
+ remainder = dividend << 8;
+ for (bit = 8; bit > 0; bit--) {
+ if (remainder & 0x8000) {
+ remainder = (remainder << 1) ^ 0x1021;
+ } else {
+ remainder = (remainder << 1);
+ }
+ }
+ if ((dividend % 8) == 0) {
+ printf(",\n0x%04hx", remainder);
+ } else {
+ printf(", 0x%04hx", remainder);
+ }
+ }
+#endif
+
+quint16 compute_crc(const QByteArray &data)
+{
+ const int size = data.size();
+ quint16 remainder = 0xFFFF;
+
+ for (int i = 0; i < size; i++) {
+ quint8 byte = data[i];
+ byte = (bit_rev_table[byte & 0xF] << 4) | bit_rev_table[(byte & 0xF0) >> 4];
+ remainder = crc_table[byte ^ (remainder >> 8)] ^ (remainder << 8);
+ }
+
+ return remainder;
+}
+
+}
+
+MetaWatchBTTransport::MetaWatchBTTransport(const QBluetoothAddress &address, QObject *parent) :
+ MetaWatchTransport(parent), _addr(address), _socket(0)
+{
+
+}
+
+MetaWatchBTTransport::~MetaWatchBTTransport()
+{
+ disconnectDevice();
+}
+
+bool MetaWatchBTTransport::isDeviceConnected() const
+{
+ return _socket && _socket->state() == QBluetoothSocket::ConnectedState;
+}
+
+void MetaWatchBTTransport::sendMessage(quint8 type, quint8 options, const QByteArray &payload)
+{
+ QByteArray packet = encode(type, options, payload);
+ qDebug() << "Send:" << packet.toHex();
+ qint64 written = _socket->write(packet);
+ if (written < packet.size()) {
+ qWarning() << "Packet not fully writen";
+ }
+}
+
+void MetaWatchBTTransport::connectDevice()
+{
+ qDebug() << "Trying to connect to" << _addr.toString();
+
+ if (_socket) {
+ disconnectDevice();
+ }
+
+ // Sadly, seems that QBluetoothSocket doesn't really like been closed and reopened,
+ // so we recreate it every time.
+ _socket = new QBluetoothSocket(QBluetoothSocket::RfcommSocket, this);
+ connect(_socket, &QBluetoothSocket::connected, this, &MetaWatchBTTransport::handleSocketConnected);
+ connect(_socket, &QBluetoothSocket::disconnected, this, &MetaWatchBTTransport::handleSocketDisconnected);
+ connect(_socket, &QBluetoothSocket::readyRead, this, &MetaWatchBTTransport::handleSocketData);
+
+ // Let's hardcode MetaWatch's RFCOMM port (1) in order to avoid having
+ // to look it up (which would need an SDP query).
+ _socket->connectToService(_addr, 1);
+}
+
+void MetaWatchBTTransport::disconnectDevice()
+{
+ if (_socket) {
+ _socket->close();
+ _socket->deleteLater();
+ disconnect(_socket, 0, this, 0);
+ _socket = 0;
+ }
+}
+
+QByteArray MetaWatchBTTransport::encode(quint8 type, quint8 options, const QByteArray &payload)
+{
+ QByteArray packet;
+
+ quint8 message_size = 6 + payload.size();
+ packet.reserve(message_size);
+
+ packet.append(0x01);
+ packet.append(message_size);
+ packet.append(type);
+ packet.append(options);
+
+ packet.append(payload);
+
+ packet.append("\0\0", 2);
+
+ quint16 crc = compute_crc(packet); // Replace CRC with computed CRC
+ packet[message_size - 2] = crc & 0xFF;
+ packet[message_size - 1] = crc >> 8;
+
+ return packet;
+}
+
+bool MetaWatchBTTransport::decode(const QByteArray &packet, quint8 *type, quint8 *options, QByteArray *payload)
+{
+ if (packet.size() < 6) {
+ qWarning() << "Message too short";
+ }
+
+ if (packet.at(0) != 0x1) {
+ qWarning() << "Invalid packet header";
+ return false;
+ }
+
+ quint8 message_size = packet[1];
+ if (message_size < 6 || message_size > 32 || message_size != packet.size()) {
+ qWarning() << "Invalid message size:" << message_size;
+ }
+
+ *type = packet[2];
+ *options = packet[3];
+
+ *payload = packet.mid(4, message_size - 6);
+
+ // Don't compare received CRC... what for? RFCOMM already guarantees reliability.
+
+ return true;
+}
+
+void MetaWatchBTTransport::handleSocketConnected()
+{
+ qDebug() << "MW connected";
+ emit connected();
+}
+
+void MetaWatchBTTransport::handleSocketDisconnected()
+{
+ qDebug() << "MW disconnected";
+ emit disconnected();
+}
+
+void MetaWatchBTTransport::handleSocketData()
+{
+ const int min_message_size = 6;
+ while (_socket->bytesAvailable() >= min_message_size) {
+ char header[2];
+ qint64 bytes_read = _socket->peek(header, sizeof(header));
+ if (bytes_read < 2) {
+ qWarning() << "Unable to peek received data";
+ break;
+ }
+
+ if (header[0] != 0x01 || header[1] > 32) {
+ qWarning() << "Received garbage data";
+ _socket->readAll(); // let's discard all pending data.
+ break;
+ }
+ if (_socket->bytesAvailable() < header[1]) {
+ // Not enough data to complete the entire frame
+ break;
+ }
+
+ QByteArray data = _socket->read(header[1]);
+ if (data.size() != header[1]) {
+ qWarning() << "Received incomplete packet";
+ _socket->readAll(); // discard all other pending data.
+ break;
+ }
+
+ qDebug() << "Recv:" << data.toHex();
+
+ quint8 type, options;
+ QByteArray payload;
+
+ if (decode(data, &type, &options, &payload)) {
+ emit messageReceived(type, options, payload);
+ } else {
+ qWarning() << "Failed to decode message from metawatch:" << data.toHex();
+ }
+ }
+}
diff --git a/src/metawatchbttransport.h b/src/metawatchbttransport.h
new file mode 100644
index 0000000..a27328a
--- /dev/null
+++ b/src/metawatchbttransport.h
@@ -0,0 +1,38 @@
+#ifndef METAWATCHBTTRANSPORT_H
+#define METAWATCHBTTRANSPORT_H
+
+#include <QtBluetooth/QBluetoothSocket>
+
+QT_USE_NAMESPACE_BLUETOOTH
+
+#include "metawatchtransport.h"
+
+class MetaWatchBTTransport : public MetaWatchTransport
+{
+ Q_OBJECT
+public:
+ explicit MetaWatchBTTransport(const QBluetoothAddress &address, QObject *parent = 0);
+ ~MetaWatchBTTransport();
+
+ bool isDeviceConnected() const;
+ void sendMessage(quint8 type, quint8 options, const QByteArray &payload);
+
+public slots:
+ void connectDevice();
+ void disconnectDevice();
+
+private:
+ static QByteArray encode(quint8 type, quint8 options, const QByteArray &payload);
+ static bool decode(const QByteArray &msg, quint8 *type, quint8 *options, QByteArray *payload);
+
+private slots:
+ void handleSocketConnected();
+ void handleSocketDisconnected();
+ void handleSocketData();
+
+private:
+ QBluetoothAddress _addr;
+ QBluetoothSocket *_socket;
+};
+
+#endif // METAWATCHBTTRANSPORT_H
diff --git a/src/metawatchtransport.h b/src/metawatchtransport.h
index 3d78ee2..305f30e 100644
--- a/src/metawatchtransport.h
+++ b/src/metawatchtransport.h
@@ -10,6 +10,7 @@ public:
explicit MetaWatchTransport(QObject *parent = 0);
public:
+ virtual bool isDeviceConnected() const = 0;
virtual void sendMessage(quint8 type, quint8 options, const QByteArray &payload) = 0;
public slots: