Skip to content

Commit

Permalink
Alarm plays a sound instead of beep
Browse files Browse the repository at this point in the history
  • Loading branch information
Karan Goel committed Jul 13, 2013
1 parent 22becef commit 9954281
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion Numbers/alarm.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
"""
Alarm Clock - A simple clock where it plays a sound after
X number of minutes/seconds or at a particular time.
Dependencies:
pyglet
pip install pyglet
"""

import time
import winsound
import pyglet

if __name__ == '__main__':
hh = input('What hour do you want to wake up (0-23)? ')
Expand All @@ -17,6 +22,8 @@
hour = cur_time[3] # find the hour
minute = cur_time[4] # and the minute
if hour == hh and minute == mm:
winsound.Beep(10000, 100) # play the beep
song = pyglet.media.load('bin/sound.wav')
song.play() # play the sound
pyglet.app.run()
not_alarmed = 0 # stop the loop

0 comments on commit 9954281

Please sign in to comment.