Skip to content

Commit 85028a3

Browse files
committed
Added hex files, user guides and fingering charts.
1 parent 0f65c0d commit 85028a3

11 files changed

+8956
-4399
lines changed

NuEVI-v143.ino.hex

Lines changed: 0 additions & 4399 deletions
This file was deleted.

hardware/pla-pkey-nurad.scad

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
w=8; //key width, default 8
2+
wc=10; //mounting end outer diameter, default 10
3+
l=15; //key length (range normally increase in steps of 5)
4+
hght=3; //key height, default 3,3.5 and 4
5+
angl=25; //key end angle, default 25
6+
estp=1.5; //end step before angle, default 0.5
7+
noext=0; //set to 1 to get just the round part
8+
9+
// 20/3,26/3.5,32/4 sk: 15/3 (estp 1.5)
10+
11+
module prism(l, w, h){
12+
polyhedron(
13+
points=[[0,0,0], [l,0,0], [l,w,0], [0,w,0], [0,w,h], [l,w,h]],
14+
faces=[[0,1,2,3],[5,4,3,2],[0,4,5,1],[0,3,4],[5,2,1]]
15+
);
16+
}
17+
18+
difference(){
19+
translate([0,0,0]) cylinder(h=hght,r=wc/2,,$fn=100);
20+
translate([0,0,hght-2]) cylinder(h=2.2,r1=1.6,r2=3.2,$fn=100);
21+
translate([0,0,-1]) cylinder(h=hght+5,r=1.6,$fn=100);
22+
//translate([-8,-8,0]) cube([16,2,3]);
23+
24+
}
25+
if (!noext){
26+
difference(){
27+
translate([-w/2,-l+1,0]) cube([w,l,hght]);
28+
translate([0,0,hght-2]) cylinder(h=2.2,r1=1.6,r2=3.2,$fn=100);
29+
translate([0,0,-1]) cylinder(h=hght+5,r=1.6,$fn=100);
30+
translate([w/2-1,-l,hght]) rotate([180,0,90]) prism(l,1,1);
31+
translate([-w/2-0.001,-l,hght-1]) rotate([90,0,90]) prism(l,1,1);
32+
//translate([-w/2,-l+5.5,hght]) rotate([160,0,0])prism(w,15,15);
33+
translate([-w/2,-l,estp]) rotate([angl,0,0])cube(40,40,40);
34+
}
35+
}

uploadable hex files/NuEVI-v145.ino.hex

Lines changed: 4408 additions & 0 deletions
Large diffs are not rendered by default.

uploadable hex files/NuRAD-v145.ino.hex

Lines changed: 4513 additions & 0 deletions
Large diffs are not rendered by default.
Binary file not shown.
Binary file not shown.
128 KB
Binary file not shown.
211 KB
Binary file not shown.
83.9 KB
Binary file not shown.
183 KB
Binary file not shown.

0 commit comments

Comments
 (0)