auto-sync

This commit is contained in:
rusEfi 2014-09-05 15:02:58 -05:00
parent bdd7c366e9
commit 9f3a3b6b7f
2 changed files with 3 additions and 5 deletions

View File

@ -16,8 +16,8 @@ public enum Sensor {
/**
* Please note that these enum names are used to make 'set_mock_XXX_voltage' commands
*/
CLT("Coolant", "temperature, C", 300),
IAT("Intake Air", "temperature, C", 150),
CLT("Coolant", "temperature, C", -40, 300),
IAT("Intake Air", "temperature, C", -40, 150),
AFR("A/F ratio", "", 0, 20),
MAF("MAF", "Volts", 4),
TPS("throttle", "%", 100),
@ -76,8 +76,6 @@ public enum Sensor {
private final double maxValue;
private final BackgroundColor color;
Sensor(String name) {
this(name, "", 255);
}

View File

@ -19,7 +19,7 @@ import javax.swing.*;
* @see WavePanel
*/
public class Launcher extends FrameHelper {
public static final int CONSOLE_VERSION = 20140902;
public static final int CONSOLE_VERSION = 20140905;
public static final boolean SHOW_STIMULATOR = true;
public Launcher(String port) {