diff --git a/utils.ino b/utils.ino index ed08fbe..1221b78 100644 --- a/utils.ino +++ b/utils.ino @@ -362,8 +362,9 @@ void setPinMapping(byte boardID) pinMode(pinTrigger2, INPUT); pinMode(pinTrigger3, INPUT); pinMode(pinFlex, INPUT_PULLUP); //Standard GM / Continental flex sensor requires pullup - if (configPage3.launchHiLo) { pinMode(pinLaunch, INPUT); } - else { pinMode(pinLaunch, INPUT_PULLUP); } //If launch triggers on LOW signal, then set a pull up as the default + pinMode(pinLaunch, INPUT_PULLUP); //This should work for both NO and NC grounding switches +// if (configPage3.launchHiLo) { pinMode(pinLaunch, INPUT); } +// else { pinMode(pinLaunch, INPUT_PULLUP); } //If launch triggers on LOW signal, then set a pull up as the default //Set default values digitalWrite(pinMAP, HIGH);