For this free Friday I wanted to work on the birdbrain finch, it dances but I want to code it to do more next Friday. It changes color when it goes back and fourth, and starts it off with a spin!
Here’s a preview of the code:
from BirdBrain import Finch
import time
finch = Finch()
for _ in range(3)
finch.setMotors(80, -80)
time.sleep(0.4)
finch.setMotors(-80, 80)
time.sleep(0.4)
Leave a Reply