Skip to content

Commit 0ef4ced

Browse files
committed
V4.2.2 - Added support for OSD status reporting to PineTime watches
1 parent 2a0ef41 commit 0ef4ced

File tree

3 files changed

+5
-0
lines changed

3 files changed

+5
-0
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
OpenSeizureDetector Android App - Change Log
22
============================================
3+
V4.2.2 - Added support for PineTime OSD Status reporting.
34
V4.2.1 - Added support for PineTime wathes using the Bluetooth Data Source
45
V4.1.0 - Added experimental support for neural network based seizure detector.
56
V4.0.7 - Improvements to Data Sharing data log manager screen
Binary file not shown.

app/src/main/java/uk/org/openseizuredetector/SdDataSourceBLE.java

+4
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,7 @@ public class SdDataSourceBLE extends SdDataSource {
111111

112112
public static String SERV_INFINITIME_MOTION = "00030000-78fc-48fe-8e23-433b3a1942d0";
113113
public static String CHAR_INFINITIME_ACC_DATA = "00030002-78fc-48fe-8e23-433b3a1942d0";
114+
public static String CHAR_INFINITIME_OSD_STATUS = "00030078-78fc-48fe-8e23-433b3a1942d0";
114115

115116
public static String CHAR_BATT_DATA = "00002a19-0000-1000-8000-00805f9b34fb";
116117
public static String SERV_BATT = "0000180f-0000-1000-8000-00805f9b34fb";
@@ -322,6 +323,9 @@ public void onServicesDiscovered(BluetoothGatt gatt, int status) {
322323
mOsdChar = gattCharacteristic;
323324
mAccFmt = ACC_FMT_3D; // Infinitime presents x, y, z data
324325
setCharacteristicNotification(gattCharacteristic, true);
326+
} else if (charUuidStr.equals(CHAR_INFINITIME_OSD_STATUS)) {
327+
Log.i(TAG, "Found Infinitime OSD Status Characteristic");
328+
mStatusChar = gattCharacteristic;
325329
}
326330
}
327331
} else if (uuidStr.equals(SERV_BATT)) {

0 commit comments

Comments
 (0)