Files
osmocom-analog/cad/coil.scad
Andreas Eversberg 465445aac5 Add Magnetic card emulation for C-Netz
Emulation can be done with a coil connected to sound card.

Alternatively an Attiny85 can be used to control a coil.
2021-11-07 20:00:41 +01:00

19 lines
352 B
OpenSCAD

$fn = 100;
durchmesser=30;
rille=8;
wand=1;
module torus(d1, d2) {
rotate_extrude(convexity = 10)
translate([d2/2+d1/2, 0, 0])
circle(r = d1/2);
}
intersection() {
difference() {
torus(rille+wand*2,durchmesser-wand*2);
torus(rille,durchmesser);
}
translate([0,0,-5]) cylinder(h=10, r=(durchmesser+rille)/2);
}