- 01Overview
- LapSignal is a local-first telemetry analysis platform for sim racers. It captures F1 2021 driving data, measures pace, braking, throttle, steering, stint behavior, and consistency, then turns those patterns into evidence-backed coaching. Every coaching claim should have a signal behind it.
- 02Problem
- Sim-racing telemetry tools often overwhelm drivers with raw data or make vague coaching claims without showing the evidence behind them. LapSignal connects measured performance to a clear next action.
- 03Approach
- Measurement comes before explanation. Telemetry is normalized, validated, stored locally, and analyzed deterministically before any coaching layer explains the findings. Pace, braking, throttle, steering, stint degradation, consistency, and theoretical best laps are calculated by the system.
- 04Engineering
- F1 2021 telemetry enters through a native Windows UDP collector or replay, is normalized into a game-independent contract, and reaches a FastAPI backend. Zod and Pydantic validate both sides of the boundary. High-frequency telemetry is stored separately from relational metadata, and bounded, downsampled WebSocket updates feed the Next.js interface. Missing telemetry returns null rather than fabricated estimates.
- 05AI
- AI is an optional explanation and prioritization layer, not the source of truth. It receives a compact bundle of verified metrics, findings, and evidence IDs; it does not analyze raw telemetry or calculate performance. Output that introduces unsupported measurements is rejected. Rule-based coaching remains available without an API key.
- 06Privacy
- Local-first by default: raw telemetry stays on the driver's machine and no cloud account is required. Optional hosted AI through OpenRouter receives compact deterministic summaries rather than raw high-frequency telemetry.
- 07Outcome
- An alpha prototype that brings recording and replay, session analysis, comparison, coaching, and progress tracking into an engineering-focused sim-racing workspace. LapSignal grew from my interest in applying software, data, and AI to motorsport-style performance analysis.