Autarch Will Control The Internet

This commit is contained in:
DigiJ
2026-03-13 15:17:15 -07:00
commit 4d3570781e
401 changed files with 484494 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
"""
Hardware Remote - Remote physical device access via web UI
Devices connected to the AUTARCH server are accessible through the web browser.
"""
DESCRIPTION = "Remote physical device access (via web UI)"
AUTHOR = "AUTARCH"
VERSION = "1.0"
CATEGORY = "hardware"
def run():
print("\n Hardware Remote Access")
print(" " + "=" * 40)
print(" Remote hardware access is available through the web UI.")
print(" Devices plugged into this server (USB/Serial) can be")
print(" managed remotely via your browser.")
print()
print(" Start the web server with: python3 autarch.py --web")
print(" Then navigate to: http://<server-ip>:5000/hardware")
print()
print(" Supported devices:")
print(" - Android (ADB/Fastboot)")
print(" - ESP32 (Serial flash/monitor)")
print()