Search found 4 matches
- Fri May 22, 2020 11:41 am
- Forum: S300 Calibrations
- Topic: Need a Lsv tune turbo to run meanwhile
- Replies: 1
- Views: 5816
Re: Need a Lsv tune turbo to run meanwhile
I have the same setup just with 550cc injectors, if you still need a tune lmk. You would just have to change the injector sizing in the tune.
- Fri May 22, 2020 11:40 am
- Forum: S300 Calibrations
- Topic: B18b1 turbo basemap tweak
- Replies: 1
- Views: 6427
Re: B18b1 turbo basemap tweak
Just datalog a nice smooth pull and pull fuel out of the fuel table where it is running rich. The datalog will show you exactly where it is running rich if you have your wideband hooked up to your ecu.
- Fri May 22, 2020 11:34 am
- Forum: S300 Calibrations
- Topic: B18b1 turbo map
- Replies: 14
- Views: 9116
Re: B18b1 turbo map
I have a turbo map for my b18 with 550cc injectors making 280whp on 10.5psi if anyone is interested pm me!
- Thu May 21, 2020 6:31 pm
- Forum: K-Pro / KManager
- Topic: CanBus reading
- Replies: 6
- Views: 1741
Re: CanBus reading
so, now that's all worked out - using arduino code as following gives me the relevant info .. unsigned otInt = (rxBuf[4] << 8) | rxBuf[5]; int otV = otInt/819.2; int otAct = map(otV, 0, 5, 0, 200); where rxBuf[x] is the canbus place for oil temp - mash them together, get 399 & divide by 819.2 t...