Firmware control
setOutput()
triggerOutput()
triggerOutput(
1, //------------Output hub 1
4, //------------Slot 4
modButtonPressed(), //-------------Turn on if this is true
true, //-----Blinking enabled
300, //--------Will stay lit for 300 ms on blinking
2000); //--------Will turn off LED for 2000 ms on blinkingtriggerOutput(2,11,buttonPressed(4,5),false, 0, 0);
triggerOutput(2,11,buttonPressed(4,5),false, 0, 0);rotaryOutput()
rotaryOutput(
1, //------------Rotary switch is on analog channel 1
4, //------------Pair to output hub number 4
1, //------------Starting on output hubs first slot
0, //------------No offset. Can be both positive or negative
12, //-----------Rotary switch has 12 positions
false); //-------Switch rotation direction not reversedrotaryOutput(1,4,1,0,12,false);Last updated