Go to file
2024-06-09 15:08:11 +02:00
.github/workflows Fix typo 2024-06-09 15:08:11 +02:00
app Bugfixes 2024-06-09 13:18:14 +02:00
firmware Initial commit 2024-05-19 02:42:36 +02:00
.gitignore Fixes 2024-06-09 13:42:51 +02:00
app.py Initial commit 2024-05-19 02:42:36 +02:00
BTClockOTA.spec Add wx as hidden import 2024-06-09 14:42:12 +02:00
LICENSE.txt Add license 2024-05-19 11:57:39 +02:00
README.md Fixes 2024-06-09 13:42:51 +02:00
requirements.txt Add pillow to requirements 2024-06-09 14:24:38 +02:00
update-icon.icns Initial commit 2024-05-19 02:42:36 +02:00
update-icon.ico Add ICO icon 2024-06-09 14:29:33 +02:00
update-icon.png Initial commit 2024-05-19 02:42:36 +02:00

BTClock OTA Flasher interface

Instructions

  • Make sure you have Python (tested with Python 3.12)
  • Run pip3 install -r requirements.txt
  • Run python3 app.py
  • Profit

Bundle with PyInstaller

macOS

pyinstaller --hidden-import zeroconf._utils.ipaddress --hidden-import zeroconf._handlers.answers  -n BTClockOTA -i update-icon.icns --windowed app.py

Windows

pyinstaller.exe  --hidden-import zeroconf._utils.ipaddress --hidden-import zeroconf._handlers.answers --hidden-import pyserial  -n BTClockOTA --windowed --onefile app.py 

Linux

`pyinstaller --hidden-import zeroconf._utils.ipaddress --hidden-import zeroconf._handlers.answers  -n BTClockOTA --windowed app.py`