Compare commits

..

No commits in common. "9721fd02b17aea060546b73b9618dd9a3a88ab06" and "060a72c2a7d3dd934efa400139283176b8f26834" have entirely different histories.

2 changed files with 2 additions and 9 deletions

View file

@ -16,7 +16,7 @@ Importiere den Code entweder über die Shell
oder einen Git Client:
- für Mac oder Windows: https://www.sourcetreeapp.com/
Benutzername und Passwort für Makerlab eingeben
Username und PW für Makerlab eingeben
Übersicht über Git Commands: https://ndpsoftware.com/git-cheatsheet.html#loc=workspace;

View file

@ -79,14 +79,6 @@ iqRobot: iq.IQRobot = iq.IQRobot(hub)
# Führe Funktionen aus unser Robot Klasse aus:
iqRobot.show('HAPPY')
def huenchenaufgabe():
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)
def hologram_aufgabe1():
iqRobot.fahre_gerade_aus(cm=75,speed=80)
iqRobot.drehe(45, False)
@ -95,3 +87,4 @@ def hologram_aufgabe1():
iqRobot.drehe(-45, False)
iqRobot.fahre_gerade_aus(cm=-75,speed=50)
hologram_aufgabe1()