trailing spark outputs fix #2931

This commit is contained in:
rusefillc 2021-07-22 01:22:40 -04:00
parent 0fc74038c0
commit c481f161d5
2 changed files with 4 additions and 1 deletions

View File

@ -6,7 +6,7 @@ import java.net.URL;
import java.util.concurrent.atomic.AtomicReference;
public class rusEFIVersion {
public static final int CONSOLE_VERSION = 20210714;
public static final int CONSOLE_VERSION = 20210722;
public static AtomicReference<String> firmwareVersion = new AtomicReference<>("N/A");
public static long classBuildTimeMillis() {

View File

@ -278,6 +278,9 @@ public class EngineSnifferPanel {
signalBody = Color.yellow;
} else if (name.startsWith("t")) {
// trigger
} else if (name.startsWith("r")) {
// trailing coil
signalBody = new Color(0xffa400); // golden yellow
} else if (name.startsWith("c")) {
// coil
signalBody = Color.darkGray;