Ball-Dropper Auto-Reset Help - Programming

Hi
How can I program a program to drop the balls in a ball dropper and then reset the ball dropper.
For example: Basically turning the motor 90 degrees and then after 2 seconds turning it back
the code i have at the moment is this but it doesn’t work.
I am using Modkit
image

Thanks

Your program needs to listen for the Controller E Up button pressed event, not the Start event. You won’t need the IF condition in this case.

Your current program will start, check if you have the button pressed on the controller (which you likely won’t) and then end.

As a poor alternative, you can put your current IF condition inside a Forever loop. This will prove that your program is working but Forever loops should be used sparingly. Much better to just listen for the correct event.

2 Likes

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.