From 1b2940da742c988d3c2d252658c07557a3186fc1 Mon Sep 17 00:00:00 2001 From: jessikitty Date: Wed, 24 Dec 2025 10:58:15 +1100 Subject: [PATCH] Fix smart connect launcher - simplified and compatible with v2.0.0 --- clients/connect_drivein_simple.bat | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) 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 +)