project structure push

This commit is contained in:
caliskan 2023-03-31 10:38:08 +02:00
parent 6ece145293
commit bac84033bd
5 changed files with 25 additions and 0 deletions

7
idea.txt Normal file
View File

@ -0,0 +1,7 @@
create a userinterface, on which the answers for the questions are displayed
create a data base to store questions and possible answers
create a module to detect colors and position of a image, which will be shooted by a camera connected to the computer
we must determine and provide area in which the answer options are defined (tape on ground) -> Boden abkleben
tasks:
- get camera

0
requirements.txt Normal file
View File

View File

View File

View File

@ -0,0 +1,18 @@
import tkinter as tk
def button_callback():
print("Button was clicked")
# Create the main window
window = tk.Tk()
# Add a label to the window
label = tk.Label(text="Hello, World!")
label.pack()
# Add a button to the window
button = tk.Button(text="Click me!", command=button_callback)
button.pack()
# Run the main loop to display the window
window.mainloop()