Skip to content

Instantly share code, notes, and snippets.

@KenoLeon
Last active July 7, 2020 01:46
Show Gist options
  • Select an option

  • Save KenoLeon/43931fb8b5182172f54b654a6d508987 to your computer and use it in GitHub Desktop.

Select an option

Save KenoLeon/43931fb8b5182172f54b654a6d508987 to your computer and use it in GitHub Desktop.
Musical Scale sine tones
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