summaryrefslogtreecommitdiff
path: root/gerbonara/cad/protoboard.py
diff options
context:
space:
mode:
authorjaseg <git@jaseg.de>2023-04-26 22:57:14 +0200
committerjaseg <git@jaseg.de>2023-04-26 22:57:14 +0200
commit38f766dc42e3bec72236cc34c6b74fc4dab37c4e (patch)
treefc49b6ea2d04d389185db29e6d4893b38cd27e91 /gerbonara/cad/protoboard.py
parent549a33d386a19b976248f3a357135f3b9f579cdc (diff)
downloadgerbonara-38f766dc42e3bec72236cc34c6b74fc4dab37c4e.tar.gz
gerbonara-38f766dc42e3bec72236cc34c6b74fc4dab37c4e.tar.bz2
gerbonara-38f766dc42e3bec72236cc34c6b74fc4dab37c4e.zip
Add spiky layout to protoserve
Diffstat (limited to 'gerbonara/cad/protoboard.py')
-rw-r--r--gerbonara/cad/protoboard.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gerbonara/cad/protoboard.py b/gerbonara/cad/protoboard.py
index f08fb32..2acc0f2 100644
--- a/gerbonara/cad/protoboard.py
+++ b/gerbonara/cad/protoboard.py
@@ -473,7 +473,7 @@ class PoweredProto(ObjectGroup):
class SpikyProto(ObjectGroup):
def __init__(self, pitch=None, drill=None, clearance=None, power_pad_dia=None, via_size=None, trace_width=None, unit=MM):
- super().__init__(0, 0)
+ super().__init__(0, 0, unit=unit)
res = importlib.resources.files(package_data)
self.fp_center = kfp.Footprint.load(res.joinpath('center-pad-spikes.kicad_mod').read_text(encoding='utf-8'))