I am trying to accomplish a simple button task. When someone pushes a button I want it to keep doing the action (IE In this case "Relay Forward" & "Relay Reverse") until the microswitch is activated. Right now it stops as soon as you release the button.
What the code looks like right now is this
Code:
if button1 == 1 & microswitch1 = 0
Relay Forward
else if button2 == 1 & microswitch2 = 0
Relay Reverse
else
Relay Off
Any suggestions?