Added missing TS gauges (#272)
* Map reading offset fix Because of this, mega was backfeeding +5v to map sensor signal pin, causing offset to map reading. * Update init.ino * Added new TS gauges Added missing TS gauges: - boostTarget - Boost Duty Cycle - Target AFR - VVT Duty Cycle - Idle Target RPM - IAC Value - # Sync Losses
This commit is contained in:
parent
ad4a3a06dd
commit
3a6b9045f3
|
@ -3141,6 +3141,12 @@ cmdtestspk450dc = "E\x03\x0C"
|
|||
flexEnrich = flexFuelCor, "Flex Correction", "%", 0, 200, 130, 140, 140, 150, 0, 0
|
||||
advanceGauge = advance, "Spark Advance", "deg BTDC", 50, -10, 0, 0, 35, 45, 0, 0
|
||||
dwellGauge = dwell, "Ign Dwell", "mSec", 0, 35.0, 1.0, 1.2, 20, 25, 3, 3
|
||||
boostTargetGauge = boostTarget, "Target Boost", "kPa", 0, 255, 0, 20, 200, 245, 0, 0
|
||||
boostDutyGauge = boostDuty, "Boost Duty Cycle", "%", 0, 100, -1, -1, 101, 110, 1, 1
|
||||
afrTargetGauge = afrTarget, "Target AFR", "", 7, 25, 12, 13, 15, 16, 2, 2
|
||||
VVTdutyCycleGauge = vvtDuty, "VVT Duty Cycle", "%", 0, 100, -1, -1, 101, 110, 1, 1
|
||||
IdleTargetGauge = CLIdleTarget, "Idle Target RPM", "RPM", 0, 2000, 300, 600, 1500, 1700, 0, 0
|
||||
idleLoadGauge = idleLoad, "IAC Value", "%/Steps", 0, 255, 0, 20, 200, 245, 0, 0
|
||||
|
||||
gaugeCategory = "Sensor inputs"
|
||||
mapGauge = map, "Engine MAP", "kPa", 0, 255, 0, 20, 200, 245, 0, 0
|
||||
|
@ -3192,6 +3198,7 @@ cmdtestspk450dc = "E\x03\x0C"
|
|||
injOpenGauge = inj_open, "Injector Open Time", "ms", 0, 35.0, 1.0, 1.2, 20, 25, 1, 1
|
||||
mapMultiplyGauge = map_multiply_amt, "MAP Multiply", "%", 0, 200, 130, 140, 140, 150, 0, 0
|
||||
nSquirtsGauge = nSquirts, "# Squirts", "", 0, 10, 130, 140, 140, 150, 0, 0
|
||||
syncLossGauge = syncLossCounter, "# Sync Losses" "", 0, 255, -1, -1, 10, 50, 0, 0
|
||||
;-------------------------------------------------------------------------------
|
||||
|
||||
[FrontPage]
|
||||
|
|
Loading…
Reference in New Issue