From cb2016f86b8e36c92ae8cbb1d839ed0369eacf56 Mon Sep 17 00:00:00 2001 From: superdimensional Date: Tue, 27 Apr 2021 03:25:01 -0400 Subject: [PATCH] removed garbage & updated readme --- .gitignore | 2 -- README.md | 4 ++- green.png | Bin 1971 -> 0 bytes test_code.py | 82 --------------------------------------------------- 4 files changed, 3 insertions(+), 85 deletions(-) delete mode 100644 .gitignore delete mode 100644 green.png delete mode 100644 test_code.py diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 32b4da6..0000000 --- a/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -test_code.py -green.png \ No newline at end of file diff --git a/README.md b/README.md index 95dd3c2..c4c3fff 100644 --- a/README.md +++ b/README.md @@ -1 +1,3 @@ -# raspberry-pi-omnitrix \ No newline at end of file +# raspberry-pi-omnitrix + +An app made to simulate the omnitrix from the ben 10 TV series. \ No newline at end of file diff --git a/green.png b/green.png deleted file mode 100644 index b22776f3d3bd2c06fa7e5fa6195ad773ac7d15e1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1971 zcmeAS@N?(olHy`uVBq!ia0y~yU}|7sV0^&A#K6F?YqR%e1_lPs0*}aI1_r((Aj~*b zn@^g7fj!mJ#WAEJ?(Nluj0Y4L4s0+yygTN2?T?>cqAB@*mxKinb{f|7?~XoG%zY8j7pCN%V=^K%?6{{U^E+yW&_l0aDY)( XiRG=QX0rtY0|SGntDnm{r-UW|)SgaZ diff --git a/test_code.py b/test_code.py deleted file mode 100644 index b8fcd45..0000000 --- a/test_code.py +++ /dev/null @@ -1,82 +0,0 @@ -# # # Import module -# # from tkinter import * - -# # # Create object -# # root = Tk() - -# # # Adjust size -# # root.geometry("400x400") - -# # # Add image file -# # bg = PhotoImage(file = "green.png") - -# # # Create Canvas -# # canvas1 = Canvas( root, width = 400, -# # height = 400) - -# # canvas1.pack(fill = "both", expand = True) - -# # # Display image -# # canvas1.create_image( 0, 0, image = bg, -# # anchor = "nw") - -# # # Add Text -# # canvas1.create_text( 200, 250, text = "Welcome") - -# # # Create Buttons -# # button1 = Button( root, text = "Exit") -# # button3 = Button( root, text = "Start") -# # button2 = Button( root, text = "Reset") - -# # # Display Buttons -# # button1_canvas = canvas1.create_window( 100, 10, -# # anchor = "nw", -# # window = button1) - -# # button2_canvas = canvas1.create_window( 100, 40, -# # anchor = "nw", -# # window = button2) - -# # button3_canvas = canvas1.create_window( 100, 70, anchor = "nw", -# # window = button3) - -# # # Execute tkinter -# # root.mainloop() - - -# # importing only those functions -# # which are needed -# from tkinter import * -# from tkinter.ttk import * - -# # creating tkinter window -# root = Tk() - -# # Adding widgets to the root window -# Label(root, text = 'GeeksforGeeks', font =( -# 'Verdana', 15)).pack(side = TOP, pady = 10) - -# # Creating a photoimage object to use image -# photo = PhotoImage(file = r"/home/nasa/Documents/Projects/pythonGUI/omnitrix.png") - -# # here, image option is used to -# # set image on button -# Button(root, text = 'Click Me !', image = photo).pack(side = TOP) - -# mainloop() -# import tkinter module -from tkinter import * - -# create a tkinter window -master = Tk() - -# Open window having dimension 200x100 -master.geometry('200x100') - -# Create a Button -button = Button(master, - text = 'Submit', - bg='white', - activebackground='blue').pack() - -master.mainloop() \ No newline at end of file