auto-sync
This commit is contained in:
parent
bdd7c366e9
commit
9f3a3b6b7f
|
@ -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);
|
||||
}
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue