forked from mattoppenheim/jacdac
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjacdac_EC30_20x20_template.kicad_pcb
3557 lines (3521 loc) · 215 KB
/
jacdac_EC30_20x20_template.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20220427) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(title_block
(title "Jacdac EC30 20x20mm template")
(date "2022-06-13")
(rev "1.0")
(comment 1 "Conforms with: \"EC\" template: 20x20mm MH, 1 + 1 conns v1.0")
(comment 2 "Licence: Attribution 4.0 International (CC BY 4.0)")
(comment 3 "Matthew Oppenheim")
)
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 4)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 1)
(scaleselection 1)
(outputdirectory "")
)
)
(net 0 "")
(net 1 "unconnected-(EC1-JD_DATA)")
(net 2 "unconnected-(EC1-GND)")
(net 3 "unconnected-(EC1-JD_PWR)")
(net 4 "unconnected-(EC2-JD_DATA)")
(net 5 "unconnected-(EC2-GND)")
(net 6 "unconnected-(EC2-JD_PWR)")
(net 7 "unconnected-(MH1-PadMH1)")
(net 8 "unconnected-(MH2-PadMH2)")
(net 9 "unconnected-(MH3-PadMH3)")
(net 10 "unconnected-(MH4-PadMH4)")
(footprint "Jacdac:JD-PEC-02_Prerouted_recessed" (layer "F.Cu")
(tstamp 31b10a09-d186-4548-ae6d-5f80b25ccfb6)
(at 170 90 -90)
(descr "Jacdac edge connector with pre-routed connections between top and bottom layers. Edge cuts for minimum connector clearance.0.29mm power and 0.22mm (~8 mil) data trace width, and 0.155mm (~6 mil) power and 0.25mm data trace clearance.")
(tags "jacdac")
(property "Sheetfile" "jacdac_EC30_20x20_template.kicad_sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(path "/5c4b0b64-2aab-4c30-a240-d18967de9d6e")
(attr through_hole)
(fp_text reference "EC2" (at 0.4 -4.8 -90) (layer "Cmts.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 20f3c13f-942b-4807-8549-e50d6cf3664b)
)
(fp_text value "Conn_Jacdac_CardEdge" (at 0 -5.1 -90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4d6c2f51-ad15-4392-910b-8ed3d5bc6396)
)
(fp_text user "LED" (at 2.4 4.2 -90 unlocked) (layer "Cmts.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 39d71f05-149c-4f8b-bce7-b078a35003eb)
)
(fp_text user "PCB Thickness: 1.6 ± 0.15mm" (at 3.81 -2.545 -90) (layer "Cmts.User") hide
(effects (font (size 0.5 0.5) (thickness 0.125)) (justify left))
(tstamp 88a4d49d-d838-4ecb-86f9-1d4b74986b6f)
)
(fp_text user "Keep Out Zone" (at 5.715 -0.005 -90) (layer "Cmts.User") hide
(effects (font (size 0.5 0.5) (thickness 0.125)) (justify left))
(tstamp e2d956e5-53a6-4844-a673-21c99ff0b1ec)
)
(fp_line (start -2.54 -3.45) (end 2.54 -3.45)
(stroke (width 0.12) (type solid)) (layer "Cmts.User") (tstamp 8f763a03-aef6-4e7e-a08d-fd144dde55db))
(fp_line (start -0.6 4.1) (end 0.6 4.1)
(stroke (width 0.2) (type default)) (layer "Cmts.User") (tstamp 5c45beae-2e8c-4743-ae89-793ebbf9fba5))
(fp_line (start 0 3.5) (end 0 4.7)
(stroke (width 0.2) (type default)) (layer "Cmts.User") (tstamp c6691a36-66d2-4e36-ab4a-8e649c711ab6))
(fp_line (start -6 -1.5) (end -6 0.9)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 88bd279a-815c-4830-be24-96aef714d3ad))
(fp_line (start -5.031284 1.9) (end -4.5 1.9)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp d885d038-5993-49b9-aa10-23ca838f878a))
(fp_line (start -4.297807 1.9) (end -4.5 1.9)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp e8af69a9-5d14-4892-967e-3ec8b7035475))
(fp_line (start -3.300852 -3.2) (end -3.300852 0.902)
(stroke (width 0.15) (type solid)) (layer "Edge.Cuts") (tstamp 76c5aedc-8115-4b46-817b-121631579050))
(fp_line (start 2.499148 -4) (end -2.500852 -4)
(stroke (width 0.15) (type solid)) (layer "Edge.Cuts") (tstamp 88be0636-c677-4bf9-8d24-503ab34e4c27))
(fp_line (start 3.299148 -3.2) (end 3.299148 0.9)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 5f6dc169-d09d-467e-9d7c-ec94bd229efd))
(fp_line (start 4.297807 1.9) (end 4.992893 1.9)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 2a50c3cc-bd2a-4d2c-b41c-83c4261a54ef))
(fp_line (start 6 0.75) (end 5.992893 0.9)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 8cf0a79a-278c-4f9f-a7af-745de9195ab0))
(fp_line (start 6 0.75) (end 6 -1.5)
(stroke (width 0.15) (type solid)) (layer "Edge.Cuts") (tstamp b4322627-0c9d-4285-82f5-6571d85cefaa))
(fp_arc (start -7 -2.5) (mid -6.292893 -2.207107) (end -6 -1.5)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 1a410396-e419-4351-afa3-65f3e8a4e1db))
(fp_arc (start -5.031284 1.9) (mid -5.727418 1.605151) (end -6 0.9)
(stroke (width 0.15) (type solid)) (layer "Edge.Cuts") (tstamp 93d83c41-b6f0-432e-b36c-70821e06fe0d))
(fp_arc (start -3.300852 -3.2) (mid -3.066852 -3.766) (end -2.500852 -4)
(stroke (width 0.15) (type solid)) (layer "Edge.Cuts") (tstamp a6680c8a-ce2f-4b9d-b89d-d758591b278d))
(fp_arc (start -3.300852 0.902) (mid -3.592637 1.607476) (end -4.297807 1.9)
(stroke (width 0.15) (type solid)) (layer "Edge.Cuts") (tstamp fc0f7062-11ea-4600-acd9-1bcfaa75d742))
(fp_arc (start 2.499148 -4) (mid 3.065149 -3.766) (end 3.299148 -3.2)
(stroke (width 0.15) (type solid)) (layer "Edge.Cuts") (tstamp 2b6c7d3d-11da-41c7-953c-1701fbaddea7))
(fp_arc (start 4.297807 1.9) (mid 3.591372 1.606828) (end 3.299148 0.9)
(stroke (width 0.15) (type solid)) (layer "Edge.Cuts") (tstamp 001fb801-daf3-4dd1-808f-9eff8f436093))
(fp_arc (start 5.992893 0.9) (mid 5.699999 1.607104) (end 4.992893 1.9)
(stroke (width 0.15) (type solid)) (layer "Edge.Cuts") (tstamp d6698640-029b-4f4c-a705-b724f339013a))
(fp_arc (start 6 -1.5) (mid 6.292893 -2.207107) (end 7 -2.5)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 80a083df-245b-46c7-b22d-01311b5650ec))
(fp_poly
(pts
(arc (start -2.150853 -1.000001) (mid -2.500852 -1.35) (end -2.850851 -1.000001))
(arc (start -2.850851 -0.300002) (mid -2.500852 0.049997) (end -2.150853 -0.300002))
)
(stroke (width 0) (type solid)) (fill solid) (layer "Edge.Cuts") (tstamp 14a1386d-10fb-4bdd-8c42-c813ef1c6093))
(fp_poly
(pts
(arc (start 2.849147 -1.000001) (mid 2.499148 -1.35) (end 2.149149 -1.000001))
(arc (start 2.149149 -0.300002) (mid 2.499148 0.049997) (end 2.849147 -0.300002))
)
(stroke (width 0) (type solid)) (fill solid) (layer "Edge.Cuts") (tstamp 91c09922-4d80-4d13-ab60-418a1f217731))
(fp_line (start -6 0.9) (end -6 3)
(stroke (width 0.05) (type default)) (layer "B.CrtYd") (tstamp 495ce01a-2653-47d7-913d-545c37da2eb8))
(fp_line (start -6 3) (end -3.25 3)
(stroke (width 0.05) (type default)) (layer "B.CrtYd") (tstamp ac0fa68d-fbd4-4a96-beb6-08da7aff48ab))
(fp_line (start -4.2 1.9) (end -5.031284 1.9)
(stroke (width 0.05) (type default)) (layer "B.CrtYd") (tstamp 946b66d2-7f90-4a62-b003-fe18447d0c0f))
(fp_line (start -3.300852 -3.2) (end -3.300852 0.902)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 4431c905-f431-49b9-83e8-adcc867ce367))
(fp_line (start -2.500852 -4) (end 2.5 -4)
(stroke (width 0.05) (type default)) (layer "B.CrtYd") (tstamp 6c3b0305-f9c0-45c2-a2a9-baf9dc320cab))
(fp_line (start 3.3 -3.2) (end 3.299148 0.9)
(stroke (width 0.05) (type default)) (layer "B.CrtYd") (tstamp 09556978-1d60-4d09-ad98-6210f1b0671b))
(fp_line (start 4.297807 1.9) (end 5 1.9)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 1ddc7505-4149-4ced-8b8b-eb08a160dcc5))
(fp_line (start 6 0.9) (end 6 3)
(stroke (width 0.05) (type default)) (layer "B.CrtYd") (tstamp 692b0f76-5ae6-459f-8ba1-d594c7539d44))
(fp_line (start 6 3) (end -3.25 3)
(stroke (width 0.05) (type default)) (layer "B.CrtYd") (tstamp eb3fcdc6-0518-46c1-8914-29fbd2c5aef8))
(fp_arc (start -5.031284 1.9) (mid -5.727419 1.605152) (end -6 0.9)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp de60d521-3c5e-453f-bcaa-c7c47c1c9d49))
(fp_arc (start -3.300852 -3.2) (mid -3.066852 -3.766) (end -2.500852 -4)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 3f891059-1737-482e-9b10-79adc2a06392))
(fp_arc (start -3.300852 0.902) (mid -3.558642 1.573788) (end -4.2 1.9)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp bf46fa76-8819-48c5-8d86-d581a235e42b))
(fp_arc (start 2.5 -4) (mid 3.065685 -3.765685) (end 3.3 -3.2)
(stroke (width 0.05) (type default)) (layer "B.CrtYd") (tstamp aef42f3d-b586-41bb-bed4-9458fba22354))
(fp_arc (start 4.297807 1.9) (mid 3.591372 1.606828) (end 3.299148 0.9)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp e2dad12a-d358-408b-b0a4-33335be2d85b))
(fp_arc (start 6 0.9) (mid 5.707107 1.607107) (end 5 1.9)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp cc10b841-53ac-4965-915b-f736dc74aaee))
(fp_line (start -6 0.9) (end -6 3)
(stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp 48b941e1-26c9-4071-911c-ededfcb9a0f9))
(fp_line (start -6 3) (end -3.25 3)
(stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp 88ae1886-a0e0-48f2-82d6-121378699cba))
(fp_line (start -4.2 1.9) (end -5.031284 1.9)
(stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp 2cc72310-9e7d-4f07-944e-af9beb12f9f9))
(fp_line (start -3.300852 -3.2) (end -3.300852 0.902)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6e10c63d-9a50-4058-afe4-9b4083c1fd97))
(fp_line (start -2.500852 -4) (end 2.5 -4)
(stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp 5bdf8378-566d-44eb-96a8-8c56a0fc8761))
(fp_line (start 3.3 -3.2) (end 3.299148 0.9)
(stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp 4fe5ca0a-925e-41c4-85f7-1595c8df587e))
(fp_line (start 4.297807 1.9) (end 5 1.9)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 35f948e0-6023-40d4-b60b-92d3f25fda35))
(fp_line (start 6 0.9) (end 6 3)
(stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp 29107d80-3d4a-4ee6-a984-dc48b6039f41))
(fp_line (start 6 3) (end -3.25 3)
(stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp 34cf1cd7-8090-4eb4-9c3b-a2f02e270393))
(fp_arc (start -5.031284 1.9) (mid -5.727419 1.605152) (end -6 0.9)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2d146fe8-61f7-46ac-b86f-2b01b05032fd))
(fp_arc (start -3.300852 -3.2) (mid -3.066852 -3.766) (end -2.500852 -4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 87e2cd5d-64d6-45b0-aacc-a72da9ac1b24))
(fp_arc (start -3.300852 0.902) (mid -3.558642 1.573788) (end -4.2 1.9)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f34432b5-df6f-46e7-bae4-bf3f980e1c57))
(fp_arc (start 2.5 -4) (mid 3.065685 -3.765685) (end 3.3 -3.2)
(stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp 574f95df-065f-478c-bfdc-59907725e9e5))
(fp_arc (start 4.297807 1.9) (mid 3.591372 1.606828) (end 3.299148 0.9)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8b9287d9-4136-4056-9e24-bf6e5d1251b6))
(fp_arc (start 6 0.9) (mid 5.707107 1.607107) (end 5 1.9)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c15e7526-8eb7-4ffe-9344-97e3bd976191))
(pad "1" smd oval (at -2.18 1.1935) (size 1.287 0.22) (layers "B.Cu")
(net 4 "unconnected-(EC2-JD_DATA)") (pinfunction "JD_DATA") (pintype "bidirectional") (tstamp 0b4f1293-121e-4c55-bfd5-5841ff98ca0b))
(pad "1" smd oval (at -1.9135 1.9935 225) (size 0.973776 0.22) (layers "B.Cu")
(net 4 "unconnected-(EC2-JD_DATA)") (pinfunction "JD_DATA") (pintype "bidirectional") (tstamp 4350097a-1395-42c6-bdc6-1846b40f8354))
(pad "1" smd oval (at -1.725 0.205 315) (size 1.506934 0.22) (layers "B.Cu")
(net 4 "unconnected-(EC2-JD_DATA)") (pinfunction "JD_DATA") (pintype "bidirectional") (tstamp 08ac4d28-9ca2-447d-b760-4e45275f7b75))
(pad "1" smd roundrect (at -1.27 -1.275 270) (size 0.9 2.95) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.389)
(net 4 "unconnected-(EC2-JD_DATA)") (pinfunction "JD_DATA") (pintype "bidirectional") (tstamp 73d3932d-8e37-4e00-9468-d3d17bd1e865))
(pad "1" smd oval (at -0.651 2.26 270) (size 2.212 0.22) (layers "B.Cu")
(net 4 "unconnected-(EC2-JD_DATA)") (pinfunction "JD_DATA") (pintype "bidirectional") (tstamp 402d63fe-3921-4a3f-b7d2-412b98277d85))
(pad "1" smd oval (at 0.815 1.805 315) (size 1.507 0.22) (layers "B.Cu")
(net 4 "unconnected-(EC2-JD_DATA)") (pinfunction "JD_DATA") (pintype "bidirectional") (tstamp efebeedd-b445-4af0-a84b-b0370f86aa8c))
(pad "1" smd roundrect (at 1.27 -0.475 270) (size 0.9 4.55) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.389)
(net 4 "unconnected-(EC2-JD_DATA)") (pinfunction "JD_DATA") (pintype "bidirectional") (tstamp eb8428f4-7493-401d-a376-0e32dd86b9ba))
(pad "1" thru_hole circle (at 1.27 1.35 270) (size 1.1 1.1) (drill 0.71) (layers *.Cu *.Mask)
(net 4 "unconnected-(EC2-JD_DATA)") (pinfunction "JD_DATA") (pintype "bidirectional") (tstamp 9f601082-37e7-49df-9b94-17e90b16c8d0))
(pad "2" thru_hole circle (at 0 -1.525 270) (size 0.6 0.6) (drill 0.3) (layers *.Cu *.Mask)
(net 5 "unconnected-(EC2-GND)") (pinfunction "GND") (pintype "power_in") (tstamp 2d8a9eb6-e163-4636-acbe-4ea116fc73dc))
(pad "2" smd roundrect (at 0 -1.525 270) (size 0.9 3.45) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.389)
(net 5 "unconnected-(EC2-GND)") (pinfunction "GND") (pintype "power_in") (tstamp 2b63c00b-4457-4df4-9b93-a68e0e022a1d))
(pad "2" smd roundrect (at 0 -0.725 270) (size 0.9 5.05) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.389)
(net 5 "unconnected-(EC2-GND)") (pinfunction "GND") (pintype "power_in") (tstamp b305e8d7-a2ed-41ee-80f9-9b3faf935550))
(pad "2" thru_hole circle (at 0 1.35 270) (size 1.1 1.1) (drill 0.71) (layers *.Cu *.Mask)
(net 5 "unconnected-(EC2-GND)") (pinfunction "GND") (pintype "power_in") (tstamp 6b9ab4d2-92a5-4fad-bfd0-e2ecd8ad90d6))
(pad "3" smd roundrect (at -1.27 -0.725 270) (size 0.9 5.05) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.389)
(net 6 "unconnected-(EC2-JD_PWR)") (pinfunction "JD_PWR") (pintype "power_out") (tstamp f6e7e93b-67f7-4671-aa1d-769746839f2a))
(pad "3" thru_hole circle (at -1.27 1.35 270) (size 1.1 1.1) (drill 0.71) (layers *.Cu *.Mask)
(net 6 "unconnected-(EC2-JD_PWR)") (pinfunction "JD_PWR") (pintype "power_out") (tstamp 352bd9e1-0628-4bfb-a730-f007122bbdba))
(pad "3" smd oval (at -0.845 0.925 315) (size 1.492 0.29) (layers "B.Cu")
(net 6 "unconnected-(EC2-JD_PWR)") (pinfunction "JD_PWR") (pintype "power_out") (tstamp 671da2da-dfd6-47b2-9a20-9b0cdc7b294f))
(pad "3" smd oval (at 0.05 0.5 270) (size 1.23 0.29) (layers "B.Cu")
(net 6 "unconnected-(EC2-JD_PWR)") (pinfunction "JD_PWR") (pintype "power_out") (tstamp 0e755f34-64ac-4a9f-b4c5-6971a9716cc0))
(pad "3" smd oval (at 0.895 0.125 315) (size 1.351 0.29) (layers "B.Cu")
(net 6 "unconnected-(EC2-JD_PWR)") (pinfunction "JD_PWR") (pintype "power_out") (tstamp 5a892d4a-ea23-4186-994a-6a13b9ed5e04))
(pad "3" smd roundrect (at 1.27 -1.525 270) (size 0.9 3.45) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.389)
(net 6 "unconnected-(EC2-JD_PWR)") (pinfunction "JD_PWR") (pintype "power_out") (tstamp 39820b32-0f21-4422-bc55-1881038882ee))
)
(footprint "Jacdac:jacdac_hole_PWR_MH3" (layer "F.Cu")
(tstamp 31d1d6da-72f4-40d3-9018-f4f7046b7165)
(at 150 100 90)
(property "Sheetfile" "jacdac_EC30_20x20_template.kicad_sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(property "ki_description" "Mounting Hole with connection")
(property "ki_keywords" "mounting hole")
(path "/5f1a695f-9488-4bba-9c33-0c2043eb26e6")
(attr through_hole exclude_from_bom)
(fp_text reference "MH3" (at 0 0 90) (layer "F.SilkS") hide
(effects (font (size 1.27 1.27) (thickness 0.15)))
(tstamp c4023480-6e43-4031-bbb8-9955f7938c72)
)
(fp_text value "jacdac_hole_PWR_MH3" (at 0 0 90) (layer "F.SilkS") hide
(effects (font (size 1.27 1.27) (thickness 0.15)))
(tstamp 13b94ec1-bdb4-49c3-ab93-725ef02c670b)
)
(fp_line (start 1.8 2.45) (end 2.45 1.8)
(stroke (width 0.2) (type default)) (layer "B.SilkS") (tstamp 766b0830-29fc-484f-80b0-37843862a64e))
(fp_line (start 1.85 1.85) (end 2.4 2.4)
(stroke (width 0.2) (type default)) (layer "B.SilkS") (tstamp 5c0da50e-dd6f-4c48-b57b-7bf69717e569))
(fp_poly
(pts
(arc (start 0.659989 2.463111) (mid 0.341792 3.014246) (end 0.892926 3.332444))
(arc (start 0.892926 3.332444) (mid 1.334087 3.181621) (end 1.750884 2.972693))
(arc (start 1.750884 2.972693) (mid 1.775472 2.927688) (end 1.747498 2.884706))
(arc (start 1.747498 2.884706) (mid 1.463371 2.659468) (end 1.298959 2.336314))
(arc (start 1.298959 2.336314) (mid 1.243179 2.270384) (end 1.156844 2.27249))
(arc (start 1.156844 2.27249) (mid 0.913403 2.380797) (end 0.659989 2.463111))
)
(stroke (width 0) (type solid)) (fill solid) (layer "B.SilkS") (tstamp e6910ecb-adb1-4e71-8fbc-270e33d0c375))
(fp_poly
(pts
(arc (start 2.27249 1.156844) (mid 2.380797 0.913403) (end 2.463111 0.659989))
(arc (start 2.463111 0.659989) (mid 3.014247 0.341791) (end 3.332444 0.892926))
(arc (start 3.332444 0.892926) (mid 3.181621 1.334087) (end 2.972693 1.750884))
(arc (start 2.972693 1.750884) (mid 2.927688 1.775472) (end 2.884706 1.747498))
(arc (start 2.884706 1.747498) (mid 2.659468 1.463371) (end 2.336314 1.298959))
(arc (start 2.336314 1.298959) (mid 2.270384 1.243179) (end 2.27249 1.156844))
)
(stroke (width 0) (type solid)) (fill solid) (layer "B.SilkS") (tstamp a99ec019-27a8-473f-9db1-dade65ec9c7d))
(fp_line (start 1.8 2.45) (end 2.45 1.8)
(stroke (width 0.2) (type default)) (layer "F.SilkS") (tstamp 93c1c346-62a2-4c13-a219-fdfed32d074d))
(fp_line (start 1.85 1.85) (end 2.4 2.4)
(stroke (width 0.2) (type default)) (layer "F.SilkS") (tstamp 4ed9d39a-2f0b-4605-947d-0c45333b0600))
(fp_poly
(pts
(arc (start 0.659989 2.463111) (mid 0.341792 3.014246) (end 0.892926 3.332444))
(arc (start 0.892926 3.332444) (mid 1.334087 3.181621) (end 1.750884 2.972693))
(arc (start 1.750884 2.972693) (mid 1.775472 2.927688) (end 1.747498 2.884706))
(arc (start 1.747498 2.884706) (mid 1.463371 2.659468) (end 1.298959 2.336314))
(arc (start 1.298959 2.336314) (mid 1.243179 2.270384) (end 1.156844 2.27249))
(arc (start 1.156844 2.27249) (mid 0.913403 2.380797) (end 0.659989 2.463111))
)
(stroke (width 0) (type solid)) (fill solid) (layer "F.SilkS") (tstamp 78cc53ad-3738-45b1-95bb-ccf208317901))
(fp_poly
(pts
(arc (start 2.27249 1.156844) (mid 2.380797 0.913403) (end 2.463111 0.659989))
(arc (start 2.463111 0.659989) (mid 3.014247 0.341791) (end 3.332444 0.892926))
(arc (start 3.332444 0.892926) (mid 3.181621 1.334087) (end 2.972693 1.750884))
(arc (start 2.972693 1.750884) (mid 2.927688 1.775472) (end 2.884706 1.747498))
(arc (start 2.884706 1.747498) (mid 2.659468 1.463371) (end 2.336314 1.298959))
(arc (start 2.336314 1.298959) (mid 2.270384 1.243179) (end 2.27249 1.156844))
)
(stroke (width 0) (type solid)) (fill solid) (layer "F.SilkS") (tstamp 4c8e4099-34b7-4331-8c39-e8be50450a09))
(fp_circle (center 0 0) (end -2.5 0)
(stroke (width 0.1) (type solid)) (fill solid) (layer "B.Mask") (tstamp 2edfa0ce-d3ad-444b-9ec8-0ac9d294d104))
(fp_circle (center 0 0) (end 2.5 0)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.Mask") (tstamp a9f4da1a-7e9d-4f95-9024-978eb38cdbcd))
(fp_circle (center 0 0) (end 0 -3)
(stroke (width 0.1) (type default)) (fill none) (layer "Dwgs.User") (tstamp be22d68c-00ad-4652-bb23-d15a52186acb))
(fp_poly
(pts
(xy -1.552815 -0.0508)
(xy -1.544936 -0.173096)
(xy -1.528346 -0.290858)
(xy -1.502767 -0.405222)
(xy -1.467918 -0.517321)
(xy -1.423522 -0.628292)
(xy -1.396632 -0.6858)
(xy -1.3369 -0.796361)
(xy -1.269279 -0.900867)
(xy -1.194201 -0.99898)
(xy -1.112098 -1.090362)
(xy -1.023402 -1.174677)
(xy -0.928544 -1.251586)
(xy -0.827957 -1.320753)
(xy -0.722071 -1.38184)
(xy -0.611319 -1.43451)
(xy -0.496133 -1.478425)
(xy -0.376944 -1.513248)
(xy -0.3213 -1.526035)
(xy -0.277663 -1.534921)
(xy -0.239172 -1.541948)
(xy -0.203634 -1.547321)
(xy -0.168855 -1.551244)
(xy -0.132644 -1.553922)
(xy -0.092806 -1.555561)
(xy -0.047149 -1.556365)
(xy 0.00508 -1.556541)
(xy 0.061132 -1.556162)
(xy 0.109323 -1.554995)
(xy 0.151934 -1.552807)
(xy 0.191248 -1.549364)
(xy 0.229549 -1.544432)
(xy 0.26912 -1.537777)
(xy 0.312242 -1.529166)
(xy 0.347522 -1.521455)
(xy 0.466136 -1.489691)
(xy 0.582201 -1.448334)
(xy 0.694882 -1.397803)
(xy 0.803347 -1.338518)
(xy 0.906762 -1.2709)
(xy 1.004294 -1.195369)
(xy 1.01854 -1.183231)
(xy 1.110697 -1.097173)
(xy 1.194794 -1.004949)
(xy 1.270913 -0.906455)
(xy 1.339137 -0.801582)
(xy 1.399547 -0.690224)
(xy 1.401259 -0.686742)
(xy 1.442757 -0.595616)
(xy 1.477205 -0.50528)
(xy 1.505404 -0.413143)
(xy 1.528152 -0.316616)
(xy 1.545041 -0.22114)
(xy 1.549071 -0.190698)
(xy 1.552154 -0.157702)
(xy 1.554411 -0.120194)
(xy 1.555963 -0.076219)
(xy 1.556844 -0.03048)
(xy 1.557245 0.005299)
(xy 1.557447 0.038767)
(xy 1.557455 0.068236)
(xy 1.55727 0.092016)
(xy 1.556898 0.108418)
(xy 1.556559 0.1143)
(xy 1.542765 0.225873)
(xy 1.523835 0.330208)
(xy 1.499266 0.429109)
(xy 1.468555 0.524382)
(xy 1.431201 0.617831)
(xy 1.394615 0.69565)
(xy 1.337512 0.800055)
(xy 1.274074 0.897552)
(xy 1.203245 0.989581)
(xy 1.123965 1.077583)
(xy 1.086468 1.115073)
(xy 1.045222 1.154163)
(xy 1.007071 1.1881)
(xy 0.969272 1.219088)
(xy 0.929086 1.249336)
(xy 0.883769 1.281047)
(xy 0.862023 1.295682)
(xy 0.755007 1.361055)
(xy 0.644259 1.416995)
(xy 0.529968 1.463442)
(xy 0.412325 1.500337)
(xy 0.291518 1.52762)
(xy 0.167738 1.54523)
(xy 0.04826 1.552927)
(xy -0.002839 1.553163)
(xy -0.002839 1.536676)
(xy 0.041832 1.536466)
(xy 0.084771 1.535737)
(xy 0.123997 1.534489)
(xy 0.157532 1.532723)
(xy 0.183396 1.530438)
(xy 0.18796 1.529852)
(xy 0.316766 1.507273)
(xy 0.440258 1.476047)
(xy 0.558526 1.436129)
(xy 0.671662 1.387475)
(xy 0.779757 1.33004)
(xy 0.882901 1.263779)
(xy 0.981187 1.188649)
(xy 1.074706 1.104603)
(xy 1.092322 1.087243)
(xy 1.176328 0.996299)
(xy 1.25247 0.899548)
(xy 1.320449 0.797606)
(xy 1.379966 0.691086)
(xy 1.43072 0.5806)
(xy 1.472413 0.466763)
(xy 1.504745 0.350188)
(xy 1.527417 0.231488)
(xy 1.533791 0.18288)
(xy 1.536453 0.159512)
(xy 1.538914 0.137936)
(xy 1.540785 0.121551)
(xy 1.541325 0.11684)
(xy 1.542405 0.100043)
(xy 1.54292 0.074979)
(xy 1.542926 0.043522)
(xy 1.542474 0.007547)
(xy 1.54162 -0.031072)
(xy 1.540418 -0.070462)
(xy 1.538921 -0.108748)
(xy 1.537184 -0.144055)
(xy 1.53526 -0.174509)
(xy 1.533204 -0.198237)
(xy 1.531956 -0.20828)
(xy 1.510698 -0.326092)
(xy 1.482804 -0.437247)
(xy 1.447714 -0.543234)
(xy 1.404864 -0.645541)
(xy 1.353692 -0.745658)
(xy 1.293635 -0.845073)
(xy 1.288168 -0.85344)
(xy 1.242144 -0.919762)
(xy 1.193881 -0.981579)
(xy 1.140876 -1.041946)
(xy 1.0923 -1.092322)
(xy 1.000686 -1.177002)
(xy 0.903391 -1.253601)
(xy 0.800945 -1.321835)
(xy 0.69388 -1.381419)
(xy 0.582724 -1.432071)
(xy 0.468009 -1.473505)
(xy 0.350264 -1.505439)
(xy 0.301704 -1.51563)
(xy 0.260266 -1.523373)
(xy 0.224347 -1.529438)
(xy 0.19168 -1.534025)
(xy 0.159996 -1.53733)
(xy 0.127029 -1.539551)
(xy 0.090511 -1.540885)
(xy 0.048174 -1.541531)
(xy 0.00254 -1.541685)
(xy -0.049128 -1.541364)
(xy -0.095079 -1.540426)
(xy -0.134139 -1.538917)
(xy -0.165134 -1.536877)
(xy -0.18288 -1.534956)
(xy -0.302083 -1.514652)
(xy -0.414564 -1.487711)
(xy -0.521708 -1.453618)
(xy -0.624899 -1.41186)
(xy -0.725521 -1.361925)
(xy -0.824961 -1.303297)
(xy -0.84836 -1.288168)
(xy -0.914744 -1.2421)
(xy -0.976602 -1.193796)
(xy -1.036997 -1.140747)
(xy -1.087221 -1.0923)
(xy -1.172939 -0.999818)
(xy -1.249696 -0.902721)
(xy -1.31756 -0.800874)
(xy -1.376598 -0.694139)
(xy -1.426876 -0.58238)
(xy -1.46846 -0.465461)
(xy -1.501418 -0.343247)
(xy -1.525816 -0.215599)
(xy -1.529877 -0.18796)
(xy -1.53227 -0.164193)
(xy -1.534144 -0.132266)
(xy -1.535498 -0.094165)
(xy -1.536333 -0.051878)
(xy -1.536649 -0.007389)
(xy -1.536445 0.037314)
(xy -1.535722 0.080245)
(xy -1.53448 0.119418)
(xy -1.532718 0.152845)
(xy -1.530437 0.178541)
(xy -1.529877 0.18288)
(xy -1.507237 0.311769)
(xy -1.475991 0.435282)
(xy -1.436088 0.553522)
(xy -1.387477 0.666594)
(xy -1.330108 0.7746)
(xy -1.263929 0.877644)
(xy -1.188891 0.97583)
(xy -1.104942 1.069261)
(xy -1.087243 1.087221)
(xy -0.994847 1.172852)
(xy -0.897885 1.24952)
(xy -0.796198 1.317305)
(xy -0.689625 1.376285)
(xy -0.578006 1.426538)
(xy -0.461182 1.468143)
(xy -0.338992 1.501178)
(xy -0.211275 1.525721)
(xy -0.18288 1.529924)
(xy -0.159246 1.532316)
(xy -0.127445 1.534187)
(xy -0.089457 1.535537)
(xy -0.047261 1.536366)
(xy -0.002839 1.536676)
(xy -0.002839 1.553163)
(xy -0.044736 1.553358)
(xy -0.131991 1.549048)
(xy -0.216929 1.53964)
(xy -0.302972 1.524777)
(xy -0.37338 1.509091)
(xy -0.490274 1.475601)
(xy -0.603891 1.432765)
(xy -0.713679 1.381024)
(xy -0.819085 1.320822)
(xy -0.919557 1.2526)
(xy -1.014542 1.1768)
(xy -1.103489 1.093864)
(xy -1.185844 1.004234)
(xy -1.261055 0.908352)
(xy -1.328571 0.80666)
(xy -1.387837 0.699599)
(xy -1.389656 0.69596)
(xy -1.441026 0.582791)
(xy -1.482539 0.469053)
(xy -1.514373 0.35394)
(xy -1.536703 0.236647)
(xy -1.549706 0.116367)
(xy -1.553556 -0.007705)
(xy -1.552815 -0.0508)
)
(stroke (width 0.01) (type solid)) (fill solid) (layer "Dwgs.User") (tstamp 4f760dad-729d-40a5-9064-96d050396fff))
(fp_poly
(pts
(xy -2.201579 -0.06379)
(xy -2.200384 -0.114771)
(xy -2.198592 -0.16192)
(xy -2.196216 -0.203241)
(xy -2.193266 -0.236738)
(xy -2.192917 -0.239772)
(xy -2.170102 -0.391532)
(xy -2.138037 -0.539568)
(xy -2.096846 -0.683615)
(xy -2.046653 -0.823407)
(xy -1.987582 -0.958679)
(xy -1.919756 -1.089165)
(xy -1.843301 -1.214601)
(xy -1.75834 -1.334721)
(xy -1.664997 -1.449259)
(xy -1.588575 -1.532363)
(xy -1.479214 -1.638245)
(xy -1.364517 -1.735531)
(xy -1.244634 -1.824133)
(xy -1.11972 -1.903963)
(xy -0.989926 -1.974932)
(xy -0.855404 -2.036951)
(xy -0.716308 -2.089934)
(xy -0.572789 -2.13379)
(xy -0.533545 -2.143994)
(xy -0.453545 -2.162823)
(xy -0.378005 -2.177882)
(xy -0.304423 -2.189468)
(xy -0.230295 -2.197879)
(xy -0.153118 -2.203411)
(xy -0.07039 -2.206363)
(xy -0.00254 -2.207063)
(xy 0.054916 -2.206909)
(xy 0.104373 -2.206195)
(xy 0.147985 -2.204775)
(xy 0.187905 -2.202504)
(xy 0.226286 -2.199235)
(xy 0.265281 -2.194824)
(xy 0.307042 -2.189124)
(xy 0.3429 -2.183693)
(xy 0.488569 -2.155894)
(xy 0.630975 -2.118692)
(xy 0.769734 -2.072391)
(xy 0.904465 -2.017297)
(xy 1.034784 -1.953715)
(xy 1.160311 -1.88195)
(xy 1.280662 -1.802307)
(xy 1.395456 -1.715092)
(xy 1.50431 -1.620608)
(xy 1.606843 -1.519162)
(xy 1.702672 -1.411058)
(xy 1.791415 -1.296601)
(xy 1.87269 -1.176097)
(xy 1.946114 -1.049851)
(xy 2.011306 -0.918167)
(xy 2.053834 -0.81788)
(xy 2.100187 -0.690157)
(xy 2.137973 -0.562835)
(xy 2.167793 -0.433508)
(xy 2.190248 -0.299769)
(xy 2.19738 -0.24384)
(xy 2.199406 -0.22166)
(xy 2.201332 -0.191683)
(xy 2.203113 -0.155707)
(xy 2.204703 -0.11553)
(xy 2.206058 -0.072949)
(xy 2.207134 -0.029761)
(xy 2.207885 0.012236)
(xy 2.208266 0.051243)
(xy 2.208232 0.085464)
(xy 2.207739 0.113101)
(xy 2.206766 0.13208)
(xy 2.202019 0.185369)
(xy 2.197533 0.230745)
(xy 2.193058 0.270443)
(xy 2.188344 0.3067)
(xy 2.183755 0.33782)
(xy 2.156067 0.483259)
(xy 2.118716 0.626097)
(xy 2.071973 0.765837)
(xy 2.016111 0.901984)
(xy 1.9514 1.034041)
(xy 1.878114 1.161513)
(xy 1.796522 1.283904)
(xy 1.706898 1.400717)
(xy 1.609513 1.511457)
(xy 1.504639 1.615628)
(xy 1.46304 1.653246)
(xy 1.347614 1.748227)
(xy 1.226564 1.834845)
(xy 1.100315 1.912901)
(xy 0.969291 1.982196)
(xy 0.833916 2.042531)
(xy 0.694616 2.093708)
(xy 0.551814 2.135527)
(xy 0.405935 2.167788)
(xy 0.3429 2.178589)
(xy 0.297548 2.1854)
(xy 0.256613 2.190809)
(xy 0.217943 2.194961)
(xy 0.17939 2.198001)
(xy 0.138805 2.200075)
(xy 0.094038 2.201328)
(xy 0.04294 2.201907)
(xy -0.00254 2.201984)
(xy -0.013086 2.201918)
(xy -0.013086 2.1869)
(xy 0.036876 2.186777)
(xy 0.085507 2.186169)
(xy 0.130894 2.185076)
(xy 0.171124 2.183498)
(xy 0.204283 2.181436)
(xy 0.21844 2.180136)
(xy 0.368431 2.159102)
(xy 0.515167 2.128602)
(xy 0.658307 2.088842)
(xy 0.797512 2.040028)
(xy 0.932439 1.982364)
(xy 1.06275 1.916055)
(xy 1.188103 1.841306)
(xy 1.308159 1.758322)
(xy 1.422576 1.667309)
(xy 1.531015 1.568471)
(xy 1.633135 1.462014)
(xy 1.728595 1.348141)
(xy 1.817055 1.22706)
(xy 1.828102 1.210682)
(xy 1.899314 1.095959)
(xy 1.963833 0.975343)
(xy 2.021211 0.85009)
(xy 2.070998 0.721456)
(xy 2.112747 0.590697)
(xy 2.146009 0.459072)
(xy 2.170336 0.327835)
(xy 2.184022 0.21336)
(xy 2.186337 0.187527)
(xy 2.18854 0.16408)
(xy 2.190382 0.145594)
(xy 2.191615 0.134646)
(xy 2.191618 0.13462)
(xy 2.192658 0.120213)
(xy 2.193231 0.097275)
(xy 2.193377 0.06742)
(xy 2.193135 0.032265)
(xy 2.192545 -0.006573)
(xy 2.191648 -0.047481)
(xy 2.190483 -0.088841)
(xy 2.18909 -0.129039)
(xy 2.187509 -0.166457)
(xy 2.185779 -0.199481)
(xy 2.183941 -0.226495)
(xy 2.182286 -0.24384)
(xy 2.159481 -0.394575)
(xy 2.127291 -0.541642)
(xy 2.085827 -0.684809)
(xy 2.035199 -0.823848)
(xy 1.975518 -0.95853)
(xy 1.906893 -1.088624)
(xy 1.829437 -1.213901)
(xy 1.743259 -1.334132)
(xy 1.64847 -1.449088)
(xy 1.551873 -1.551873)
(xy 1.442232 -1.654458)
(xy 1.327 -1.748615)
(xy 1.206443 -1.834218)
(xy 1.080826 -1.911139)
(xy 0.950417 -1.979253)
(xy 0.815482 -2.038434)
(xy 0.676286 -2.088554)
(xy 0.533095 -2.129488)
(xy 0.386176 -2.161109)
(xy 0.235795 -2.183291)
(xy 0.21844 -2.185215)
(xy 0.185953 -2.187873)
(xy 0.145545 -2.18988)
(xy 0.099166 -2.191245)
(xy 0.048766 -2.191979)
(xy -0.003705 -2.192092)
(xy -0.056297 -2.191595)
(xy -0.10706 -2.190496)
(xy -0.154044 -2.188807)
(xy -0.195299 -2.186538)
(xy -0.228875 -2.183698)
(xy -0.23622 -2.182854)
(xy -0.382745 -2.160582)
(xy -0.523328 -2.130582)
(xy -0.658943 -2.092569)
(xy -0.790564 -2.046257)
(xy -0.919163 -1.991362)
(xy -0.964266 -1.969759)
(xy -1.096282 -1.899126)
(xy -1.22237 -1.820323)
(xy -1.342254 -1.733626)
(xy -1.455655 -1.63931)
(xy -1.562296 -1.53765)
(xy -1.6619 -1.428923)
(xy -1.754187 -1.313403)
(xy -1.838882 -1.191365)
(xy -1.915706 -1.063084)
(xy -1.956344 -0.986333)
(xy -2.015076 -0.860175)
(xy -2.065309 -0.730825)
(xy -2.107295 -0.597436)
(xy -2.141284 -0.459165)
(xy -2.167528 -0.315164)
(xy -2.177756 -0.2413)
(xy -2.180612 -0.211706)
(xy -2.182963 -0.173976)
(xy -2.184799 -0.129988)
(xy -2.186109 -0.081618)
(xy -2.186882 -0.030745)
(xy -2.187107 0.020755)
(xy -2.186774 0.071004)
(xy -2.18587 0.118124)
(xy -2.184387 0.160239)
(xy -2.182311 0.19547)
(xy -2.180401 0.2159)
(xy -2.158607 0.365646)
(xy -2.128689 0.509747)
(xy -2.090438 0.648929)
(xy -2.043646 0.783916)
(xy -1.988104 0.915434)
(xy -1.965637 0.96266)
(xy -1.896066 1.093195)
(xy -1.818274 1.218024)
(xy -1.732656 1.336829)
(xy -1.639607 1.44929)
(xy -1.53952 1.555089)
(xy -1.43279 1.653905)
(xy -1.319812 1.745419)
(xy -1.20098 1.829313)
(xy -1.076689 1.905266)
(xy -0.947332 1.97296)
(xy -0.813305 2.032076)
(xy -0.675002 2.082293)
(xy -0.532817 2.123293)
(xy -0.531394 2.123651)
(xy -0.471984 2.137457)
(xy -0.406355 2.150771)
(xy -0.338443 2.162886)
(xy -0.272188 2.173097)
(xy -0.2159 2.180222)
(xy -0.187981 2.182531)
(xy -0.151827 2.184353)
(xy -0.109351 2.185688)
(xy -0.062467 2.186537)
(xy -0.013086 2.1869)
(xy -0.013086 2.201918)
(xy -0.063802 2.201596)
(xy -0.117212 2.200475)
(xy -0.165064 2.198435)
(xy -0.209653 2.195292)
(xy -0.253272 2.19086)
(xy -0.298216 2.184955)
(xy -0.346777 2.177391)
(xy -0.382013 2.171385)
(xy -0.525853 2.14113)
(xy -0.666817 2.101335)
(xy -0.804445 2.052317)
(xy -0.938277 1.994392)
(xy -1.067852 1.927879)
(xy -1.192709 1.853093)
(xy -1.312389 1.770351)
(xy -1.426431 1.679971)
(xy -1.534373 1.582269)
(xy -1.635757 1.477563)
(xy -1.730121 1.366168)
(xy -1.817005 1.248402)
(xy -1.891048 1.13284)
(xy -1.963247 1.002324)
(xy -2.02602 0.868587)
(xy -2.079475 0.731304)
(xy -2.12372 0.590149)
(xy -2.158863 0.444795)
(xy -2.185012 0.294917)
(xy -2.195557 0.21082)
(xy -2.198189 0.178754)
(xy -2.200154 0.138546)
(xy -2.201464 0.092192)
(xy -2.20213 0.041687)
(xy -2.202165 -0.010972)
(xy -2.201579 -0.06379)
)
(stroke (width 0.01) (type solid)) (fill solid) (layer "Dwgs.User") (tstamp fa9b5734-4f81-454b-946b-2eb912abd2f9))
(fp_circle (center 0 0) (end 3.5 0)
(stroke (width 0.05) (type default)) (fill none) (layer "B.CrtYd") (tstamp e11ea007-b1dc-4634-945e-feb7cf04afdb))
(fp_circle (center 0 0) (end 3.5 0)
(stroke (width 0.05) (type default)) (fill none) (layer "F.CrtYd") (tstamp 976ffcd7-2d0b-4924-910e-64fab510282d))
(pad "MH3" thru_hole circle (at 0 0 180) (size 4.4 4.4) (drill 3.1) (layers *.Cu *.Mask)
(net 9 "unconnected-(MH3-PadMH3)") (pinfunction "MH3") (pintype "input") (tstamp 0059f640-c0f9-453d-bcfb-87a05b4ace3b))
(zone (net 0) (net_name "") (layers F&B.Cu) (tstamp 93da45f7-0b7a-4558-a38a-7d2ae7025078) (hatch edge 0.508)
(connect_pads (clearance 0))
(min_thickness 0.254) (filled_areas_thickness no)
(keepout (tracks allowed) (vias allowed) (pads allowed ) (copperpour not_allowed) (footprints allowed))
(fill (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 146.994916 100)
(xy 147.015235 100.348869)
(xy 147.075918 100.69302)
(xy 147.176145 101.027799)
(xy 147.314559 101.348679)
(xy 147.489289 101.651321)
(xy 147.697972 101.931631)
(xy 147.937786 102.185819)
(xy 148.205488 102.410448)
(xy 148.497458 102.602479)
(xy 148.809747 102.759317)
(xy 149.138132 102.878839)
(xy 149.478173 102.95943)
(xy 149.82527 103)
(xy 150.17473 103)
(xy 150.521827 102.95943)
(xy 150.861868 102.878839)
(xy 151.190253 102.759317)
(xy 151.502542 102.602479)
(xy 151.794512 102.410448)
(xy 152.062214 102.185819)
(xy 152.302028 101.931631)
(xy 152.510711 101.651321)
(xy 152.685441 101.348679)
(xy 152.823855 101.027799)
(xy 152.924082 100.69302)
(xy 152.984765 100.348869)
(xy 153.005084 100)
(xy 152.984765 99.651131)
(xy 152.924082 99.30698)
(xy 152.823855 98.972201)
(xy 152.685441 98.651321)
(xy 152.510711 98.348679)
(xy 152.302028 98.068369)
(xy 152.062214 97.814181)
(xy 151.794512 97.589552)
(xy 151.502542 97.397521)
(xy 151.190253 97.240683)
(xy 150.861868 97.121161)
(xy 150.521827 97.04057)
(xy 150.17473 97)
(xy 149.82527 97)
(xy 149.478173 97.04057)
(xy 149.138132 97.121161)
(xy 148.809747 97.240683)
(xy 148.497458 97.397521)
(xy 148.205488 97.589552)
(xy 147.937786 97.814181)
(xy 147.697972 98.068369)
(xy 147.489289 98.348679)
(xy 147.314559 98.651321)
(xy 147.176145 98.972201)
(xy 147.075918 99.30698)
(xy 147.015235 99.651131)
)
)
)
(group "" (id fdeff492-a857-4e43-afcd-94843d630125)
(members
a99ec019-27a8-473f-9db1-dade65ec9c7d
e6910ecb-adb1-4e71-8fbc-270e33d0c375
)
)
(group "" (id 77203253-97cf-4dfc-a2ba-272f7c75a49b)
(members
4c8e4099-34b7-4331-8c39-e8be50450a09
78cc53ad-3738-45b1-95bb-ccf208317901
)
)
)
(footprint "Jacdac:jacdac_hole_DATA_notched_MH1" (layer "F.Cu")
(tstamp 8ef840d0-868e-44fc-88b5-e11fdeeb0b22)
(at 150 80 90)
(property "Sheetfile" "jacdac_EC30_20x20_template.kicad_sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(property "ki_description" "Mounting Hole with connection")
(property "ki_keywords" "mounting hole")
(path "/bd2e92a0-8e6a-4ea0-88fb-c20a963ad330")
(attr through_hole)
(fp_text reference "MH1" (at 0.6 -4.6 90) (layer "Cmts.User") hide
(effects (font (size 1.27 1.27) (thickness 0.15)))
(tstamp 1ae63556-e127-4bbe-a3b9-0a5375276973)
)
(fp_text value "jacdac_hole_DATA_MH1" (at 0.6 -3 90) (layer "Cmts.User") hide