Merge pull request 'modified method name' (#1) from playground-jens into main

Reviewed-on: #1
This commit is contained in:
Jens Noack 2023-02-15 08:21:16 +00:00
commit 31510f9e21
2 changed files with 2 additions and 2 deletions

View file

@ -27,7 +27,7 @@ class IQRobot:
self.hub.light_matrix.show_image(image)
def driveForward(self, seconds: float):
def driveForward_for_sec(self, seconds: float):
# Fahre die übergebene Anzahl seconds gerade aus
self.movementMotors.start()
wait_for_seconds(seconds)

View file

@ -83,7 +83,7 @@ iqRobot: iq.IQRobot = iq.IQRobot(hub, LEFT_MOTOR_PORT, RIGHT_MOTOR_PORT, COLOR_S
# Führe Funktionen aus unser Robot Klasse aus:
iqRobot.show('HAPPY')
iqRobot.driveForward(2.0)
iqRobot.driveForward_for_sec(2.0)
colorIntensity = iqRobot.getColorIntensity()
print("Farbintensität: " + str(colorIntensity))