Update README and enhance serial number display in OpenIris setup CLI

This commit is contained in:
PhosphorosVR
2025-08-24 22:50:35 +02:00
parent 6e2a591348
commit 937234af6d
2 changed files with 12 additions and 58 deletions

View File

@@ -996,9 +996,10 @@ def get_settings(device: OpenIrisDevice, args=None):
ident = summary.get("Identity", {})
serial = ident.get("serial")
mac = ident.get("mac")
# print(f"🔑 Serial: {serial}") # Serial display intentionally disabled; MAC is sufficient
if mac:
print(f"🔗 MAC: {mac}")
if serial:
print(f"🔑 Serial: {serial}")
# if mac:
# print(f"🔗 MAC: {mac}")
if not serial and not mac:
print("🔑 Serial/MAC: unavailable")