- 50
- Germany
Here is a Go library for GT7 telemetry I ported just now: https://github.com/snipem/go-gt7-telemetry
Writing Go programs for portability is much easier for me. Many inexperienced users face difficulties setting up Python and its dependencies because of its interpreted nature. Newly developed Go programs and their binaries have the potential to enhance the user experience.
Additionally, it works with Stooberts broadcast finding from above. See the example for yourself.
Writing Go programs for portability is much easier for me. Many inexperienced users face difficulties setting up Python and its dependencies because of its interpreted nature. Newly developed Go programs and their binaries have the potential to enhance the user experience.
Additionally, it works with Stooberts broadcast finding from above. See the example for yourself.
go-gt7-telemetry
A Gran Turismo 7 Telemetry Library for GoExample
C-like:
package main
import (
"fmt"
gt7 "github.com/snipem/go-gt7-telemetry/lib"
)
func main() {
gt7c := gt7.NewGT7Communication("255.255.255.255")
go gt7c.Run()
for true {
fmt.Println(gt7c.LastData.CarSpeed)
}
}
TODO
IsPaused and InRace flags do not work.
Last edited: