Skip to content

Commit 87d0e74

Browse files
committed
Merge branch 'simulator-robot-simplify'
2 parents 2dc710a + b24d766 commit 87d0e74

File tree

4 files changed

+4
-7
lines changed

4 files changed

+4
-7
lines changed
-154 KB
Binary file not shown.
104 KB
Loading

simulator/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,11 +66,11 @@ Within the Webots IDE, there are a few different panels:
6666

6767
## Robot
6868

69-
![]({{ site.baseurl }}/images/content/simulator/robot-front.png)
69+
![]({{ site.baseurl }}/images/content/simulator/robot-side.png)
7070

7171
This is the pre-built robot used in the simulator, with an interface [similar](./programming) to the SR API.
7272

73-
The robot has an array of sensors, a vision system, and a gripper to pick up tokens, all of which can be [programmed](./programming).
73+
The robot has an array of sensors and a vision system, all of which can be [programmed](./programming).
7474

7575
### Other robots
7676

simulator/programming/index.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ can result from simulator time not passing at the same rate as real time.
4242

4343
### Motors
4444

45-
Your robot has two motor boards attached, each with two motors. Board `0` has the left wheel in port `m0`, and the right wheel in `m1`. Board `1` has the gripper lift motor in `m0`, and the finger motors in `m1`.
45+
Your robot has one motor board attached, the left wheel in port `m0`, and the right wheel in `m1`.
4646

47-
The motor boards do not have part codes, and so need to be indexed using `0` and `1`. The motor boards will always be in this order.
47+
The motor board does not have a part code, so it needs to be indexed using `0`.
4848

4949
### Ruggeduino
5050

@@ -60,9 +60,6 @@ The microswitches are attached to digital pins 2-6:
6060
|-----|----------|
6161
| 2 | Front |
6262
| 3 | Back |
63-
| 4 | Between gripper fingers |
64-
| 5 | Left gripper finger |
65-
| 6 | Right gripper finger |
6663

6764
These are shown as red coloured blocks on the robot. Using the `digital_read` method, you'll receive a `bool` telling you whether the switch is current actuated.
6865

0 commit comments

Comments
 (0)