initial commit
[clinton/prusa3.git] / configuration.scad
CommitLineData
d3618a65
NZ
1// PRUSA Mendel
2// Configuration file
3// GNU GPL v3
4// Josef Průša
5// josefprusa@me.com
6// prusadjs.cz
7// http://www.reprap.org/wiki/Prusa_Mendel
8// http://github.com/prusajr/PrusaMendel
9
10// PLEASE SELECT ONE OF THE CONFIGURATIONS BELOW
11// BY UN-COMMENTING IT
12
13// Uncomment for metric settings
14// METRIC METRIC METRIC METRIC METRIC METRIC METRIC METRIC
15
16include <metric.scad>;
17
18// CUSTOM CUSTOM CUSTOM CUSTOM CUSTOM CUSTOM CUSTOM CUSTOM CUSTOM
19
20thin_wall = 3;
21
22
23// Linear bearing version
24linear = false;
25// set false for LM-8UU, true for LM-E-8UU (ignore if linear is set to false)
26lme8uu = false;
27
28
29
30// CHANGE ONLY THE STUFF YOU KNOW
31// IT WILL REPLACE DEFAULT SETTING
32
33// RODS
34
35// threaded_rod_diameter = 0;
36// threaded_rod_diameter_horizontal = 0;
37// smooth_bar_diameter = 0;
38// smooth_bar_diameter_horizontal = 0;
39
40// Nuts and bolts
41
42// m8_diameter = 0;
43// m8_nut_diameter = 0;
44
45// m4_diameter = 0;
46// m4_nut_diameter = 0;
47
48// m3_diameter = 0;
49// m3_nut_diameter = 0;
50
51// Bushing holder
52
53// bushing_core_diameter = smooth_bar_diameter;
54// bushing_material_thickness = 0;
55
56
57///counted stuff
58m3_nut_diameter_bigger = ((m3_nut_diameter / 2) / cos (180 / 6))*2;
59
60// functions
61include <functions.scad>
62