Active Intake / Sweepers
Commonly used intake mechanism
Resoruces
GM0's page on active intake - terminology/what is a sweeper
A sweeper is a general term for a mechanism designed to pick up game elements using some component of rotational motion powered by a motor.
A sweeper is very easy to program, in most cases it is as simple as setting power to a motor. However, there you can implement certain features in your code which can make the sweeper more robust. Here are some examples:
Velocity control via encoders and PID
Monitoring the sweeper motor's voltage to automatically detect any blockages and automatically rev the sweeper to resolve the issue.
Implementation
Automatically Clearing Blockages
Sometimes your sweeper can get blocked due to various reasons. We can automatically resolve these blockages by constantly monitoring the sweeper voltage to see if it spikes beyond a certain amount. If the voltage exceeds the threshold then a blockage is detected and the sweeper rotates in the opposite direction to eliminate the blockage.
Paste this into your opMode, replacing variables as needed:
Case Study
Take a look at how another top FTC team: TechNova makes use of their sweeper by implementing some of these techniques seen in this module.
Last updated