acRelayBench

This commit is contained in:
rusEfi 2019-09-14 18:09:42 -04:00
parent ea09372a8b
commit 091cf2eba7
1 changed files with 6 additions and 0 deletions

View File

@ -16,6 +16,7 @@ public class BenchTestPane {
content.setBorder(BorderFactory.createEmptyBorder(20, 20, 20, 20));
content.add(createFanTest());
content.add(createAcRelayTest());
content.add(createFuelPumpTest());
content.add(createSparkTest());
content.add(createInjectorTest());
@ -67,6 +68,11 @@ public class BenchTestPane {
return panel.getContent();
}
private Component createAcRelayTest() {
CommandControl panel = new FixedCommandControl("A/C Compressor Relay", ".jpg", TEST, "acrelaybench");
return panel.getContent();
}
private Component createFuelPumpTest() {
CommandControl panel = new FixedCommandControl("Fuel Pump", "fuel_pump.jpg", TEST, "fuelpumpbench");
return panel.getContent();