Created
May 27, 2018 19:25
-
-
Save skylerberg/531dbb4dc8e503f7a1f2a8ac35dea38e to your computer and use it in GitHub Desktop.
Beep
This file contains 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
duration = 1 # second | |
freq = 440 # Hz | |
for _ in range(15): | |
os.system('play --no-show-progress --null --channels 1 synth %s sine %f' % (duration, freq)) | |
time.sleep(29) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment