Skip to content

Commit afac331

Browse files
committed
top level tutorial page
1 parent be99a1c commit afac331

File tree

2 files changed

+18
-7
lines changed

2 files changed

+18
-7
lines changed

tutorials/basic_motor_control.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,14 @@ For example:
207207
range(5) # [0, 1, 2, 3, 4]
208208
~~~~~
209209

210-
Taking `range(10, 60, 10)`, as a second example:
210+
If two arguments are provided, then these represent the start and stop with the step being set to `1`.
211+
212+
For example:
213+
~~~~~ python
214+
range(2, 6) # [2, 3, 4, 5]
215+
~~~~~
216+
217+
Taking `range(10, 60, 10)`, as an example of all three arguments:
211218

212219
* Start at 10
213220
* Go up in steps of 10

tutorials/index.md

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,19 @@ layout: page
33
title: Tutorials
44
---
55

6-
Tutorials
7-
=========
6+
# Tutorials
87

9-
Read the following tutorials listed in order of difficulty:
108

11-
1. [Basic Motor Control](/docs/tutorials/basic_motor_control) — all you need to know to get your motors moving
12-
2. [Python: A whirlwind tour](/docs/tutorials/python) — an overview of how to use [python](https://www.python.org "The Python programming language")
9+
## Getting started
1310

14-
We also recommend these external tutorials:
11+
The best place to start is the [kit assembly]({{ site.baseurl }}/tutorials/basic_motor_control) guide which shows you how to connect up your kit.
12+
This along with the [Basic Motor Control]({{ site.baseurl }}/tutorials/basic_motor_control) page should be enough to get your robot moving.
13+
14+
15+
## Python help
16+
17+
If you need some help on how to code in python, our [Intro to Python](/docs/tutorials/python) tutorial shows you through the basics.
18+
If you need some further or more advanced help, we also recommend these external tutorials:
1519

1620
* Microsoft's [Take your first steps with Python](https://docs.microsoft.com/en-us/learn/paths/python-first-steps/)
1721
* Microsoft's [Build real world applications with Python](https://docs.microsoft.com/en-us/learn/paths/python-language/)

0 commit comments

Comments
 (0)