Stable tracking of DWM module

This commit is contained in:
2026-04-18 14:15:33 -04:00
parent 22aa8a5dee
commit 00e8a7656c
21 changed files with 1860 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
import CoreBluetooth
enum QorvoBLEUUIDs {
static let niService = CBUUID(string: "2E938FD0-6A61-11ED-A1EB-0242AC120002")
// App writes accessory configuration / commands to this characteristic
static let rxCharacteristic = CBUUID(string: "2E93998A-6A61-11ED-A1EB-0242AC120002")
// Accessory notifies the app with ranging data / responses on this characteristic
static let txCharacteristic = CBUUID(string: "2E939AF2-6A61-11ED-A1EB-0242AC120002")
}