26 lines
554 B
Batchfile
26 lines
554 B
Batchfile
@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
|
|
)
|