Hey everyone, does anyone know where I would find a map for the channelId variable from the vehicleProfile.json file? This is the file inside of the .rcz export. and example of the data looks like this
```
{
"deviceType": 12,
"channelId": 131076,
"pid": 496,
"equation": "((bytesToUInt(raw, 4, 1)+bytesToUInt(raw, 5, 1)*256)/16)/3.6",
"obdHeader": 0
},
{
"deviceType": 12,
"channelId": 163844,
"pid": 496,
"equation": "((bytesToUInt(raw, 2, 1)+bytesToUInt(raw, 3, 1)*256)/16)/3.6",
"obdHeader": 0
},
```
I want to know how to map channelId to the string name so I can create an automatic profile builder.
Thanks