Last active
July 7, 2020 01:46
-
-
Save KenoLeon/43931fb8b5182172f54b654a6d508987 to your computer and use it in GitHub Desktop.
Musical Scale sine tones
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
| import winsound | |
| # HZ and milliseconds | |
| winsound.Beep(262, 600) # C4 | |
| winsound.Beep(294, 600) # D4 | |
| winsound.Beep(330, 600) # E4 | |
| winsound.Beep(349, 600) # F4 | |
| winsound.Beep(392, 600) # G4 | |
| winsound.Beep(440, 600) # A4 | |
| winsound.Beep(494, 600) # B4 | |
| winsound.Beep(523, 600) # C3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment