OBD2 Debug Console

Real-time connection monitoring and data logging

Connection Method:

Connection Status

No status data available

Latest Data Summary

No data available

Console Logs (0)

No logs yet

Connection Methods

📡 API Mode (Recommended)

Your OBD2 device sends data to the server via HTTP POST requests.

Step 1: Report Connection

POST https://myv5.co.uk/api/obd2/status
Content-Type: application/json

{
  "connected": true,
  "deviceId": "YOUR_DEVICE_ID"
}

Step 2: Send Data (every 1-2 seconds)

POST https://myv5.co.uk/api/obd2/data
Content-Type: application/json

{
  "rpm": 2500,
  "engineTemp": 95,
  "fuelLevel": 75,
  "voltage": 14.2,
  "throttle": 45,
  "engineLoad": 60,
  "maf": 15.5,
  "speed": 80
  // ... all other parameters
}

💡 Testing:

Click "Simulate Data" button above to test the system without a real device.