Skip to content

Commit

Permalink
Alarm clock done
Browse files Browse the repository at this point in the history
Right now it beeps, need to add ability to play a sound.
  • Loading branch information
Karan Goel committed Jul 13, 2013
1 parent 4e25c96 commit f1cfaec
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions Numbers/alarm.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
"""
Alarm Clock - A simple clock where it plays a sound after
X number of minutes/seconds or at a particular time.
"""

import time
import winsound

if __name__ == '__main__':
hh = input('What hour do you want to wake up (0-23)? ')
mm = input('What minute do you want to wake up (0-59)? ')

not_alarmed = 1

while(not_alarmed):
cur_time = list(time.localtime()) # get the time right now
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
not_alarmed = 0 # stop the loop

0 comments on commit f1cfaec

Please sign in to comment.