| Offset | Name | Type | Length |
|---|---|---|---|
| 0x0000 | Format Version | U8 | 1 |
| 0x0001 | Locked Tune | U8 | 1 |
| 0x0002 | Car Ordinal ID | U16 | 2 |
| 0x0004 | Unknown Header Data? | U16 | 2 |
| 0x0006 | Unknown Header Data? | U16 | 2 |
| 0x0008 | Unknown Header Data? | U16 | 2 |
| 0x000A | Unknown Header Data? | U16 | 2 |
| 0x000C | Unknown Header Data? | U16 | 2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "1969 Toyota 2000 GT": "247", | |
| "1964 Ferrari 250 GTO": "249", | |
| "1954 Mercedes-Benz 300 SL": "251", | |
| "1994 Ferrari F355 Berlinetta": "253", | |
| "1991 Ferrari 512 TR": "255", | |
| "FER_575_02": "257", | |
| "fer_612_04": "258", | |
| "1973 Porsche 911 Carrera RS": "260", | |
| "1995 Porsche 911 GT2": "261", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "TOY_2000GT_69": "247", | |
| "FER_250GTO_64": "249", | |
| "MER_300SL_54": "251", | |
| "FER_355Berlinetta_94": "253", | |
| "FER_512TR_91": "255", | |
| "FER_575_02": "257", | |
| "POR_CarreraRS_73": "260", | |
| "POR_911GT2_95": "261", | |
| "POR_996GT3_04": "262", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "fer_250gto_64": "249", | |
| "mer_300sl_54": "251", | |
| "fer_355berlinetta_94": "253", | |
| "fer_512tr_91": "255", | |
| "fer_575_02": "257", | |
| "fer_612_04": "258", | |
| "por_carrerars_73": "260", | |
| "por_911gt2_95": "261", | |
| "por_996gt3_04": "262", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "TOY_2000GT_69": "247", | |
| "FER_250GTO_64": "249", | |
| "MER_300SL_54": "251", | |
| "FER_355Berlinetta_94": "253", | |
| "FER_512TR_91": "255", | |
| "FER_575_02": "257", | |
| "por_carrerars_73": "260", | |
| "por_911gt2_95": "261", | |
| "POR_996GT3_04": "262", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "TOY_2000GT_69": "247", | |
| "FER_250GTO_64": "249", | |
| "MER_300SL_54": "251", | |
| "FER_355Berlinetta_94": "253", | |
| "FER_512TR_91": "255", | |
| "FER_575_02": "257", | |
| "por_carrerars_73": "260", | |
| "por_911gt2_95": "261", | |
| "POR_996GT3_04": "262", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "1969 Toyota 2000 GT": "247", | |
| "1964 Ferrari 250 GTO": "249", | |
| "1954 Mercedes-Benz 300 SL": "251", | |
| "1994 Ferrari F355 Berlinetta": "253", | |
| "1991 Ferrari 512 TR": "255", | |
| "1973 Porsche 911 Carrera RS": "260", | |
| "1995 Porsche 911 GT2": "261", | |
| "2004 Porsche 911 GT3": "262", | |
| "1982 Porsche 911 Turbo": "265", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| import time | |
| import json | |
| from hkdf import Hkdf | |
| import hashlib | |
| import pm3 | |
| from datetime import datetime | |
| import struct | |
| try: |
- A computer hooked up to a CC:Tweaked Speaker or a (Advanced) Noisy Pocket Computer
- Any .wav file
- Download the audio player code & b64
pastebin get QmkYgCZs play&pastebin get ntsWPAcq b64(you only need to do this once) - Convert your audio file to wav
- Convert the wav file to dfpwm using https://martinrefseth.com/wav2dfpwm/ (Now supports bulk wav to dfpwm or base64 encoded dfpwm)
- Copy the base64 encoded DFPWM from the text box
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #By HDR | |
| #https://gist.github.com/HDR/02cec215db1e97349008e80a3116a189 | |
| #V1.0 | |
| import obspython as obs | |
| import asyncio | |
| import threading | |
| from bleak import BleakScanner, BleakClient | |
| source_name = "Heart Rate" | |
| current_text = "Awaiting Connection..." |
NewerOlder