summaryrefslogtreecommitdiff
path: root/robot/problems/introduction/forward/en.py
diff options
context:
space:
mode:
Diffstat (limited to 'robot/problems/introduction/forward/en.py')
-rw-r--r--robot/problems/introduction/forward/en.py24
1 files changed, 24 insertions, 0 deletions
diff --git a/robot/problems/introduction/forward/en.py b/robot/problems/introduction/forward/en.py
new file mode 100644
index 0000000..d943867
--- /dev/null
+++ b/robot/problems/introduction/forward/en.py
@@ -0,0 +1,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>
+''',
+}