@echo Off setlocal enabledelayedexpansion echo. echo ========================= echo Pico Auto-Programmer echo ========================= REM Read version and build number for file versioning set /p version=nul 2>&1 ) echo. echo Running unified Pico programmer... echo. REM Call the unified Python script call python ./Pico_Reset_And_Program.py if %errorlevel% == 0 ( echo. echo ========================= echo Programming Success! echo ========================= ) else ( echo. echo ========================= echo Programming Error echo ========================= exit /b 1 ) echo. exit /b