feat(factory): add local flashing toolkit and secure OTA defaults

This commit is contained in:
admin
2026-03-02 01:57:39 +08:00
parent 809fcf6548
commit 3d3c3ebac2
27 changed files with 5260 additions and 4 deletions

View File

@@ -0,0 +1,20 @@
#!/usr/bin/env python3
"""
TalkingQ Drawing Robot - Factory Flashing GUI (local-only).
Minimal Tkinter GUI to avoid Windows batch quirks. Relies on python -m esptool /
espefuse, and bin files placed in the same folder as this script / exe.
Designed to be PyInstaller-friendly.
"""
from __future__ import annotations
import sys
from factory_gui.app import main
if __name__ == "__main__":
try:
main()
except KeyboardInterrupt:
sys.exit(1)