1
0
mirror of https://github.com/nophead/NopSCADlib.git synced 2025-09-09 22:51:16 +02:00

Added SMD capacitors.

This commit is contained in:
Chris Palmer
2021-06-08 08:08:35 +01:00
parent 3bc8f35e37
commit b8efa11fd9
6 changed files with 38 additions and 0 deletions

View File

@@ -966,6 +966,7 @@ module pcb_component(comp, cutouts = false, angle = undef) { //! Draw pcb compon
if(show(comp, "potentiometer")) potentiometer(param(4, 5), param(5, 9));
if(show(comp, "buzzer")) buzzer(param(4, 9), param(5, 12), param(6, grey(20)));
if(show(comp, "smd_res")) smd_resistor(comp[4], comp[5]);
if(show(comp, "smd_cap")) smd_capacitor(comp[4], comp[5]);
}
}
}