Overview of GT7 Telemetry Software

  • Thread starter Thread starter snimat
  • 345 comments
  • 161,814 views
Is there any app that would show the time of the last 10 laps or so? I know gt7 already shows this, but not in VR, I'd like to display it in my streams.
 
present I'm using EZIODASH Pro as main dash board. And I love the motivation from the box … 😇😊
additional a Android tablet with PRO Sim Dashboard on the side for more information with a little bit bigger letters for my old eyes 🤪

But I like to test @chrshdl solution also 😍
PI4 and a dashboard display 14,5" are on board … I'm curios

Thanks to all developers .. great job 👍🥰
 

I've already found some of the new datapoints, you can see further technical details here. ^

The current stuff I've found is:
Surface Type Indicator (what kind of surface your tyre is in contact with, such as tarmac, dirt etc)
Current Laptime (!!!) (You can now see your exact current lap time, finally.)
Category Type (Which car category you are currently driving)

I'm going to do some more research in the morning, the other fields appear to be harder to decode for me at least.
 
Last edited:

I've already found some of the new datapoints, you can see further technical details here. ^

The current stuff I've found is:
Surface Type Indicator (what kind of surface your tyre is in contact with, such as tarmac, dirt etc)
Current Laptime (!!!) (You can now see your exact current lap time, finally.)
Category Type (Which car category you are currently driving)

I'm going to do some more research in the morning, the other fields appear to be harder to decode for me at least.
Did we get only total lap time, or sectors as well?
 
Did we get only total lap time, or sectors as well?
Only lap-time right now, I don’t see how that would be implemented easily (as there are only 12 bytes left to find out the meaning of, and some tracks have multiple sectors). It looks the last 4 bytes of the 12 bytes sequence is tied to the steering or some kind of yaw. Not really sure as of right now though.

You can now test out my current findings using my library for ESP32/ESP8266 devices.
 
Last edited:
Only lap-time right now, I don’t see how that would be implemented easily (as there are only 12 bytes left to find out the meaning of, and some tracks have multiple sectors). It looks the last 4 bytes of the 12 bytes sequence is tied to the steering or some kind of yaw. Not really sure as of right now though.

You can now test out my current findings using my library for ESP32/ESP8266 devices.
Yeah I was able to read the new data by looking at your code, thank you!
 

I've already found some of the new datapoints, you can see further technical details here. ^

The current stuff I've found is:
Surface Type Indicator (what kind of surface your tyre is in contact with, such as tarmac, dirt etc)
Current Laptime (!!!) (You can now see your exact current lap time, finally.)
Category Type (Which car category you are currently driving)

I'm going to do some more research in the morning, the other fields appear to be harder to decode for me at least.
I don't have a Github account so I'm posting here:

There are more values for the SurfaceType that you guys haven't mapped. Right now I'm in a sandbank and the game is returning me 'S'. It also returns 'G' for the grass.
 
Last edited:
present I'm using EZIODASH Pro as main dash board. And I love the motivation from the box … 😇😊
additional a Android tablet with PRO Sim Dashboard on the side for more information with a little bit bigger letters for my old eyes 🤪

But I like to test @chrshdl solution also 😍
PI4 and a dashboard display 14,5" are on board … I'm curios

Thanks to all developers .. great job 👍🥰
Hi, sure feel free to test it https://github.com/chrshdl/instrument-cluster

The system currently supports only the Raspberry Pi 2 display.
 
I just want to throw it out there that EzioDash Pro now has full support for iPad! This is the first version with iPad support, so I would appreciate any feedback on bugs and if there's anything that isn't working as intended.

And no, there is no free iPad version planned at this stage – sorry.

Simulator Screenshot - iPad Pro 13-inch (M4) - 2026-04-26 at 20.19.06.webp


Simulator Screenshot - iPad Pro 13-inch (M4) - 2026-04-26 at 20.19.39.webp


It's basically everything everwhere all at once on iPad :D
 
Was anyone able to identify which sector are you on based on Telemetry data?

I know you can draw the track using the coordinates. And with GT7Tracks project you can identify the track. But you still need to map the coordinates of each track that represent Sector 1, Sector 2 and so on.

Coach Dave Delta and Victory Dash has been able to do this, but their code isn't available, neither their track/sector mapping.
 
Last edited:
Was anyone able to identify which sector are you on based on Telemetry data?

I know you can draw the track using the coordinates. And with GT7Tracks project you can identify the track. But you still need to map the coordinates of each track that represent Sector 1, Sector 2 and so on.

Coach Dave Delta and Victory Dash has been able to do this, but their code isn't available, neither their track/sector mapping.
I would assume it’s the same functionality as the GT7Tracks project and they just went to the effort of mapping the sectors. I’m not aware of any telemetry data that let’s you see which sector you are on.
 
Last edited:
I would assume it’s the same functionality as the GT7Tracks project and they just went to the effort of mapping the sectors. I’m not aware of any telemetry data that let’s you see which sector you are on.
Yeah they did that, it was discussed it a few pages behind on this thread.

What I'm asking if anyone also did this and publicized their code/results, so we don't have to do all the mapping ourselves, all over again.

And no, the public API doesn't have sector info. Maybe the private has, but we don't have access.
 
Back