1
0
mirror of https://github.com/nophead/NopSCADlib.git synced 2025-07-31 12:40:10 +02:00

Used tube for buzzer.

This commit is contained in:
Martin Budden
2020-02-17 19:40:49 +00:00
parent 56ec8e03ad
commit b7b5c837bd

View File

@@ -202,11 +202,7 @@ module jack(cutout = false) { //! Draw 3.5mm jack
module buzzer(height, diameter, colour) { //! Draw PCB buzzer with specified height, diameter and color
color (colour)
linear_extrude(height)
difference() {
circle(d = diameter);
circle(d = height > 5 ? 2 : 1.5);
}
tube(or = diameter / 2, ir = height > 5 ? 1 : 0.75, h = height);
color("white")
cylinder(d = 2, h = max(height - 3 , 0.5));
}