auto-sync
This commit is contained in:
parent
3dc72e4d7f
commit
97e3a36e77
|
@ -80,8 +80,10 @@ public class EngineState {
|
||||||
addDoubleSensor("baro", Sensor.BARO);
|
addDoubleSensor("baro", Sensor.BARO);
|
||||||
addDoubleSensor("clt", Sensor.CLT);
|
addDoubleSensor("clt", Sensor.CLT);
|
||||||
addDoubleSensor("tp", Sensor.TPS);
|
addDoubleSensor("tp", Sensor.TPS);
|
||||||
addDoubleSensor("dwell0", Sensor.DWELL0);
|
addDoubleSensor(Sensor.DWELL0);
|
||||||
addDoubleSensor("dwell1", Sensor.DWELL1);
|
addDoubleSensor(Sensor.DWELL1);
|
||||||
|
addDoubleSensor(Sensor.TOTAL_DWELL0);
|
||||||
|
addDoubleSensor(Sensor.TOTAL_DWELL1);
|
||||||
addDoubleSensor("tch", Sensor.T_CHARGE);
|
addDoubleSensor("tch", Sensor.T_CHARGE);
|
||||||
addDoubleSensor("afr", Sensor.AFR);
|
addDoubleSensor("afr", Sensor.AFR);
|
||||||
addDoubleSensor("d_fuel", Sensor.DEFAULT_FUEL);
|
addDoubleSensor("d_fuel", Sensor.DEFAULT_FUEL);
|
||||||
|
|
|
@ -34,6 +34,8 @@ public enum Sensor {
|
||||||
VREF_WIDTH("VRef w", "", 1),
|
VREF_WIDTH("VRef w", "", 1),
|
||||||
DWELL0("Dwell0", "ms", 0, 30, BackgroundColor.BEIGE),
|
DWELL0("Dwell0", "ms", 0, 30, BackgroundColor.BEIGE),
|
||||||
DWELL1("Dwell1", "ms", 0, 30, BackgroundColor.BEIGE),
|
DWELL1("Dwell1", "ms", 0, 30, BackgroundColor.BEIGE),
|
||||||
|
TOTAL_DWELL0("total Dwell0", "ms", 0, 30, BackgroundColor.BEIGE),
|
||||||
|
TOTAL_DWELL1("total Dwell1", "ms", 0, 30, BackgroundColor.BEIGE),
|
||||||
ADVANCE0("Advance0", "dg", -40, 40, BackgroundColor.BROWN),
|
ADVANCE0("Advance0", "dg", -40, 40, BackgroundColor.BROWN),
|
||||||
ADVANCE1("Advance1", "dg", -40, 40, BackgroundColor.BROWN),
|
ADVANCE1("Advance1", "dg", -40, 40, BackgroundColor.BROWN),
|
||||||
PERIOD0("Period", "dg", 0, 400),
|
PERIOD0("Period", "dg", 0, 400),
|
||||||
|
|
Loading…
Reference in New Issue