Update stale comments

This commit is contained in:
Timur Iskhodzhanov 2022-07-06 00:07:59 -07:00
parent 8d23d9c9c0
commit dcde2bd0eb
2 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@ Coolant temperature | 864 | `D - 40` |
Engine RPM | 320 | `bitsToUIntLe(raw, 16, 14)` |
Engine oil temperature | 864 | `C - 40` |
Speed | 209 | `bytesToIntLe(raw, 0, 2) * 0.015694` | May want to check the multiplier against an external GPS aevice
Steering angle | 208 | `bytesToIntLe(raw, 0, 2) * -0.1` | Positive value = turning left. You can add a `-` if you prefer it the other way around.
Steering angle | 208 | `bytesToIntLe(raw, 0, 2) * -0.1` | Positive value = turning left. You can remove the `-` if you prefer it the other way around.
### Advanced CAN IDs

View File

@ -23,7 +23,7 @@ Brake pressure | 313 | `F * 128` | Coefficient taken from 1st gen cars, seems to
Coolant temperature | 837 | `E - 40` |
Engine RPM | 64 | `bitsToUIntLe(raw, 16, 14)` |
Engine oil temperature | 837 | `D - 40` |
Steering angle | 312 | `bytesToIntLe(raw, 2, 2) * -0.1` | Positive value = turning left. You can add a `-` if you prefer it the other way around.
Steering angle | 312 | `bytesToIntLe(raw, 2, 2) * -0.1` | Positive value = turning left. You can remove the `-` if you prefer it the other way around.
Speed | 313 | `bitsToUIntLe(raw, 16, 13) * 0.015694` | You may want to check the multiplier against an external GPS device, especially if running larger/smaller diameter tires
### Advanced CAN IDs