diff options
Diffstat (limited to 'robot/problems')
-rw-r--r-- | robot/problems/introduction/forward/common.py | 33 | ||||
-rw-r--r-- | robot/problems/introduction/forward/en.py | 24 | ||||
-rw-r--r-- | robot/problems/introduction/forward/sl.py | 23 |
3 files changed, 80 insertions, 0 deletions
diff --git a/robot/problems/introduction/forward/common.py b/robot/problems/introduction/forward/common.py new file mode 100644 index 0000000..5023d7f --- /dev/null +++ b/robot/problems/introduction/forward/common.py @@ -0,0 +1,33 @@ +# coding=utf-8 + +from server.hints import Hint + +id = 202 +group = 'introduction' +number = 1 +visible = True + +solution = '''\ +import time +from ev3dev import * +from mindstorms_widgets import mindstorms_widgets + +robot = mindstorms_widgets() +robot.connect_motor('left') +robot.connect_motor('right') + +robot.move_steering('on', power=50) +time.sleep(3) +robot.move_steering('off', brake_at_end=True) +''' + +hint_type = { + 'ev3dev': Hint('ev3dev'), + 'mindWidgets': Hint('mindWidgets'), +} + +def test(program): + return False, [] + +def hint(program): + return [] 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> +''', +} diff --git a/robot/problems/introduction/forward/sl.py b/robot/problems/introduction/forward/sl.py new file mode 100644 index 0000000..98f3a8d --- /dev/null +++ b/robot/problems/introduction/forward/sl.py @@ -0,0 +1,23 @@ +# coding=utf-8 + +id = 202 +name = 'Naprej' +slug = 'Naprej' + +description = '''\ +<p>Robot naj pelje naravnost naprej in se po treh sekundah ustavi.</p> +''' + +plan = [] + +hint = { + 'ev3dev': '''\ +<p>Za delo z robotom moramo uvoziti modul ev3dev: +<code>from ev3dev import *</code>.</p> +''', + + 'mindWidgets': '''\ +<p>Za delo z robotom moramo uvoziti modul mindstorms_widgets: +<code>from mindstorms_widgets import mindstorms_widgets</code>.</p> +''', +} |