From 83970cc0532d97808b674981397cb226b9087c21 Mon Sep 17 00:00:00 2001 From: "(MakerLab) Laptop 2" Date: Wed, 22 Nov 2023 17:14:36 +0100 Subject: [PATCH 1/2] erste Aufgaben --- main.py | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/main.py b/main.py index cffdfc7..c1fd649 100644 --- a/main.py +++ b/main.py @@ -87,4 +87,34 @@ def hologram_aufgabe1(): iqRobot.drehe(-45, False) iqRobot.fahre_gerade_aus(cm=-75,speed=50) +def kjell_aufgaben(): + iqRobot.fahre_gerade_aus(19,20) + iqRobot.drehe(-45) + iqRobot.fahre_gerade_aus(20,30) + iqRobot.fahre_gerade_aus(-15,30) + iqRobot.drehe(45) + iqRobot.fahre_gerade_aus(37.5,30) + iqRobot.drehe(45) + iqRobot.fahre_gerade_aus(15,50) + iqRobot.fahre_gerade_aus(-20,20) + iqRobot.drehe(-45) + iqRobot.fahre_gerade_aus(20,20) + iqRobot.drehe (90) + iqRobot.fahre_gerade_aus(10,20) + + + iqRobot.drehe(-135) + iqRobot.fahre_gerade_aus(44,30) + iqRobot.drehe(90) + iqRobot.fahre_gerade_aus(10,20) + + #hier fehlt noch was + + iqRobot.fahre_gerade_aus(-10,20) + iqRobot.drehe(-90) + iqRobot.fahre_gerade_aus(42,25) + iqRobot.drehe(90) + iqRobot.fahre_gerade_aus(5,20) + + hologram_aufgabe1() -- 2.45.2 From a20dc320201554476f18ae441fad921f92affbd1 Mon Sep 17 00:00:00 2001 From: "(MakerLab) Laptop 2" Date: Wed, 22 Nov 2023 19:19:01 +0100 Subject: [PATCH 2/2] hologram, druckmaschine und augmented reality --- main.py | 41 ++++++++++++++++++++--------------------- 1 file changed, 20 insertions(+), 21 deletions(-) diff --git a/main.py b/main.py index c1fd649..1ffdb3c 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 hologram_aufgabe1(): +def hologram_alt(): iqRobot.fahre_gerade_aus(cm=75,speed=80) iqRobot.drehe(45, False) iqRobot.fahre_gerade_aus(cm=14,speed=70) @@ -87,34 +87,33 @@ def hologram_aufgabe1(): iqRobot.drehe(-45, False) iqRobot.fahre_gerade_aus(cm=-75,speed=50) -def kjell_aufgaben(): - iqRobot.fahre_gerade_aus(19,20) - iqRobot.drehe(-45) + +def druckmaschine(): + iqRobot.fahre_gerade_aus(19,30) + iqRobot.drehe(-45) iqRobot.fahre_gerade_aus(20,30) iqRobot.fahre_gerade_aus(-15,30) + +def hologram(): iqRobot.drehe(45) iqRobot.fahre_gerade_aus(37.5,30) iqRobot.drehe(45) - iqRobot.fahre_gerade_aus(15,50) - iqRobot.fahre_gerade_aus(-20,20) - iqRobot.drehe(-45) - iqRobot.fahre_gerade_aus(20,20) - iqRobot.drehe (90) - iqRobot.fahre_gerade_aus(10,20) - - + iqRobot.fahre_gerade_aus(15,30) + iqRobot.fahre_gerade_aus(-15,30) + +def augmented_reality(): iqRobot.drehe(-135) - iqRobot.fahre_gerade_aus(44,30) + iqRobot.fahre_gerade_aus(42,30) iqRobot.drehe(90) - iqRobot.fahre_gerade_aus(10,20) - - #hier fehlt noch was - - iqRobot.fahre_gerade_aus(-10,20) + iqRobot.fahre_gerade_aus(12,30) + iqRobot.schaufel(-100) + iqRobot.fahre_gerade_aus(-3,30) + iqRobot.drehe(90) + iqRobot.fahre_gerade_aus(20,30) iqRobot.drehe(-90) - iqRobot.fahre_gerade_aus(42,25) - iqRobot.drehe(90) iqRobot.fahre_gerade_aus(5,20) -hologram_aufgabe1() +druckmaschine() +hologram() +augmented_reality() \ No newline at end of file -- 2.45.2