1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
|
#ifndef METAWATCH_H
#define METAWATCH_H
#include <QObject>
#include <QBluetoothAddress>
QT_USE_NAMESPACE_BLUETOOTH
#include "metawatchtransport.h"
#include "widgetinfo.h"
class MetaWatch : public QObject
{
Q_OBJECT
Q_ENUMS(MessageTypes DeviceType WatchMode WatchProperty UiStyle)
Q_FLAGS(WatchProperties)
public:
explicit MetaWatch(const QString &btAddr, QObject *parent = 0);
enum MessageTypes {
MessageGetDeviceType = 0x01,
MessageGetDeviceTypeResponse = 0x02,
MessageSetRealTimeClock = 0x26,
MessageWatchPropertyOperation = 0x30,
MessageWatchPropertyOperationResponse = 0x31,
MessageModeChangeIndication = 0x33,
MessageUpdateLcdDisplay = 0x43,
MessageGetBatteryStatus = 0x56,
MessageReadBatteryStatusResponse = 0x57,
MessageSetWidgetList = 0xA1,
MessageSetupAccelerometer = 0xE1,
MessageAccelerometerDataResponse = 0xE0,
// Messages from the propietary BT stack
MessageConnectionChange = 0xB9,
MessageIntervalChanged = 0xBB
};
enum DeviceType {
DeviceMetaWatchDigitalGen1 = 2,
DeviceMetaWatchDigitalGen2 = 5
};
enum WatchMode {
WatchModeIdle = 0
};
enum WatchProperty {
WatchPropertyHourFormat12h = 0,
WatchPropertyHourFormat24h = 1,
WatchPropertyDateFormatMMDD = 0 << 1,
WatchPropertyDateFormatDDMM = 1 << 1,
WatchPropertyShowSeconds = 1 << 2,
WatchPropertyShowSeparationLines = 1 << 3,
WatchPropertyAutoBacklight = 1 << 4,
WatchPropertyOperationRead = 1 << 7,
WatchPropertyOperationWrite = 0 << 7
};
Q_DECLARE_FLAGS(WatchProperties, WatchProperty)
enum UiStyle {
UiGen1 = 0,
UiGen2 = 1
};
static QList<QUrl> availableClocks();
void setDateTime(const QDateTime &dt);
void configure(WatchProperties props);
void updateDeviceType();
void updateBatteryStatus();
/** Switches to v2 UI, goes to idle mode */
void updateLcdDisplay();
/** Goes to idle mode and a specific page */
void updateLcdDisplayPage(int page);
void updateWidgetList(const QList<WidgetInfo>& widgets);
signals:
void connected();
void disconnected();
void deviceType(DeviceType type);
void modeChange(WatchMode mode, int page);
void batteryStatus(bool charging, int charge);
public slots:
void connectDevice();
void disconnectDevice();
private:
static int clockUrlToClockId(const QUrl &url);
private slots:
void handleTransportMessage(quint8 type, quint8 options, const QByteArray &payload);
private:
MetaWatchTransport *_transport;
};
#endif // METAWATCH_H
|