auto-sync

This commit is contained in:
rusEfi 2014-08-31 20:02:58 -05:00
parent 3dc72e4d7f
commit 97e3a36e77
2 changed files with 6 additions and 2 deletions

View File

@ -80,8 +80,10 @@ public class EngineState {
addDoubleSensor("baro", Sensor.BARO);
addDoubleSensor("clt", Sensor.CLT);
addDoubleSensor("tp", Sensor.TPS);
addDoubleSensor("dwell0", Sensor.DWELL0);
addDoubleSensor("dwell1", Sensor.DWELL1);
addDoubleSensor(Sensor.DWELL0);
addDoubleSensor(Sensor.DWELL1);
addDoubleSensor(Sensor.TOTAL_DWELL0);
addDoubleSensor(Sensor.TOTAL_DWELL1);
addDoubleSensor("tch", Sensor.T_CHARGE);
addDoubleSensor("afr", Sensor.AFR);
addDoubleSensor("d_fuel", Sensor.DEFAULT_FUEL);

View File

@ -34,6 +34,8 @@ public enum Sensor {
VREF_WIDTH("VRef w", "", 1),
DWELL0("Dwell0", "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),
ADVANCE1("Advance1", "dg", -40, 40, BackgroundColor.BROWN),
PERIOD0("Period", "dg", 0, 400),