new pin type: sent_input_pin_e #5158

only:mre_f4
This commit is contained in:
rusefillc 2023-03-07 15:44:01 -05:00
parent df38869f22
commit 5bb69cec99
1 changed files with 2 additions and 4 deletions

View File

@ -48,10 +48,8 @@ public class PinoutLogic {
return;
}
Map<String, ArrayList<String>> names = new HashMap<>();
names.put(PinType.OUTPUTS.name().toLowerCase(), new ArrayList<>());
names.put(PinType.ANALOG_INPUTS.name().toLowerCase(), new ArrayList<>());
names.put(PinType.EVENT_INPUTS.name().toLowerCase(), new ArrayList<>());
names.put(PinType.SWITCH_INPUTS.name().toLowerCase(), new ArrayList<>());
for (PinType pinType : PinType.values())
names.put(pinType.name().toLowerCase(), new ArrayList<>());
for (PinState listPin : listPins) {
String id = listPin.getId();
String className = listPin.getPinClass();