Files
HaloKeymind/examples/host_cli_service/pi_cpu_temp_service.py
mikecarper 9ed9e9d746 Add secure host CLI bridge and harden OTA workflows
Expose the Full Companion terminal over TCP and add an authenticated, replay-resistant host command service with documented CPU temperature, reboot, and allowlisted program examples.\n\nImprove LoRa OTA diagnostics and persistent CLI handling, reduce clock correction drift to ten minutes, and make mOTA stream flush behavior an explicit transport policy with regression coverage.
2026-08-23 15:29:30 -07:00

9 lines
192 B
Python
Executable File

#!/usr/bin/env python3
"""Compatibility entry point for the expanded MeshCore host CLI service."""
from host_cli_service import main
if __name__ == "__main__":
raise SystemExit(main())