diff --git a/G7SensorKit/G7CGMManager/G7Sensor.swift b/G7SensorKit/G7CGMManager/G7Sensor.swift
index b1745a1..cea7644 100644
--- a/G7SensorKit/G7CGMManager/G7Sensor.swift
+++ b/G7SensorKit/G7CGMManager/G7Sensor.swift
@@ -215,8 +215,9 @@ public final class G7Sensor: G7BluetoothManagerDelegate {
}
/// The Dexcom G7 advertises a peripheral name of "DXCMxx", and later reports a full name of "Dexcomxx"
- /// Dexcom One+ peripheral name start with "DX02"
- if name.hasPrefix("DXCM") || name.hasPrefix("DX02"){
+ /// The Dexcom Stelo prelix is "DX01"
+ /// The Dexcom One+ prefix is "DX02"
+ if name.hasPrefix("DXCM") || name.hasPrefix("DX01") || name.hasPrefix("DX02"){
// If we're following this name or if we're scanning, connect
if let sensorName = sensorID, name.suffix(2) == sensorName.suffix(2) {
return .makeActive
diff --git a/G7SensorKitUI/Views/G7StartupView.swift b/G7SensorKitUI/Views/G7StartupView.swift
index ccd84a3..58ab48b 100644
--- a/G7SensorKitUI/Views/G7StartupView.swift
+++ b/G7SensorKitUI/Views/G7StartupView.swift
@@ -28,7 +28,7 @@ struct G7StartupView: View {
.frame(height: 120)
.padding(.horizontal)
}.frame(maxWidth: .infinity)
- Text(String(format: LocalizedString("%1$@ can read G7 CGM data, but you must still use the Dexcom G7 App for pairing, calibration, and other sensor management.", comment: "Descriptive text on G7StartupView (1: appName)"), self.appName))
+ Text(String(format: LocalizedString("%1$@ can read CGM data from the G7 platform, but you must still use the Dexcom App for pairing, calibration, alarms and other sensor management available to the sensor series (G7, ONE+, Stelo).\n\nWARNING: Dexcom Stelo app provides no alerts and alarms. Glucose alerts and alarms are not provided by %2$@.", comment: "Descriptive text on G7StartupView (1: appName, 2: appName)"), self.appName, self.appName))
.fixedSize(horizontal: false, vertical: true)
.foregroundColor(.secondary)
Spacer()
diff --git a/G7SensorPlugin/Info.plist b/G7SensorPlugin/Info.plist
index 996e0e1..b97e45d 100644
--- a/G7SensorPlugin/Info.plist
+++ b/G7SensorPlugin/Info.plist
@@ -23,7 +23,7 @@
NSPrincipalClass
G7SensorPlugin
com.loopkit.Loop.CGMManagerDisplayName
- Dexcom G7 / ONE+
+ Dexcom G7 / ONE+ / Stelo
com.loopkit.Loop.CGMManagerIdentifier
G7CGMManager