From 84d03c40564c08c46bbcaecdf9fef57414552a16 Mon Sep 17 00:00:00 2001 From: Untriex Programming <48880229+UntriexTv@users.noreply.github.com> Date: Mon, 22 Feb 2021 09:13:00 +0100 Subject: [PATCH 1/2] new readme --- README.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 44ee997..fe6799b 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,12 @@ # Mabasej_Team -repository for mabasej team +We are working on system, that will help tourists in cities to get information about city more easily. + +# Hardware +- work in progress (but probabbly we will use rpi with external antena for wifi) + +# Software +- python 3.9 based server with basic web interface +- python 3.x based mobile app with help of android studio + +# Known issues +- no code writen (needs to be fixed app does not work because of it) From 62e990437025a60e23dcae00dfcd1ebda18ad213 Mon Sep 17 00:00:00 2001 From: Untriex Programming <48880229+UntriexTv@users.noreply.github.com> Date: Mon, 22 Feb 2021 09:13:33 +0100 Subject: [PATCH 2/2] Delete bonusova_uloha.py --- bonusova_uloha.py | 46 ---------------------------------------------- 1 file changed, 46 deletions(-) delete mode 100644 bonusova_uloha.py diff --git a/bonusova_uloha.py b/bonusova_uloha.py deleted file mode 100644 index ae3cb05..0000000 --- a/bonusova_uloha.py +++ /dev/null @@ -1,46 +0,0 @@ -import tkinter as tk -import time -c = tk.Canvas(bg="grey", width=600, height=400) -c.pack() - -file = open("spokojnost.txt", "w").close() - - -def draw(rect_color0="yellow", rect_color1="yellow"): - c.create_text(250, 150, text="Boli ste spokojny \ns nasimi sluzbami?", font="arial 30", fill="white") - - c.create_rectangle(50, 280, 150, 320, fill=rect_color0) - c.create_text(100, 300, text="ano:)", font="arial 20") - - c.create_rectangle(350, 280, 450, 320, fill=rect_color1) - c.create_text(400, 300, text="nie:(", font="arial 15") - c.update() - - -def click(pos): - file_ = open("spokojnost.txt", "a") - - if 280 <= pos.y <= 320: - if 50 <= pos.x <= 150: - file_.write("ano\n") - draw("orange") - - time.sleep(0.1) - - draw() - - elif 350 <= pos.x <= 450: - file_.write("nie\n") - draw("yellow", "orange") - - time.sleep(0.1) - - draw() - - file_.close() - - -c.bind_all("", click) - -draw() -c.mainloop()