summaryrefslogtreecommitdiff
path: root/robot/problems/introduction/gyro90/common.py
diff options
context:
space:
mode:
Diffstat (limited to 'robot/problems/introduction/gyro90/common.py')
-rw-r--r--robot/problems/introduction/gyro90/common.py7
1 files changed, 2 insertions, 5 deletions
diff --git a/robot/problems/introduction/gyro90/common.py b/robot/problems/introduction/gyro90/common.py
index 06b4f1d..1828001 100644
--- a/robot/problems/introduction/gyro90/common.py
+++ b/robot/problems/introduction/gyro90/common.py
@@ -10,9 +10,6 @@ number = 7
visible = True
solution = '''\
-from ev3dev import *
-from mindstorms_widgets import mindstorms_widgets
-
robot = mindstorms_widgets()
robot.connect_motor( 'left' )
robot.connect_motor( 'right' )
@@ -21,11 +18,11 @@ robot.connect_sensor( 'gyro' )
robot.gyro_set_mode( 'angle' )
robot.reset_gyro()
-power = 15
+power = 10
robot.move_tank( 'on', lr_power=[power,-power] )
while robot.gyro_sensor_measure() < 90:
pass
-robot.move_tank( 'off' )
+robot.move_tank( 'off', brake_at_end=True )
'''
hint_type = {