We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a6a6e4c + 3ad6902 commit eba7d98Copy full SHA for eba7d98
G7SensorKit/G7CGMManager/G7Sensor.swift
@@ -215,7 +215,8 @@ public final class G7Sensor: G7BluetoothManagerDelegate {
215
}
216
217
/// The Dexcom G7 advertises a peripheral name of "DXCMxx", and later reports a full name of "Dexcomxx"
218
- if name.hasPrefix("DXCM") {
+ /// Dexcom One+ peripheral name start with "DX02"
219
+ if name.hasPrefix("DXCM") || name.hasPrefix("DX02"){
220
// If we're following this name or if we're scanning, connect
221
if let sensorName = sensorID, name.suffix(2) == sensorName.suffix(2) {
222
return .makeActive
0 commit comments