





















A telemetry tool for track-day drivers - your phone, your GoPro, your data. Compare laps, inspect speed traces, racing lines and sector deltas, without a professional race-engineering setup.
01 - Who is behind this?
I'm Paweł, software developer, based in Poland. Like a lot of people in motorsport, I was the kid who drew cars in his notebooks and pulled the motorbike magazines off the kitchen table. That obsession never quite left.
Some around 2014, I took part in my first competition, driving a Nissan Micra K11 1.3, in the competition "KJS" (Polish version of autocross, the cheapest way to be on a stopwatch). Then I took part in several competitions amateur gravel rallies. That was over twelve years ago, and I've been chasing the next track in some form ever since.
02 - The sim racing detour
Work, money, life, the rally car had to go. For about five years I drove almost exclusively on simulators. It started with the cheapest Logitech wheel I could find and grew into a serious setup.
Along the way I started a sim racing blog (in Polish). I won a 12-hour endurance at Le Mans in the GTE class with the Simracing Poland team, and went to SimExpo in Germany twice. The community I met there took motorsport seriously enough to talk about apex speed and brake bias on a Wednesday evening.
That's where I learned more about cornering technique and reading data than I ever had behind a real wheel. It's also where I started wanting that same data on a real circuit.
03 - Back behind the wheel
The sim hours pulled me back to tarmac. In 2020 I picked up a Renault Clio 3 RS and spent over a year prepping it for the track - cage, seats, suspension etc.
Since 2021 I've been racing in the "Track Masters" Central European Time Attack Cup. Roughly twenty circuits so far, like Red Bull Ring, Hungaroring, Nürburgring, Lausitzring, Slovakia Ring, Brno, and my favourite, Most.
I also had the opportunity to take part in a 4-hour endurance race. The Sundays got a lot less Sunday.
04 - Building Vetkuro
Once I started thinking about technique on real circuits the way sim racers do - apex by apex, brake point by brake point - I went looking for the data tools. Phone apps. Pro loggers. Each one had something missing: clunky sync, file conversions, desktop software bound to a specific laptop, or analysis screens that assumed you had a race engineer next to you.
So I started building one for myself. Evenings, after work. What began as side-project tinkering turned into a four-year habit. Eventually I hired some developers to help bring the project to life. The thing got serious.
Vetkuro is now in public beta. I'd really like your honest opinion on it - that's part of why I'm sharing it here.
What came out of it
Vetkuro records telemetry and allows you to analyze data that lap time can't: was I braking later, carrying more speed through the apex, taking a different line, or losing time on corner exit.
01
Records every track session from your phone. Detects laps and sectors, ties in OBD-II, BLE GPS, GoPro and heart-rate sensors. Works on iOS and Android.
02
Where you actually see why one lap was faster - speed traces, racing lines, sector deltas, channel overlays. Everything aligned by distance, not just by time.
03 · early prototype
An ESP32-based telemetry collection device with high-rate GPS and OBD-II support.
Early prototype - not yet shipping.
An on-track test of Vetkuro at Silesia Ring.
The questions Vetkuro answers after every session.
It does this from your phone, optionally connecting to higher-rate BLE GPS, OBD-II adapters, GoPro footage and BLE heart-rate sensors. Sessions sync to the cloud and live in the web analyzer for as long as you want.
From your phone in the vehicle to a lap comparison on your laptop.
01 Record
Mobile app captures GPS, IMU and sensor data during the session.
02 Upload
Raw session files upload when connectivity allows.
03 Process
Backend detects laps and sectors, normalises telemetry channels.
04 Analyze
Mobile and web apps compare laps by distance, speed, sector and racing line.
Engineering
The hard part isn't drawing a lap on a map. The hard part is making noisy, multi-rate, imperfect telemetry useful enough to change how you drive on the next outing. Below are the problems we ran into - and what each one enables in the product.
A track isn't a polyline on a map. To split a session into laps Vetkuro needs start/finish lines, sector gates, lap direction, and layout variants - closed circuit, point-to-point, hill climb. Then it has to detect when a noisy phone GPS trace actually crossed those lines, without producing false laps from a single bad sample.
Our lap time calculation algorithm was compared with official radio measurements on the tracks.
Two laps almost never share timestamps. To compare braking points, apex speed or corner exit, every channel has to be aligned along distance around the track instead of time. That's what makes it possible to ask "at the same point on track, which lap was faster, and where did I lose time?" and read the answer directly off the trace.
Regardless of the travel time, a comparison over distance usually gives a better overview of the situation.
ELM327 isn't a real BLE protocol - it's serial-over-BLE with AT commands. Supporting OBD-II properly meant scanning each ECU for the PIDs it actually answers, handling multi-frame responses, and filtering the result down to channels worth showing on a lap. The hard part wasn't the Bluetooth pairing - it was everything after.
Live engine data on every lap with most off-the-shelf adapters, no per-car configuration.
A session can contain 25 Hz GPS, irregular OBD-II values, phone IMU, BLE heart-rate and GoPro frames - each with its own frequency, latency and accuracy. The hard part isn't storing samples. It's getting them to line up on the same lap, the same distance axis and the same chart, so a driver can read them in one place.
Adding a new sensor type doesn't mean a new chart screen in the analyzer.
The same telemetry data has to travel from firmware on the dedicated logger, through the mobile recorder, into the Go backend, and out to the web analyzer. Instead of four hand-written copies that drift apart, we use Protobuf as the single source of truth and generate TypeScript and Go types from it.
Add a channel once, it shows up in firmware, mobile, backend and the web analyzer.
Sessions arrive as raw uploads from mobile, get processed by Go workers into laps, sectors and normalised channels, and land in a channel-based time-series schema where any source-channel pair is queryable for overlays. Video footage runs through its own pipeline so a session can replay synced video alongside its data in the analyzer.
Old sessions can be re-processed when the algorithms improve.
Hardware · early prototype
Phone GPS and Bluetooth dongles cover most amateur use cases. They don't cover all of them - fast tracks, long stints, older vehicles with non-standard diagnostics.
Most consumer GPS loggers ignore CAN. Most CAN tools ignore consumer drivers. This is the gap.
None of this is on the page yet - that's deliberate.
Soon · 3-6 months
Corner-by-corner analysis (braking points, apex speed, exit traction), predictive lap and advanced sector overlays, and a more open data story: possibility to generate video overviews of the best laps.
Later · ~6 months
Shipping Vetkuro device out of the prototype run, broader OBD-II coverage, and more reliable BLE connectivity. The goal is to have the hardware available for purchase, but the timeline depends on how the next round of testing goes.
Public beta, started April 2026. Here's the unvarnished snapshot.
Status
Mobile recorder on iOS and Android, sessions syncing to the cloud,
and a web analyzer that's where drivers actually compare laps.
External devices integrate over BLE - high-rate GPS, OBD-II, GoPro,
heart-rate monitors.
We have around 150 users, over 100 recorded sessions on real tracks, growing backlog of feedback and feature requests.
Limits
Our analysis shows the data, but it doesn't yet pinpoint where the driver is losing time. That's something we want to improve - it would make telemetry easier for everyone. Simple video overlay generation is also high on the list for a large group of drivers.
Who it's for
Track-day drivers, amateur racers, karters, motorcycle riders, driving instructors, and curious builders interested in GPS and sensor fusion. Race engineers and teams looking for a lighter setup are welcome too.
The workflow, the edge cases on tracks I haven't tested, which channels are actually useful, what device support you wish worked, whether the demo even made sense - everything is on the table. The harsh feedback especially. That's how this gets better.
Or just grab the app:
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。