Skip to content

Instantly share code, notes, and snippets.

@DuqueDeTuring
Created December 17, 2022 18:59
Show Gist options
  • Save DuqueDeTuring/a5533daf45433f63addaa5dc0fcca2f0 to your computer and use it in GitHub Desktop.
Save DuqueDeTuring/a5533daf45433f63addaa5dc0fcca2f0 to your computer and use it in GitHub Desktop.
a sound to test a pi pico w pin out to speaker
# buzz:
onboard = Pin(22, Pin.OUT)
for i in range(0, 40000):
onboard.on()
time.sleep(0.025)
onboard.off()
time.sleep(0.025)
# /buzz
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment