Skip to content

Commit

Permalink
Rebuild sheep
Browse files Browse the repository at this point in the history
  • Loading branch information
Minion3665 committed Nov 25, 2021
1 parent 013ace0 commit b4a3272
Show file tree
Hide file tree
Showing 304 changed files with 490 additions and 284 deletions.
Binary file modified sheepsrc/docs/.vuepress/public/CytronBoardDocs.pdf
Binary file not shown.
Binary file modified sheepsrc/docs/.vuepress/public/GettingToRoboCon.pdf
Binary file not shown.
Binary file modified sheepsrc/docs/.vuepress/public/HowToAssembleYourMiniBot.pdf
Binary file not shown.
Binary file modified sheepsrc/docs/.vuepress/public/RoboCon2019RulebookRev10.pdf
Binary file not shown.
Binary file modified sheepsrc/docs/.vuepress/public/markers.zip
Binary file not shown.
Binary file modified sheepsrc/docs/.vuepress/public/patch-2019-01-12.zip
Binary file not shown.
Binary file modified sheepsrc/docs/.vuepress/public/patch-2019-02-27.zip
Binary file not shown.
2 changes: 1 addition & 1 deletion sheepsrc/docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ position: 1
---
# Getting Started

Welcome to the docs for **Robocon 2020**!
Welcome to the docs for **Robocon 2022**!

We suggest you first get familiar with the [rules](/rules.md). Once you've done that, you'll need to [turn your robot on](/turning-everything-on.html).

Expand Down
6 changes: 3 additions & 3 deletions sheepsrc/docs/connecting.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ position: 1
# Connecting to the Robot

1. Turn on the robot by following the instructions [here](/turning-everything-on.md).
1. Turn on your tablet and wait until you reach the Windows desktop.
2. Click on the WiFi icon in the bottom right and connect to `robocon-TEAMXX` where `XX` is your team number.
3. Navigate to <http://robot.go> in your web browser of choice (**Chrome** or **Firefox** are recommended). You should see an interface similar to this:
1. Turn on your computer and wait until you reach the Windows desktop.
2. Click on the WiFi icon in the bottom right and connect to `RoboConYYYY-TeamXX` where `YYYY` is the competition year and `XX` is your team number.
3. Navigate to <http://robot.go> in your web browser of choice (**Chrome** or **Firefox** is recommended). You should see an interface similar to this:

![The Interface](./images/shepherd-a-game-of-chicken-and-egg.png)

Expand Down
6 changes: 3 additions & 3 deletions sheepsrc/docs/expanding-functionality.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Although the I2C and UART are connected to the Raspberry Pi, they operate at 5.1

## I2C

I2C is a great way to a components to your brain box. Look at the datasheet for your device which you would like to connect and connect the SDA and SDL to the appropriate pins. You should now be able to send data to your device by using the [SMBus2 python library](https://pypi.org/project/smbus2/).
I2C is a great way to a components to your BrainBox. Look at the datasheet for your device which you would like to connect and connect the SDA and SDL to the appropriate pins. You should now be able to send data to your device by using the [SMBus2 python library](https://pypi.org/project/smbus2/).

:::warning
You should avoid address 0x08 (8) and 0x68 (104) because these are used by critical system components.
Expand All @@ -25,8 +25,8 @@ You can use usb devices using the [`serial`](https://pyserial.readthedocs.io/en/

## UART

UART is not enabled by default on the brain box and you will need to ask on the forums for us to provide a patch to enable it should you wish to use it.
UART is not enabled by default on the BrainBox and you will need to ask on the forums for us to provide a patch to enable it should you wish to use it.

:::tip
Please ask on the forums for more infomation if you wish to expand your brainbox
Please ask on the forums for more infomation if you wish to expand your BrainBox.
:::
31 changes: 31 additions & 0 deletions sheepsrc/docs/gpio.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,3 +86,34 @@ Many pieces of off-the-shelf electronics that have some form of standard I/O out
However, the built-in pull-up resistor alleviates this need. It essentially wires in a resistor connected to 5V, meaning that when this option is enabled, an input pin will “default” to being high. This means you can simply connect a switch between the input pin and a ground pin without any need of resistors - when the switch is open, the pin will read high; when closed, it will read low.

![An example weak pull up](./images/capture.png)

## Setting multiple pins

When you set multiple pins, you'll need to set them in order. This is due to how the brainbox internally sets pins

For example...<br/>
This won't work:
```python
# Wrong
import robot

R = robot.Robot()

R.gpio[1].mode = robot.INPUT
R.gpio[3].mode = robot.INPUT_PULLUP
R.gpio[2].mode = robot.OUTPUT

# Pin 3 is set before pin 2, which won't work
```
But this will:
```python
# Right
import robot

R = robot.Robot()

R.gpio[1].mode = robot.INPUT
R.gpio[2].mode = robot.OUTPUT
R.gpio[3].mode = robot.INPUT_PULLUP
# As all the GPIO pins are set in order, this is fine
```
2 changes: 1 addition & 1 deletion sheepsrc/docs/hello-gpio.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ GPIO, or General Purpose Input Output, is the main way you'll interface with sim

## GPIO Pins

On the side of your brainbox, there are 4 regular pins and a "+5v" and "-" pin. The top of the brain box labels which pin corresponds to which number. Different devices need to be plugged into different pins.
On the side of your BrainBox, there are 4 regular pins and a "+5v" and "-" pin. The top of the BrainBox labels which pin corresponds to which number. Different devices need to be plugged into different pins.

## LED Output

Expand Down
4 changes: 2 additions & 2 deletions sheepsrc/docs/hello-world.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ position: 2
---
# Hello

Welcome to the tutorials of Robocon 2020!<br>
Welcome to the RoboCon tutorials!<br>
Following each of the tasks in this category will start you on your way to getting your robot doing stuff.

Ready? Let's go!
Expand All @@ -28,7 +28,7 @@ We're going to make the robot write "Hello World!" into the output logs!

There are two ways to go about writing code for the robot:<br>

1. Python - The main language used to program robots with the brainbox.<br>
1. Python - The main language used to program robots with the BrainBox.<br>
2. Blockly - A Scratch-like language that allows you to write programs connecting blocks. This will automatically produce a python script that can be run in the robot.

Both can be used to program a winning robot for the competition and it is up to you which one you develop your robot with. However for the following tutorials python will be used.
Expand Down
Binary file modified sheepsrc/docs/images/003-C3140-768x512COMPRSD.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified sheepsrc/docs/images/003-c3140compressed.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified sheepsrc/docs/images/004-C3140-768x512COMPRSD.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified sheepsrc/docs/images/007-C3140-768x512COMPRSD.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified sheepsrc/docs/images/010-C3140COMPRSD.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified sheepsrc/docs/images/013-C3140COMPRSD.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified sheepsrc/docs/images/018-C3140COMPRSD.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified sheepsrc/docs/images/024-C3140COMPRSD.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified sheepsrc/docs/images/025-C3140-768x512COMPRSD.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified sheepsrc/docs/images/027-C3140-768x512COMPRSD.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified sheepsrc/docs/images/030-C3140COMPRSD.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified sheepsrc/docs/images/032-c3140-min-1-.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified sheepsrc/docs/images/032-c3140-min.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified sheepsrc/docs/images/044-C3140COMPRSD.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified sheepsrc/docs/images/048-c3140-min.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified sheepsrc/docs/images/056-C3140-768x512COMPRSD.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified sheepsrc/docs/images/058-C3140COMPRSD.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified sheepsrc/docs/images/063-C3140COMPRSD.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified sheepsrc/docs/images/069-C3140COMPRSD.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified sheepsrc/docs/images/076-C3140-768x512COMPRSD.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified sheepsrc/docs/images/081-C3140COMPRSD.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified sheepsrc/docs/images/098-C3140COMPRSD.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified sheepsrc/docs/images/101-C3140COMPRSD.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified sheepsrc/docs/images/106-C3140-768x512COMPRSD.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified sheepsrc/docs/images/109-C3140-768x512COMPRSD.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified sheepsrc/docs/images/112-C3140-768x512COMPRSD.jpg
Binary file modified sheepsrc/docs/images/1winners.jpg
Binary file modified sheepsrc/docs/images/63391_m_1__6.jpg
Binary file modified sheepsrc/docs/images/Actiongrab2.jpg
Binary file modified sheepsrc/docs/images/Arena.jpg
Binary file modified sheepsrc/docs/images/Arrivals.jpg
Binary file modified sheepsrc/docs/images/Atmospheric.jpg
Binary file modified sheepsrc/docs/images/Awards.jpg
Binary file modified sheepsrc/docs/images/Bassingbourne.jpg
Binary file modified sheepsrc/docs/images/Bigchris.jpg
Binary file modified sheepsrc/docs/images/Brainbox2.jpg
Binary file modified sheepsrc/docs/images/Bright.jpg
Binary file modified sheepsrc/docs/images/Chesterton.jpg
Binary file modified sheepsrc/docs/images/Coding.jpg
Binary file modified sheepsrc/docs/images/Comberton.jpg
Binary file modified sheepsrc/docs/images/Cranbrook.jpg
Binary file modified sheepsrc/docs/images/Differences.jpg
Binary file modified sheepsrc/docs/images/Doomed Pythons.jpg
Binary file modified sheepsrc/docs/images/Firstplace.jpg
Binary file modified sheepsrc/docs/images/Fivecubes.jpg
Binary file modified sheepsrc/docs/images/Funtimes.jpg
Binary file modified sheepsrc/docs/images/Goodboy.jpg
Binary file modified sheepsrc/docs/images/Grabber.jpg
Binary file modified sheepsrc/docs/images/Haydon.jpg
Binary file modified sheepsrc/docs/images/IMG_20181117_151451.jpg
Binary file modified sheepsrc/docs/images/IMG_20190410_133017.jpg
Binary file modified sheepsrc/docs/images/IMG_20190410_133019.jpg
Binary file modified sheepsrc/docs/images/IMG_20190410_133021.jpg
Binary file modified sheepsrc/docs/images/IMG_20190410_133022.jpg
Binary file modified sheepsrc/docs/images/IMG_20190410_152610.jpg
Binary file modified sheepsrc/docs/images/IMG_20190410_153514.jpg
Binary file modified sheepsrc/docs/images/IMG_20190410_153516.jpg
Binary file modified sheepsrc/docs/images/IMG_20190410_153518.jpg
Binary file modified sheepsrc/docs/images/IMG_20190410_153531.jpg
Binary file modified sheepsrc/docs/images/IMG_20190410_161248.jpg
Binary file modified sheepsrc/docs/images/IMG_20190410_161250.jpg
Binary file modified sheepsrc/docs/images/IMG_20190410_161255.jpg
Binary file modified sheepsrc/docs/images/IMG_20190410_161950.jpg
Binary file modified sheepsrc/docs/images/IMG_20190410_163645.jpg
Binary file modified sheepsrc/docs/images/IMG_20190410_163704.jpg
Binary file modified sheepsrc/docs/images/IMG_20190411_084248.jpg
Binary file modified sheepsrc/docs/images/IMG_20190411_152614.jpg
Binary file modified sheepsrc/docs/images/IMG_20190411_152617.jpg
Binary file modified sheepsrc/docs/images/IMG_20190411_174241.jpg
Binary file modified sheepsrc/docs/images/IMG_20190411_174245.jpg
Binary file modified sheepsrc/docs/images/IMG_20190411_174247.jpg
Binary file modified sheepsrc/docs/images/IMG_20190411_174249.jpg
Binary file modified sheepsrc/docs/images/IMG_2956-768x512COMPRSD.jpg
Binary file modified sheepsrc/docs/images/IMG_2963-768x512COMPRSD.jpg
Binary file modified sheepsrc/docs/images/IMG_2980-768x512COMPRSD.jpg
Binary file modified sheepsrc/docs/images/IMG_3001-768x512COMPRSD.jpg
Binary file modified sheepsrc/docs/images/IMG_3013COMPRSD.jpg
Binary file modified sheepsrc/docs/images/IMG_3060-768x512COMPRSD.jpg
Binary file modified sheepsrc/docs/images/IMG_3065-768x512COMPRSD.jpg
Binary file modified sheepsrc/docs/images/IMG_3068-768x512COMPRSD.jpg
Binary file modified sheepsrc/docs/images/IMG_3075COMPRSD.jpg
Binary file modified sheepsrc/docs/images/IMG_3080COMPRSD.jpg
Binary file modified sheepsrc/docs/images/IMG_3085COMPRSD.jpg
Binary file modified sheepsrc/docs/images/IMG_3089-1-768x512COMPRSD.jpg
Binary file modified sheepsrc/docs/images/IMG_3089COMPRSD.jpg
Binary file modified sheepsrc/docs/images/IMG_3111-768x512COMPRSD.jpg
Binary file modified sheepsrc/docs/images/IMG_3113-768x512COMPRSD.jpg
Binary file modified sheepsrc/docs/images/IMG_3123COMPRSD.jpg
Binary file modified sheepsrc/docs/images/IMG_3124COMPRSD.jpg
Binary file modified sheepsrc/docs/images/IMG_3129COMPRSD.jpg
Binary file modified sheepsrc/docs/images/IMG_3132 - CopyCOMPRSD.jpg
Binary file modified sheepsrc/docs/images/IMG_3132 - Copy_resultCOMPRSD.jpg
Binary file modified sheepsrc/docs/images/IMG_3132COMPRSD.jpg
Binary file modified sheepsrc/docs/images/IMG_3132_resultCOMPRSD.jpg
Binary file modified sheepsrc/docs/images/IMG_3167COMPRSD.jpg
Binary file modified sheepsrc/docs/images/IMG_3167_resultCOMPRSD.jpg
Binary file modified sheepsrc/docs/images/IMG_3192-768x512COMPRSD.jpg
Binary file modified sheepsrc/docs/images/IMG_3192-768x512_resultCOMPRSD.jpg
Binary file modified sheepsrc/docs/images/IMG_3197COMPRSD.jpg
Binary file modified sheepsrc/docs/images/IMG_3197_resultCOMPRSD.jpg
Binary file modified sheepsrc/docs/images/IMG_3223COMPRSD.jpg
Binary file modified sheepsrc/docs/images/IMG_3223_resultCOMPRSD.jpg
Binary file modified sheepsrc/docs/images/IMG_3239COMPRSD.jpg
Binary file modified sheepsrc/docs/images/IMG_3239_resultCOMPRSD.jpg
Binary file modified sheepsrc/docs/images/IMG_3316COMPRSD.jpg
Binary file modified sheepsrc/docs/images/IMG_3316_resultCOMPRSD.jpg
Binary file modified sheepsrc/docs/images/IMG_3390COMPRSD.jpg
Binary file modified sheepsrc/docs/images/IMG_3390_resultCOMPRSD.jpg
Binary file modified sheepsrc/docs/images/IMG_4219.JPG
Binary file modified sheepsrc/docs/images/IMG_4259.JPG
Binary file modified sheepsrc/docs/images/Judgesaward.jpg
Binary file modified sheepsrc/docs/images/Kings Ely.jpg
Binary file modified sheepsrc/docs/images/Leys.jpg
Binary file modified sheepsrc/docs/images/Longsands.jpg
Binary file modified sheepsrc/docs/images/Mechanicalaward.jpg
Binary file modified sheepsrc/docs/images/Mechanics.jpg
Binary file modified sheepsrc/docs/images/Parkside.jpg
Binary file modified sheepsrc/docs/images/Redshirts.jpg
Binary file modified sheepsrc/docs/images/Reunited.jpg
Binary file modified sheepsrc/docs/images/RoboCon 2018 055COMPRSD.jpg
Binary file modified sheepsrc/docs/images/RoboCon 2018 055_resultCOMPRSD.jpg
Binary file modified sheepsrc/docs/images/RoboCon 2018 062COMPRSD.jpg
Binary file modified sheepsrc/docs/images/RoboCon 2018 062_resultCOMPRSD.jpg
Binary file modified sheepsrc/docs/images/RoboCon 2018 096COMPRSD.jpg
Binary file modified sheepsrc/docs/images/RoboCon 2018 096_resultCOMPRSD.jpg
Binary file modified sheepsrc/docs/images/RoboCon-2018-027-768x512COMPRSD.jpg
Binary file modified sheepsrc/docs/images/RoboCon-2018-027-768x512_resultCOMPRSD.jpg
Binary file modified sheepsrc/docs/images/RoboCon-2018-036-768x363COMPRSD.jpg
Binary file modified sheepsrc/docs/images/RoboCon-2018-036-768x363_resultCOMPRSD.jpg
Binary file modified sheepsrc/docs/images/RoboCon-2018-039-768x617COMPRSD.jpg
Binary file modified sheepsrc/docs/images/RoboCon-2018-039-768x617_resultCOMPRSD.jpg
Binary file modified sheepsrc/docs/images/RoboCon-2018-050-768x768COMPRSD.jpg
Binary file modified sheepsrc/docs/images/RoboCon-2018-050-768x768_resultCOMPRSD.jpg
Binary file modified sheepsrc/docs/images/Scoringsystem.jpg
Binary file modified sheepsrc/docs/images/Secondplace.jpg
Binary file modified sheepsrc/docs/images/St Bedes.jpg
Binary file modified sheepsrc/docs/images/St Marys.jpg
Binary file modified sheepsrc/docs/images/Teamaward.jpg
Binary file modified sheepsrc/docs/images/Teamimageaward.jpg
Binary file modified sheepsrc/docs/images/Testing.jpg
Binary file modified sheepsrc/docs/images/Thankyou.jpg
Binary file modified sheepsrc/docs/images/Thirdplace.jpg
Binary file modified sheepsrc/docs/images/Threerobots.jpg
Binary file modified sheepsrc/docs/images/Tinkering.jpg
Binary file modified sheepsrc/docs/images/Trophies.jpg
Binary file modified sheepsrc/docs/images/Tworobots.jpg
Binary file modified sheepsrc/docs/images/Wellmade.jpg
Binary file modified sheepsrc/docs/images/Workingwell.jpg
Binary file modified sheepsrc/docs/images/actiongrab.jpg
Binary file modified sheepsrc/docs/images/arena-diagram.png
Binary file modified sheepsrc/docs/images/arm_logo_black_150lg.png
18 changes: 15 additions & 3 deletions sheepsrc/docs/images/arm_logo_black_rgb.svg
18 changes: 15 additions & 3 deletions sheepsrc/docs/images/arm_logo_blue_rgb.svg
Binary file modified sheepsrc/docs/images/array.png
Binary file modified sheepsrc/docs/images/binarycode.jpg
Binary file modified sheepsrc/docs/images/bitmorecompressedeveryone.jpg
Binary file modified sheepsrc/docs/images/brainbox.jpg
Binary file modified sheepsrc/docs/images/brainboxdocfront.png
Binary file modified sheepsrc/docs/images/brainboxdocsgpio.png
Binary file modified sheepsrc/docs/images/brainboxdocsmotors.png
Binary file modified sheepsrc/docs/images/brainboxdocsusb.png
Binary file modified sheepsrc/docs/images/capture.png
Binary file modified sheepsrc/docs/images/charger.png
Binary file modified sheepsrc/docs/images/cheffins.png
Binary file modified sheepsrc/docs/images/citrix-logo-black.jpg
Binary file modified sheepsrc/docs/images/cmrsurgical_logo_rgb_hi-res.png
Binary file modified sheepsrc/docs/images/coel-primary-logo-pantone.png
Binary file modified sheepsrc/docs/images/editor-robot-run.png
Binary file modified sheepsrc/docs/images/everyonecompressed.jpg
134 changes: 131 additions & 3 deletions sheepsrc/docs/images/frontier_developments.svg
Binary file modified sheepsrc/docs/images/fungroupphoto.jpg
Binary file modified sheepsrc/docs/images/fungroupphotocompressed.jpg
Binary file modified sheepsrc/docs/images/gpio.png
Binary file modified sheepsrc/docs/images/groupphoto.jpg
Binary file modified sheepsrc/docs/images/img_20181117_151319.jpg
Binary file modified sheepsrc/docs/images/img_4139-min.jpg
Binary file modified sheepsrc/docs/images/img_4142-min-1-.jpg
Binary file modified sheepsrc/docs/images/img_4142.jpg
Binary file modified sheepsrc/docs/images/img_4162-min.jpg
Binary file modified sheepsrc/docs/images/img_4428.jpg
Binary file modified sheepsrc/docs/images/img_4445.jpg
Binary file modified sheepsrc/docs/images/img_4447.jpg
Binary file modified sheepsrc/docs/images/img_5774.jpg
4 changes: 1 addition & 3 deletions sheepsrc/docs/images/outline-calendar_today-24px.svg
4 changes: 1 addition & 3 deletions sheepsrc/docs/images/outline-check-24px.svg
4 changes: 1 addition & 3 deletions sheepsrc/docs/images/outline-format_list_numbered-24px.svg
Binary file modified sheepsrc/docs/images/robocon-01.jpg
Binary file modified sheepsrc/docs/images/robocon-2018-027-min.jpg
4 changes: 1 addition & 3 deletions sheepsrc/docs/images/robocon-app-qr-code.svg

Large diffs are not rendered by default.

Binary file modified sheepsrc/docs/images/robocon-cheffins-v2.png
Binary file modified sheepsrc/docs/images/robocon_team_and_robot.jpg
Binary file modified sheepsrc/docs/images/robottab.png
Binary file modified sheepsrc/docs/images/run.png
Binary file modified sheepsrc/docs/images/sheep.png
Binary file modified sheepsrc/docs/images/shepherd-a-game-of-chicken-and-egg.png
Binary file modified sheepsrc/docs/images/shepherd-editor-annotated.png
Binary file modified sheepsrc/docs/images/shepherd-editor-create-project.png
Binary file modified sheepsrc/docs/images/shepherd-editor-interface.png
Binary file modified sheepsrc/docs/images/shepherd-editor.png
Binary file modified sheepsrc/docs/images/shepherd-run.png
Binary file modified sheepsrc/docs/images/shepherd-upload.png
Binary file modified sheepsrc/docs/images/shepherd.png
Binary file modified sheepsrc/docs/images/sponsors.png
Binary file modified sheepsrc/docs/images/square.png
Binary file modified sheepsrc/docs/images/upload.png
Binary file modified sheepsrc/docs/images/usb-logo.webp
Binary file not shown.
Binary file modified sheepsrc/docs/images/usb-logo_generic.svg.png
Binary file modified sheepsrc/docs/images/usbstick.jpg
Binary file modified sheepsrc/docs/images/vissnip.png
2 changes: 1 addition & 1 deletion sheepsrc/docs/kit-list-of-parts.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ If you plan to return the kit to Hills Road in person then please email [robotic
### Containers:
* 1 x 12L Really Useful Box
## Electronics Kit:
* 1 Brainbox
* 1 BrainBox
* 1 microservo 9g SG90
* 1 6 pin GPIO connector
* 1 2 pin 12V connector
Expand Down
24 changes: 9 additions & 15 deletions sheepsrc/docs/motors.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,6 @@ You can control motors using the `motors` property of the `Robot` object. To set
R.motors[1] = 60
```

:::warning
If you are using the mini-bot or similar motors. Do not exceed a motor power of 25% otherwise they will burn out.
:::

To control the second motor instead, replace `motors[1]` with `motors[2]`.

To stop both motors:
Expand Down Expand Up @@ -54,18 +50,16 @@ R.motors[1] = 0
R.motors[2] = 0
```

## Blockly

Blocks for controlling motors can be found in the **Movement** section.
:::tip
By default the BrainBox is designed to work safely with the TT motors supplied, these are 6V motors. If you choose to use motors that have a diffrent nominal voltage, then you can specify this when initalising the robot object. For example when using 9V motors:

# Using larger motors than supplied
The Brainbox outputs 12v pulses and by default is restricted to 25% for safe use with the 6v motors, if you wish to use other motors you may wish to change the maximum duty cycle, for example 12v motors may accept 100% duty cycles.
You can use any motors you like with the brain box as long as the total current requested does not exceed 20A.
```python
R = robot.Robot(max_motor_voltage=9)
```

The maximum motor current is a feature of the robot and can only be set when first initilizing the robot object
We do not recommend running motors above their design voltage, it may (sometimes dramatically) shorten the lifespan of your motors. If you choose to overvolt your motors you should be prepared to swap them with spares and design your robot to ensure you have access to replace them.
:::

```python
import robot
## Blockly

R = robot.Robot(motor_max=100)
```
Blocks for controlling motors can be found in the **Movement** section.
10 changes: 3 additions & 7 deletions sheepsrc/docs/rules.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,11 @@
# Rules

You can download the official rules for 2020 [here](/docs/2019-10-17%20Chicken%20and%20egg%20game%20rules.pdf).
You can download the official rules for 2022 [here](/docs/2022-game-rules.pdf).

:::tip

If you are viewing this page on your brain box then please check the website for the lastest revision.
If you are viewing this page on your BrainBox then please check the website for the lastest revision.

:::

## Arena

This is a bird’s-eye view of the arena labelled with dimensions and wall marker numbers:

![Arena Diagram](./images/2020-arena-layout.png)
![Game logo](./images/2022-monke.png)
2 changes: 1 addition & 1 deletion sheepsrc/docs/running-code-from-a-usb.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ position: 4
![USB Stick](./images/usbstick.jpg)

:::tip
The brain only checks for the presence of USB sticks at boot, only plug and unplug USB sticks when the brain is off (front panel blue light off).
The BrainBox only checks for the presence of USB sticks at boot, only plug and unplug USB sticks when the BrainBox is off (front panel blue light off).
:::

:::warning
Expand Down
Loading

0 comments on commit b4a3272

Please sign in to comment.