{"id":16100138,"url":"https://github.com/anilmisirlioglu/f1-telemetry-go","last_synced_at":"2025-03-16T08:32:27.209Z","repository":{"id":43689619,"uuid":"371779419","full_name":"anilmisirlioglu/f1-telemetry-go","owner":"anilmisirlioglu","description":"F1 Game Telemetry Client written in Go (no dependency)","archived":false,"fork":false,"pushed_at":"2023-02-17T07:11:05.000Z","size":187,"stargazers_count":79,"open_issues_count":4,"forks_count":15,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-02-27T05:55:57.333Z","etag":null,"topics":["f1-game","formula-1","hacktoberfest","telemetry-client"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/anilmisirlioglu.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-05-28T17:52:26.000Z","updated_at":"2024-06-04T21:04:32.000Z","dependencies_parsed_at":"2024-06-18T20:24:40.051Z","dependency_job_id":"e223864b-7864-42ce-a094-173c2f88e7a7","html_url":"https://github.com/anilmisirlioglu/f1-telemetry-go","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anilmisirlioglu%2Ff1-telemetry-go","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anilmisirlioglu%2Ff1-telemetry-go/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anilmisirlioglu%2Ff1-telemetry-go/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anilmisirlioglu%2Ff1-telemetry-go/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/anilmisirlioglu","download_url":"https://codeload.github.com/anilmisirlioglu/f1-telemetry-go/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243806070,"owners_count":20350775,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["f1-game","formula-1","hacktoberfest","telemetry-client"],"created_at":"2024-10-09T18:45:17.615Z","updated_at":"2025-03-16T08:32:26.679Z","avatar_url":"https://github.com/anilmisirlioglu.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# F1 Game Telemetry Client in Go [![Made With Go](https://img.shields.io/badge/Made%20with-Go-1f425f.svg?color=007EC6)](http://golang.org)\n\nTelemetry client for F1 Game, written in Go. Supports the F1 UDP 2022 and previous formats.\n\n![f1-telemetry-client](https://user-images.githubusercontent.com/20264712/121112897-ccc2fb00-c819-11eb-9739-91ccddcbcdc4.png)\n\n## Features\n\n- Event System\n- Rich Env Constants\n- UDP Stats (recv, err and packet per second rate),\n- Vector3 support\n\n## Install\n\n```bash\n# latest version (F1 2022)\ngo get -u github.com/anilmisirlioglu/f1-telemetry-go@master\n\n# for F1 2022\ngo get -u github.com/anilmisirlioglu/f1-telemetry-go@v1.1.0\n\n# for F1 2020\ngo get -u github.com/anilmisirlioglu/f1-telemetry-go@v1.0.0\n```\n\n## Quick Start\n\n```go\nfunc main() {\n  client, err := telemetry.NewClient()\n  if err != nil {\n\tlog.Fatal(err)\n  }\n\n  client.OnEventPacket(func(packet *packets.PacketEventData) {\n  \tfmt.Printf(\"Code: %s\\n\", packet.EventCodeString())\n  })\n\n  client.Run()\n}\n```\n\n## Specific Address \u0026 Port\n\n```go\nfunc main() {\n  client, err := telemetry.NewClientByCustomIpAddressAndPort(\"0.0.0.0\", 20777)\n  if err != nil {\n\tlog.Fatal(err)\n  }\n\n  client.OnCarDamagePacket(func(packet *packets.PacketCarDamageData) {\n  \tfmt.Printf(\"Code: %s\\n\", packet.EventCodeString())\n  })\n\n  client.Run()\n}\n```\n\n## Docs\n\nIf you need more information on the F1 UDP specifications, see the [docs](/docs).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fanilmisirlioglu%2Ff1-telemetry-go","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fanilmisirlioglu%2Ff1-telemetry-go","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fanilmisirlioglu%2Ff1-telemetry-go/lists"}