-
Notifications
You must be signed in to change notification settings - Fork 2
/
OpenC16JoyAdapter.kicad_pcb
1874 lines (1855 loc) · 175 KB
/
OpenC16JoyAdapter.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 4) (host pcbnew 4.0.7)
(general
(links 37)
(no_connects 0)
(area 127 82.667499 183.11 142.146001)
(thickness 1.6)
(drawings 15)
(tracks 182)
(zones 0)
(modules 9)
(nets 21)
)
(page A4)
(title_block
(title "OpenC16JoyAdapter: Open Joystick Adapter for C-16 and Plus/4")
(date 2018-01-05)
(rev 2)
(company SukkoPera)
(comment 1 http://www.commodore.ca/manuals/funet/cbm/documents/projects/interfaces/plus4joy/plus4joy.html)
(comment 2 "Based on work by Levente Hársfalvi")
)
(layers
(0 F.Cu signal)
(31 B.Cu signal)
(36 B.SilkS user)
(37 F.SilkS user)
(38 B.Mask user)
(39 F.Mask user)
(44 Edge.Cuts user)
(49 F.Fab user)
)
(setup
(last_trace_width 0.25)
(trace_clearance 0.2)
(zone_clearance 0.1)
(zone_45_only no)
(trace_min 0.2)
(segment_width 0.2)
(edge_width 0.15)
(via_size 0.6)
(via_drill 0.4)
(via_min_size 0.4)
(via_min_drill 0.3)
(uvia_size 0.3)
(uvia_drill 0.1)
(uvias_allowed no)
(uvia_min_size 0.2)
(uvia_min_drill 0.1)
(pcb_text_width 0.3)
(pcb_text_size 1.5 1.5)
(mod_edge_width 0.15)
(mod_text_size 1 1)
(mod_text_width 0.15)
(pad_size 1.524 1.524)
(pad_drill 0.762)
(pad_to_mask_clearance 0)
(aux_axis_origin 0 0)
(visible_elements FFFFFF7F)
(pcbplotparams
(layerselection 0x010f0_80000001)
(usegerberextensions false)
(excludeedgelayer true)
(linewidth 0.100000)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15)
(hpglpenoverlay 2)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(padsonsilk false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory gerbers/))
)
(net 0 "")
(net 1 +5V)
(net 2 GND)
(net 3 "Net-(J1-Pad5)")
(net 4 /md_left)
(net 5 /md_right)
(net 6 /md_down)
(net 7 /md_up)
(net 8 /md_b_~a)
(net 9 /c16_up)
(net 10 /c16_down)
(net 11 /c16_left)
(net 12 /c16_right)
(net 13 /c16_fire)
(net 14 /c16_select)
(net 15 "Net-(P4-Pad2)")
(net 16 "Net-(RN2-Pad1)")
(net 17 "Net-(RN2-Pad3)")
(net 18 "Net-(RN2-Pad5)")
(net 19 "Net-(RN2-Pad7)")
(net 20 "Net-(RN2-Pad9)")
(net_class Default "This is the default net class."
(clearance 0.2)
(trace_width 0.25)
(via_dia 0.6)
(via_drill 0.4)
(uvia_dia 0.3)
(uvia_drill 0.1)
(add_net /c16_down)
(add_net /c16_fire)
(add_net /c16_left)
(add_net /c16_right)
(add_net /c16_select)
(add_net /c16_up)
(add_net /md_b_~a)
(add_net /md_down)
(add_net /md_left)
(add_net /md_right)
(add_net /md_up)
(add_net "Net-(P4-Pad2)")
(add_net "Net-(RN2-Pad1)")
(add_net "Net-(RN2-Pad3)")
(add_net "Net-(RN2-Pad5)")
(add_net "Net-(RN2-Pad7)")
(add_net "Net-(RN2-Pad9)")
)
(net_class Power ""
(clearance 0.2)
(trace_width 0.4)
(via_dia 0.8)
(via_drill 0.6)
(uvia_dia 0.3)
(uvia_drill 0.1)
(add_net +5V)
(add_net GND)
(add_net "Net-(J1-Pad5)")
)
(module conn_d-sub:DB_9M (layer F.Cu) (tedit 59CAD9E2) (tstamp 59640901)
(at 147.32 93.472 180)
(descr "D-SUB 9 pin plug, Tyco P/N 4-338168-2")
(path /59640177)
(fp_text reference J1 (at 0 7.62 180) (layer F.SilkS) hide
(effects (font (thickness 0.3048)))
)
(fp_text value "DB9 Male" (at 0 -1.27 180) (layer F.SilkS)
(effects (font (thickness 0.3048)))
)
(fp_line (start 10.541 1.524) (end 10.541 -5.08) (layer F.SilkS) (width 0.381))
(fp_line (start 10.541 -5.08) (end 10.922 -7.112) (layer F.SilkS) (width 0.381))
(fp_line (start 10.922 -7.112) (end 14.097 -7.112) (layer F.SilkS) (width 0.381))
(fp_line (start 14.097 -7.112) (end 14.605 -4.953) (layer F.SilkS) (width 0.381))
(fp_line (start 14.605 -4.953) (end 14.605 1.524) (layer F.SilkS) (width 0.381))
(fp_line (start -10.922 -7.112) (end -10.414 -4.953) (layer F.SilkS) (width 0.381))
(fp_line (start -10.414 -4.953) (end -10.414 1.524) (layer F.SilkS) (width 0.381))
(fp_line (start -14.732 1.524) (end -14.732 -4.826) (layer F.SilkS) (width 0.381))
(fp_line (start -14.732 -4.826) (end -14.097 -7.112) (layer F.SilkS) (width 0.381))
(fp_line (start -14.097 -7.112) (end -10.922 -7.112) (layer F.SilkS) (width 0.381))
(fp_line (start 14.859 1.524) (end 10.287 1.524) (layer F.SilkS) (width 0.381))
(fp_line (start 10.287 1.524) (end 10.287 1.778) (layer F.SilkS) (width 0.381))
(fp_line (start 10.287 1.778) (end 14.859 1.778) (layer F.SilkS) (width 0.381))
(fp_line (start 14.859 1.778) (end 14.859 1.524) (layer F.SilkS) (width 0.381))
(fp_line (start -10.16 1.524) (end -14.986 1.524) (layer F.SilkS) (width 0.381))
(fp_line (start -14.986 1.524) (end -14.986 1.778) (layer F.SilkS) (width 0.381))
(fp_line (start -14.986 1.778) (end -10.16 1.778) (layer F.SilkS) (width 0.381))
(fp_line (start -10.16 1.778) (end -10.16 1.524) (layer F.SilkS) (width 0.381))
(fp_line (start 11.43 1.905) (end 11.43 -0.635) (layer F.SilkS) (width 0.381))
(fp_line (start 11.43 -0.635) (end 13.716 -0.635) (layer F.SilkS) (width 0.381))
(fp_line (start 13.716 -0.635) (end 13.716 1.905) (layer F.SilkS) (width 0.381))
(fp_line (start -13.716 1.905) (end -13.716 -0.635) (layer F.SilkS) (width 0.381))
(fp_line (start -13.716 -0.635) (end -11.43 -0.635) (layer F.SilkS) (width 0.381))
(fp_line (start -11.43 -0.635) (end -11.43 1.905) (layer F.SilkS) (width 0.381))
(fp_line (start 9.017 1.905) (end 9.017 -10.414) (layer F.SilkS) (width 0.381))
(fp_line (start -9.017 1.905) (end -9.017 -10.414) (layer F.SilkS) (width 0.381))
(fp_line (start -15.494 1.905) (end 15.494 1.905) (layer F.SilkS) (width 0.381))
(fp_line (start -11.049 4.572) (end -11.049 10.414) (layer F.SilkS) (width 0.381))
(fp_line (start -14.097 4.572) (end -14.097 10.414) (layer F.SilkS) (width 0.381))
(fp_line (start 14.097 4.572) (end 14.097 10.414) (layer F.SilkS) (width 0.381))
(fp_line (start 11.049 4.572) (end 11.049 10.414) (layer F.SilkS) (width 0.381))
(fp_line (start 10.033 4.572) (end 10.033 10.414) (layer F.SilkS) (width 0.381))
(fp_line (start 10.033 10.414) (end 15.113 10.414) (layer F.SilkS) (width 0.381))
(fp_line (start 15.113 10.414) (end 15.113 4.699) (layer F.SilkS) (width 0.381))
(fp_line (start -15.113 4.572) (end -15.113 10.414) (layer F.SilkS) (width 0.381))
(fp_line (start -15.113 10.414) (end -10.033 10.414) (layer F.SilkS) (width 0.381))
(fp_line (start -10.033 10.414) (end -10.033 4.699) (layer F.SilkS) (width 0.381))
(fp_line (start -8.128 4.572) (end -8.128 10.414) (layer F.SilkS) (width 0.381))
(fp_line (start -8.128 10.414) (end 8.128 10.414) (layer F.SilkS) (width 0.381))
(fp_line (start 8.128 10.414) (end 8.128 4.572) (layer F.SilkS) (width 0.381))
(fp_line (start -15.494 4.572) (end 15.494 4.572) (layer F.SilkS) (width 0.381))
(fp_line (start 15.494 4.572) (end 15.494 -10.414) (layer F.SilkS) (width 0.381))
(fp_line (start 15.494 -10.414) (end -15.494 -10.414) (layer F.SilkS) (width 0.381))
(fp_line (start -15.494 -10.414) (end -15.494 4.572) (layer F.SilkS) (width 0.381))
(pad "" thru_hole circle (at 12.49426 -7.112 180) (size 5.00126 5.00126) (drill 3.2004) (layers *.Cu *.Mask))
(pad 3 thru_hole circle (at 0 -8.382 180) (size 1.50114 1.50114) (drill 0.8001) (layers *.Cu *.Mask)
(net 4 /md_left))
(pad 4 thru_hole circle (at 2.77114 -8.382 180) (size 1.50114 1.50114) (drill 0.8001) (layers *.Cu *.Mask)
(net 5 /md_right))
(pad 5 thru_hole circle (at 5.53974 -8.382 180) (size 1.50114 1.50114) (drill 0.8001) (layers *.Cu *.Mask)
(net 3 "Net-(J1-Pad5)"))
(pad 2 thru_hole circle (at -2.77114 -8.382 180) (size 1.50114 1.50114) (drill 0.8001) (layers *.Cu *.Mask)
(net 6 /md_down))
(pad 1 thru_hole circle (at -5.53974 -8.382 180) (size 1.50114 1.50114) (drill 0.8001) (layers *.Cu *.Mask)
(net 7 /md_up))
(pad 6 thru_hole circle (at -4.15544 -5.842 180) (size 1.50114 1.50114) (drill 0.8001) (layers *.Cu *.Mask)
(net 8 /md_b_~a))
(pad 7 thru_hole circle (at -1.3843 -5.842 180) (size 1.50114 1.50114) (drill 0.8001) (layers *.Cu *.Mask)
(net 1 +5V))
(pad 8 thru_hole circle (at 1.3843 -5.842 180) (size 1.50114 1.50114) (drill 0.8001) (layers *.Cu *.Mask)
(net 2 GND))
(pad 9 thru_hole circle (at 4.15544 -5.842 180) (size 1.50114 1.50114) (drill 0.8001) (layers *.Cu *.Mask))
(pad "" thru_hole circle (at -12.49426 -7.112 180) (size 5.00126 5.00126) (drill 3.2004) (layers *.Cu *.Mask))
(model /home/sukko/Documents/kicad/lib/kicad_libs/modules/packages3d/walter/conn_d-sub/db_9m.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module w_logo:Logo_copper_OSHW_6x6mm (layer B.Cu) (tedit 0) (tstamp 59CADBE6)
(at 147.32 94.742 180)
(descr "Open Hardware Logo, 6x6mm")
(path /59CADB6A)
(fp_text reference P3 (at 0 0 180) (layer B.SilkS) hide
(effects (font (size 0.22606 0.22606) (thickness 0.04318)) (justify mirror))
)
(fp_text value OSHW_LOGO_PLACEHOLDER (at 0 -0.3 180) (layer B.SilkS) hide
(effects (font (size 0.22606 0.22606) (thickness 0.04318)) (justify mirror))
)
(fp_line (start 2.16 -2.62) (end 2.16 -3.08) (layer B.Cu) (width 0.075))
(fp_line (start 2.25 -2.62) (end 2.3 -2.62) (layer B.Cu) (width 0.075))
(fp_line (start 2.2 -2.65) (end 2.25 -2.62) (layer B.Cu) (width 0.075))
(fp_line (start 2.18 -2.67) (end 2.2 -2.65) (layer B.Cu) (width 0.075))
(fp_line (start 2.16 -2.74) (end 2.18 -2.67) (layer B.Cu) (width 0.075))
(fp_line (start 2.6 -3.08) (end 2.65 -3.05) (layer B.Cu) (width 0.075))
(fp_line (start 2.5 -3.08) (end 2.6 -3.08) (layer B.Cu) (width 0.075))
(fp_line (start 2.46 -3.05) (end 2.5 -3.08) (layer B.Cu) (width 0.075))
(fp_line (start 2.44 -2.98) (end 2.46 -3.05) (layer B.Cu) (width 0.075))
(fp_line (start 2.44 -2.71) (end 2.44 -2.98) (layer B.Cu) (width 0.075))
(fp_line (start 2.47 -2.65) (end 2.44 -2.71) (layer B.Cu) (width 0.075))
(fp_line (start 2.51 -2.62) (end 2.47 -2.65) (layer B.Cu) (width 0.075))
(fp_line (start 2.61 -2.62) (end 2.51 -2.62) (layer B.Cu) (width 0.075))
(fp_line (start 2.65 -2.66) (end 2.61 -2.62) (layer B.Cu) (width 0.075))
(fp_line (start 2.67 -2.73) (end 2.65 -2.66) (layer B.Cu) (width 0.075))
(fp_line (start 2.67 -2.85) (end 2.67 -2.73) (layer B.Cu) (width 0.075))
(fp_line (start 2.67 -2.85) (end 2.44 -2.85) (layer B.Cu) (width 0.075))
(fp_line (start 1.92 -2.71) (end 1.92 -3.08) (layer B.Cu) (width 0.075))
(fp_line (start 1.89 -2.65) (end 1.92 -2.71) (layer B.Cu) (width 0.075))
(fp_line (start 1.85 -2.62) (end 1.89 -2.65) (layer B.Cu) (width 0.075))
(fp_line (start 1.75 -2.62) (end 1.85 -2.62) (layer B.Cu) (width 0.075))
(fp_line (start 1.7 -2.65) (end 1.75 -2.62) (layer B.Cu) (width 0.075))
(fp_line (start 1.76 -2.81) (end 1.71 -2.84) (layer B.Cu) (width 0.075))
(fp_line (start 1.88 -2.81) (end 1.76 -2.81) (layer B.Cu) (width 0.075))
(fp_line (start 1.92 -2.78) (end 1.88 -2.81) (layer B.Cu) (width 0.075))
(fp_line (start 1.87 -3.08) (end 1.92 -3.04) (layer B.Cu) (width 0.075))
(fp_line (start 1.75 -3.08) (end 1.87 -3.08) (layer B.Cu) (width 0.075))
(fp_line (start 1.7 -3.04) (end 1.75 -3.08) (layer B.Cu) (width 0.075))
(fp_line (start 1.68 -2.98) (end 1.7 -3.04) (layer B.Cu) (width 0.075))
(fp_line (start 1.68 -2.91) (end 1.68 -2.98) (layer B.Cu) (width 0.075))
(fp_line (start 1.71 -2.84) (end 1.68 -2.91) (layer B.Cu) (width 0.075))
(fp_line (start 1.13 -2.62) (end 1.23 -3.08) (layer B.Cu) (width 0.075))
(fp_line (start 1.23 -3.08) (end 1.32 -2.74) (layer B.Cu) (width 0.075))
(fp_line (start 1.32 -2.74) (end 1.42 -3.08) (layer B.Cu) (width 0.075))
(fp_line (start 1.42 -3.08) (end 1.52 -2.62) (layer B.Cu) (width 0.075))
(fp_line (start 0.94 -3.05) (end 0.9 -3.08) (layer B.Cu) (width 0.075))
(fp_line (start 0.9 -3.08) (end 0.79 -3.08) (layer B.Cu) (width 0.075))
(fp_line (start 0.79 -3.08) (end 0.75 -3.05) (layer B.Cu) (width 0.075))
(fp_line (start 0.75 -3.05) (end 0.73 -3.02) (layer B.Cu) (width 0.075))
(fp_line (start 0.73 -3.02) (end 0.7 -2.95) (layer B.Cu) (width 0.075))
(fp_line (start 0.7 -2.95) (end 0.7 -2.75) (layer B.Cu) (width 0.075))
(fp_line (start 0.7 -2.75) (end 0.73 -2.68) (layer B.Cu) (width 0.075))
(fp_line (start 0.73 -2.68) (end 0.75 -2.65) (layer B.Cu) (width 0.075))
(fp_line (start 0.75 -2.65) (end 0.81 -2.61) (layer B.Cu) (width 0.075))
(fp_line (start 0.81 -2.61) (end 0.88 -2.61) (layer B.Cu) (width 0.075))
(fp_line (start 0.88 -2.61) (end 0.94 -2.65) (layer B.Cu) (width 0.075))
(fp_line (start 0.94 -2.38) (end 0.94 -3.08) (layer B.Cu) (width 0.075))
(fp_line (start 0.42 -2.74) (end 0.44 -2.67) (layer B.Cu) (width 0.075))
(fp_line (start 0.44 -2.67) (end 0.46 -2.65) (layer B.Cu) (width 0.075))
(fp_line (start 0.46 -2.65) (end 0.51 -2.62) (layer B.Cu) (width 0.075))
(fp_line (start 0.51 -2.62) (end 0.56 -2.62) (layer B.Cu) (width 0.075))
(fp_line (start 0.42 -2.62) (end 0.42 -3.08) (layer B.Cu) (width 0.075))
(fp_line (start -0.03 -2.84) (end -0.06 -2.91) (layer B.Cu) (width 0.075))
(fp_line (start -0.06 -2.91) (end -0.06 -2.98) (layer B.Cu) (width 0.075))
(fp_line (start -0.06 -2.98) (end -0.04 -3.04) (layer B.Cu) (width 0.075))
(fp_line (start -0.04 -3.04) (end 0.01 -3.08) (layer B.Cu) (width 0.075))
(fp_line (start 0.01 -3.08) (end 0.13 -3.08) (layer B.Cu) (width 0.075))
(fp_line (start 0.13 -3.08) (end 0.18 -3.04) (layer B.Cu) (width 0.075))
(fp_line (start 0.18 -2.78) (end 0.14 -2.81) (layer B.Cu) (width 0.075))
(fp_line (start 0.14 -2.81) (end 0.02 -2.81) (layer B.Cu) (width 0.075))
(fp_line (start 0.02 -2.81) (end -0.03 -2.84) (layer B.Cu) (width 0.075))
(fp_line (start -0.04 -2.65) (end 0.01 -2.62) (layer B.Cu) (width 0.075))
(fp_line (start 0.01 -2.62) (end 0.11 -2.62) (layer B.Cu) (width 0.075))
(fp_line (start 0.11 -2.62) (end 0.15 -2.65) (layer B.Cu) (width 0.075))
(fp_line (start 0.15 -2.65) (end 0.18 -2.71) (layer B.Cu) (width 0.075))
(fp_line (start 0.18 -2.71) (end 0.18 -3.08) (layer B.Cu) (width 0.075))
(fp_line (start -0.49 -2.69) (end -0.47 -2.65) (layer B.Cu) (width 0.075))
(fp_line (start -0.47 -2.65) (end -0.42 -2.62) (layer B.Cu) (width 0.075))
(fp_line (start -0.42 -2.62) (end -0.34 -2.62) (layer B.Cu) (width 0.075))
(fp_line (start -0.34 -2.62) (end -0.3 -2.65) (layer B.Cu) (width 0.075))
(fp_line (start -0.3 -2.65) (end -0.28 -2.71) (layer B.Cu) (width 0.075))
(fp_line (start -0.28 -2.71) (end -0.28 -3.08) (layer B.Cu) (width 0.075))
(fp_line (start -0.49 -2.38) (end -0.49 -3.08) (layer B.Cu) (width 0.075))
(fp_line (start -1.54 -2.85) (end -1.77 -2.85) (layer B.Cu) (width 0.075))
(fp_line (start -1.32 -2.68) (end -1.3 -2.65) (layer B.Cu) (width 0.075))
(fp_line (start -1.3 -2.65) (end -1.26 -2.62) (layer B.Cu) (width 0.075))
(fp_line (start -1.26 -2.62) (end -1.17 -2.62) (layer B.Cu) (width 0.075))
(fp_line (start -1.17 -2.62) (end -1.13 -2.65) (layer B.Cu) (width 0.075))
(fp_line (start -1.13 -2.65) (end -1.11 -2.71) (layer B.Cu) (width 0.075))
(fp_line (start -1.11 -2.71) (end -1.11 -3.08) (layer B.Cu) (width 0.075))
(fp_line (start -1.32 -2.62) (end -1.32 -3.08) (layer B.Cu) (width 0.075))
(fp_line (start -1.54 -2.85) (end -1.54 -2.73) (layer B.Cu) (width 0.075))
(fp_line (start -1.54 -2.73) (end -1.56 -2.66) (layer B.Cu) (width 0.075))
(fp_line (start -1.56 -2.66) (end -1.6 -2.62) (layer B.Cu) (width 0.075))
(fp_line (start -1.6 -2.62) (end -1.7 -2.62) (layer B.Cu) (width 0.075))
(fp_line (start -1.7 -2.62) (end -1.74 -2.65) (layer B.Cu) (width 0.075))
(fp_line (start -1.74 -2.65) (end -1.77 -2.71) (layer B.Cu) (width 0.075))
(fp_line (start -1.77 -2.71) (end -1.77 -2.98) (layer B.Cu) (width 0.075))
(fp_line (start -1.77 -2.98) (end -1.75 -3.05) (layer B.Cu) (width 0.075))
(fp_line (start -1.75 -3.05) (end -1.71 -3.08) (layer B.Cu) (width 0.075))
(fp_line (start -1.71 -3.08) (end -1.61 -3.08) (layer B.Cu) (width 0.075))
(fp_line (start -1.61 -3.08) (end -1.56 -3.05) (layer B.Cu) (width 0.075))
(fp_line (start -2.2 -2.65) (end -2.16 -2.62) (layer B.Cu) (width 0.075))
(fp_line (start -2.16 -2.62) (end -2.06 -2.62) (layer B.Cu) (width 0.075))
(fp_line (start -2.06 -2.62) (end -2.02 -2.65) (layer B.Cu) (width 0.075))
(fp_line (start -2.02 -2.65) (end -1.99 -2.68) (layer B.Cu) (width 0.075))
(fp_line (start -1.99 -2.68) (end -1.97 -2.74) (layer B.Cu) (width 0.075))
(fp_line (start -1.97 -2.74) (end -1.97 -2.96) (layer B.Cu) (width 0.075))
(fp_line (start -1.97 -2.96) (end -1.99 -3.02) (layer B.Cu) (width 0.075))
(fp_line (start -1.99 -3.02) (end -2.01 -3.05) (layer B.Cu) (width 0.075))
(fp_line (start -2.01 -3.05) (end -2.05 -3.08) (layer B.Cu) (width 0.075))
(fp_line (start -2.05 -3.08) (end -2.15 -3.08) (layer B.Cu) (width 0.075))
(fp_line (start -2.15 -3.08) (end -2.2 -3.05) (layer B.Cu) (width 0.075))
(fp_line (start -2.2 -3.32) (end -2.2 -2.62) (layer B.Cu) (width 0.075))
(fp_line (start -2.51 -2.62) (end -2.59 -2.62) (layer B.Cu) (width 0.075))
(fp_line (start -2.59 -2.62) (end -2.63 -2.65) (layer B.Cu) (width 0.075))
(fp_line (start -2.63 -2.65) (end -2.65 -2.68) (layer B.Cu) (width 0.075))
(fp_line (start -2.65 -2.68) (end -2.68 -2.75) (layer B.Cu) (width 0.075))
(fp_line (start -2.59 -3.08) (end -2.51 -3.08) (layer B.Cu) (width 0.075))
(fp_line (start -2.51 -3.08) (end -2.46 -3.05) (layer B.Cu) (width 0.075))
(fp_line (start -2.46 -3.05) (end -2.44 -3.02) (layer B.Cu) (width 0.075))
(fp_line (start -2.44 -3.02) (end -2.42 -2.95) (layer B.Cu) (width 0.075))
(fp_line (start -2.42 -2.95) (end -2.42 -2.75) (layer B.Cu) (width 0.075))
(fp_line (start -2.42 -2.75) (end -2.44 -2.69) (layer B.Cu) (width 0.075))
(fp_line (start -2.44 -2.69) (end -2.46 -2.66) (layer B.Cu) (width 0.075))
(fp_line (start -2.46 -2.66) (end -2.51 -2.62) (layer B.Cu) (width 0.075))
(fp_line (start -2.68 -2.75) (end -2.68 -2.95) (layer B.Cu) (width 0.075))
(fp_line (start -2.68 -2.95) (end -2.66 -3.01) (layer B.Cu) (width 0.075))
(fp_line (start -2.66 -3.01) (end -2.64 -3.04) (layer B.Cu) (width 0.075))
(fp_line (start -2.64 -3.04) (end -2.59 -3.08) (layer B.Cu) (width 0.075))
(fp_poly (pts (xy -1.51384 -2.24536) (xy -1.48844 -2.23012) (xy -1.43002 -2.19456) (xy -1.3462 -2.13868)
(xy -1.24714 -2.07264) (xy -1.14808 -2.0066) (xy -1.0668 -1.95326) (xy -1.01092 -1.91516)
(xy -0.98552 -1.90246) (xy -0.97282 -1.90754) (xy -0.9271 -1.9304) (xy -0.85852 -1.96596)
(xy -0.81788 -1.98628) (xy -0.75692 -2.01168) (xy -0.7239 -2.0193) (xy -0.71882 -2.00914)
(xy -0.69596 -1.96088) (xy -0.6604 -1.8796) (xy -0.61468 -1.77038) (xy -0.5588 -1.64338)
(xy -0.50292 -1.50876) (xy -0.4445 -1.36906) (xy -0.38862 -1.23444) (xy -0.34036 -1.11506)
(xy -0.29972 -1.01854) (xy -0.27432 -0.94996) (xy -0.26416 -0.92202) (xy -0.2667 -0.9144)
(xy -0.29972 -0.88392) (xy -0.35306 -0.84328) (xy -0.47244 -0.74676) (xy -0.58928 -0.60198)
(xy -0.6604 -0.43688) (xy -0.68326 -0.25146) (xy -0.66294 -0.08128) (xy -0.5969 0.08128)
(xy -0.4826 0.2286) (xy -0.3429 0.33782) (xy -0.18034 0.4064) (xy 0 0.42926)
(xy 0.17272 0.40894) (xy 0.34036 0.3429) (xy 0.48768 0.23114) (xy 0.55118 0.16002)
(xy 0.63754 0.01016) (xy 0.6858 -0.14732) (xy 0.69088 -0.18796) (xy 0.68326 -0.36322)
(xy 0.63246 -0.5334) (xy 0.53848 -0.68326) (xy 0.40894 -0.80772) (xy 0.3937 -0.81788)
(xy 0.33528 -0.8636) (xy 0.29464 -0.89408) (xy 0.26416 -0.91948) (xy 0.48768 -1.45796)
(xy 0.52324 -1.54178) (xy 0.5842 -1.6891) (xy 0.63754 -1.8161) (xy 0.68072 -1.9177)
(xy 0.7112 -1.98374) (xy 0.7239 -2.01168) (xy 0.7239 -2.01422) (xy 0.74422 -2.01676)
(xy 0.78486 -2.00152) (xy 0.86106 -1.96596) (xy 0.90932 -1.94056) (xy 0.96774 -1.91262)
(xy 0.99314 -1.90246) (xy 1.016 -1.91516) (xy 1.06934 -1.95072) (xy 1.15062 -2.00406)
(xy 1.24714 -2.06756) (xy 1.33858 -2.13106) (xy 1.4224 -2.18694) (xy 1.48336 -2.22504)
(xy 1.51384 -2.24282) (xy 1.51892 -2.24282) (xy 1.54432 -2.22758) (xy 1.59258 -2.18694)
(xy 1.66624 -2.11836) (xy 1.77038 -2.01422) (xy 1.78562 -1.99898) (xy 1.87198 -1.91262)
(xy 1.94056 -1.83896) (xy 1.98628 -1.78816) (xy 2.00406 -1.7653) (xy 2.00406 -1.7653)
(xy 1.98882 -1.73482) (xy 1.95072 -1.67386) (xy 1.89484 -1.5875) (xy 1.82626 -1.48844)
(xy 1.64846 -1.22936) (xy 1.74498 -0.98552) (xy 1.77546 -0.90932) (xy 1.81356 -0.82042)
(xy 1.8415 -0.75438) (xy 1.85674 -0.72644) (xy 1.88214 -0.71628) (xy 1.95072 -0.70104)
(xy 2.04724 -0.68072) (xy 2.16154 -0.6604) (xy 2.2733 -0.64008) (xy 2.37236 -0.61976)
(xy 2.44348 -0.60706) (xy 2.4765 -0.59944) (xy 2.48412 -0.59436) (xy 2.49174 -0.57912)
(xy 2.49428 -0.5461) (xy 2.49682 -0.48514) (xy 2.49936 -0.39116) (xy 2.49936 -0.25146)
(xy 2.49936 -0.23622) (xy 2.49682 -0.10668) (xy 2.49428 0) (xy 2.49174 0.06604)
(xy 2.48666 0.09398) (xy 2.48666 0.09398) (xy 2.45618 0.1016) (xy 2.38506 0.11684)
(xy 2.286 0.13462) (xy 2.16662 0.15748) (xy 2.159 0.16002) (xy 2.04216 0.18288)
(xy 1.9431 0.2032) (xy 1.87198 0.21844) (xy 1.84404 0.2286) (xy 1.83642 0.23622)
(xy 1.81356 0.28194) (xy 1.78054 0.3556) (xy 1.7399 0.4445) (xy 1.7018 0.53848)
(xy 1.66878 0.6223) (xy 1.64592 0.68326) (xy 1.6383 0.7112) (xy 1.64084 0.71374)
(xy 1.65862 0.74168) (xy 1.69926 0.80264) (xy 1.75514 0.88646) (xy 1.82372 0.98806)
(xy 1.8288 0.99568) (xy 1.89738 1.09474) (xy 1.95326 1.1811) (xy 1.98882 1.23952)
(xy 2.00406 1.26746) (xy 2.00406 1.27) (xy 1.9812 1.30048) (xy 1.9304 1.35636)
(xy 1.85674 1.43256) (xy 1.77038 1.52146) (xy 1.74244 1.54686) (xy 1.64338 1.64338)
(xy 1.57734 1.70434) (xy 1.53416 1.73736) (xy 1.51384 1.74498) (xy 1.51384 1.74498)
(xy 1.48336 1.7272) (xy 1.41986 1.68656) (xy 1.33604 1.62814) (xy 1.23444 1.55956)
(xy 1.22682 1.55448) (xy 1.12776 1.4859) (xy 1.04394 1.43002) (xy 0.98552 1.38938)
(xy 0.95758 1.37414) (xy 0.95504 1.37414) (xy 0.9144 1.38684) (xy 0.84328 1.41224)
(xy 0.75438 1.44526) (xy 0.66294 1.48336) (xy 0.57912 1.51892) (xy 0.51562 1.54686)
(xy 0.48514 1.56464) (xy 0.48514 1.56464) (xy 0.47498 1.6002) (xy 0.4572 1.6764)
(xy 0.43688 1.778) (xy 0.41148 1.89992) (xy 0.40894 1.92024) (xy 0.38608 2.03962)
(xy 0.3683 2.13868) (xy 0.35306 2.20726) (xy 0.34544 2.2352) (xy 0.3302 2.23774)
(xy 0.27178 2.24282) (xy 0.18288 2.24536) (xy 0.07366 2.24536) (xy -0.0381 2.24536)
(xy -0.14732 2.24282) (xy -0.2413 2.24028) (xy -0.30988 2.2352) (xy -0.33782 2.23012)
(xy -0.33782 2.22758) (xy -0.34798 2.18948) (xy -0.36576 2.11582) (xy -0.38608 2.01168)
(xy -0.40894 1.88976) (xy -0.41402 1.8669) (xy -0.43688 1.75006) (xy -0.4572 1.651)
(xy -0.4699 1.58496) (xy -0.47752 1.55702) (xy -0.49022 1.55194) (xy -0.53848 1.53162)
(xy -0.61722 1.4986) (xy -0.71628 1.45796) (xy -0.94488 1.36652) (xy -1.22682 1.55702)
(xy -1.25222 1.5748) (xy -1.35382 1.64338) (xy -1.4351 1.69926) (xy -1.49352 1.73736)
(xy -1.51638 1.75006) (xy -1.51892 1.75006) (xy -1.54686 1.72466) (xy -1.60274 1.67132)
(xy -1.67894 1.59766) (xy -1.76784 1.5113) (xy -1.83134 1.44526) (xy -1.91008 1.36652)
(xy -1.95834 1.31318) (xy -1.98628 1.28016) (xy -1.9939 1.25984) (xy -1.99136 1.2446)
(xy -1.97358 1.21666) (xy -1.93294 1.1557) (xy -1.87452 1.06934) (xy -1.80594 0.97028)
(xy -1.75006 0.88646) (xy -1.6891 0.79248) (xy -1.651 0.72644) (xy -1.63576 0.69342)
(xy -1.64084 0.68072) (xy -1.65862 0.62484) (xy -1.69418 0.54102) (xy -1.73482 0.44196)
(xy -1.83388 0.22098) (xy -1.97866 0.19304) (xy -2.06756 0.17526) (xy -2.18948 0.1524)
(xy -2.30886 0.12954) (xy -2.49174 0.09398) (xy -2.49936 -0.58166) (xy -2.47142 -0.59436)
(xy -2.44348 -0.60198) (xy -2.3749 -0.61722) (xy -2.27838 -0.63754) (xy -2.16154 -0.65786)
(xy -2.06502 -0.67564) (xy -1.96596 -0.69596) (xy -1.89484 -0.70866) (xy -1.86436 -0.71628)
(xy -1.8542 -0.72644) (xy -1.83134 -0.7747) (xy -1.79578 -0.8509) (xy -1.75514 -0.94234)
(xy -1.71704 -1.03632) (xy -1.68148 -1.12522) (xy -1.65862 -1.19126) (xy -1.64846 -1.22428)
(xy -1.66116 -1.25222) (xy -1.69926 -1.31064) (xy -1.7526 -1.39192) (xy -1.82118 -1.49098)
(xy -1.88722 -1.5875) (xy -1.94564 -1.67132) (xy -1.98374 -1.73228) (xy -2.00152 -1.76022)
(xy -1.99136 -1.778) (xy -1.95326 -1.82626) (xy -1.8796 -1.90246) (xy -1.76784 -2.01168)
(xy -1.75006 -2.02946) (xy -1.6637 -2.11328) (xy -1.59004 -2.18186) (xy -1.5367 -2.22758)
(xy -1.51384 -2.24536)) (layer B.Cu) (width 0.00254))
)
(module Resistors_THT:R_Array_SIP6 (layer F.Cu) (tedit 5A49021A) (tstamp 5A459BBB)
(at 140.462 107.442)
(descr "6-pin Resistor SIP pack")
(tags R)
(path /5A45976E)
(fp_text reference RN1 (at 7.62 -2.4) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 10k (at 6.35 -2.032) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.29 -1.25) (end -1.29 1.25) (layer F.Fab) (width 0.1))
(fp_line (start -1.29 1.25) (end 13.99 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 13.99 1.25) (end 13.99 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 13.99 -1.25) (end -1.29 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 -1.25) (end 1.27 1.25) (layer F.Fab) (width 0.1))
(fp_line (start -1.44 -1.4) (end -1.44 1.4) (layer F.SilkS) (width 0.12))
(fp_line (start -1.44 1.4) (end 14.14 1.4) (layer F.SilkS) (width 0.12))
(fp_line (start 14.14 1.4) (end 14.14 -1.4) (layer F.SilkS) (width 0.12))
(fp_line (start 14.14 -1.4) (end -1.44 -1.4) (layer F.SilkS) (width 0.12))
(fp_line (start 1.27 -1.4) (end 1.27 1.4) (layer F.SilkS) (width 0.12))
(fp_line (start -1.7 -1.65) (end -1.7 1.65) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.7 1.65) (end 14.4 1.65) (layer F.CrtYd) (width 0.05))
(fp_line (start 14.4 1.65) (end 14.4 -1.65) (layer F.CrtYd) (width 0.05))
(fp_line (start 14.4 -1.65) (end -1.7 -1.65) (layer F.CrtYd) (width 0.05))
(pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 15 "Net-(P4-Pad2)"))
(pad 2 thru_hole oval (at 2.54 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 5 /md_right))
(pad 3 thru_hole oval (at 5.08 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 4 /md_left))
(pad 4 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 6 /md_down))
(pad 5 thru_hole oval (at 10.16 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 8 /md_b_~a))
(pad 6 thru_hole oval (at 12.7 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 7 /md_up))
(model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Array_SIP6.wrl
(at (xyz 0 0 0))
(scale (xyz 0.39 0.39 0.39))
(rotate (xyz 0 0 0))
)
)
(module pth_circuits:dil_20-300_socket (layer F.Cu) (tedit 5A4A1C87) (tstamp 5A459BCA)
(at 147.32 115.062 180)
(descr "IC, DIL20 x 0,3\", with socket")
(tags DIL)
(path /596400F9)
(fp_text reference U1 (at 0 -6.35 180) (layer F.SilkS) hide
(effects (font (size 1.524 1.143) (thickness 0.28575)))
)
(fp_text value 74LS244 (at 0 0 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 9.652 1.27) (end -9.652 1.27) (layer F.SilkS) (width 0.254))
(fp_line (start -9.652 -1.27) (end 9.652 -1.27) (layer F.SilkS) (width 0.254))
(fp_line (start 12.7 5.08) (end -12.7 5.08) (layer F.SilkS) (width 0.381))
(fp_line (start 13.716 3.302) (end -13.716 3.302) (layer F.SilkS) (width 0.381))
(fp_line (start -12.7 -5.08) (end 12.7 -5.08) (layer F.SilkS) (width 0.381))
(fp_line (start -13.716 -3.302) (end 13.716 -3.302) (layer F.SilkS) (width 0.381))
(fp_line (start -12.7 -1.27) (end -12.7 1.27) (layer F.SilkS) (width 0.381))
(fp_arc (start -12.7 0) (end -12.7 -1.27) (angle 90) (layer F.SilkS) (width 0.254))
(fp_arc (start -12.7 0) (end -11.43 0) (angle 90) (layer F.SilkS) (width 0.254))
(fp_line (start -12.7 1.27) (end -13.716 1.27) (layer F.SilkS) (width 0.381))
(fp_line (start -12.7 -1.27) (end -13.716 -1.27) (layer F.SilkS) (width 0.381))
(fp_line (start -9.652 -1.27) (end -9.652 1.27) (layer F.SilkS) (width 0.254))
(fp_line (start 9.652 1.27) (end 9.652 -1.27) (layer F.SilkS) (width 0.254))
(fp_line (start 12.7 -5.08) (end 12.7 5.08) (layer F.SilkS) (width 0.381))
(fp_line (start -12.7 5.08) (end -12.7 -5.08) (layer F.SilkS) (width 0.381))
(fp_line (start 13.716 -3.302) (end 13.716 3.302) (layer F.SilkS) (width 0.381))
(fp_line (start -13.716 3.302) (end -13.716 -3.302) (layer F.SilkS) (width 0.381))
(pad 1 thru_hole oval (at -11.43 3.81 180) (size 1.50114 2.19964) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 14 /c16_select))
(pad 2 thru_hole oval (at -8.89 3.81 180) (size 1.50114 2.19964) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 7 /md_up))
(pad 3 thru_hole oval (at -6.35 3.81 180) (size 1.50114 2.19964) (drill 0.8001) (layers *.Cu *.Mask F.SilkS))
(pad 4 thru_hole oval (at -3.81 3.81 180) (size 1.50114 2.19964) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 8 /md_b_~a))
(pad 5 thru_hole oval (at -1.27 3.81 180) (size 1.50114 2.19964) (drill 0.8001) (layers *.Cu *.Mask F.SilkS))
(pad 6 thru_hole oval (at 1.27 3.81 180) (size 1.50114 2.19964) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 6 /md_down))
(pad 7 thru_hole oval (at 3.81 3.81 180) (size 1.50114 2.19964) (drill 0.8001) (layers *.Cu *.Mask F.SilkS))
(pad 8 thru_hole oval (at 6.35 3.81 180) (size 1.50114 2.19964) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 4 /md_left))
(pad 9 thru_hole oval (at 8.89 3.81 180) (size 1.50114 2.19964) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 17 "Net-(RN2-Pad3)"))
(pad 10 thru_hole oval (at 11.43 3.81 180) (size 1.50114 2.19964) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 2 GND))
(pad 11 thru_hole oval (at 11.43 -3.81 180) (size 1.50114 2.19964) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 5 /md_right))
(pad 12 thru_hole oval (at 8.89 -3.81 180) (size 1.50114 2.19964) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 18 "Net-(RN2-Pad5)"))
(pad 13 thru_hole oval (at 6.35 -3.81 180) (size 1.50114 2.19964) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 2 GND))
(pad 14 thru_hole oval (at 3.81 -3.81 180) (size 1.50114 2.19964) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 19 "Net-(RN2-Pad7)"))
(pad 15 thru_hole oval (at 1.27 -3.81 180) (size 1.50114 2.19964) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 2 GND))
(pad 16 thru_hole oval (at -1.27 -3.81 180) (size 1.50114 2.19964) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 16 "Net-(RN2-Pad1)"))
(pad 17 thru_hole oval (at -3.81 -3.81 180) (size 1.50114 2.19964) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 2 GND))
(pad 18 thru_hole oval (at -6.35 -3.81 180) (size 1.50114 2.19964) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 20 "Net-(RN2-Pad9)"))
(pad 19 thru_hole oval (at -8.89 -3.81 180) (size 1.50114 2.19964) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 14 /c16_select))
(pad 20 thru_hole oval (at -11.43 -3.81 180) (size 1.50114 2.19964) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 1 +5V))
(model ${P3D_WALTER}/pth_circuits/dil_20-300_socket.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Pin_Headers:Pin_Header_Straight_1x08_Pitch2.54mm (layer F.Cu) (tedit 5A490DA1) (tstamp 5A459F59)
(at 142.24 126.492 90)
(descr "Through hole straight pin header, 1x08, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x08 2.54mm single row")
(path /59640310)
(fp_text reference P1 (at 0 -2.33 90) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value TO_C16_MINI_DIN_8 (at 0 20.11 90) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 -1.27) (end 1.27 19.05) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 19.05) (end -1.27 19.05) (layer F.Fab) (width 0.1))
(fp_line (start -1.27 19.05) (end -1.27 -0.635) (layer F.Fab) (width 0.1))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start -1.33 19.11) (end 1.33 19.11) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 1.27) (end -1.33 19.11) (layer F.SilkS) (width 0.12))
(fp_line (start 1.33 1.27) (end 1.33 19.11) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.8 -1.8) (end -1.8 19.55) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.8 19.55) (end 1.8 19.55) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.8 19.55) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 8.89 180) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 9 /c16_up))
(pad 2 thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 10 /c16_down))
(pad 3 thru_hole oval (at 0 5.08 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 11 /c16_left))
(pad 4 thru_hole oval (at 0 7.62 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 12 /c16_right))
(pad 5 thru_hole oval (at 0 10.16 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 +5V))
(pad 6 thru_hole oval (at 0 12.7 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 13 /c16_fire))
(pad 7 thru_hole oval (at 0 15.24 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 GND))
(pad 8 thru_hole oval (at 0 17.78 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 14 /c16_select))
(model ${KISYS3DMOD}/Pin_Headers.3dshapes/Pin_Header_Straight_1x08_Pitch2.54mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module OpenC16JoyAdapter:C_0805+THT (layer F.Cu) (tedit 5A49162C) (tstamp 5A4900DD)
(at 158.496 107.442 180)
(descr "Capacitor SMD 0805, hand soldering")
(tags "capacitor 0805")
(path /596A2F06)
(attr smd)
(fp_text reference C1 (at 0 1.778 180) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 100n (at 0 1.75 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 0 -1.75 180) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1 0.62) (end -1 -0.62) (layer F.Fab) (width 0.1))
(fp_line (start 1 0.62) (end -1 0.62) (layer F.Fab) (width 0.1))
(fp_line (start 1 -0.62) (end 1 0.62) (layer F.Fab) (width 0.1))
(fp_line (start -1 -0.62) (end 1 -0.62) (layer F.Fab) (width 0.1))
(fp_line (start 0.5 -0.762) (end -0.5 -0.762) (layer F.SilkS) (width 0.12))
(fp_line (start -0.5 0.762) (end 0.5 0.762) (layer F.SilkS) (width 0.12))
(fp_line (start -3.5 -1) (end 3.5 -1) (layer F.SilkS) (width 0.12))
(fp_line (start -3.5 -1) (end -3.5 1) (layer F.SilkS) (width 0.12))
(fp_line (start 3.5 1) (end 3.5 -1) (layer F.SilkS) (width 0.12))
(fp_line (start 3.5 1) (end -3.5 1) (layer F.SilkS) (width 0.12))
(pad 1 smd rect (at -1.25 0 180) (size 1.5 1.25) (layers F.Cu F.Mask)
(net 1 +5V))
(pad 2 smd rect (at 1.25 0 180) (size 1.5 1.25) (layers F.Cu F.Mask)
(net 2 GND))
(pad 1 thru_hole circle (at -2.5 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 +5V))
(pad 2 thru_hole circle (at 2.5 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 GND))
(model Capacitors_SMD.3dshapes/C_0805.wrl-XXX
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model Capacitors_THT.3dshapes/C_Disc_D5.0mm_W2.5mm_P5.00mm.wrl
(at (xyz -0.1 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module OpenC16JoyAdapter:Pin_Header_Straight_1x02-ModSilkS (layer F.Cu) (tedit 59FD08EC) (tstamp 5A459F64)
(at 134.62 126.492 90)
(descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x02 2.54mm single row")
(path /596A1CDA)
(fp_text reference P2 (at 2.286 1.27 180) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value PIN5_POWER (at 0 4.93 90) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.27 -1.27) (end -1.27 3.81) (layer F.Fab) (width 0.1))
(fp_line (start -1.27 3.81) (end 1.27 3.81) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 3.81) (end 1.27 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 -1.27) (end -1.27 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start -1.397 3.937) (end 1.397 3.937) (layer F.SilkS) (width 0.12))
(fp_line (start 1.397 3.937) (end 1.397 -1.397) (layer F.SilkS) (width 0.12))
(fp_line (start -1.397 3.937) (end -1.397 -1.397) (layer F.SilkS) (width 0.12))
(fp_line (start -1.397 -1.397) (end 1.397 -1.397) (layer F.SilkS) (width 0.12))
(fp_line (start -1.6 -1.6) (end -1.6 4.1) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.6 4.1) (end 1.6 4.1) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.6 4.1) (end 1.6 -1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.6 -1.6) (end -1.6 -1.6) (layer F.CrtYd) (width 0.05))
(pad 1 thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 +5V))
(pad 2 thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 "Net-(J1-Pad5)"))
(model Pin_Headers.3dshapes/Pin_Header_Straight_1x02_Pitch2.54mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module OpenC16JoyAdapter:R_Array_SIP10_NoPin1Mark (layer F.Cu) (tedit 5A4A2BBF) (tstamp 5A459BC9)
(at 160.02 122.682 180)
(descr "10-pin Resistor SIP pack")
(tags R)
(path /5A45A4EC)
(fp_text reference RN2 (at 12.7 -2.4 180) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 100 (at 25.908 0 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.29 -1.25) (end -1.29 1.25) (layer F.Fab) (width 0.1))
(fp_line (start -1.29 1.25) (end 24.15 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 24.15 1.25) (end 24.15 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 24.15 -1.25) (end -1.29 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start -1.44 -1.4) (end -1.44 1.4) (layer F.SilkS) (width 0.12))
(fp_line (start -1.44 1.4) (end 24.3 1.4) (layer F.SilkS) (width 0.12))
(fp_line (start 24.3 1.4) (end 24.3 -1.4) (layer F.SilkS) (width 0.12))
(fp_line (start 24.3 -1.4) (end -1.44 -1.4) (layer F.SilkS) (width 0.12))
(fp_line (start -1.7 -1.65) (end -1.7 1.65) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.7 1.65) (end 24.55 1.65) (layer F.CrtYd) (width 0.05))
(fp_line (start 24.55 1.65) (end 24.55 -1.65) (layer F.CrtYd) (width 0.05))
(fp_line (start 24.55 -1.65) (end -1.7 -1.65) (layer F.CrtYd) (width 0.05))
(pad 1 thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 16 "Net-(RN2-Pad1)"))
(pad 2 thru_hole oval (at 2.54 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 13 /c16_fire))
(pad 3 thru_hole oval (at 5.08 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 17 "Net-(RN2-Pad3)"))
(pad 4 thru_hole oval (at 7.62 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 12 /c16_right))
(pad 5 thru_hole oval (at 10.16 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 18 "Net-(RN2-Pad5)"))
(pad 6 thru_hole oval (at 12.7 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 11 /c16_left))
(pad 7 thru_hole oval (at 15.24 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 19 "Net-(RN2-Pad7)"))
(pad 8 thru_hole oval (at 17.78 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 10 /c16_down))
(pad 9 thru_hole oval (at 20.32 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 20 "Net-(RN2-Pad9)"))
(pad 10 thru_hole oval (at 22.86 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 9 /c16_up))
(model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Array_SIP10.wrl
(at (xyz 0 0 0))
(scale (xyz 0.39 0.39 0.39))
(rotate (xyz 0 0 0))
)
)
(module OpenC16JoyAdapter:Pin_Header_Straight_1x02-ModSilkS (layer F.Cu) (tedit 59FD08EC) (tstamp 5A491028)
(at 134.62 107.442 90)
(descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x02 2.54mm single row")
(path /5A459F9B)
(fp_text reference P4 (at 2.286 1.27 180) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value PULL_UP (at 0 4.93 90) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.27 -1.27) (end -1.27 3.81) (layer F.Fab) (width 0.1))
(fp_line (start -1.27 3.81) (end 1.27 3.81) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 3.81) (end 1.27 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 -1.27) (end -1.27 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start -1.397 3.937) (end 1.397 3.937) (layer F.SilkS) (width 0.12))
(fp_line (start 1.397 3.937) (end 1.397 -1.397) (layer F.SilkS) (width 0.12))
(fp_line (start -1.397 3.937) (end -1.397 -1.397) (layer F.SilkS) (width 0.12))
(fp_line (start -1.397 -1.397) (end 1.397 -1.397) (layer F.SilkS) (width 0.12))
(fp_line (start -1.6 -1.6) (end -1.6 4.1) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.6 4.1) (end 1.6 4.1) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.6 4.1) (end 1.6 -1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.6 -1.6) (end -1.6 -1.6) (layer F.CrtYd) (width 0.05))
(pad 1 thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 +5V))
(pad 2 thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 15 "Net-(P4-Pad2)"))
(model Pin_Headers.3dshapes/Pin_Header_Straight_1x02_Pitch2.54mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(gr_text PULL-UP (at 135.89 105.156) (layer F.SilkS) (tstamp 5A4A31FB)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text V2 (at 134.112 93.218) (layer B.SilkS)
(effects (font (size 1.5 1.5) (thickness 0.3)) (justify mirror))
)
(gr_arc (start 161.29 133.096) (end 162.56 133.096) (angle 90) (layer Edge.Cuts) (width 0.15))
(gr_arc (start 133.35 133.096) (end 133.35 134.366) (angle 90) (layer Edge.Cuts) (width 0.15))
(gr_text github.com/SukkoPera/OpenC16JoyAdapter (at 147.32 130.048) (layer B.SilkS)
(effects (font (size 1 0.85) (thickness 0.15)) (justify mirror))
)
(dimension 30.48 (width 0.3) (layer F.Fab)
(gr_text "30,480 mm" (at 147.32 140.796) (layer F.Fab) (tstamp 5A4A3622)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(feature1 (pts (xy 132.08 134.366) (xy 132.08 142.146)))
(feature2 (pts (xy 162.56 134.366) (xy 162.56 142.146)))
(crossbar (pts (xy 162.56 139.446) (xy 132.08 139.446)))
(arrow1a (pts (xy 132.08 139.446) (xy 133.206504 138.859579)))
(arrow1b (pts (xy 132.08 139.446) (xy 133.206504 140.032421)))
(arrow2a (pts (xy 162.56 139.446) (xy 161.433496 138.859579)))
(arrow2b (pts (xy 162.56 139.446) (xy 161.433496 140.032421)))
)
(gr_text 8 (at 160.02 128.969) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "PIN 5\nPOWER" (at 136.144 129.794) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "C16 JOYSTICK\nPORT" (at 151.13 129.794) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text 1 (at 142.24 128.969) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(dimension 42.926 (width 0.3) (layer F.Fab)
(gr_text "42,926 mm" (at 176.61 112.903 270) (layer F.Fab) (tstamp 596B791E)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(feature1 (pts (xy 162.56 134.366) (xy 177.96 134.366)))
(feature2 (pts (xy 162.56 91.44) (xy 177.96 91.44)))
(crossbar (pts (xy 175.26 91.44) (xy 175.26 134.366)))
(arrow1a (pts (xy 175.26 134.366) (xy 174.673579 133.239496)))
(arrow1b (pts (xy 175.26 134.366) (xy 175.846421 133.239496)))
(arrow2a (pts (xy 175.26 91.44) (xy 174.673579 92.566504)))
(arrow2b (pts (xy 175.26 91.44) (xy 175.846421 92.566504)))
)
(gr_line (start 132.08 133.096) (end 132.08 91.44) (layer Edge.Cuts) (width 0.15))
(gr_line (start 161.29 134.366) (end 133.35 134.366) (layer Edge.Cuts) (width 0.15))
(gr_line (start 162.56 91.44) (end 162.56 133.096) (layer Edge.Cuts) (width 0.15))
(gr_line (start 132.08 91.44) (end 162.56 91.44) (layer Edge.Cuts) (width 0.15))
(segment (start 134.62 107.442) (end 134.62 104.394) (width 0.4) (layer F.Cu) (net 1))
(segment (start 134.62 104.394) (end 135.128 103.886) (width 0.4) (layer F.Cu) (net 1))
(segment (start 135.128 103.886) (end 137.668 103.886) (width 0.4) (layer F.Cu) (net 1))
(segment (start 137.668 103.886) (end 138.176 103.378) (width 0.4) (layer F.Cu) (net 1))
(segment (start 138.176 103.378) (end 138.176 98.044) (width 0.4) (layer F.Cu) (net 1))
(segment (start 138.176 98.044) (end 138.684 97.536) (width 0.4) (layer F.Cu) (net 1))
(segment (start 138.684 97.536) (end 148.1963 97.536) (width 0.4) (layer F.Cu) (net 1))
(segment (start 148.1963 97.536) (end 148.7043 98.044) (width 0.4) (layer F.Cu) (net 1))
(segment (start 148.7043 98.044) (end 148.7043 99.314) (width 0.4) (layer F.Cu) (net 1))
(segment (start 134.62 107.442) (end 134.62 108.692) (width 0.4) (layer F.Cu) (net 1))
(segment (start 134.112 109.2) (end 134.112 109.22) (width 0.4) (layer F.Cu) (net 1))
(segment (start 134.112 124.206) (end 134.112 109.22) (width 0.4) (layer F.Cu) (net 1))
(segment (start 134.62 125.222) (end 134.62 126.492) (width 0.4) (layer F.Cu) (net 1))
(segment (start 134.62 108.692) (end 134.112 109.2) (width 0.4) (layer F.Cu) (net 1))
(segment (start 134.112 124.714) (end 134.62 125.222) (width 0.4) (layer F.Cu) (net 1))
(segment (start 134.112 124.206) (end 134.112 124.714) (width 0.4) (layer F.Cu) (net 1))
(segment (start 134.62 126.492) (end 134.62 127.742) (width 0.4) (layer F.Cu) (net 1))
(segment (start 134.62 127.742) (end 135.148 128.27) (width 0.4) (layer F.Cu) (net 1))
(segment (start 135.148 128.27) (end 135.636 128.27) (width 0.4) (layer F.Cu) (net 1))
(segment (start 160.996 107.442) (end 159.746 107.442) (width 0.4) (layer F.Cu) (net 1))
(segment (start 161.798 119.38) (end 161.798 108.244) (width 0.4) (layer F.Cu) (net 1))
(segment (start 161.798 108.244) (end 160.996 107.442) (width 0.4) (layer F.Cu) (net 1))
(segment (start 158.75 118.872) (end 161.29 118.872) (width 0.4) (layer F.Cu) (net 1))
(segment (start 161.29 118.872) (end 161.798 119.38) (width 0.4) (layer F.Cu) (net 1))
(segment (start 161.798 119.38) (end 161.798 127.762) (width 0.4) (layer F.Cu) (net 1))
(segment (start 161.798 127.762) (end 161.29 128.27) (width 0.4) (layer F.Cu) (net 1))
(segment (start 161.29 128.27) (end 153.162 128.27) (width 0.4) (layer F.Cu) (net 1))
(segment (start 153.162 128.27) (end 135.636 128.27) (width 0.4) (layer F.Cu) (net 1))
(segment (start 152.4 126.492) (end 152.4 127.694081) (width 0.4) (layer F.Cu) (net 1))
(segment (start 152.4 127.694081) (end 152.975919 128.27) (width 0.4) (layer F.Cu) (net 1))
(segment (start 152.975919 128.27) (end 153.162 128.27) (width 0.4) (layer F.Cu) (net 1))
(segment (start 160.02 133.35) (end 160.02 132.08) (width 0.4) (layer B.Cu) (net 2))
(segment (start 160.02 132.08) (end 157.48 129.54) (width 0.4) (layer B.Cu) (net 2))
(segment (start 157.48 129.54) (end 157.48 126.492) (width 0.4) (layer B.Cu) (net 2))
(segment (start 139.7 133.35) (end 134.62 133.35) (width 0.4) (layer F.Cu) (net 2))
(via (at 134.62 133.35) (size 0.8) (drill 0.6) (layers F.Cu B.Cu) (net 2))
(segment (start 144.78 133.35) (end 139.7 133.35) (width 0.4) (layer B.Cu) (net 2))
(via (at 139.7 133.35) (size 0.8) (drill 0.6) (layers F.Cu B.Cu) (net 2))
(segment (start 149.86 133.35) (end 144.78 133.35) (width 0.4) (layer F.Cu) (net 2))
(via (at 144.78 133.35) (size 0.8) (drill 0.6) (layers F.Cu B.Cu) (net 2))
(segment (start 154.94 133.35) (end 149.86 133.35) (width 0.4) (layer B.Cu) (net 2))
(via (at 149.86 133.35) (size 0.8) (drill 0.6) (layers F.Cu B.Cu) (net 2))
(segment (start 160.02 133.35) (end 154.94 133.35) (width 0.4) (layer F.Cu) (net 2))
(via (at 154.94 133.35) (size 0.8) (drill 0.6) (layers F.Cu B.Cu) (net 2))
(via (at 160.02 133.35) (size 0.8) (drill 0.6) (layers F.Cu B.Cu) (net 2))
(segment (start 160.02 93.98) (end 160.02 96.52) (width 0.4) (layer B.Cu) (net 2))
(via (at 160.02 96.52) (size 0.8) (drill 0.6) (layers F.Cu B.Cu) (net 2))
(segment (start 134.62 93.98) (end 160.02 93.98) (width 0.4) (layer F.Cu) (net 2))
(via (at 160.02 93.98) (size 0.8) (drill 0.6) (layers F.Cu B.Cu) (net 2))
(segment (start 134.62 96.52) (end 134.62 93.98) (width 0.4) (layer F.Cu) (net 2))
(via (at 134.62 93.98) (size 0.8) (drill 0.6) (layers F.Cu B.Cu) (net 2))
(segment (start 145.9357 99.314) (end 143.1417 96.52) (width 0.4) (layer B.Cu) (net 2))
(via (at 134.62 96.52) (size 0.8) (drill 0.6) (layers F.Cu B.Cu) (net 2))
(segment (start 143.1417 96.52) (end 134.62 96.52) (width 0.4) (layer B.Cu) (net 2))
(segment (start 148.59 116.332) (end 146.05 116.332) (width 0.4) (layer B.Cu) (net 2))
(segment (start 153.67 116.332) (end 148.59 116.332) (width 0.4) (layer F.Cu) (net 2))
(via (at 148.59 116.332) (size 0.8) (drill 0.6) (layers F.Cu B.Cu) (net 2))
(segment (start 148.59 113.792) (end 153.67 113.792) (width 0.4) (layer F.Cu) (net 2))
(segment (start 146.05 113.792) (end 148.59 113.792) (width 0.4) (layer B.Cu) (net 2))
(via (at 148.59 113.792) (size 0.8) (drill 0.6) (layers F.Cu B.Cu) (net 2))
(segment (start 140.97 113.792) (end 146.05 113.792) (width 0.4) (layer F.Cu) (net 2))
(via (at 146.05 113.792) (size 0.8) (drill 0.6) (layers F.Cu B.Cu) (net 2))
(segment (start 140.97 116.332) (end 146.05 116.332) (width 0.4) (layer F.Cu) (net 2))
(via (at 146.05 116.332) (size 0.8) (drill 0.6) (layers F.Cu B.Cu) (net 2))
(segment (start 135.89 116.332) (end 140.97 116.332) (width 0.4) (layer B.Cu) (net 2))
(segment (start 135.89 113.792) (end 135.89 116.332) (width 0.4) (layer F.Cu) (net 2))
(via (at 135.89 116.332) (size 0.8) (drill 0.6) (layers F.Cu B.Cu) (net 2))
(segment (start 140.97 113.792) (end 135.89 113.792) (width 0.4) (layer B.Cu) (net 2))
(via (at 135.89 113.792) (size 0.8) (drill 0.6) (layers F.Cu B.Cu) (net 2))
(segment (start 158.75 116.332) (end 153.67 116.332) (width 0.4) (layer B.Cu) (net 2))
(segment (start 158.75 113.792) (end 158.75 116.332) (width 0.4) (layer F.Cu) (net 2))
(via (at 158.75 116.332) (size 0.8) (drill 0.6) (layers F.Cu B.Cu) (net 2))
(segment (start 153.67 113.792) (end 158.75 113.792) (width 0.4) (layer B.Cu) (net 2))
(via (at 158.75 113.792) (size 0.8) (drill 0.6) (layers F.Cu B.Cu) (net 2))
(segment (start 140.97 118.872) (end 140.97 116.332) (width 0.4) (layer B.Cu) (net 2))
(via (at 153.67 113.792) (size 0.8) (drill 0.6) (layers F.Cu B.Cu) (net 2))
(via (at 153.67 116.332) (size 0.8) (drill 0.6) (layers F.Cu B.Cu) (net 2))
(via (at 140.97 116.332) (size 0.8) (drill 0.6) (layers F.Cu B.Cu) (net 2))
(via (at 140.97 113.792) (size 0.8) (drill 0.6) (layers F.Cu B.Cu) (net 2))
(segment (start 137.16 126.492) (end 137.16 125.476) (width 0.4) (layer B.Cu) (net 3))
(segment (start 137.16 125.476) (end 136.652 124.968) (width 0.4) (layer B.Cu) (net 3))
(segment (start 133.35 124.968) (end 132.842 124.46) (width 0.4) (layer B.Cu) (net 3))
(segment (start 133.35 103.886) (end 141.478 103.886) (width 0.4) (layer B.Cu) (net 3))
(segment (start 141.478 103.886) (end 141.78026 103.58374) (width 0.4) (layer B.Cu) (net 3))
(segment (start 141.78026 103.58374) (end 141.78026 101.854) (width 0.4) (layer B.Cu) (net 3))
(segment (start 136.652 124.968) (end 133.35 124.968) (width 0.4) (layer B.Cu) (net 3))
(segment (start 132.842 124.46) (end 132.842 104.394) (width 0.4) (layer B.Cu) (net 3))
(segment (start 132.842 104.394) (end 133.35 103.886) (width 0.4) (layer B.Cu) (net 3))
(segment (start 145.542 103.632) (end 145.542 106.172) (width 0.25) (layer F.Cu) (net 4))
(segment (start 145.542 106.172) (end 145.542 106.426) (width 0.25) (layer F.Cu) (net 4))
(segment (start 145.542 107.442) (end 145.542 106.31063) (width 0.25) (layer F.Cu) (net 4))
(segment (start 145.542 106.31063) (end 145.542 106.172) (width 0.25) (layer F.Cu) (net 4))
(segment (start 145.542 107.442) (end 145.542 109.22) (width 0.25) (layer F.Cu) (net 4))
(segment (start 145.542 109.22) (end 145.034 109.728) (width 0.25) (layer F.Cu) (net 4))
(segment (start 145.034 109.728) (end 141.224 109.728) (width 0.25) (layer F.Cu) (net 4))
(segment (start 141.224 109.728) (end 140.97 109.982) (width 0.25) (layer F.Cu) (net 4))
(segment (start 140.97 109.982) (end 140.97 111.252) (width 0.25) (layer F.Cu) (net 4))
(segment (start 147.32 101.854) (end 145.542 103.632) (width 0.25) (layer F.Cu) (net 4))
(segment (start 143.002 107.442) (end 143.002 103.40086) (width 0.25) (layer F.Cu) (net 5))
(segment (start 143.002 103.40086) (end 144.54886 101.854) (width 0.25) (layer F.Cu) (net 5))
(segment (start 135.89 118.872) (end 135.89 117.348) (width 0.25) (layer F.Cu) (net 5))
(segment (start 135.89 117.348) (end 136.144 117.094) (width 0.25) (layer F.Cu) (net 5))
(segment (start 143.002 108.57337) (end 143.002 107.442) (width 0.25) (layer F.Cu) (net 5))
(segment (start 136.144 117.094) (end 136.906 117.094) (width 0.25) (layer F.Cu) (net 5))
(segment (start 137.668 108.966) (end 142.60937 108.966) (width 0.25) (layer F.Cu) (net 5))
(segment (start 136.906 117.094) (end 137.16 116.84) (width 0.25) (layer F.Cu) (net 5))
(segment (start 137.16 116.84) (end 137.16 109.474) (width 0.25) (layer F.Cu) (net 5))
(segment (start 137.16 109.474) (end 137.668 108.966) (width 0.25) (layer F.Cu) (net 5))
(segment (start 142.60937 108.966) (end 143.002 108.57337) (width 0.25) (layer F.Cu) (net 5))
(segment (start 148.082 107.442) (end 148.082 103.86314) (width 0.25) (layer F.Cu) (net 6))
(segment (start 148.082 103.86314) (end 150.09114 101.854) (width 0.25) (layer F.Cu) (net 6))
(segment (start 148.082 107.442) (end 148.082 109.22) (width 0.25) (layer F.Cu) (net 6))
(segment (start 147.574 109.728) (end 146.304 109.728) (width 0.25) (layer F.Cu) (net 6))
(segment (start 148.082 109.22) (end 147.574 109.728) (width 0.25) (layer F.Cu) (net 6))
(segment (start 146.05 109.982) (end 146.05 111.252) (width 0.25) (layer F.Cu) (net 6))
(segment (start 146.304 109.728) (end 146.05 109.982) (width 0.25) (layer F.Cu) (net 6))
(segment (start 153.162 107.442) (end 153.162 102.15626) (width 0.25) (layer F.Cu) (net 7))
(segment (start 153.162 102.15626) (end 152.85974 101.854) (width 0.25) (layer F.Cu) (net 7))
(segment (start 153.67 108.966) (end 155.702 108.966) (width 0.25) (layer F.Cu) (net 7))
(segment (start 153.55463 108.966) (end 153.67 108.966) (width 0.25) (layer F.Cu) (net 7))
(segment (start 153.162 107.442) (end 153.162 108.57337) (width 0.25) (layer F.Cu) (net 7))
(segment (start 153.162 108.57337) (end 153.55463 108.966) (width 0.25) (layer F.Cu) (net 7))
(segment (start 155.702 108.966) (end 156.21 109.474) (width 0.25) (layer F.Cu) (net 7))
(segment (start 156.21 109.474) (end 156.21 111.252) (width 0.25) (layer F.Cu) (net 7))
(segment (start 151.47544 99.314) (end 151.47544 106.58856) (width 0.25) (layer F.Cu) (net 8))
(segment (start 151.47544 106.58856) (end 150.622 107.442) (width 0.25) (layer F.Cu) (net 8))
(segment (start 151.13 111.252) (end 151.13 107.95) (width 0.25) (layer F.Cu) (net 8))
(segment (start 151.13 107.95) (end 150.622 107.442) (width 0.25) (layer F.Cu) (net 8))
(segment (start 139.83863 126.492) (end 141.14 126.492) (width 0.25) (layer F.Cu) (net 9))
(segment (start 141.14 126.492) (end 142.24 126.492) (width 0.25) (layer F.Cu) (net 9))
(segment (start 137.16 123.81337) (end 139.83863 126.492) (width 0.25) (layer F.Cu) (net 9))
(segment (start 137.16 122.682) (end 137.16 123.81337) (width 0.25) (layer F.Cu) (net 9))
(segment (start 142.24 122.682) (end 144.78 125.222) (width 0.25) (layer F.Cu) (net 10))
(segment (start 144.78 125.222) (end 144.78 126.492) (width 0.25) (layer F.Cu) (net 10))
(segment (start 147.32 122.682) (end 147.32 126.492) (width 0.25) (layer F.Cu) (net 11))
(segment (start 152.4 122.682) (end 149.86 125.222) (width 0.25) (layer F.Cu) (net 12))
(segment (start 149.86 125.222) (end 149.86 126.492) (width 0.25) (layer F.Cu) (net 12))
(segment (start 157.48 122.682) (end 154.94 125.222) (width 0.25) (layer F.Cu) (net 13))
(segment (start 154.94 125.222) (end 154.94 126.492) (width 0.25) (layer F.Cu) (net 13))
(segment (start 158.75 121.412) (end 158.75 124.714) (width 0.25) (layer F.Cu) (net 14))
(segment (start 159.698081 124.968) (end 159.004 124.968) (width 0.25) (layer F.Cu) (net 14))
(segment (start 159.004 124.968) (end 158.75 124.714) (width 0.25) (layer F.Cu) (net 14))
(segment (start 160.02 126.492) (end 160.02 125.289919) (width 0.25) (layer F.Cu) (net 14))
(segment (start 160.02 125.289919) (end 159.698081 124.968) (width 0.25) (layer F.Cu) (net 14))
(segment (start 158.496 113.03) (end 156.718 113.03) (width 0.25) (layer F.Cu) (net 14))
(segment (start 156.21 113.538) (end 156.21 118.872) (width 0.25) (layer F.Cu) (net 14))
(segment (start 156.718 113.03) (end 156.21 113.538) (width 0.25) (layer F.Cu) (net 14))
(segment (start 158.75 111.252) (end 158.75 112.776) (width 0.25) (layer F.Cu) (net 14))
(segment (start 158.75 112.776) (end 158.496 113.03) (width 0.25) (layer F.Cu) (net 14))
(segment (start 156.21 118.872) (end 156.21 120.65) (width 0.25) (layer F.Cu) (net 14))
(segment (start 156.21 120.65) (end 156.464 120.904) (width 0.25) (layer F.Cu) (net 14))
(segment (start 156.464 120.904) (end 158.242 120.904) (width 0.25) (layer F.Cu) (net 14))
(segment (start 158.242 120.904) (end 158.75 121.412) (width 0.25) (layer F.Cu) (net 14))
(segment (start 136.652 107.442) (end 137.854081 107.442) (width 0.25) (layer F.Cu) (net 15))
(segment (start 137.854081 107.442) (end 139.954 107.442) (width 0.25) (layer F.Cu) (net 15))
(segment (start 148.59 118.872) (end 148.59 120.396) (width 0.25) (layer B.Cu) (net 16))
(segment (start 148.59 120.396) (end 149.098 120.904) (width 0.25) (layer B.Cu) (net 16))
(segment (start 149.098 120.904) (end 159.512 120.904) (width 0.25) (layer B.Cu) (net 16))
(segment (start 159.512 120.904) (end 160.02 121.412) (width 0.25) (layer B.Cu) (net 16))
(segment (start 160.02 121.412) (end 160.02 122.682) (width 0.25) (layer B.Cu) (net 16))
(segment (start 138.43 111.252) (end 138.43 114.554) (width 0.25) (layer F.Cu) (net 17))
(segment (start 138.43 114.554) (end 138.938 115.062) (width 0.25) (layer F.Cu) (net 17))
(segment (start 138.938 115.062) (end 154.432 115.062) (width 0.25) (layer F.Cu) (net 17))
(segment (start 154.432 115.062) (end 154.94 115.57) (width 0.25) (layer F.Cu) (net 17))
(segment (start 154.94 115.57) (end 154.94 117.602) (width 0.25) (layer F.Cu) (net 17))
(segment (start 154.94 117.602) (end 154.94 122.682) (width 0.25) (layer F.Cu) (net 17))
(segment (start 138.938 120.904) (end 149.352 120.904) (width 0.25) (layer F.Cu) (net 18))
(segment (start 149.86 121.412) (end 149.86 122.682) (width 0.25) (layer F.Cu) (net 18))
(segment (start 149.352 120.904) (end 149.86 121.412) (width 0.25) (layer F.Cu) (net 18))
(segment (start 138.43 118.872) (end 138.43 120.396) (width 0.25) (layer F.Cu) (net 18))
(segment (start 138.43 120.396) (end 138.938 120.904) (width 0.25) (layer F.Cu) (net 18))
(segment (start 143.51 118.872) (end 143.51 121.412) (width 0.25) (layer B.Cu) (net 19))
(segment (start 143.51 121.412) (end 144.78 122.682) (width 0.25) (layer B.Cu) (net 19))
(segment (start 153.67 118.872) (end 153.67 117.52218) (width 0.25) (layer B.Cu) (net 20))
(segment (start 153.67 117.52218) (end 153.24182 117.094) (width 0.25) (layer B.Cu) (net 20))
(segment (start 153.24182 117.094) (end 142.748 117.094) (width 0.25) (layer B.Cu) (net 20))
(segment (start 142.748 117.094) (end 142.24 117.602) (width 0.25) (layer B.Cu) (net 20))
(segment (start 142.24 117.602) (end 142.24 120.904) (width 0.25) (layer B.Cu) (net 20))
(segment (start 142.24 120.904) (end 141.732 121.412) (width 0.25) (layer B.Cu) (net 20))
(segment (start 141.732 121.412) (end 139.83863 121.412) (width 0.25) (layer B.Cu) (net 20))
(segment (start 139.83863 121.412) (end 139.7 121.55063) (width 0.25) (layer B.Cu) (net 20))
(segment (start 139.7 121.55063) (end 139.7 122.682) (width 0.25) (layer B.Cu) (net 20))
(zone (net 2) (net_name GND) (layer F.Cu) (tstamp 0) (hatch edge 0.508)
(connect_pads (clearance 0.1))
(min_thickness 0.0254)