From d7026c60ad1ae087b76ffc466c63e33f77e7ca77 Mon Sep 17 00:00:00 2001 From: unknown Date: Wed, 8 Nov 2023 19:03:45 +0100 Subject: [PATCH 1/3] TEst --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index baba04a..d7c0858 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ Importiere den Code entweder über die Shell oder einen Git Client: - für Mac oder Windows: https://www.sourcetreeapp.com/ -Username und PW für Makerlab eingeben +Benutzername und Passwort für Makerlab eingeben Übersicht über Git Commands: https://ndpsoftware.com/git-cheatsheet.html#loc=workspace; From 1214813e2ad7e22eed0e5d6751b1953a9b962080 Mon Sep 17 00:00:00 2001 From: Makerlab Laptop 1 Date: Wed, 22 Nov 2023 19:16:58 +0100 Subject: [PATCH 2/3] =?UTF-8?q?H=C3=BCnchen?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/main.py b/main.py index 296fcf8..3908dbc 100644 --- a/main.py +++ b/main.py @@ -81,7 +81,15 @@ iqRobot.show('HAPPY') iqRobot.fahre_mit_drehung(strecke1=10, grad=90, strecke2=10) iqRobot.fahre_mit_drehung(strecke1=0, grad=-90, strecke2=10) - +def huenchenaufgabe(self): + iqRobot.fahre_gerade_aus(40,60) + iqRobot.drehe(-40,True) + iqRobot.fahre_gerade_aus(20,60) + iqRobot.drehe(-20) + iqRobot.fahre_gerade_aus(55,60) + iqRobot.heber(10,30) + +huenchenaufgabe() From 16601f268a9bacb58e52f7ad60effa7bfebdfd86 Mon Sep 17 00:00:00 2001 From: Lars Haferkamp <> Date: Wed, 22 Nov 2023 20:16:47 +0100 Subject: [PATCH 3/3] Kleiner Fix, kein self da nicht in einer Klasse --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index d5ac33c..da74640 100644 --- a/main.py +++ b/main.py @@ -79,7 +79,7 @@ iqRobot: iq.IQRobot = iq.IQRobot(hub) # Führe Funktionen aus unser Robot Klasse aus: iqRobot.show('HAPPY') -def huenchenaufgabe(self): +def huenchenaufgabe(): iqRobot.fahre_gerade_aus(40,60) iqRobot.drehe(-40,True) iqRobot.fahre_gerade_aus(20,60)