diff options
author | Jure Žabkar <jure.zabkar@fri.uni-lj.si> | 2015-12-23 11:28:05 +0100 |
---|---|---|
committer | Jure Žabkar <jure.zabkar@fri.uni-lj.si> | 2015-12-23 11:28:05 +0100 |
commit | f80206e6a4e4cec1574a375cb04dbdf07d3e02cd (patch) | |
tree | f5e9c17d8b5d4f212b7460496fdbb7226253f086 /robot/problems/introduction/forward | |
parent | 0883cb2a6b0bac23bd7553618f4e8db7c882a757 (diff) |
angleska verzija
Diffstat (limited to 'robot/problems/introduction/forward')
-rw-r--r-- | robot/problems/introduction/forward/en.py | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/robot/problems/introduction/forward/en.py b/robot/problems/introduction/forward/en.py index be73921..5f78d57 100644 --- a/robot/problems/introduction/forward/en.py +++ b/robot/problems/introduction/forward/en.py @@ -8,5 +8,20 @@ description = '''\ ''' hint = { - + 'mW_init':mod.hint['init'], + 'connectMotorLeft':mod.hint['connectMotorLeft'], + 'connectMotorRight':mod.hint['connectMotorRight'], + 'moveSteering':mod.hint['moveSteering'], + 'onForSeconds':mod.hint['onForSeconds'], + 'direction':mod.hint['direction']+['''<p><code>robot.move_steering( 'on_for_seconds', direction=0, ... )</code>.</p>'''], + 'seconds':mod.hint['seconds']+['''<p><code>robot.move_steering( 'on_for_seconds', direction=0, seconds=3 )</code>.</p>'''], } + +plan = ['''\ +<p>The program should:</p> +<ol> + <li>create a mindstorms_widgets() object, which represents the robot in your code.</li> + <li>connect the driving motors.</li> + <li>synchronize the motors and run them so that the robot would move forward for 3 seconds.</li> +</ol>''' +]
\ No newline at end of file |