unnötigen zeilen entfernt
This commit is contained in:
parent
a55bd56f0c
commit
2511adc3c6
1 changed files with 3 additions and 7 deletions
10
main.py
10
main.py
|
@ -74,17 +74,13 @@ dh auch an die Funktionen im importierten Code übergeben werde
|
||||||
COLOR_SENSOR_PORT = 'E'
|
COLOR_SENSOR_PORT = 'E'
|
||||||
LEFT_MOTOR_PORT = 'A'
|
LEFT_MOTOR_PORT = 'A'
|
||||||
RIGHT_MOTOR_PORT = 'B'
|
RIGHT_MOTOR_PORT = 'B'
|
||||||
|
STICK_MOTOR_PORT = 'C'
|
||||||
|
|
||||||
# Initialisieren des Hubs, der Aktoren und Sensoren
|
# Initialisieren des Hubs, der Aktoren und Sensoren
|
||||||
hub = PrimeHub()
|
hub = PrimeHub()
|
||||||
|
|
||||||
# Initialisiere Robot Klasse mit unseren Funktionen
|
# Initialisiere Robot Klasse mit unseren Funktionen
|
||||||
iqRobot: iq.IQRobot = iq.IQRobot(hub, LEFT_MOTOR_PORT, RIGHT_MOTOR_PORT, COLOR_SENSOR_PORT)
|
iqRobot: iq.IQRobot = iq.IQRobot(hub, LEFT_MOTOR_PORT, RIGHT_MOTOR_PORT, COLOR_SENSOR_PORT, STICK_MOTOR_PORT)
|
||||||
|
|
||||||
# Führe Funktionen aus unser Robot Klasse aus:
|
# Führe Funktionen aus unser Robot Klasse aus:
|
||||||
iqRobot.main()
|
iqRobot.main()
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue