Spin The Dispenser

Use [Drive for], [Turn for], and [Spin for] blocks to code the Hero Bot to drive to a purple Dispenser and remove all the Discs from the purple Dispenser.
- Select the VIQC Virtual Skills - Slapshot Playground.
- Drive the Hero Bot to a purple Dispenser.
- Code the Hero Bot to spin the Intake Motor to spin the wheel of the purple Dispenser for a set time to release the Discs.
Helpful Hints
- Use the spin IntakeMotor block from the Motion category and select the intake direction to spin the wheel of the purple Dispenser.
Matching Python command:
intake_motor.spin(FORWARD)
- Use the stop IntakeMotor block from the Motion category to stop spinning the Motor.
Matching Python command:
intake_motor.stop()
- Use the wait block from the Control category to make the Hero Bot wait for a specific amount of time before executing the next block.
Matching Python command:
wait(1, SECONDS)