Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 26 additions & 14 deletions content/kit/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,20 +26,32 @@ With your kit, you should have the following boards:

In addition to the boards, your kit will also contain:

| Part | Quantity | Specification | Notes |
|------------------------------|----------|-------------------------------|--------------------------------------------------|
| Battery Bag | 1 | | |
| Battery Charger | 1 | iMAX B6 | |
| Battery Charger Power Supply | 1 | 12V 5A | |
| Battery | 2 | 11.1V 2200mAh Lithium Polymer | |
| Webcam | 1 | TeckNet C016 | |
| USB Hub | 1 | | |
| Micro USB Cable | 2 | | |
| USB B Cable | 1 | | |
| Large CamCon | 2 | 7.5mm | |
| Medium CamCon | 2 | 5mm | |
| Small CamCon | 3 | 3.81mm | 1 additionally found on Raspberry Pi power cable |
| Raspberry Pi Power Cable | 1 | Micro USB to small CamCon | |
| Part | Quantity | Specification | Notes |
|---------------------------------------------|----------|--------------------------------------|--------------------------------------------------|
| [Battery Bag][battery-bag] | 1 | | |
| [Battery Charger][battery-charger] | 1 | iMAX B6 | |
| [Battery Charger Power Supply][charger-psu] | 1 | 12V 5A | |
| [Battery][battery] | 2 | 11.1V 3S 25C 2200mAh Lithium Polymer | |
| [Webcam][webcam] | 1 | TeckNet C016 | |
| [USB Hub][usb-hub] | 1 | | |
| [Micro USB Cable][micro-usb-cable] | 2 | | |
| [USB B Cable][usb-b-cable] | 1 | | |
| [Large CamCon][lg-camcon] | 2 | 7.5mm | |
| [Medium CamCon][md-camcon] | 2 | 5mm | |
| [Small CamCon][sm-camcon] | 3 | 3.81mm | 1 additionally found on Raspberry Pi power cable |
| Raspberry Pi Power Cable | 1 | Micro USB to small CamCon | |

[battery-bag]: https://hobbyking.com/en_us/lithium-polymer-charge-pack-25x33cm-jumbo-sack.html
[battery-charger]:https://hobbyking.com/en_us/imax-b6-50w-5a-charger-discharger-1-6-cells-genuine.html
[charger-psu]:https://www.amazon.co.uk/-/dp/B01N1ULL37
[battery]: https://hobbyking.com/en_us/turnigy-2200mah-3s-25c-lipo-pack.html
[webcam]:https://www.amazon.co.uk/-/dp/B000Q3VECE/
[usb-hub]:https://www.amazon.co.uk/-/dp/B01DYD3Q28/
[micro-usb-cable]:https://www.amazon.co.uk/-/dp/B01EK87T9M/
[usb-b-cable]:https://www.amazon.co.uk/-/dp/B00NH11KIK
[lg-camcon]:http://uk.farnell.com/-/-/-/dp/3882275
[md-camcon]:http://uk.farnell.com/-/-/-/dp/3881854
[sm-camcon]: http://uk.farnell.com/-/-/-/dp/1717047

### Parts we don't mind you keeping

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"scripts": {
"spellcheck": "mdspell --en-gb --report --ignore-acronyms --ignore-numbers --no-suggestions 'content/**/*.md'",
"broken-link-local": "blcl --recursive --ordered --exclude-external ./public/",
"broken-link-all": "blcl --recursive --ordered ./public/",
"broken-link-all": "blcl --recursive --exclude farnell --ordered ./public/",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why are we excluding farnell here?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Farnell links are excluded as they cause the link checker to hang indefinitely. See earlier build https://circleci.com/gh/sourcebots/docs/535 It is not entirely clear why this is the case. One theory was that the User Agent for the link checker was being filtered, but this is not the case.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please could we have an inline comment to that effect?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Meta (and well beyond the scope of this PR): this is a class of error which I see as unavoidable and a reason not to have external link checking.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Inline comment added: de78cf8

"test": "npm run spellcheck && npm run broken-link-local",
"ci-test": "npm run spellcheck && npm run broken-link-all"
},
Expand Down