feat: add MeshCoreUuids class for UUID constants and device name prefixes

This commit is contained in:
just-stuff-tm
2026-03-16 11:37:45 -04:00
parent 990f2bd33d
commit d07372c7e0
2 changed files with 12 additions and 10 deletions
+7
View File
@@ -0,0 +1,7 @@
class MeshCoreUuids {
static const String service = "6e400001-b5a3-f393-e0a9-e50e24dcca9e";
static const String rxCharacteristic = "6e400002-b5a3-f393-e0a9-e50e24dcca9e";
static const String txCharacteristic = "6e400003-b5a3-f393-e0a9-e50e24dcca9e";
static const List<String> deviceNamePrefixes = ["MeshCore-", "Whisper-", "Wiscore-", "HT-"];
}