-
Notifications
You must be signed in to change notification settings - Fork 4
/
minisynth32-rear.kicad_pcb
2443 lines (2417 loc) · 200 KB
/
minisynth32-rear.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 20171130) (host pcbnew 5.99.0+really5.1.9+dfsg1-1)
(general
(thickness 1.6)
(drawings 41)
(tracks 102)
(zones 0)
(modules 15)
(nets 50)
)
(page A4)
(title_block
(title "Minisynth 32: Rear panel breakout and front panel board")
(rev 1.1)
(company https://github.com/grantek/minisynth32)
(comment 1 "ClumsyMIDI footprints (c) Andreas Zdziarstek")
(comment 2 "(c) 2021 Grant King CC-BY-SA-4.0")
)
(layers
(0 F.Cu signal)
(31 B.Cu signal)
(32 B.Adhes user)
(33 F.Adhes user)
(34 B.Paste user)
(35 F.Paste user)
(36 B.SilkS user)
(37 F.SilkS user)
(38 B.Mask user)
(39 F.Mask user)
(40 Dwgs.User user)
(41 Cmts.User user)
(42 Eco1.User user)
(43 Eco2.User user)
(44 Edge.Cuts user)
(45 Margin user)
(46 B.CrtYd user)
(47 F.CrtYd user)
(48 B.Fab user)
(49 F.Fab user)
)
(setup
(last_trace_width 0.25)
(user_trace_width 0.25)
(user_trace_width 0.76)
(user_trace_width 1.27)
(user_trace_width 2.03)
(trace_clearance 0.2)
(zone_clearance 0.508)
(zone_45_only no)
(trace_min 0.2)
(via_size 1.6)
(via_drill 0.8)
(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)
(edge_width 0.05)
(segment_width 0.2)
(pcb_text_width 0.3)
(pcb_text_size 1.5 1.5)
(mod_edge_width 0.12)
(mod_text_size 1 1)
(mod_text_width 0.15)
(pad_size 4 4)
(pad_drill 3.2)
(pad_to_mask_clearance 0)
(aux_axis_origin 0 0)
(visible_elements FFFFFF7F)
(pcbplotparams
(layerselection 0x010f0_ffffffff)
(usegerberextensions true)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(excludeedgelayer true)
(linewidth 0.100000)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(padsonsilk false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "gerber/rear"))
)
(net 0 "")
(net 1 +5V)
(net 2 GND)
(net 3 I2S_LRCLK)
(net 4 I2S_DATA)
(net 5 I2S_BCLK)
(net 6 "Net-(A1-Pad7)")
(net 7 "Net-(A1-Pad8)")
(net 8 "Net-(A1-Pad9)")
(net 9 "Net-(A1-Pad10)")
(net 10 "Net-(A1-Pad11)")
(net 11 "Net-(A1-Pad12)")
(net 12 "Net-(A1-Pad13)")
(net 13 "Net-(A1-Pad14)")
(net 14 "Net-(A1-Pad15)")
(net 15 +3V3)
(net 16 "Net-(D1-Pad2)")
(net 17 "Net-(D1-Pad1)")
(net 18 I2C_SDA)
(net 19 I2C_SCL)
(net 20 BTN2)
(net 21 BTN1)
(net 22 "/GPIO20(SPI1_MOSI)")
(net 23 /GPIO26)
(net 24 /GPIO16)
(net 25 "/GPIO13(PWM1)")
(net 26 "/GPIO12(PWM0)")
(net 27 /GPIO6)
(net 28 /GPIO5)
(net 29 /ID_SC)
(net 30 /ID_SD)
(net 31 "/GPIO7(SPI1_CE_N)")
(net 32 "/GPIO8(SPI0_CE_N)")
(net 33 "/GPIO11(SPI0_CLK)")
(net 34 "/GPIO25(GEN6)")
(net 35 "/GPIO9(SPI0_MISO)")
(net 36 "/GPIO10(SPI0_MOSI)")
(net 37 "/GPIO24(GEN5)")
(net 38 ENC_DAT)
(net 39 ENC_CLK)
(net 40 "/GPIO15(RXD0)")
(net 41 "/GPIO14(TXD0)")
(net 42 ENC_BTN)
(net 43 "Net-(J3-Pad3)")
(net 44 "Net-(J3-Pad1)")
(net 45 "Net-(J5-Pad2)")
(net 46 "Net-(U1-Pad3)")
(net 47 "Net-(SW2-Pad4)")
(net 48 "Net-(SW2-Pad3)")
(net 49 "Net-(J2-Pad17)")
(net_class Default "This is the default net class."
(clearance 0.2)
(trace_width 0.25)
(via_dia 1.6)
(via_drill 0.8)
(uvia_dia 0.3)
(uvia_drill 0.1)
(add_net "/GPIO10(SPI0_MOSI)")
(add_net "/GPIO11(SPI0_CLK)")
(add_net "/GPIO12(PWM0)")
(add_net "/GPIO13(PWM1)")
(add_net "/GPIO14(TXD0)")
(add_net "/GPIO15(RXD0)")
(add_net /GPIO16)
(add_net "/GPIO20(SPI1_MOSI)")
(add_net "/GPIO24(GEN5)")
(add_net "/GPIO25(GEN6)")
(add_net /GPIO26)
(add_net /GPIO5)
(add_net /GPIO6)
(add_net "/GPIO7(SPI1_CE_N)")
(add_net "/GPIO8(SPI0_CE_N)")
(add_net "/GPIO9(SPI0_MISO)")
(add_net /ID_SC)
(add_net /ID_SD)
(add_net BTN1)
(add_net BTN2)
(add_net ENC_BTN)
(add_net ENC_CLK)
(add_net ENC_DAT)
(add_net GND)
(add_net I2C_SCL)
(add_net I2C_SDA)
(add_net I2S_BCLK)
(add_net I2S_DATA)
(add_net I2S_LRCLK)
(add_net "Net-(A1-Pad10)")
(add_net "Net-(A1-Pad11)")
(add_net "Net-(A1-Pad12)")
(add_net "Net-(A1-Pad13)")
(add_net "Net-(A1-Pad14)")
(add_net "Net-(A1-Pad15)")
(add_net "Net-(A1-Pad7)")
(add_net "Net-(A1-Pad8)")
(add_net "Net-(A1-Pad9)")
(add_net "Net-(D1-Pad1)")
(add_net "Net-(D1-Pad2)")
(add_net "Net-(J2-Pad17)")
(add_net "Net-(J3-Pad3)")
(add_net "Net-(J5-Pad2)")
(add_net "Net-(SW2-Pad3)")
(add_net "Net-(SW2-Pad4)")
(add_net "Net-(U1-Pad3)")
)
(net_class 1A ""
(clearance 0.2)
(trace_width 0.76)
(via_dia 1.6)
(via_drill 0.8)
(uvia_dia 0.3)
(uvia_drill 0.1)
(add_net +3V3)
)
(net_class 4A ""
(clearance 0.5)
(trace_width 1.27)
(via_dia 1.6)
(via_drill 0.8)
(uvia_dia 0.3)
(uvia_drill 0.1)
(add_net +5V)
(add_net "Net-(J3-Pad1)")
)
(module Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal (layer F.Cu) (tedit 5AE5139B) (tstamp 609FAB74)
(at 154.051 116.332 180)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path /60838150)
(fp_text reference R1 (at 5.08 0) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 1k (at 7.493 2.286) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 1.93 1.25) (end 8.23 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 1.93 0) (layer F.Fab) (width 0.1))
(fp_line (start 10.16 0) (end 8.23 0) (layer F.Fab) (width 0.1))
(fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 1.81 1.37) (end 8.35 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 1.04 0) (end 1.81 0) (layer F.SilkS) (width 0.12))
(fp_line (start 9.12 0) (end 8.35 0) (layer F.SilkS) (width 0.12))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.5) (end 11.21 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 5.08 0) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 2 thru_hole oval (at 10.16 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 15 +3V3))
(pad 1 thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 40 "/GPIO15(RXD0)"))
(model ${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal (layer F.Cu) (tedit 5AE5139B) (tstamp 608F2490)
(at 158.75 136.906 90)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path /6083B180)
(fp_text reference R2 (at 5.08 0 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 220R (at 5.08 -2.286 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 1.93 1.25) (end 8.23 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 1.93 0) (layer F.Fab) (width 0.1))
(fp_line (start 10.16 0) (end 8.23 0) (layer F.Fab) (width 0.1))
(fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 1.81 1.37) (end 8.35 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 1.04 0) (end 1.81 0) (layer F.SilkS) (width 0.12))
(fp_line (start 9.12 0) (end 8.35 0) (layer F.SilkS) (width 0.12))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.5) (end 11.21 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 5.08 0 90) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 2 thru_hole oval (at 10.16 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 17 "Net-(D1-Pad1)"))
(pad 1 thru_hole circle (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 45 "Net-(J5-Pad2)"))
(model ${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Capacitor_THT:CP_Radial_D6.3mm_P2.50mm (layer F.Cu) (tedit 5AE50EF0) (tstamp 608F22ED)
(at 148.844 108.712 270)
(descr "CP, Radial series, Radial, pin pitch=2.50mm, , diameter=6.3mm, Electrolytic Capacitor")
(tags "CP Radial series Radial pin pitch 2.50mm diameter 6.3mm Electrolytic Capacitor")
(path /6095DB6B)
(fp_text reference C3 (at 1.25 -4.4 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 100u (at 1.25 4.4 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_circle (center 1.25 0) (end 4.4 0) (layer F.Fab) (width 0.1))
(fp_circle (center 1.25 0) (end 4.52 0) (layer F.SilkS) (width 0.12))
(fp_circle (center 1.25 0) (end 4.65 0) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.443972 -1.3735) (end -0.813972 -1.3735) (layer F.Fab) (width 0.1))
(fp_line (start -1.128972 -1.6885) (end -1.128972 -1.0585) (layer F.Fab) (width 0.1))
(fp_line (start 1.25 -3.23) (end 1.25 3.23) (layer F.SilkS) (width 0.12))
(fp_line (start 1.29 -3.23) (end 1.29 3.23) (layer F.SilkS) (width 0.12))
(fp_line (start 1.33 -3.23) (end 1.33 3.23) (layer F.SilkS) (width 0.12))
(fp_line (start 1.37 -3.228) (end 1.37 3.228) (layer F.SilkS) (width 0.12))
(fp_line (start 1.41 -3.227) (end 1.41 3.227) (layer F.SilkS) (width 0.12))
(fp_line (start 1.45 -3.224) (end 1.45 3.224) (layer F.SilkS) (width 0.12))
(fp_line (start 1.49 -3.222) (end 1.49 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 1.49 1.04) (end 1.49 3.222) (layer F.SilkS) (width 0.12))
(fp_line (start 1.53 -3.218) (end 1.53 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 1.53 1.04) (end 1.53 3.218) (layer F.SilkS) (width 0.12))
(fp_line (start 1.57 -3.215) (end 1.57 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 1.57 1.04) (end 1.57 3.215) (layer F.SilkS) (width 0.12))
(fp_line (start 1.61 -3.211) (end 1.61 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 1.61 1.04) (end 1.61 3.211) (layer F.SilkS) (width 0.12))
(fp_line (start 1.65 -3.206) (end 1.65 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 1.65 1.04) (end 1.65 3.206) (layer F.SilkS) (width 0.12))
(fp_line (start 1.69 -3.201) (end 1.69 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 1.69 1.04) (end 1.69 3.201) (layer F.SilkS) (width 0.12))
(fp_line (start 1.73 -3.195) (end 1.73 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 1.73 1.04) (end 1.73 3.195) (layer F.SilkS) (width 0.12))
(fp_line (start 1.77 -3.189) (end 1.77 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 1.77 1.04) (end 1.77 3.189) (layer F.SilkS) (width 0.12))
(fp_line (start 1.81 -3.182) (end 1.81 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 1.81 1.04) (end 1.81 3.182) (layer F.SilkS) (width 0.12))
(fp_line (start 1.85 -3.175) (end 1.85 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 1.85 1.04) (end 1.85 3.175) (layer F.SilkS) (width 0.12))
(fp_line (start 1.89 -3.167) (end 1.89 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 1.89 1.04) (end 1.89 3.167) (layer F.SilkS) (width 0.12))
(fp_line (start 1.93 -3.159) (end 1.93 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 1.93 1.04) (end 1.93 3.159) (layer F.SilkS) (width 0.12))
(fp_line (start 1.971 -3.15) (end 1.971 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 1.971 1.04) (end 1.971 3.15) (layer F.SilkS) (width 0.12))
(fp_line (start 2.011 -3.141) (end 2.011 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 2.011 1.04) (end 2.011 3.141) (layer F.SilkS) (width 0.12))
(fp_line (start 2.051 -3.131) (end 2.051 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 2.051 1.04) (end 2.051 3.131) (layer F.SilkS) (width 0.12))
(fp_line (start 2.091 -3.121) (end 2.091 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 2.091 1.04) (end 2.091 3.121) (layer F.SilkS) (width 0.12))
(fp_line (start 2.131 -3.11) (end 2.131 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 2.131 1.04) (end 2.131 3.11) (layer F.SilkS) (width 0.12))
(fp_line (start 2.171 -3.098) (end 2.171 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 2.171 1.04) (end 2.171 3.098) (layer F.SilkS) (width 0.12))
(fp_line (start 2.211 -3.086) (end 2.211 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 2.211 1.04) (end 2.211 3.086) (layer F.SilkS) (width 0.12))
(fp_line (start 2.251 -3.074) (end 2.251 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 2.251 1.04) (end 2.251 3.074) (layer F.SilkS) (width 0.12))
(fp_line (start 2.291 -3.061) (end 2.291 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 2.291 1.04) (end 2.291 3.061) (layer F.SilkS) (width 0.12))
(fp_line (start 2.331 -3.047) (end 2.331 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 2.331 1.04) (end 2.331 3.047) (layer F.SilkS) (width 0.12))
(fp_line (start 2.371 -3.033) (end 2.371 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 2.371 1.04) (end 2.371 3.033) (layer F.SilkS) (width 0.12))
(fp_line (start 2.411 -3.018) (end 2.411 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 2.411 1.04) (end 2.411 3.018) (layer F.SilkS) (width 0.12))
(fp_line (start 2.451 -3.002) (end 2.451 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 2.451 1.04) (end 2.451 3.002) (layer F.SilkS) (width 0.12))
(fp_line (start 2.491 -2.986) (end 2.491 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 2.491 1.04) (end 2.491 2.986) (layer F.SilkS) (width 0.12))
(fp_line (start 2.531 -2.97) (end 2.531 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 2.531 1.04) (end 2.531 2.97) (layer F.SilkS) (width 0.12))
(fp_line (start 2.571 -2.952) (end 2.571 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 2.571 1.04) (end 2.571 2.952) (layer F.SilkS) (width 0.12))
(fp_line (start 2.611 -2.934) (end 2.611 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 2.611 1.04) (end 2.611 2.934) (layer F.SilkS) (width 0.12))
(fp_line (start 2.651 -2.916) (end 2.651 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 2.651 1.04) (end 2.651 2.916) (layer F.SilkS) (width 0.12))
(fp_line (start 2.691 -2.896) (end 2.691 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 2.691 1.04) (end 2.691 2.896) (layer F.SilkS) (width 0.12))
(fp_line (start 2.731 -2.876) (end 2.731 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 2.731 1.04) (end 2.731 2.876) (layer F.SilkS) (width 0.12))
(fp_line (start 2.771 -2.856) (end 2.771 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 2.771 1.04) (end 2.771 2.856) (layer F.SilkS) (width 0.12))
(fp_line (start 2.811 -2.834) (end 2.811 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 2.811 1.04) (end 2.811 2.834) (layer F.SilkS) (width 0.12))
(fp_line (start 2.851 -2.812) (end 2.851 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 2.851 1.04) (end 2.851 2.812) (layer F.SilkS) (width 0.12))
(fp_line (start 2.891 -2.79) (end 2.891 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 2.891 1.04) (end 2.891 2.79) (layer F.SilkS) (width 0.12))
(fp_line (start 2.931 -2.766) (end 2.931 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 2.931 1.04) (end 2.931 2.766) (layer F.SilkS) (width 0.12))
(fp_line (start 2.971 -2.742) (end 2.971 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 2.971 1.04) (end 2.971 2.742) (layer F.SilkS) (width 0.12))
(fp_line (start 3.011 -2.716) (end 3.011 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 3.011 1.04) (end 3.011 2.716) (layer F.SilkS) (width 0.12))
(fp_line (start 3.051 -2.69) (end 3.051 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 3.051 1.04) (end 3.051 2.69) (layer F.SilkS) (width 0.12))
(fp_line (start 3.091 -2.664) (end 3.091 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 3.091 1.04) (end 3.091 2.664) (layer F.SilkS) (width 0.12))
(fp_line (start 3.131 -2.636) (end 3.131 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 3.131 1.04) (end 3.131 2.636) (layer F.SilkS) (width 0.12))
(fp_line (start 3.171 -2.607) (end 3.171 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 3.171 1.04) (end 3.171 2.607) (layer F.SilkS) (width 0.12))
(fp_line (start 3.211 -2.578) (end 3.211 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 3.211 1.04) (end 3.211 2.578) (layer F.SilkS) (width 0.12))
(fp_line (start 3.251 -2.548) (end 3.251 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 3.251 1.04) (end 3.251 2.548) (layer F.SilkS) (width 0.12))
(fp_line (start 3.291 -2.516) (end 3.291 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 3.291 1.04) (end 3.291 2.516) (layer F.SilkS) (width 0.12))
(fp_line (start 3.331 -2.484) (end 3.331 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 3.331 1.04) (end 3.331 2.484) (layer F.SilkS) (width 0.12))
(fp_line (start 3.371 -2.45) (end 3.371 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 3.371 1.04) (end 3.371 2.45) (layer F.SilkS) (width 0.12))
(fp_line (start 3.411 -2.416) (end 3.411 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 3.411 1.04) (end 3.411 2.416) (layer F.SilkS) (width 0.12))
(fp_line (start 3.451 -2.38) (end 3.451 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 3.451 1.04) (end 3.451 2.38) (layer F.SilkS) (width 0.12))
(fp_line (start 3.491 -2.343) (end 3.491 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 3.491 1.04) (end 3.491 2.343) (layer F.SilkS) (width 0.12))
(fp_line (start 3.531 -2.305) (end 3.531 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 3.531 1.04) (end 3.531 2.305) (layer F.SilkS) (width 0.12))
(fp_line (start 3.571 -2.265) (end 3.571 2.265) (layer F.SilkS) (width 0.12))
(fp_line (start 3.611 -2.224) (end 3.611 2.224) (layer F.SilkS) (width 0.12))
(fp_line (start 3.651 -2.182) (end 3.651 2.182) (layer F.SilkS) (width 0.12))
(fp_line (start 3.691 -2.137) (end 3.691 2.137) (layer F.SilkS) (width 0.12))
(fp_line (start 3.731 -2.092) (end 3.731 2.092) (layer F.SilkS) (width 0.12))
(fp_line (start 3.771 -2.044) (end 3.771 2.044) (layer F.SilkS) (width 0.12))
(fp_line (start 3.811 -1.995) (end 3.811 1.995) (layer F.SilkS) (width 0.12))
(fp_line (start 3.851 -1.944) (end 3.851 1.944) (layer F.SilkS) (width 0.12))
(fp_line (start 3.891 -1.89) (end 3.891 1.89) (layer F.SilkS) (width 0.12))
(fp_line (start 3.931 -1.834) (end 3.931 1.834) (layer F.SilkS) (width 0.12))
(fp_line (start 3.971 -1.776) (end 3.971 1.776) (layer F.SilkS) (width 0.12))
(fp_line (start 4.011 -1.714) (end 4.011 1.714) (layer F.SilkS) (width 0.12))
(fp_line (start 4.051 -1.65) (end 4.051 1.65) (layer F.SilkS) (width 0.12))
(fp_line (start 4.091 -1.581) (end 4.091 1.581) (layer F.SilkS) (width 0.12))
(fp_line (start 4.131 -1.509) (end 4.131 1.509) (layer F.SilkS) (width 0.12))
(fp_line (start 4.171 -1.432) (end 4.171 1.432) (layer F.SilkS) (width 0.12))
(fp_line (start 4.211 -1.35) (end 4.211 1.35) (layer F.SilkS) (width 0.12))
(fp_line (start 4.251 -1.262) (end 4.251 1.262) (layer F.SilkS) (width 0.12))
(fp_line (start 4.291 -1.165) (end 4.291 1.165) (layer F.SilkS) (width 0.12))
(fp_line (start 4.331 -1.059) (end 4.331 1.059) (layer F.SilkS) (width 0.12))
(fp_line (start 4.371 -0.94) (end 4.371 0.94) (layer F.SilkS) (width 0.12))
(fp_line (start 4.411 -0.802) (end 4.411 0.802) (layer F.SilkS) (width 0.12))
(fp_line (start 4.451 -0.633) (end 4.451 0.633) (layer F.SilkS) (width 0.12))
(fp_line (start 4.491 -0.402) (end 4.491 0.402) (layer F.SilkS) (width 0.12))
(fp_line (start -2.250241 -1.839) (end -1.620241 -1.839) (layer F.SilkS) (width 0.12))
(fp_line (start -1.935241 -2.154) (end -1.935241 -1.524) (layer F.SilkS) (width 0.12))
(fp_text user %R (at 1.25 0 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 2 thru_hole circle (at 2.5 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 GND))
(pad 1 thru_hole rect (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 +5V))
(model ${KISYS3DMOD}/Capacitor_THT.3dshapes/CP_Radial_D6.3mm_P2.50mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module minisynth32:PB400EEQR1BLK (layer F.Cu) (tedit 608F8DB6) (tstamp 608F24AE)
(at 136.1948 52.832 90)
(path /60932DE2)
(fp_text reference SW2 (at 2.9464 1.2446 90) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value PB400EEQR1BLK (at 2.9464 1.2446 90) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.5748 31.0642) (end 7.4676 31.0642) (layer F.SilkS) (width 0.1524))
(fp_line (start 7.4676 31.0642) (end 7.4676 -1.0414) (layer F.SilkS) (width 0.1524))
(fp_line (start 7.4676 -1.0414) (end 6.338684 -1.0414) (layer F.SilkS) (width 0.1524))
(fp_line (start -1.5748 -1.0414) (end -1.5748 31.0642) (layer F.SilkS) (width 0.1524))
(fp_line (start -1.4478 30.9372) (end 7.3406 30.9372) (layer F.Fab) (width 0.1524))
(fp_line (start 7.3406 30.9372) (end 7.3406 -0.9144) (layer F.Fab) (width 0.1524))
(fp_line (start 7.3406 -0.9144) (end -1.4478 -0.9144) (layer F.Fab) (width 0.1524))
(fp_line (start -1.4478 -0.9144) (end -1.4478 30.9372) (layer F.Fab) (width 0.1524))
(fp_line (start -0.445884 -1.0414) (end -1.5748 -1.0414) (layer F.SilkS) (width 0.1524))
(fp_line (start 5.446916 -1.0414) (end 0.445884 -1.0414) (layer F.SilkS) (width 0.1524))
(fp_line (start -1.7018 -1.1684) (end -1.7018 31.1912) (layer F.CrtYd) (width 0.1524))
(fp_line (start -1.7018 31.1912) (end 7.5946 31.1912) (layer F.CrtYd) (width 0.1524))
(fp_line (start 7.5946 31.1912) (end 7.5946 -1.1684) (layer F.CrtYd) (width 0.1524))
(fp_line (start 7.5946 -1.1684) (end -1.7018 -1.1684) (layer F.CrtYd) (width 0.1524))
(fp_circle (center 0 -1.905) (end 0.381 -1.905) (layer F.Fab) (width 0.1524))
(fp_text user * (at 0 0 90) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user * (at 0 0 90) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 6 np_thru_hole circle (at 5.1435 13.9192 90) (size 1.905 1.905) (drill 1.905) (layers *.Cu *.Mask))
(pad 5 np_thru_hole circle (at 0.7493 13.9192 90) (size 1.905 1.905) (drill 1.905) (layers *.Cu *.Mask))
(pad 4 thru_hole circle (at 5.8928 2.4892 90) (size 1.6002 1.6002) (drill 1.0922) (layers *.Cu *.Mask)
(net 47 "Net-(SW2-Pad4)"))
(pad 3 thru_hole circle (at 5.8928 0 90) (size 1.6002 1.6002) (drill 1.0922) (layers *.Cu *.Mask)
(net 48 "Net-(SW2-Pad3)"))
(pad 2 thru_hole circle (at 0 2.4892 90) (size 1.6002 1.6002) (drill 1.0922) (layers *.Cu *.Mask)
(net 1 +5V))
(pad 1 thru_hole circle (at 0 0 90) (size 1.6002 1.6002) (drill 1.0922) (layers *.Cu *.Mask)
(net 44 "Net-(J3-Pad1)"))
)
(module minisynth32:PinHeader_1x02_P2.54mm_Vertical (layer F.Cu) (tedit 59FED5CC) (tstamp 608F2462)
(at 146.304 136.652 270)
(descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x02 2.54mm single row")
(path /6090AF21)
(fp_text reference J5 (at 4.385 -2.27 270) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value MIDI_IN (at 1.016 -4.826 180) (layer F.SilkS)
(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 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 -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 3.87) (end 1.33 3.87) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 1.27) (end -1.33 3.87) (layer F.SilkS) (width 0.12))
(fp_line (start 1.33 1.27) (end 1.33 3.87) (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 4.35) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.8 4.35) (end 1.8 4.35) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.8 4.35) (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))
(pad 2 thru_hole oval (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 45 "Net-(J5-Pad2)"))
(pad 1 thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 16 "Net-(D1-Pad2)"))
(model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_P2.54mm_Vertical.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module minisynth32:PinHeader_1x04_P2.54mm_Vertical (layer F.Cu) (tedit 59FED5CC) (tstamp 60960ABE)
(at 132.08 103.632 180)
(descr "Through hole straight pin header, 1x04, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x04 2.54mm single row")
(path /6091ED1E)
(fp_text reference J4 (at 4.385 -2.27 180) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value ROT_HDR (at 0 13.208 270 unlocked) (layer F.SilkS)
(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 8.89) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 8.89) (end -1.27 8.89) (layer F.Fab) (width 0.1))
(fp_line (start -1.27 8.89) (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 8.95) (end 1.33 8.95) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 1.27) (end -1.33 8.95) (layer F.SilkS) (width 0.12))
(fp_line (start 1.33 1.27) (end 1.33 8.95) (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 9.4) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.8 9.4) (end 1.8 9.4) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.8 9.4) (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 -6.604 0.762 270) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 4 thru_hole oval (at 0 7.62 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 38 ENC_DAT))
(pad 3 thru_hole oval (at 0 5.08 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 39 ENC_CLK))
(pad 2 thru_hole oval (at 0 2.54 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 42 ENC_BTN))
(pad 1 thru_hole rect (at 0 0 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 GND))
(model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x04_P2.54mm_Vertical.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module minisynth32:CUI_PJ-002A (layer F.Cu) (tedit 608E4AFE) (tstamp 608F23E2)
(at 150.114 64.008)
(path /60900688)
(fp_text reference J3 (at 2.487052 -6.770615) (layer F.SilkS) hide
(effects (font (size 1.000827 1.000827) (thickness 0.015)))
)
(fp_text value PJ-002A (at 6.302433 5.78184) (layer F.Fab) hide
(effects (font (size 1.001181 1.001181) (thickness 0.015)))
)
(fp_line (start -0.7 -4.5) (end 13.7 -4.5) (layer F.Fab) (width 0.127))
(fp_line (start 13.7 -4.5) (end 13.7 4.5) (layer F.Fab) (width 0.127))
(fp_line (start 13.7 4.5) (end -0.7 4.5) (layer F.Fab) (width 0.127))
(fp_line (start -0.7 4.5) (end -0.7 -4.5) (layer F.Fab) (width 0.127))
(fp_line (start 13.7 -4.5) (end 13.7 4.5) (layer F.SilkS) (width 0.127))
(fp_line (start 13.7 4.5) (end -0.7 4.5) (layer F.SilkS) (width 0.127))
(fp_line (start -0.7 -4.5) (end 0.45 -4.5) (layer F.SilkS) (width 0.127))
(fp_line (start -0.7 4.5) (end -0.7 2.65) (layer F.SilkS) (width 0.127))
(fp_line (start 5.55 -4.5) (end 13.7 -4.5) (layer F.SilkS) (width 0.127))
(fp_line (start -0.7 -2.55) (end -0.7 -4.5) (layer F.SilkS) (width 0.127))
(fp_line (start -1 -4.75) (end 0.45 -4.75) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.45 -4.75) (end 0.45 -6.1) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.45 -6.1) (end 5.55 -6.1) (layer F.CrtYd) (width 0.05))
(fp_line (start 5.55 -6.1) (end 5.55 -4.75) (layer F.CrtYd) (width 0.05))
(fp_line (start 5.55 -4.75) (end 14 -4.75) (layer F.CrtYd) (width 0.05))
(fp_line (start 14 -4.75) (end 14 4.75) (layer F.CrtYd) (width 0.05))
(fp_line (start 14 4.75) (end -1 4.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -1 4.75) (end -1 2.35) (layer F.CrtYd) (width 0.05))
(fp_circle (center -2 0) (end -1.8 0) (layer F.SilkS) (width 0.4))
(fp_line (start -1 -2.25) (end -1 -4.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -1 -2.25) (end -1.55 -2.25) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.55 -2.25) (end -1.55 2.35) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.55 2.35) (end -1 2.35) (layer F.CrtYd) (width 0.05))
(pad 3 thru_hole oval (at 3 -4.7) (size 4.5 2.25) (drill oval 3 1) (layers *.Cu *.Mask)
(net 43 "Net-(J3-Pad3)"))
(pad 2 thru_hole oval (at 6 0) (size 2.25 4.5) (drill oval 1 3) (layers *.Cu *.Mask)
(net 2 GND))
(pad 1 thru_hole oval (at 0 0) (size 2.5 5) (drill oval 1 3.5) (layers *.Cu *.Mask)
(net 44 "Net-(J3-Pad1)"))
)
(module minisynth32:PinHeader_1x06_P2.54mm_Vertical (layer F.Cu) (tedit 59FED5CC) (tstamp 609FA4B6)
(at 132.08 121.412)
(descr "Through hole straight pin header, 1x06, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x06 2.54mm single row")
(path /608E8C61)
(fp_text reference J1 (at 4.385 -2.27) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value F_PANEL (at 0 -5.842 270 unlocked) (layer F.SilkS)
(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 13.97) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 13.97) (end -1.27 13.97) (layer F.Fab) (width 0.1))
(fp_line (start -1.27 13.97) (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 14.03) (end 1.33 14.03) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 1.27) (end -1.33 14.03) (layer F.SilkS) (width 0.12))
(fp_line (start 1.33 1.27) (end 1.33 14.03) (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 14.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.8 14.5) (end 1.8 14.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.8 14.5) (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))
(pad 6 thru_hole oval (at 0 12.7) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 18 I2C_SDA))
(pad 5 thru_hole oval (at 0 10.16) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 19 I2C_SCL))
(pad 4 thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 +5V))
(pad 3 thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 GND))
(pad 2 thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 21 BTN1))
(pad 1 thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 20 BTN2))
(model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x06_P2.54mm_Vertical.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module minisynth32:GY-PCM5102 (layer F.Cu) (tedit 5FB7AB48) (tstamp 608F221E)
(at 152.4 89.835 90)
(path /608E7480)
(fp_text reference A1 (at -0.081 0.254 90) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value GY-PCM5102 (at -0.589 0 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 12.9 8.5) (end 12.9 10) (layer F.Fab) (width 0.12))
(fp_line (start 12.9 8.5) (end 14.3 8.5) (layer F.Fab) (width 0.12))
(fp_line (start 15.8 7) (end 15.8 -7) (layer F.Fab) (width 0.12))
(fp_line (start 8.2 8.5) (end -14.3 8.5) (layer F.Fab) (width 0.12))
(fp_line (start -15.8 -7) (end -15.8 7) (layer F.Fab) (width 0.12))
(fp_line (start 12.9 10) (end 8.2 10) (layer F.Fab) (width 0.12))
(fp_line (start 8.2 10) (end 8.2 8.5) (layer F.Fab) (width 0.12))
(fp_line (start 14.3 -8.5) (end -14.3 -8.5) (layer F.Fab) (width 0.12))
(fp_line (start 8.2 8.5) (end -14.3 8.5) (layer F.CrtYd) (width 0.12))
(fp_line (start 12.9 8.5) (end 14.3 8.5) (layer F.CrtYd) (width 0.12))
(fp_line (start 12.9 8.5) (end 12.9 10) (layer F.CrtYd) (width 0.12))
(fp_line (start 8.2 10) (end 8.2 8.5) (layer F.CrtYd) (width 0.12))
(fp_line (start 15.8 7) (end 15.8 -7) (layer F.CrtYd) (width 0.12))
(fp_line (start 12.9 10) (end 8.2 10) (layer F.CrtYd) (width 0.12))
(fp_line (start -15.8 -7) (end -15.8 7) (layer F.CrtYd) (width 0.12))
(fp_line (start 14.3 -8.5) (end -14.3 -8.5) (layer F.CrtYd) (width 0.12))
(fp_line (start 12.9 -4) (end 12.9 10) (layer F.SilkS) (width 0.12))
(fp_line (start 8.2 -4) (end 12.9 -4) (layer F.SilkS) (width 0.12))
(fp_line (start 8.2 10) (end 8.2 -4) (layer F.SilkS) (width 0.12))
(fp_line (start 12.9 10) (end 8.2 10) (layer F.SilkS) (width 0.12))
(fp_line (start 15.8 7) (end 15.8 -7) (layer F.SilkS) (width 0.12))
(fp_line (start -14.3 8.5) (end 14.3 8.5) (layer F.SilkS) (width 0.12))
(fp_line (start -15.8 -7) (end -15.8 7) (layer F.SilkS) (width 0.12))
(fp_line (start 14.3 -8.5) (end -14.3 -8.5) (layer F.SilkS) (width 0.12))
(fp_arc (start -14.3 -7) (end -14.3 -8.5) (angle -90) (layer F.SilkS) (width 0.12))
(fp_arc (start -14.3 7) (end -15.8 7) (angle -90) (layer F.SilkS) (width 0.12))
(fp_arc (start 14.3 7) (end 14.3 8.5) (angle -90) (layer F.SilkS) (width 0.12))
(fp_arc (start 14.3 -7) (end 15.8 -7) (angle -90) (layer F.SilkS) (width 0.12))
(fp_arc (start -14.3 -7) (end -14.3 -8.5) (angle -90) (layer F.CrtYd) (width 0.12))
(fp_arc (start 14.3 -7) (end 15.8 -7) (angle -90) (layer F.CrtYd) (width 0.12))
(fp_arc (start 14.3 7) (end 14.3 8.5) (angle -90) (layer F.CrtYd) (width 0.12))
(fp_arc (start -14.3 7) (end -15.8 7) (angle -90) (layer F.CrtYd) (width 0.12))
(fp_arc (start -14.3 7) (end -15.8 7) (angle -90) (layer F.Fab) (width 0.12))
(fp_arc (start 14.3 7) (end 14.3 8.5) (angle -90) (layer F.Fab) (width 0.12))
(fp_arc (start -14.3 -7) (end -14.3 -8.5) (angle -90) (layer F.Fab) (width 0.12))
(fp_arc (start 14.3 -7) (end 15.8 -7) (angle -90) (layer F.Fab) (width 0.12))
(pad 6 thru_hole circle (at -14.305 6.35 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 +5V))
(pad 5 thru_hole circle (at -14.305 3.81 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 GND))
(pad 4 thru_hole circle (at -14.305 1.27 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 I2S_LRCLK))
(pad 3 thru_hole circle (at -14.305 -1.27 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 4 I2S_DATA))
(pad 2 thru_hole circle (at -14.305 -3.81 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 5 I2S_BCLK))
(pad 1 thru_hole circle (at -14.305 -6.35 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 GND))
(pad 7 thru_hole circle (at 12.365 -6.985 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 6 "Net-(A1-Pad7)"))
(pad 8 thru_hole circle (at 9.825 -6.985 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 7 "Net-(A1-Pad8)"))
(pad 9 thru_hole circle (at 7.285 -6.985 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 8 "Net-(A1-Pad9)"))
(pad 10 thru_hole circle (at 4.745 -6.985 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 9 "Net-(A1-Pad10)"))
(pad 11 thru_hole circle (at 2.205 -6.985 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 10 "Net-(A1-Pad11)"))
(pad 12 thru_hole circle (at -0.335 -6.985 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 11 "Net-(A1-Pad12)"))
(pad 13 thru_hole circle (at -2.875 -6.985 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 12 "Net-(A1-Pad13)"))
(pad 14 thru_hole circle (at -5.415 -6.985 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 13 "Net-(A1-Pad14)"))
(pad 15 thru_hole circle (at -7.955 -6.985 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 14 "Net-(A1-Pad15)"))
)
(module Package_DIP:DIP-6_W7.62mm (layer F.Cu) (tedit 5A02E8C5) (tstamp 609FA7F6)
(at 153.67 130.302 180)
(descr "6-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils)")
(tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil")
(path /6082E164)
(fp_text reference U1 (at 3.81 -2.33) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value H11L1 (at 3.81 2.794 270 unlocked) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 8.7 -1.55) (end -1.1 -1.55) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.7 6.6) (end 8.7 -1.55) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.1 6.6) (end 8.7 6.6) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.1 -1.55) (end -1.1 6.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 6.46 -1.33) (end 4.81 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start 6.46 6.41) (end 6.46 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start 1.16 6.41) (end 6.46 6.41) (layer F.SilkS) (width 0.12))
(fp_line (start 1.16 -1.33) (end 1.16 6.41) (layer F.SilkS) (width 0.12))
(fp_line (start 2.81 -1.33) (end 1.16 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start 0.635 -0.27) (end 1.635 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start 0.635 6.35) (end 0.635 -0.27) (layer F.Fab) (width 0.1))
(fp_line (start 6.985 6.35) (end 0.635 6.35) (layer F.Fab) (width 0.1))
(fp_line (start 6.985 -1.27) (end 6.985 6.35) (layer F.Fab) (width 0.1))
(fp_line (start 1.635 -1.27) (end 6.985 -1.27) (layer F.Fab) (width 0.1))
(fp_arc (start 3.81 -1.33) (end 2.81 -1.33) (angle -180) (layer F.SilkS) (width 0.12))
(pad 6 thru_hole oval (at 7.62 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 15 +3V3))
(pad 3 thru_hole oval (at 0 5.08 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 46 "Net-(U1-Pad3)"))
(pad 5 thru_hole oval (at 7.62 2.54 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 GND))
(pad 2 thru_hole oval (at 0 2.54 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 16 "Net-(D1-Pad2)"))
(pad 4 thru_hole oval (at 7.62 5.08 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 40 "/GPIO15(RXD0)"))
(pad 1 thru_hole rect (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 17 "Net-(D1-Pad1)"))
(model ${KISYS3DMOD}/Package_DIP.3dshapes/DIP-6_W7.62mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Connector_PinSocket_2.54mm:PinSocket_2x20_P2.54mm_Vertical (layer F.Cu) (tedit 5A19A433) (tstamp 608F23C4)
(at 136.906 136.652 180)
(descr "Through hole straight socket strip, 2x20, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated")
(tags "Through hole socket strip THT 2x20 2.54mm double row")
(path /6083BA4F)
(fp_text reference J2 (at -1.27 -2.77) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value Conn_02x20_Odd_Even (at -1.27 51.03) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -4.34 50) (end -4.34 -1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.76 50) (end -4.34 50) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.76 -1.8) (end 1.76 50) (layer F.CrtYd) (width 0.05))
(fp_line (start -4.34 -1.8) (end 1.76 -1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 0 -1.33) (end 1.33 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start 1.33 -1.33) (end 1.33 0) (layer F.SilkS) (width 0.12))
(fp_line (start -1.27 -1.33) (end -1.27 1.27) (layer F.SilkS) (width 0.12))
(fp_line (start -1.27 1.27) (end 1.33 1.27) (layer F.SilkS) (width 0.12))
(fp_line (start 1.33 1.27) (end 1.33 49.59) (layer F.SilkS) (width 0.12))
(fp_line (start -3.87 49.59) (end 1.33 49.59) (layer F.SilkS) (width 0.12))
(fp_line (start -3.87 -1.33) (end -3.87 49.59) (layer F.SilkS) (width 0.12))
(fp_line (start -3.87 -1.33) (end -1.27 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -3.81 49.53) (end -3.81 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 49.53) (end -3.81 49.53) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 -0.27) (end 1.27 49.53) (layer F.Fab) (width 0.1))
(fp_line (start 0.27 -1.27) (end 1.27 -0.27) (layer F.Fab) (width 0.1))
(fp_line (start -3.81 -1.27) (end 0.27 -1.27) (layer F.Fab) (width 0.1))
(fp_text user %R (at -1.27 24.13 90) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 40 thru_hole oval (at -2.54 48.26 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 4 I2S_DATA))
(pad 39 thru_hole oval (at 0 48.26 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 GND))
(pad 38 thru_hole oval (at -2.54 45.72 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 22 "/GPIO20(SPI1_MOSI)"))
(pad 37 thru_hole oval (at 0 45.72 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 23 /GPIO26))
(pad 36 thru_hole oval (at -2.54 43.18 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 24 /GPIO16))
(pad 35 thru_hole oval (at 0 43.18 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 I2S_LRCLK))
(pad 34 thru_hole oval (at -2.54 40.64 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 GND))
(pad 33 thru_hole oval (at 0 40.64 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 25 "/GPIO13(PWM1)"))
(pad 32 thru_hole oval (at -2.54 38.1 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 26 "/GPIO12(PWM0)"))
(pad 31 thru_hole oval (at 0 38.1 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 27 /GPIO6))
(pad 30 thru_hole oval (at -2.54 35.56 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 GND))
(pad 29 thru_hole oval (at 0 35.56 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 28 /GPIO5))
(pad 28 thru_hole oval (at -2.54 33.02 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 29 /ID_SC))
(pad 27 thru_hole oval (at 0 33.02 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 30 /ID_SD))
(pad 26 thru_hole oval (at -2.54 30.48 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 31 "/GPIO7(SPI1_CE_N)"))
(pad 25 thru_hole oval (at 0 30.48 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 GND))
(pad 24 thru_hole oval (at -2.54 27.94 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 32 "/GPIO8(SPI0_CE_N)"))
(pad 23 thru_hole oval (at 0 27.94 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 33 "/GPIO11(SPI0_CLK)"))
(pad 22 thru_hole oval (at -2.54 25.4 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 34 "/GPIO25(GEN6)"))
(pad 21 thru_hole oval (at 0 25.4 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 35 "/GPIO9(SPI0_MISO)"))
(pad 20 thru_hole oval (at -2.54 22.86 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 GND))
(pad 19 thru_hole oval (at 0 22.86 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 36 "/GPIO10(SPI0_MOSI)"))
(pad 18 thru_hole oval (at -2.54 20.32 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 37 "/GPIO24(GEN5)"))
(pad 17 thru_hole oval (at 0 20.32 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 49 "Net-(J2-Pad17)"))
(pad 16 thru_hole oval (at -2.54 17.78 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 38 ENC_DAT))
(pad 15 thru_hole oval (at 0 17.78 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 39 ENC_CLK))
(pad 14 thru_hole oval (at -2.54 15.24 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 GND))
(pad 13 thru_hole oval (at 0 15.24 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 20 BTN2))
(pad 12 thru_hole oval (at -2.54 12.7 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 5 I2S_BCLK))
(pad 11 thru_hole oval (at 0 12.7 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 21 BTN1))
(pad 10 thru_hole oval (at -2.54 10.16 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 40 "/GPIO15(RXD0)"))
(pad 9 thru_hole oval (at 0 10.16 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 GND))
(pad 8 thru_hole oval (at -2.54 7.62 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 41 "/GPIO14(TXD0)"))
(pad 7 thru_hole oval (at 0 7.62 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 42 ENC_BTN))
(pad 6 thru_hole oval (at -2.54 5.08 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 GND))
(pad 5 thru_hole oval (at 0 5.08 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 19 I2C_SCL))
(pad 4 thru_hole oval (at -2.54 2.54 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 +5V))
(pad 3 thru_hole oval (at 0 2.54 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 18 I2C_SDA))
(pad 2 thru_hole oval (at -2.54 0 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 +5V))
(pad 1 thru_hole rect (at 0 0 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 15 +3V3))
(model ${KISYS3DMOD}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_2x20_P2.54mm_Vertical.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal (layer F.Cu) (tedit 5AE50CD5) (tstamp 608F231F)
(at 158.75 123.698 90)
(descr "Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf")
(tags "Diode DO-35_SOD27 series Axial Horizontal pin pitch 7.62mm length 4mm diameter 2mm")
(path /6083EAA1)
(fp_text reference D1 (at 4.064 0 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 1N4148 (at 4.064 -2.032 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 8.67 -1.25) (end -1.05 -1.25) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.67 1.25) (end 8.67 -1.25) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.25) (end 8.67 1.25) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 -1.25) (end -1.05 1.25) (layer F.CrtYd) (width 0.05))
(fp_line (start 2.29 -1.12) (end 2.29 1.12) (layer F.SilkS) (width 0.12))
(fp_line (start 2.53 -1.12) (end 2.53 1.12) (layer F.SilkS) (width 0.12))
(fp_line (start 2.41 -1.12) (end 2.41 1.12) (layer F.SilkS) (width 0.12))
(fp_line (start 6.58 0) (end 5.93 0) (layer F.SilkS) (width 0.12))
(fp_line (start 1.04 0) (end 1.69 0) (layer F.SilkS) (width 0.12))
(fp_line (start 5.93 -1.12) (end 1.69 -1.12) (layer F.SilkS) (width 0.12))
(fp_line (start 5.93 1.12) (end 5.93 -1.12) (layer F.SilkS) (width 0.12))
(fp_line (start 1.69 1.12) (end 5.93 1.12) (layer F.SilkS) (width 0.12))
(fp_line (start 1.69 -1.12) (end 1.69 1.12) (layer F.SilkS) (width 0.12))
(fp_line (start 2.31 -1) (end 2.31 1) (layer F.Fab) (width 0.1))
(fp_line (start 2.51 -1) (end 2.51 1) (layer F.Fab) (width 0.1))
(fp_line (start 2.41 -1) (end 2.41 1) (layer F.Fab) (width 0.1))
(fp_line (start 7.62 0) (end 5.81 0) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 1.81 0) (layer F.Fab) (width 0.1))
(fp_line (start 5.81 -1) (end 1.81 -1) (layer F.Fab) (width 0.1))
(fp_line (start 5.81 1) (end 5.81 -1) (layer F.Fab) (width 0.1))
(fp_line (start 1.81 1) (end 5.81 1) (layer F.Fab) (width 0.1))
(fp_line (start 1.81 -1) (end 1.81 1) (layer F.Fab) (width 0.1))
(fp_text user K (at -2.032 0 90) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user K (at 0 -1.8 90) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 2 thru_hole oval (at 7.62 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 16 "Net-(D1-Pad2)"))
(pad 1 thru_hole rect (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 17 "Net-(D1-Pad1)"))
(model ${KISYS3DMOD}/Diode_THT.3dshapes/D_DO-35_SOD27_P7.62mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Capacitor_THT:C_Rect_L7.0mm_W2.0mm_P5.00mm (layer F.Cu) (tedit 5AE50EF0) (tstamp 608F2300)
(at 158.75 107.442 270)
(descr "C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*2mm^2, Capacitor")
(tags "C Rect series Radial pin pitch 5.00mm length 7mm width 2mm Capacitor")
(path /6095B998)
(fp_text reference C4 (at 2.5 0 90 unlocked) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 100n (at 2.794 2.032 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 6.25 -1.25) (end -1.25 -1.25) (layer F.CrtYd) (width 0.05))
(fp_line (start 6.25 1.25) (end 6.25 -1.25) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.25 1.25) (end 6.25 1.25) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.25 -1.25) (end -1.25 1.25) (layer F.CrtYd) (width 0.05))
(fp_line (start 6.12 -1.12) (end 6.12 1.12) (layer F.SilkS) (width 0.12))
(fp_line (start -1.12 -1.12) (end -1.12 1.12) (layer F.SilkS) (width 0.12))
(fp_line (start -1.12 1.12) (end 6.12 1.12) (layer F.SilkS) (width 0.12))
(fp_line (start -1.12 -1.12) (end 6.12 -1.12) (layer F.SilkS) (width 0.12))
(fp_line (start 6 -1) (end -1 -1) (layer F.Fab) (width 0.1))
(fp_line (start 6 1) (end 6 -1) (layer F.Fab) (width 0.1))
(fp_line (start -1 1) (end 6 1) (layer F.Fab) (width 0.1))
(fp_line (start -1 -1) (end -1 1) (layer F.Fab) (width 0.1))
(pad 2 thru_hole circle (at 5 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)