Skip to content

Commit 67f9349

Browse files
authored
Update processing.cpp
Fix back to active high. Mistake came with a merge from an old black pcb !
1 parent 85b9047 commit 67f9349

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

Mk2_fasterControl_Full/processing.cpp

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -310,10 +310,8 @@ void updatePortsStates()
310310
}
311311
} while (i);
312312

313-
// On this particular PCB, the trigger has been soldered active high. This means that the
314-
// trigger line must be set to LOW to turn the load ON.
315-
setPinsON(pinsOFF);
316-
setPinsOFF(pinsON);
313+
setPinsOFF(pinsOFF);
314+
setPinsON(pinsON);
317315
}
318316

319317
/**

0 commit comments

Comments
 (0)