1
0
mirror of https://github.com/pgrondek/SixInchRack.git synced 2024-11-22 20:13:42 +00:00

Update README.md

This commit is contained in:
KronBjorn 2017-03-05 13:39:20 +01:00 committed by GitHub
parent cc1aa831e3
commit 336bc2b70e

View File

@ -46,15 +46,24 @@ Start by inspecting this file for inspiration _RackCabinets/RaspberryPiModelB/us
##Quick How To
A cabinet consist of five parts:
-Front plate
-Rear plate
-Cabinet
-Lid
-Handles
In a new file, include _sixinch_library.scad_.
- Front plate
- Rear plate
- Cabinet
- Lid
- Handles
In a new file, include _sixinch_library.scad_. For each of the parts, there is module in the library where you can specify the most commonly used features like round and square holes, and pegs for supporting PCB's etc. The following examples are for Raspberry Pi 3 cabinet. <br>
The deafult modules obviously does not support everything you need, but should give you a good start for further customization. Feel free to add functionality to the library.
###Front Plate###
square_hole = [];
round_hole = [[65 ,7.5, 3.1],[69.5 ,7.5, 3.1]];
round_peg = [];
screw_side_front = [];
screw_top = [36];
screw_bottom_front = [36];
units = 2;
frontplate(units,square_hole,round_hole,round_peg,screw_side_front,screw_top,screw_bottom_front);