# Quick Mobile Setup

## Your Computer's IP Address

Based on your network, your IP is: **192.168.214.62**

## Steps to Access on Mobile

1. **Make sure both servers are running:**
   ```bash
   # Terminal 1 - Backend
   cd backend
   npm run dev
   
   # Terminal 2 - Frontend  
   cd frontend
   npm run dev
   ```

2. **On your mobile phone:**
   - Connect to the **same Wi-Fi network** as your computer
   - Open a web browser (Chrome, Safari, etc.)
   - Go to: **http://192.168.214.62:3000**

3. **That's it!** The app should load on your phone.

## If It Doesn't Work

1. **Check firewall**: Windows Firewall might be blocking the connection
   - Temporarily disable firewall to test
   - Or allow Node.js through firewall

2. **Verify IP address**: Your IP might have changed
   - Run: `ipconfig` (Windows) or `ifconfig` (Mac/Linux)
   - Look for IPv4 address

3. **Check both devices are on same network**
   - Both must be on the same Wi-Fi

4. **Restart servers** after making changes

## The app is now configured to:
- ✅ Automatically detect if accessed from mobile
- ✅ Use the correct IP address for API calls
- ✅ Connect WebSocket to the right server
- ✅ Work seamlessly on both desktop and mobile

Enjoy controlling your robot from your phone! 📱🚜

