blob: d94386755c556bbeb5f2541795c0f466e9c99fa8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# coding=utf-8
id = 202
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>
''',
}
|