This commit is contained in:
breitenbach76 2026-06-10 07:43:48 +02:00
parent 9075692196
commit e06a717e4b
24 changed files with 270 additions and 7 deletions

View file

@ -0,0 +1,10 @@
// Stationschip Ø40 x 2 mm Vollscheibe (1:1 aus stationschip.svg).
// Liegt in der Chip-Mulde (Ø50) der Boards; das Avery-Rundetikett (puck-etiketten.csv)
// wird oben aufgeklebt. Aufruf: use <stationschip-common.scad> chip("#2f80c9");
chip_d = 40; // Ø40 (aus SVG: 40 mm)
chip_h = 2; // Hoehe 2 mm
module chip(col) {
color(col) cylinder(d = chip_d, h = chip_h, $fn = 200);
}