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.
This commit is contained in:
Andreas Eversberg
2021-08-28 20:59:20 +02:00
parent 922b4af362
commit 465445aac5
22 changed files with 16899 additions and 0 deletions

18
cad/coil.scad Normal file
View File

@@ -0,0 +1,18 @@
$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);
}