From fe23e9f7a00f365232cd98e91c413dc6d3f6ead0 Mon Sep 17 00:00:00 2001 From: 446564 Date: Mon, 9 Feb 2026 05:36:25 -0800 Subject: [PATCH] add support for whipseros needed a new ble prefix --- lib/connector/meshcore_connector.dart | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/connector/meshcore_connector.dart b/lib/connector/meshcore_connector.dart index 2c56c37..2bb0a17 100644 --- a/lib/connector/meshcore_connector.dart +++ b/lib/connector/meshcore_connector.dart @@ -658,7 +658,8 @@ class MeshCoreConnector extends ChangeNotifier { _scanResults.clear(); for (var result in results) { if (result.device.platformName.startsWith("MeshCore-") || - result.advertisementData.advName.startsWith("MeshCore-")) { + result.advertisementData.advName.startsWith("MeshCore-") || + result.advertisementData.advName.startsWith("Whisper-")) { _scanResults.add(result); } }