69ea6f324806922c48287c26667de6f6afb01479
[challenge-bot] / 3d-printables / wire-jig-dimensions.scad
1 wire_channel_width = 14;
2 wire_channel_height = 14;
3
4 wire_diameter_measured = 1.17;
5 // some of this fudge is due to using a hexagon instead of a circle
6 wire_diameter_fudge = 1.4;
7 wire_diameter = wire_diameter_measured + wire_diameter_fudge;
8 wire_radius = wire_diameter / 2;
9
10 wire_lengths = [10, //strip wire this much
11 35, //short breadboard wire
12 63, //ground to ground
13 120, //arduino breadboard wire
14 180 //motor wire
15 ];