summaryrefslogtreecommitdiff
path: root/robot/problems/introduction/forward/en.py
blob: 7c229b0fe211c39f690e966c4f95830421248164 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# coding=utf-8

name = 'Forward'
slug = 'Forward'

description = '''\
<p>Robot should drive forward in a straight line and stop after three
seconds.</p>
'''

plan = []

hint = {
    'ev3dev': '''\
<p>To work with the robot you should import the ev3dev module:
<code>from ev3dev import *</code>.</p>
''',

    'mindWidgets': '''\
<p>To work with the robot you should import the mindstorms_widgets module:
<code>from mindstorms_widgets import mindstorms_widgets</code>.</p>
''',
}