1
0

Add files via upload

This commit is contained in:
tapioki 2021-04-26 14:36:07 +02:00 committed by Bán Dénes
parent 5a8a66ba37
commit 3e78e6e557

17
src/footprints/via.js Normal file
View File

@ -0,0 +1,17 @@
module.exports = {
nets: ['from'],
body: p => `
(module VIA-0.6mm (layer F.Cu) (tedit 591DBFB0)
${p.at /* parametric position */}
(fp_text reference REF** (at 0 1.4) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value VIA-0.6mm (at 0 -1.4) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole circle (at 0 0) (size 0.6 0.6) (drill 0.3) (layers *.Cu) (zone_connect 2) ${p.net.from})
)
`
}