Adding environment setup and instructions

This commit is contained in:
Brent Perteet
2025-07-22 14:04:27 -05:00
parent 311981ceb4
commit dc2885e02e
23 changed files with 3741 additions and 114 deletions

17
setup-env.bat Normal file
View File

@@ -0,0 +1,17 @@
@echo off
setlocal
echo [ESP32 Setup] Creating Python virtual environment...
python -m venv .venv
echo [ESP32 Setup] Activating environment...
call .venv\Scripts\activate.bat
echo [ESP32 Setup] Installing dependencies...
pip install -r requirements.txt
echo [ESP32 Setup] Done!
echo To activate environment later: call .venv\Scripts\activate.bat
endlocal
pause