Created
December 17, 2022 18:59
-
-
Save DuqueDeTuring/a5533daf45433f63addaa5dc0fcca2f0 to your computer and use it in GitHub Desktop.
a sound to test a pi pico w pin out to speaker
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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