diff --git a/clients/connect_drivein_simple.bat b/clients/connect_drivein_simple.bat index 41c4980..0fdd132 100644 --- a/clients/connect_drivein_simple.bat +++ b/clients/connect_drivein_simple.bat @@ -1 +1,25 @@ -$(cat /home/claude/connect_drivein_simple.bat) \ No newline at end of file +@echo off +echo ======================================== +echo Smart NFC Client - DNS Auto-Connect +echo ======================================== +echo Target device: drive-in +echo Will automatically resolve IP address +echo. + +REM Install dependencies if needed +pip show pynput >nul 2>&1 +if errorlevel 1 ( + echo Installing dependencies... + pip install -r client_requirements.txt + echo. +) + +echo Starting Smart Auto-Connect Client... +python nfc_autoconnect.py + +if errorlevel 1 ( + echo. + echo ERROR: Client failed to start + echo. + pause +)