added current monitoring to pcb, many code fixes for the protocol / feed control logic, completely reworked diagnostic tool

This commit is contained in:
janik
2026-03-30 17:46:52 +07:00
parent 33426570bb
commit a69055b0d4
119 changed files with 31311 additions and 26899 deletions

Binary file not shown.

File diff suppressed because it is too large Load Diff

View File

@@ -1 +1,2 @@
pyserial>=3.5
textual>=1.0.0

View File

@@ -22,6 +22,18 @@ if errorlevel 1 (
)
)
:: Check if textual is installed
python -c "import textual" >nul 2>&1
if errorlevel 1 (
echo Installing textual...
pip install textual
if errorlevel 1 (
echo Error: Failed to install textual
pause
exit /b 1
)
)
:: Run the monitor
cd /d "%~dp0"
python feeder_monitor.py %*