Skip to main content

How to make a alarm clock in python | Alarm clock in python GUI

 Alarm Clock

Well as a student we need the alarm clock most. We have already our mobile phones to set our alarm.But think like a coder we can make it by our own and can customize it and it is very fun.So open your ide and start building this amazing project. Just enjoy your code.

Required Module

from tkinter import *  
import datetime
import time
import winsound

Make the main function for the alarm

def alarm():
    while True:
        set_time = f"{hours.get()}{minute.get()}{seconds.get()}"
        time.sleep(1)
        current_time = datetime.datetime.now().strftime("%H:%M:%S")
        if set_time == current_time:
            print("get up")
            winsound.PlaySound("sound.wav",winsound.SND_ASYNC)
        else:
            break


Create the root for tkinter use

root = Tk()
root.geometry("500x400")
root.title("Alarm clock in python")
root.config(bg='light blue')

Create the label to ask user for input

l1 = Label(roottext="Alarm clock",font="comicsansms 30 bold",fg='green')
l1.pack(pady=20)
l2 = Label(roottext="Set your time"fg="red",font="comicsansms 15 bold" )
l2.pack()

Make a frame and create a tuple for hours

# make a frame
f1 = Frame(root)
f1.pack()

# set the hour time
hours = StringVar(root)
hour =("00""01""02""03""04""05""06""07""08""09""10""11""12""13""14""15""16""17""18""19""20""21""23""24")
opt_hour = OptionMenu(f1hours, *hour).pack(side=LEFT)
hours.set(hour[0])

Set the minute time

minute = StringVar(root)
min = ('00''01''02''03''04''05''06''07',
           '08''09''10''11''12''13''14''15',
           '16''17''18''19''20''21''22''23',
           '24''25''26''27''28''29''30''31',
           '32''33''34''35''36''37''38''39',
           '40''41''42''43''44''45''46''47',
           '48''49''50''51''52''53''54''55',
           '56''57''58''59''60')
opt_min = OptionMenu(f1minute, *min).pack(side=LEFT)
minute.set(min[0])

Set the time for secon

seconds = StringVar(root)
second = ('00''01''02''03''04''05''06''07',
           '08''09''10''11''12''13''14''15',
           '16''17''18''19''20''21''22''23',
           '24''25''26''27''28''29''30''31',
           '32''33''34''35''36''37''38''39',
           '40''41''42''43''44''45''46''47',
           '48''49''50''51''52''53''54''55',
           '56''57''58''59''60')
opt_sec = OptionMenu(f1seconds, *second).pack(side=LEFT)
seconds.set(second[0])


Now combined all together


from tkinter import *  
import datetime
import time
import winsound


def alarm():
    while True:
        set_time = f"{hours.get()}{minute.get()}{seconds.get()}"
        time.sleep(1)
        current_time = datetime.datetime.now().strftime("%H:%M:%S")
        if set_time == current_time:
            print("get up")
            winsound.PlaySound("sound.wav",winsound.SND_ASYNC)
        else:
            break
        



root = Tk()
root.geometry("500x400")
root.title("Alarm clock in python")
root.config(bg='light blue')

# A label ask user to set the time
l1 = Label(roottext="Alarm clock",font="comicsansms 30 bold",fg='green')
l1.pack(pady=20)
l2 = Label(roottext="Set your time"fg="red",font="comicsansms 15 bold" )
l2.pack()

# make a frame
f1 = Frame(root)
f1.pack()

# set the hour time
hours = StringVar(root)
hour =("00""01""02""03""04""05""06""07""08""09""10""11""12""13""14""15""16""17""18""19""20""21""23""24")
opt_hour = OptionMenu(f1hours, *hour).pack(side=LEFT)
hours.set(hour[0])

# set the minute time
minute = StringVar(root)
min = ('00''01''02''03''04''05''06''07',
           '08''09''10''11''12''13''14''15',
           '16''17''18''19''20''21''22''23',
           '24''25''26''27''28''29''30''31',
           '32''33''34''35''36''37''38''39',
           '40''41''42''43''44''45''46''47',
           '48''49''50''51''52''53''54''55',
           '56''57''58''59''60')
opt_min = OptionMenu(f1minute, *min).pack(side=LEFT)
minute.set(min[0])

# set time for second
seconds = StringVar(root)
second = ('00''01''02''03''04''05''06''07',
           '08''09''10''11''12''13''14''15',
           '16''17''18''19''20''21''22''23',
           '24''25''26''27''28''29''30''31',
           '32''33''34''35''36''37''38''39',
           '40''41''42''43''44''45''46''47',
           '48''49''50''51''52''53''54''55',
           '56''57''58''59''60')
opt_sec = OptionMenu(f1seconds, *second).pack(side=LEFT)
seconds.set(second[0])
Button(roottext="Set Alarm"font="comicsansms 20 bold"command=alarm).pack()




root.mainloop()

Thankyou for your time hope you find it usefull and you enjoyed in this project🙏



See the result in 


Comments

Popular posts from this blog

Create Ping Pong Game in Python

  Ping Pong Game: Table tennis , also known as  ping-pong  and  whiff-whaff , is a sport in which two or four players hit a lightweight ball, also known as the ping-pong ball, back and forth across a table using small rackets. The game takes place on a hard table divided by a net. Except for the initial serve, the rules are generally as follows: players must allow a ball played toward them to bounce once on their side of the table and must return it so that it bounces on the opposite side at least once. A point is scored when a player fails to return the ball within the rules. Play is fast and demands quick reactions. Spinning the ball alters its trajectory and limits an opponent's options, giving the hitter a great advantage. We can make it using pygame but I keep it more simple we will create this game using only the turtle module so let's drive into the code without wasting any time Code: # Import required library import turtle # Create screen sc = turtle . Screen () sc .

Draw Minecraft Charater in Python

  Minecraft  is a  sandbox video game  developed by the Swedish video game developer  Mojang Studios . The game was created by  Markus "Notch" Persson  in the  Java programming language . Following several early private testing versions, it was first made public in May 2009 before fully releasing in November 2011, with  Jens Bergensten  then taking over development.  Minecraft  has since been ported to several other platforms and is the  best-selling video game of all time , with over 238 million copies sold and nearly 140 million  monthly active users  as of 2021 . We gonna build a character of Minecraft using our creativity and coding skills so let's drive into the code: Code: import turtle as t def eye ( r , a ):     t . fillcolor ( 'brown' )     t . begin_fill ()     t . circle ( r , a )     t . end_fill () t . begin_fill () t . fillcolor ( '#8a00e6' ) t . penup () t . goto ( 0 ,- 50 ) t . pendown () t . right ( 90 ) t . f

How To Draw BMW Logo - In Python

 I know I don't need to introduce BMW as it is a very popular luxury car. Today we gonna draw the BMW logo in python. I know that you can draw it using a pencil and other tools like AutoCAD etc. But we are programmers we talk with computers so let's tell our computer to draw this logo for use with the help of python. Module The only module we will use is that turtle Code: import turtle as t t.begin_fill() t.fillcolor( '#008ac9' ) for i in range ( 50 ):     t.forward( 4 )     t.left( 2 ) t.right(- 80 ) t.forward( 116 ) t.right(- 90 ) t.forward( 132 ) t.end_fill() t.penup() t.pendown() t.right( 90 ) for i in range ( 50 ):     t.forward( 4 )     t.left(- 2 ) t.right( 80 ) t.forward( 116 ) t.forward(- 116 ) t.right( 90 ) t.begin_fill() t.fillcolor( '#008ac9' ) for j in range ( 45 ):     t.forward(- 4 )     t.left(- 2 ) t.right(- 90 ) t.forward( 116 ) t.end_fill() t.right( 180 ) t.forward( 116 ) t.right( 90 ) for i in range ( 47 ):     t.forward( 4 )     t.