You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The objective is to shoot only after the flywheel has reached the required speed. The system commands the flywheel motor to spin up and continuously checks whether it has reached its target RPM. Once the flywheel is at speed, the indexer motor is activated to feed a game piece into the shooter.
Flowchart
flowchart TD;
A(Start Command) --> B;
B[Command Flywheel Motor] --> C[Is the Flywheel up to speed?];
C-->|No|B;
C-->|Yes|D;
D[Command Indexer Motor];
Basic Shooting (Stationary)
The objective is to shoot only after the flywheel has reached the required speed. The system commands the flywheel motor to spin up and continuously checks whether it has reached its target RPM. Once the flywheel is at speed, the indexer motor is activated to feed a game piece into the shooter.
Flowchart