updated to include adding simulated bands with mock naming

This commit is contained in:
2025-10-18 17:47:16 -04:00
parent 18fc4cb0bd
commit ec575e30ef
12 changed files with 19 additions and 36 deletions
+4
View File
@@ -321,6 +321,10 @@ class WristbandManager:
def add_simulated_band(self, band_id: str, profile: str = "stable"):
"""Add a simulated wristband to inventory"""
# Change naming to use MOCK prefix if not already present
if not band_id.startswith("MOCK-"):
band_id = f"MOCK-{band_id.replace('VitalLink-', '')}"
band = SimulatedWristband(band_id, profile)
self.inventory[band_id] = band
print(f" Added simulated band {band_id} ({profile})")