├── .gitignore
├── CNAME
├── README.md
├── _config.yml
├── _config_offline.yml
├── _includes
├── foot.html
├── head.html
└── nav.html
├── _layouts
├── default.html
└── derivative.html
├── css
└── style.css
├── derivatives
├── fromScratchEd.md
└── howto
│ ├── images
│ └── rubber.jpg
│ └── index.md
├── files
├── laser-cut
│ ├── cubetto-4mm.dxf
│ ├── fence-4mm.dxf
│ ├── house-3mm.dxf
│ ├── instruction-blocks-1mm.dxf
│ ├── instruction-blocks-4mm.dxf
│ ├── interface-board-1mm.dxf
│ ├── interface-board-4mm.dxf
│ └── tree-4mm.dxf
├── map.png
├── primo-prototype-laser.zip
└── wheel-sticker
│ └── slices.pdf
├── images
├── assets
│ ├── kitemark.png
│ ├── logo-derivatives.png
│ ├── logo.png
│ └── tick.png
├── illustrations
│ ├── arduino-mega.jpg
│ ├── arrow.png
│ ├── ball-caster.jpg
│ ├── board-1.jpg
│ ├── board-2.jpg
│ ├── board-3.jpg
│ ├── board-4.jpg
│ ├── board-5.jpg
│ ├── board-6.jpg
│ ├── board-7.jpg
│ ├── board-8.jpg
│ ├── board-9.jpg
│ ├── board-button-mechanics.jpg
│ ├── board-button.jpg
│ ├── board-esploso.jpg
│ ├── button-mechanics.jpg
│ ├── button.jpg
│ ├── cny70-header.jpg
│ ├── cny70-physycs.jpg
│ ├── cny70-wiring.jpg
│ ├── colors.jpg
│ ├── colour-blue.jpg
│ ├── colour-green.jpg
│ ├── colour-red.jpg
│ ├── colour-yellow.jpg
│ ├── cubetto-esploso.jpg
│ ├── cubetto-guide.jpg
│ ├── instruction-block-guide.jpg
│ ├── instruction-esploso.jpg
│ ├── left-to-right.jpg
│ ├── motor-driver.jpg
│ ├── motor-wiring.jpg
│ ├── wireless-shield-connections-1.jpg
│ ├── wireless-shield-connections.jpg
│ └── wireless-shield.jpg
├── photo
│ ├── cubetto.jpg
│ ├── diy-docs-1.jpg
│ ├── diy-docs-10.jpg
│ ├── diy-docs-11.jpg
│ ├── diy-docs-12.jpg
│ ├── diy-docs-13.jpg
│ ├── diy-docs-14.jpg
│ ├── diy-docs-2.jpg
│ ├── diy-docs-3.jpg
│ ├── diy-docs-4.jpg
│ ├── diy-docs-5.jpg
│ ├── diy-docs-6.jpg
│ ├── diy-docs-7.jpg
│ ├── diy-docs-8.jpg
│ ├── diy-docs-9.jpg
│ ├── instruction-blocks.jpg
│ ├── logo-turtle.jpg
│ ├── maker-guide.jpg
│ └── primo.jpg
└── screenshots
│ ├── edit-1.jpg
│ ├── edit-2.jpg
│ ├── pull-1.jpg
│ └── pull-2.jpg
├── index.md
└── languages
├── brazilianportuguese.md
├── croatian.md
├── dutch.md
├── english.md
├── french.md
├── italian.md
├── japanese.md
├── russian.md
└── spanish.md
/.gitignore:
--------------------------------------------------------------------------------
1 | _site
--------------------------------------------------------------------------------
/CNAME:
--------------------------------------------------------------------------------
1 | docs.primo.io
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | prototype-documentation
2 | =======================
3 |
4 | DIY Instructions on how to make your own Primo prototype.
5 |
6 | Get Started Here: [http://docs.primo.io](http://docs.primo.io)
--------------------------------------------------------------------------------
/_config.yml:
--------------------------------------------------------------------------------
1 | name: Primo DIY Documentation
2 | pygments: true
3 | markdown: kramdown
4 | baseurl: http://docs.primo.io/
--------------------------------------------------------------------------------
/_config_offline.yml:
--------------------------------------------------------------------------------
1 | name: Primo DIY Documentation
2 | pygments: true
3 | markdown: kramdown
4 |
--------------------------------------------------------------------------------
/_includes/foot.html:
--------------------------------------------------------------------------------
1 |
2 |
12 |