Skip to content

Instantly share code, notes, and snippets.

@nasajpledu
Created February 9, 2021 18:20
Show Gist options
  • Save nasajpledu/c29038fd174c02ca61e55fb1e4c184fe to your computer and use it in GitHub Desktop.
Save nasajpledu/c29038fd174c02ca61e55fb1e4c184fe to your computer and use it in GitHub Desktop.
Code a Mars Landing - Step 6: Send a message using sound
from components import Button
button = Button("D7")
while True:
if button.is_pressed:
buzzer.on()
else:
buzzer.off()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment