Kleiner Fix, kein self da nicht in einer Klasse

This commit is contained in:
Lars Haferkamp 2023-11-22 20:16:47 +01:00
parent a64f0c639a
commit 16601f268a

View file

@ -79,7 +79,7 @@ iqRobot: iq.IQRobot = iq.IQRobot(hub)
# Führe Funktionen aus unser Robot Klasse aus: # Führe Funktionen aus unser Robot Klasse aus:
iqRobot.show('HAPPY') iqRobot.show('HAPPY')
def huenchenaufgabe(self): def huenchenaufgabe():
iqRobot.fahre_gerade_aus(40,60) iqRobot.fahre_gerade_aus(40,60)
iqRobot.drehe(-40,True) iqRobot.drehe(-40,True)
iqRobot.fahre_gerade_aus(20,60) iqRobot.fahre_gerade_aus(20,60)