-
Notifications
You must be signed in to change notification settings - Fork 22
/
TMS9918.kicad_pcb
8841 lines (8798 loc) · 480 KB
/
TMS9918.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 20211014) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
)
(setup
(pad_to_mask_clearance 0.2)
(solder_mask_min_width 0.25)
(pcbplotparams
(layerselection 0x00010f0_ffffffff)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue false)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "./gerber")
)
)
(net 0 "")
(net 1 "GND")
(net 2 "VCC")
(net 3 "/D0")
(net 4 "/D1")
(net 5 "/D2")
(net 6 "/D3")
(net 7 "/D4")
(net 8 "/D5")
(net 9 "/D6")
(net 10 "/D7")
(net 11 "/A7")
(net 12 "/A6")
(net 13 "/A5")
(net 14 "/A4")
(net 15 "/A0")
(net 16 "Net-(C1-Pad1)")
(net 17 "Net-(C2-Pad1)")
(net 18 "Net-(C3-Pad1)")
(net 19 "Net-(J2-Pad1)")
(net 20 "Net-(Q1-Pad2)")
(net 21 "Net-(R2-Pad1)")
(net 22 "/AD7")
(net 23 "/AD6")
(net 24 "/AD5")
(net 25 "/AD4")
(net 26 "/AD3")
(net 27 "/AD2")
(net 28 "/AD1")
(net 29 "/AD0")
(net 30 "Net-(U4-Pad4)")
(net 31 "/VD2")
(net 32 "/VD1")
(net 33 "/VD0")
(net 34 "/VA6")
(net 35 "/VA5")
(net 36 "/VA4")
(net 37 "/VA3")
(net 38 "/VA2")
(net 39 "/VA1")
(net 40 "/VA0")
(net 41 "/VA12")
(net 42 "/VA7")
(net 43 "/COL")
(net 44 "/ROW")
(net 45 "/A3")
(net 46 "/A2")
(net 47 "/A1")
(net 48 "/~{RESET}")
(net 49 "/~{INT}")
(net 50 "/~{WR}")
(net 51 "/~{RD}")
(net 52 "/~{IORQ}")
(net 53 "/~{ADDR}")
(net 54 "/~{CSR}")
(net 55 "/~{IORQ+ADDR}")
(net 56 "/~{CSW}")
(net 57 "/~{RAS}")
(net 58 "/VD3")
(net 59 "/VD4")
(net 60 "/VD5")
(net 61 "/VD6")
(net 62 "/VD7")
(net 63 "/~{CAS}")
(net 64 "/~{R}W")
(net 65 "/R~{W}")
(net 66 "/VA13")
(net 67 "/VA11")
(net 68 "/VA10")
(net 69 "/VA9")
(net 70 "/VA8")
(net 71 "Net-(J4-Pad1)")
(net 72 "Net-(J4-Pad3)")
(net 73 "Net-(J4-Pad5)")
(net 74 "Net-(J4-Pad7)")
(net 75 "Net-(J4-Pad9)")
(net 76 "Net-(J4-Pad11)")
(net 77 "Net-(J4-Pad13)")
(net 78 "Net-(J4-Pad15)")
(net 79 "Net-(JP1-Pad1)")
(net 80 "/~{E1}")
(net 81 "/~{E2}")
(net 82 "/E3")
(net 83 "/~{A4}")
(net 84 "/~{NMI}")
(net 85 "/GROMCLK")
(net 86 "/CPUCLK")
(net 87 "/EXTVDP")
(net 88 "/~{INTNMI}")
(net 89 "Net-(U4-Pad2)")
(net 90 "Net-(D1-Pad2)")
(net 91 "/BUSCLK")
(footprint "w_conn_av:KLPX-0848A" (layer "F.Cu")
(tedit 5B230CEE) (tstamp 00000000-0000-0000-0000-00005a80933f)
(at 248.92 123.19 180)
(descr "RCA-Connector, Chinch, Kycon KLPX-0848A-2-x")
(tags "RCA-Connector, Chinch, Kycon KLPX-0848A-2-x, ")
(path "/00000000-0000-0000-0000-00005a78351d")
(attr through_hole)
(fp_text reference "J2" (at 5.334 6.096 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8322f275-268c-4e87-a69f-4cfbf05e747f)
)
(fp_text value "Conn_Coaxial" (at -0.508 6.096 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b6270a28-e0d9-4655-a18a-03dbf007b940)
)
(fp_line (start -4 4.15) (end -12.3 4.15) (layer "F.SilkS") (width 0.381) (tstamp 13abf99d-5265-4779-8973-e94370fd18ff))
(fp_line (start -4 -4.15) (end -9.5 -4.15) (layer "F.SilkS") (width 0.381) (tstamp 1860e030-7a36-4298-b7fc-a16d48ab15ba))
(fp_line (start -12.3 4.15) (end -13.5 4.15) (layer "F.SilkS") (width 0.381) (tstamp 32667662-ae86-4904-b198-3e95f11851bf))
(fp_line (start -9.5 -4.15) (end -13.5 -4.15) (layer "F.SilkS") (width 0.381) (tstamp 3dcc657b-55a1-48e0-9667-e01e7b6b08b5))
(fp_line (start 6 5) (end -4 5) (layer "F.SilkS") (width 0.381) (tstamp 46918595-4a45-48e8-84c0-961b4db7f35f))
(fp_line (start -4 -5) (end -4 -4.15) (layer "F.SilkS") (width 0.381) (tstamp 67f6e996-3c99-493c-8f6f-e739e2ed5d7a))
(fp_line (start 6 -5) (end 6 -3) (layer "F.SilkS") (width 0.381) (tstamp 9ccf03e8-755a-4cd9-96fc-30e1d08fa253))
(fp_line (start -4 5) (end -4 4.15) (layer "F.SilkS") (width 0.381) (tstamp a05d7640-f2f6-4ba7-8c51-5a4af431fc13))
(fp_line (start 6 -5) (end -4 -5) (layer "F.SilkS") (width 0.381) (tstamp a7520ad3-0f8b-4788-92d4-8ffb277041e6))
(fp_line (start 6 3) (end 6 5) (layer "F.SilkS") (width 0.381) (tstamp a795f1ba-cdd5-4cc5-9a52-08586e982934))
(fp_line (start -13.5 -4.15) (end -13.5 4.15) (layer "F.SilkS") (width 0.381) (tstamp f3490fa5-5a27-423b-af60-53609669542c))
(pad "1" thru_hole oval locked (at 4.5 0 180) (size 3.5 5) (drill 3) (layers *.Cu *.Mask "F.SilkS")
(net 19 "Net-(J2-Pad1)") (tstamp 23bb2798-d93a-4696-a962-c305c4298a0c))
(pad "2" thru_hole oval locked (at 0 0 180) (size 4 5.5) (drill 3.3) (layers *.Cu *.Mask "F.SilkS")
(net 1 "GND") (tstamp 94c158d1-8503-4553-b511-bf42f506c2a8))
)
(footprint "Capacitor_THT:C_Disc_D3.0mm_W1.6mm_P2.50mm" (layer "F.Cu")
(tedit 5AE50EF0) (tstamp 00000000-0000-0000-0000-00005bdf68c7)
(at 223.266 123.658 90)
(descr "C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.0*1.6mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf")
(tags "C Disc series Radial pin pitch 2.50mm diameter 3.0mm width 1.6mm Capacitor")
(path "/00000000-0000-0000-0000-00005a782922")
(attr through_hole)
(fp_text reference "C1" (at -2.072 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 62c076a3-d618-44a2-9042-9a08b3576787)
)
(fp_text value "16pf" (at -2.286 2.032 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp da469d11-a8a4-414b-9449-d151eeaf4853)
)
(fp_text user "${REFERENCE}" (at 1.25 0 90) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.09)))
(tstamp 10109f84-4940-47f8-8640-91f185ac9bc1)
)
(fp_line (start 0.621 0.92) (end 1.879 0.92) (layer "F.SilkS") (width 0.12) (tstamp 6a955fc7-39d9-4c75-9a69-676ca8c0b9b2))
(fp_line (start 0.621 -0.92) (end 1.879 -0.92) (layer "F.SilkS") (width 0.12) (tstamp f1830a1b-f0cc-47ae-a2c9-679c82032f14))
(fp_line (start 3.55 -1.05) (end -1.05 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp 71c31975-2c45-4d18-a25a-18e07a55d11e))
(fp_line (start 3.55 1.05) (end 3.55 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp 746ba970-8279-4e7b-aed3-f28687777c21))
(fp_line (start -1.05 1.05) (end 3.55 1.05) (layer "F.CrtYd") (width 0.05) (tstamp e10b5627-3247-4c86-b9f6-ef474ca11543))
(fp_line (start -1.05 -1.05) (end -1.05 1.05) (layer "F.CrtYd") (width 0.05) (tstamp e8314017-7be6-4011-9179-37449a29b311))
(fp_line (start 2.75 0.8) (end 2.75 -0.8) (layer "F.Fab") (width 0.1) (tstamp 3f5fe6b7-98fc-4d3e-9567-f9f7202d1455))
(fp_line (start -0.25 0.8) (end 2.75 0.8) (layer "F.Fab") (width 0.1) (tstamp 5cbb5968-dbb5-4b84-864a-ead1cacf75b9))
(fp_line (start -0.25 -0.8) (end -0.25 0.8) (layer "F.Fab") (width 0.1) (tstamp afb8e687-4a13-41a1-b8c0-89a749e897fe))
(fp_line (start 2.75 -0.8) (end -0.25 -0.8) (layer "F.Fab") (width 0.1) (tstamp bb7f0588-d4d8-44bf-9ebf-3c533fe4d6ae))
(pad "1" thru_hole circle locked (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 16 "Net-(C1-Pad1)") (tstamp 55e740a3-0735-4744-896e-2bf5437093b9))
(pad "2" thru_hole circle locked (at 2.5 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "GND") (tstamp f4f99e3d-7269-4f6a-a759-16ad2a258779))
(model "${KISYS3DMOD}/Capacitor_THT.3dshapes/C_Disc_D3.0mm_W1.6mm_P2.50mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_THT:C_Disc_D3.0mm_W1.6mm_P2.50mm" (layer "F.Cu")
(tedit 5AE50EF0) (tstamp 00000000-0000-0000-0000-00005bdf68d7)
(at 208.026 123.698 90)
(descr "C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.0*1.6mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf")
(tags "C Disc series Radial pin pitch 2.50mm diameter 3.0mm width 1.6mm Capacitor")
(path "/00000000-0000-0000-0000-00005a782c60")
(attr through_hole)
(fp_text reference "C2" (at -2.032 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ef8fe2ac-6a7f-4682-9418-b801a1b10a3b)
)
(fp_text value "16pf" (at -1.27 -2.032 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 44d8279a-9cd1-4db6-856f-0363131605fc)
)
(fp_text user "${REFERENCE}" (at 1.25 0 90) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.09)))
(tstamp eb667eea-300e-4ca7-8a6f-4b00de80cd45)
)
(fp_line (start 0.621 0.92) (end 1.879 0.92) (layer "F.SilkS") (width 0.12) (tstamp 1e1b062d-fad0-427c-a622-c5b8a80b5268))
(fp_line (start 0.621 -0.92) (end 1.879 -0.92) (layer "F.SilkS") (width 0.12) (tstamp d8603679-3e7b-4337-8dbc-1827f5f54d8a))
(fp_line (start -1.05 1.05) (end 3.55 1.05) (layer "F.CrtYd") (width 0.05) (tstamp 3b838d52-596d-4e4d-a6ac-e4c8e7621137))
(fp_line (start 3.55 -1.05) (end -1.05 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp 66116376-6967-4178-9f23-a26cdeafc400))
(fp_line (start 3.55 1.05) (end 3.55 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp 749dfe75-c0d6-4872-9330-29c5bbcb8ff8))
(fp_line (start -1.05 -1.05) (end -1.05 1.05) (layer "F.CrtYd") (width 0.05) (tstamp cbdcaa78-3bbc-413f-91bf-2709119373ce))
(fp_line (start -0.25 0.8) (end 2.75 0.8) (layer "F.Fab") (width 0.1) (tstamp 2e642b3e-a476-4c54-9a52-dcea955640cd))
(fp_line (start 2.75 -0.8) (end -0.25 -0.8) (layer "F.Fab") (width 0.1) (tstamp 30f15357-ce1d-48b9-93dc-7d9b1b2aa048))
(fp_line (start -0.25 -0.8) (end -0.25 0.8) (layer "F.Fab") (width 0.1) (tstamp 5038e144-5119-49db-b6cf-f7c345f1cf03))
(fp_line (start 2.75 0.8) (end 2.75 -0.8) (layer "F.Fab") (width 0.1) (tstamp 87371631-aa02-498a-998a-09bdb74784c1))
(pad "1" thru_hole circle locked (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 17 "Net-(C2-Pad1)") (tstamp 54365317-1355-4216-bb75-829375abc4ec))
(pad "2" thru_hole circle locked (at 2.5 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "GND") (tstamp ac264c30-3e9a-4be2-b97a-9949b68bd497))
(model "${KISYS3DMOD}/Capacitor_THT.3dshapes/C_Disc_D3.0mm_W1.6mm_P2.50mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_THT:C_Disc_D3.0mm_W1.6mm_P2.50mm" (layer "F.Cu")
(tedit 5AE50EF0) (tstamp 00000000-0000-0000-0000-00005bdf68e7)
(at 236.474 120.396)
(descr "C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.0*1.6mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf")
(tags "C Disc series Radial pin pitch 2.50mm diameter 3.0mm width 1.6mm Capacitor")
(path "/00000000-0000-0000-0000-00005a782c91")
(attr through_hole)
(fp_text reference "C3" (at 4.6482 0.0381) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6c9b793c-e74d-4754-a2c0-901e73b26f1c)
)
(fp_text value "0.1uf" (at 4.278 -2.032) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6a45789b-3855-401f-8139-3c734f7f52f9)
)
(fp_text user "${REFERENCE}" (at 1.25 0) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.09)))
(tstamp ce83728b-bebd-48c2-8734-b6a50d837931)
)
(fp_line (start 0.621 -0.92) (end 1.879 -0.92) (layer "F.SilkS") (width 0.12) (tstamp f71da641-16e6-4257-80c3-0b9d804fee4f))
(fp_line (start 0.621 0.92) (end 1.879 0.92) (layer "F.SilkS") (width 0.12) (tstamp fd470e95-4861-44fe-b1e4-6d8a7c66e144))
(fp_line (start 3.55 1.05) (end 3.55 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp 0eaa98f0-9565-4637-ace3-42a5231b07f7))
(fp_line (start 3.55 -1.05) (end -1.05 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp 181abe7a-f941-42b6-bd46-aaa3131f90fb))
(fp_line (start -1.05 1.05) (end 3.55 1.05) (layer "F.CrtYd") (width 0.05) (tstamp 704d6d51-bb34-4cbf-83d8-841e208048d8))
(fp_line (start -1.05 -1.05) (end -1.05 1.05) (layer "F.CrtYd") (width 0.05) (tstamp 8174b4de-74b1-48db-ab8e-c8432251095b))
(fp_line (start 2.75 0.8) (end 2.75 -0.8) (layer "F.Fab") (width 0.1) (tstamp 127679a9-3981-4934-815e-896a4e3ff56e))
(fp_line (start 2.75 -0.8) (end -0.25 -0.8) (layer "F.Fab") (width 0.1) (tstamp 48ab88d7-7084-4d02-b109-3ad55a30bb11))
(fp_line (start -0.25 0.8) (end 2.75 0.8) (layer "F.Fab") (width 0.1) (tstamp 716e31c5-485f-40b5-88e3-a75900da9811))
(fp_line (start -0.25 -0.8) (end -0.25 0.8) (layer "F.Fab") (width 0.1) (tstamp b1086f75-01ba-4188-8d36-75a9e2828ca9))
(pad "1" thru_hole circle locked (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 18 "Net-(C3-Pad1)") (tstamp c41b3c8b-634e-435a-b582-96b83bbd4032))
(pad "2" thru_hole circle locked (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "GND") (tstamp 9340c285-5767-42d5-8b6d-63fe2a40ddf3))
(model "${KISYS3DMOD}/Capacitor_THT.3dshapes/C_Disc_D3.0mm_W1.6mm_P2.50mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_THT:C_Disc_D3.0mm_W1.6mm_P2.50mm" (layer "F.Cu")
(tedit 5AE50EF0) (tstamp 00000000-0000-0000-0000-00005bdf68f7)
(at 176.53 123.444 -90)
(descr "C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.0*1.6mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf")
(tags "C Disc series Radial pin pitch 2.50mm diameter 3.0mm width 1.6mm Capacitor")
(path "/00000000-0000-0000-0000-00005a79986c")
(attr through_hole)
(fp_text reference "C4" (at 4.826 0 -90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d57dcfee-5058-4fc2-a68b-05f9a48f685b)
)
(fp_text value "0.1uf" (at 7.874 0 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 03c52831-5dc5-43c5-a442-8d23643b46fb)
)
(fp_text user "${REFERENCE}" (at 1.25 0 -90) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.09)))
(tstamp a1823eb2-fb0d-4ed8-8b96-04184ac3a9d5)
)
(fp_line (start 0.621 -0.92) (end 1.879 -0.92) (layer "F.SilkS") (width 0.12) (tstamp 2d210a96-f81f-42a9-8bf4-1b43c11086f3))
(fp_line (start 0.621 0.92) (end 1.879 0.92) (layer "F.SilkS") (width 0.12) (tstamp 9bb20359-0f8b-45bc-9d38-6626ed3a939d))
(fp_line (start 3.55 -1.05) (end -1.05 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp 29e78086-2175-405e-9ba3-c48766d2f50c))
(fp_line (start -1.05 1.05) (end 3.55 1.05) (layer "F.CrtYd") (width 0.05) (tstamp 4c8eb964-bdf4-44de-90e9-e2ab82dd5313))
(fp_line (start 3.55 1.05) (end 3.55 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp 94a873dc-af67-4ef9-8159-1f7c93eeb3d7))
(fp_line (start -1.05 -1.05) (end -1.05 1.05) (layer "F.CrtYd") (width 0.05) (tstamp aa14c3bd-4acc-4908-9d28-228585a22a9d))
(fp_line (start -0.25 0.8) (end 2.75 0.8) (layer "F.Fab") (width 0.1) (tstamp 666713b0-70f4-42df-8761-f65bc212d03b))
(fp_line (start 2.75 0.8) (end 2.75 -0.8) (layer "F.Fab") (width 0.1) (tstamp 6c2e273e-743c-4f1e-a647-4171f8122550))
(fp_line (start -0.25 -0.8) (end -0.25 0.8) (layer "F.Fab") (width 0.1) (tstamp 7dc880bc-e7eb-4cce-8d8c-0b65a9dd788e))
(fp_line (start 2.75 -0.8) (end -0.25 -0.8) (layer "F.Fab") (width 0.1) (tstamp e857610b-4434-4144-b04e-43c1ebdc5ceb))
(pad "1" thru_hole circle locked (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "VCC") (tstamp 7aed3a71-054b-4aaa-9c0a-030523c32827))
(pad "2" thru_hole circle locked (at 2.5 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "GND") (tstamp 9157f4ae-0244-4ff1-9f73-3cb4cbb5f280))
(model "${KISYS3DMOD}/Capacitor_THT.3dshapes/C_Disc_D3.0mm_W1.6mm_P2.50mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_THT:C_Disc_D3.0mm_W1.6mm_P2.50mm" (layer "F.Cu")
(tedit 5AE50EF0) (tstamp 00000000-0000-0000-0000-00005bdf6907)
(at 189.23 123.444 -90)
(descr "C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.0*1.6mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf")
(tags "C Disc series Radial pin pitch 2.50mm diameter 3.0mm width 1.6mm Capacitor")
(path "/00000000-0000-0000-0000-00005a799a39")
(attr through_hole)
(fp_text reference "C5" (at 4.826 0 -90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bdc7face-9f7c-4701-80bb-4cc144448db1)
)
(fp_text value "0.1uf" (at 7.874 0 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 97fe9c60-586f-4895-8504-4d3729f5f81a)
)
(fp_text user "${REFERENCE}" (at 1.25 0 -90) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.09)))
(tstamp 2d6db888-4e40-41c8-b701-07170fc894bc)
)
(fp_line (start 0.621 0.92) (end 1.879 0.92) (layer "F.SilkS") (width 0.12) (tstamp 6441b183-b8f2-458f-a23d-60e2b1f66dd6))
(fp_line (start 0.621 -0.92) (end 1.879 -0.92) (layer "F.SilkS") (width 0.12) (tstamp bfc0aadc-38cf-466e-a642-68fdc3138c78))
(fp_line (start -1.05 -1.05) (end -1.05 1.05) (layer "F.CrtYd") (width 0.05) (tstamp 31e08896-1992-4725-96d9-9d2728bca7a3))
(fp_line (start 3.55 -1.05) (end -1.05 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp 66043bca-a260-4915-9fce-8a51d324c687))
(fp_line (start 3.55 1.05) (end 3.55 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp 852dabbf-de45-4470-8176-59d37a754407))
(fp_line (start -1.05 1.05) (end 3.55 1.05) (layer "F.CrtYd") (width 0.05) (tstamp b5352a33-563a-4ffe-a231-2e68fb54afa3))
(fp_line (start -0.25 0.8) (end 2.75 0.8) (layer "F.Fab") (width 0.1) (tstamp 0f54db53-a272-4955-88fb-d7ab00657bb0))
(fp_line (start 2.75 0.8) (end 2.75 -0.8) (layer "F.Fab") (width 0.1) (tstamp 80094b70-85ab-4ff6-934b-60d5ee65023a))
(fp_line (start -0.25 -0.8) (end -0.25 0.8) (layer "F.Fab") (width 0.1) (tstamp 922058ca-d09a-45fd-8394-05f3e2c1e03a))
(fp_line (start 2.75 -0.8) (end -0.25 -0.8) (layer "F.Fab") (width 0.1) (tstamp d4a1d3c4-b315-4bec-9220-d12a9eab51e0))
(pad "1" thru_hole circle locked (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "VCC") (tstamp 7bbf981c-a063-4e30-8911-e4228e1c0743))
(pad "2" thru_hole circle locked (at 2.5 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "GND") (tstamp 5528bcad-2950-4673-90eb-c37e6952c475))
(model "${KISYS3DMOD}/Capacitor_THT.3dshapes/C_Disc_D3.0mm_W1.6mm_P2.50mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_THT:C_Disc_D3.0mm_W1.6mm_P2.50mm" (layer "F.Cu")
(tedit 5AE50EF0) (tstamp 00000000-0000-0000-0000-00005bdf6917)
(at 167.64 108.458 -90)
(descr "C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.0*1.6mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf")
(tags "C Disc series Radial pin pitch 2.50mm diameter 3.0mm width 1.6mm Capacitor")
(path "/00000000-0000-0000-0000-00005a799a9f")
(attr through_hole)
(fp_text reference "C6" (at 4.826 0 -90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 240e07e1-770b-4b27-894f-29fd601c924d)
)
(fp_text value "0.1uf" (at 0.214 -1.778 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 003c2200-0632-4808-a662-8ddd5d30c768)
)
(fp_text user "${REFERENCE}" (at 1.25 0 -90) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.09)))
(tstamp 0217dfc4-fc13-4699-99ad-d9948522648e)
)
(fp_line (start 0.621 -0.92) (end 1.879 -0.92) (layer "F.SilkS") (width 0.12) (tstamp 63ff1c93-3f96-4c33-b498-5dd8c33bccc0))
(fp_line (start 0.621 0.92) (end 1.879 0.92) (layer "F.SilkS") (width 0.12) (tstamp b88717bd-086f-46cd-9d3f-0396009d0996))
(fp_line (start -1.05 1.05) (end 3.55 1.05) (layer "F.CrtYd") (width 0.05) (tstamp 2f215f15-3d52-4c91-93e6-3ea03a95622f))
(fp_line (start -1.05 -1.05) (end -1.05 1.05) (layer "F.CrtYd") (width 0.05) (tstamp 61fe293f-6808-4b7f-9340-9aaac7054a97))
(fp_line (start 3.55 1.05) (end 3.55 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp 8da933a9-35f8-42e6-8504-d1bab7264306))
(fp_line (start 3.55 -1.05) (end -1.05 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp bd5408e4-362d-4e43-9d39-78fb99eb52c8))
(fp_line (start -0.25 0.8) (end 2.75 0.8) (layer "F.Fab") (width 0.1) (tstamp 9b0a1687-7e1b-4a04-a30b-c27a072a2949))
(fp_line (start 2.75 -0.8) (end -0.25 -0.8) (layer "F.Fab") (width 0.1) (tstamp 9e1b837f-0d34-4a18-9644-9ee68f141f46))
(fp_line (start 2.75 0.8) (end 2.75 -0.8) (layer "F.Fab") (width 0.1) (tstamp c01d25cd-f4bb-4ef3-b5ea-533a2a4ddb2b))
(fp_line (start -0.25 -0.8) (end -0.25 0.8) (layer "F.Fab") (width 0.1) (tstamp ee27d19c-8dca-4ac8-a760-6dfd54d28071))
(pad "1" thru_hole circle locked (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "VCC") (tstamp c0eca5ed-bc5e-4618-9bcd-80945bea41ed))
(pad "2" thru_hole circle locked (at 2.5 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "GND") (tstamp 6bfe5804-2ef9-4c65-b2a7-f01e4014370a))
(model "${KISYS3DMOD}/Capacitor_THT.3dshapes/C_Disc_D3.0mm_W1.6mm_P2.50mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_THT:C_Disc_D3.0mm_W1.6mm_P2.50mm" (layer "F.Cu")
(tedit 5AE50EF0) (tstamp 00000000-0000-0000-0000-00005bdf6927)
(at 220.98 128.016)
(descr "C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.0*1.6mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf")
(tags "C Disc series Radial pin pitch 2.50mm diameter 3.0mm width 1.6mm Capacitor")
(path "/00000000-0000-0000-0000-00005a799b12")
(attr through_hole)
(fp_text reference "C7" (at -2.032 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6475547d-3216-45a4-a15c-48314f1dd0f9)
)
(fp_text value "0.1uf" (at 1.016 -3.302) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8c6a821f-8e19-48f3-8f44-9b340f7689bc)
)
(fp_text user "${REFERENCE}" (at 1.25 0) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.09)))
(tstamp babeabf2-f3b0-4ed5-8d9e-0215947e6cf3)
)
(fp_line (start 0.621 -0.92) (end 1.879 -0.92) (layer "F.SilkS") (width 0.12) (tstamp 12422a89-3d0c-485c-9386-f77121fd68fd))
(fp_line (start 0.621 0.92) (end 1.879 0.92) (layer "F.SilkS") (width 0.12) (tstamp 8e06ba1f-e3ba-4eb9-a10e-887dffd566d6))
(fp_line (start -1.05 -1.05) (end -1.05 1.05) (layer "F.CrtYd") (width 0.05) (tstamp 40165eda-4ba6-4565-9bb4-b9df6dbb08da))
(fp_line (start 3.55 1.05) (end 3.55 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp 4780a290-d25c-4459-9579-eba3f7678762))
(fp_line (start -1.05 1.05) (end 3.55 1.05) (layer "F.CrtYd") (width 0.05) (tstamp 7e023245-2c2b-4e2b-bfb9-5d35176e88f2))
(fp_line (start 3.55 -1.05) (end -1.05 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp df68c26a-03b5-4466-aecf-ba34b7dce6b7))
(fp_line (start 2.75 0.8) (end 2.75 -0.8) (layer "F.Fab") (width 0.1) (tstamp 1a6d2848-e78e-49fe-8978-e1890f07836f))
(fp_line (start -0.25 -0.8) (end -0.25 0.8) (layer "F.Fab") (width 0.1) (tstamp 45008225-f50f-4d6b-b508-6730a9408caf))
(fp_line (start 2.75 -0.8) (end -0.25 -0.8) (layer "F.Fab") (width 0.1) (tstamp 7d34f6b1-ab31-49be-b011-c67fe67a8a56))
(fp_line (start -0.25 0.8) (end 2.75 0.8) (layer "F.Fab") (width 0.1) (tstamp a544eb0a-75db-4baf-bf54-9ca21744343b))
(pad "1" thru_hole circle locked (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "VCC") (tstamp e8c50f1b-c316-4110-9cce-5c24c65a1eaa))
(pad "2" thru_hole circle locked (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "GND") (tstamp d7269d2a-b8c0-422d-8f25-f79ea31bf75e))
(model "${KISYS3DMOD}/Capacitor_THT.3dshapes/C_Disc_D3.0mm_W1.6mm_P2.50mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_THT:C_Disc_D3.0mm_W1.6mm_P2.50mm" (layer "F.Cu")
(tedit 5AE50EF0) (tstamp 00000000-0000-0000-0000-00005bdf6937)
(at 203.2 123.444 -90)
(descr "C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.0*1.6mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf")
(tags "C Disc series Radial pin pitch 2.50mm diameter 3.0mm width 1.6mm Capacitor")
(path "/00000000-0000-0000-0000-00005a799b88")
(attr through_hole)
(fp_text reference "C8" (at 1.1303 -1.9685 -90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d5641ac9-9be7-46bf-90b3-6c83d852b5ba)
)
(fp_text value "0.1uf" (at 3.81 -1.778 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c25a772d-af9c-4ebc-96f6-0966738c13a8)
)
(fp_text user "${REFERENCE}" (at 1.25 0 -90) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.09)))
(tstamp 8c514922-ffe1-4e37-a260-e807409f2e0d)
)
(fp_line (start 0.621 -0.92) (end 1.879 -0.92) (layer "F.SilkS") (width 0.12) (tstamp 639c0e59-e95c-4114-bccd-2e7277505454))
(fp_line (start 0.621 0.92) (end 1.879 0.92) (layer "F.SilkS") (width 0.12) (tstamp d3c11c8f-a73d-4211-934b-a6da255728ad))
(fp_line (start 3.55 -1.05) (end -1.05 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp 40976bf0-19de-460f-ad64-224d4f51e16b))
(fp_line (start -1.05 -1.05) (end -1.05 1.05) (layer "F.CrtYd") (width 0.05) (tstamp a15a7506-eae4-4933-84da-9ad754258706))
(fp_line (start -1.05 1.05) (end 3.55 1.05) (layer "F.CrtYd") (width 0.05) (tstamp c8c79177-94d4-43e2-a654-f0a5554fbb68))
(fp_line (start 3.55 1.05) (end 3.55 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp e21aa84b-970e-47cf-b64f-3b55ee0e1b51))
(fp_line (start 2.75 0.8) (end 2.75 -0.8) (layer "F.Fab") (width 0.1) (tstamp 03caada9-9e22-4e2d-9035-b15433dfbb17))
(fp_line (start -0.25 -0.8) (end -0.25 0.8) (layer "F.Fab") (width 0.1) (tstamp 0ff508fd-18da-4ab7-9844-3c8a28c2587e))
(fp_line (start -0.25 0.8) (end 2.75 0.8) (layer "F.Fab") (width 0.1) (tstamp 1f3003e6-dce5-420f-906b-3f1e92b67249))
(fp_line (start 2.75 -0.8) (end -0.25 -0.8) (layer "F.Fab") (width 0.1) (tstamp 8ca3e20d-bcc7-4c5e-9deb-562dfed9fecb))
(pad "1" thru_hole circle locked (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "VCC") (tstamp a27eb049-c992-4f11-a026-1e6a8d9d0160))
(pad "2" thru_hole circle locked (at 2.5 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "GND") (tstamp 378af8b4-af3d-46e7-89ae-deff12ca9067))
(model "${KISYS3DMOD}/Capacitor_THT.3dshapes/C_Disc_D3.0mm_W1.6mm_P2.50mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_THT:C_Disc_D3.0mm_W1.6mm_P2.50mm" (layer "F.Cu")
(tedit 5AE50EF0) (tstamp 00000000-0000-0000-0000-00005bdf6947)
(at 208.026 107.442 90)
(descr "C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.0*1.6mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf")
(tags "C Disc series Radial pin pitch 2.50mm diameter 3.0mm width 1.6mm Capacitor")
(path "/00000000-0000-0000-0000-00005a799bef")
(attr through_hole)
(fp_text reference "C9" (at 0.254 -2.032 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 68877d35-b796-44db-9124-b8e744e7412e)
)
(fp_text value "0.1uf" (at -2.794 -2.286 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b96fe6ac-3535-4455-ab88-ed77f5e46d6e)
)
(fp_text user "${REFERENCE}" (at 1.25 0 90) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.09)))
(tstamp ec31c074-17b2-48e1-ab01-071acad3fa04)
)
(fp_line (start 0.621 -0.92) (end 1.879 -0.92) (layer "F.SilkS") (width 0.12) (tstamp 70e15522-1572-4451-9c0d-6d36ac70d8c6))
(fp_line (start 0.621 0.92) (end 1.879 0.92) (layer "F.SilkS") (width 0.12) (tstamp dde51ae5-b215-445e-92bb-4a12ec410531))
(fp_line (start 3.55 1.05) (end 3.55 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp 0755aee5-bc01-4cb5-b830-583289df50a3))
(fp_line (start 3.55 -1.05) (end -1.05 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp 4a21e717-d46d-4d9e-8b98-af4ecb02d3ec))
(fp_line (start -1.05 1.05) (end 3.55 1.05) (layer "F.CrtYd") (width 0.05) (tstamp 4fb21471-41be-4be8-9687-66030f97befc))
(fp_line (start -1.05 -1.05) (end -1.05 1.05) (layer "F.CrtYd") (width 0.05) (tstamp 7599133e-c681-4202-85d9-c20dac196c64))
(fp_line (start 2.75 0.8) (end 2.75 -0.8) (layer "F.Fab") (width 0.1) (tstamp 6d26d68f-1ca7-4ff3-b058-272f1c399047))
(fp_line (start -0.25 0.8) (end 2.75 0.8) (layer "F.Fab") (width 0.1) (tstamp 911bdcbe-493f-4e21-a506-7cbc636e2c17))
(fp_line (start -0.25 -0.8) (end -0.25 0.8) (layer "F.Fab") (width 0.1) (tstamp 9f8381e9-3077-4453-a480-a01ad9c1a940))
(fp_line (start 2.75 -0.8) (end -0.25 -0.8) (layer "F.Fab") (width 0.1) (tstamp d3d7e298-1d39-4294-a3ab-c84cc0dc5e5a))
(pad "1" thru_hole circle locked (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "VCC") (tstamp 60dcd1fe-7079-4cb8-b509-04558ccf5097))
(pad "2" thru_hole circle locked (at 2.5 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "GND") (tstamp c5eb1e4c-ce83-470e-8f32-e20ff1f886a3))
(model "${KISYS3DMOD}/Capacitor_THT.3dshapes/C_Disc_D3.0mm_W1.6mm_P2.50mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_THT:C_Disc_D3.0mm_W1.6mm_P2.50mm" (layer "F.Cu")
(tedit 5AE50EF0) (tstamp 00000000-0000-0000-0000-00005bdf6957)
(at 163.068 128.524 180)
(descr "C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.0*1.6mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf")
(tags "C Disc series Radial pin pitch 2.50mm diameter 3.0mm width 1.6mm Capacitor")
(path "/00000000-0000-0000-0000-00005a79ae12")
(attr through_hole)
(fp_text reference "C10" (at 5.08 0 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ca87f11b-5f48-4b57-8535-68d3ec2fe5a9)
)
(fp_text value "0.1uf" (at -3.048 0 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7d928d56-093a-4ca8-aed1-414b7e703b45)
)
(fp_text user "${REFERENCE}" (at 1.25 0 180) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.09)))
(tstamp 8a650ebf-3f78-4ca4-a26b-a5028693e36d)
)
(fp_line (start 0.621 0.92) (end 1.879 0.92) (layer "F.SilkS") (width 0.12) (tstamp b1c649b1-f44d-46c7-9dea-818e75a1b87e))
(fp_line (start 0.621 -0.92) (end 1.879 -0.92) (layer "F.SilkS") (width 0.12) (tstamp f3628265-0155-43e2-a467-c40ff783e265))
(fp_line (start -1.05 1.05) (end 3.55 1.05) (layer "F.CrtYd") (width 0.05) (tstamp 0c3dceba-7c95-4b3d-b590-0eb581444beb))
(fp_line (start 3.55 -1.05) (end -1.05 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp 730b670c-9bcf-4dcd-9a8d-fcaa61fb0955))
(fp_line (start -1.05 -1.05) (end -1.05 1.05) (layer "F.CrtYd") (width 0.05) (tstamp 965308c8-e014-459a-b9db-b8493a601c62))
(fp_line (start 3.55 1.05) (end 3.55 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp abe07c9a-17c3-43b5-b7a6-ae867ac27ea7))
(fp_line (start -0.25 -0.8) (end -0.25 0.8) (layer "F.Fab") (width 0.1) (tstamp 16a9ae8c-3ad2-439b-8efe-377c994670c7))
(fp_line (start 2.75 -0.8) (end -0.25 -0.8) (layer "F.Fab") (width 0.1) (tstamp 6595b9c7-02ee-4647-bde5-6b566e35163e))
(fp_line (start -0.25 0.8) (end 2.75 0.8) (layer "F.Fab") (width 0.1) (tstamp 770ad51a-7219-4633-b24a-bd20feb0a6c5))
(fp_line (start 2.75 0.8) (end 2.75 -0.8) (layer "F.Fab") (width 0.1) (tstamp b7199d9b-bebb-4100-9ad3-c2bd31e21d65))
(pad "1" thru_hole circle locked (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "VCC") (tstamp e4c6fdbb-fdc7-4ad4-a516-240d84cdc120))
(pad "2" thru_hole circle locked (at 2.5 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "GND") (tstamp db36f6e3-e72a-487f-bda9-88cc84536f62))
(model "${KISYS3DMOD}/Capacitor_THT.3dshapes/C_Disc_D3.0mm_W1.6mm_P2.50mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_THT:C_Disc_D3.0mm_W1.6mm_P2.50mm" (layer "F.Cu")
(tedit 5AE50EF0) (tstamp 00000000-0000-0000-0000-00005bdf6967)
(at 231.648 104.902)
(descr "C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.0*1.6mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf")
(tags "C Disc series Radial pin pitch 2.50mm diameter 3.0mm width 1.6mm Capacitor")
(path "/00000000-0000-0000-0000-00005a7db855")
(attr through_hole)
(fp_text reference "C11" (at 5.04 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 182b2d54-931d-49d6-9f39-60a752623e36)
)
(fp_text value "0.1uf" (at 8.596 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5114c7bf-b955-49f3-a0a8-4b954c81bde0)
)
(fp_text user "${REFERENCE}" (at 1.25 0) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.09)))
(tstamp 2dc272bd-3aa2-45b5-889d-1d3c8aac80f8)
)
(fp_line (start 0.621 0.92) (end 1.879 0.92) (layer "F.SilkS") (width 0.12) (tstamp 6ec113ca-7d27-4b14-a180-1e5e2fd1c167))
(fp_line (start 0.621 -0.92) (end 1.879 -0.92) (layer "F.SilkS") (width 0.12) (tstamp e43dbe34-ed17-4e35-a5c7-2f1679b3c415))
(fp_line (start -1.05 1.05) (end 3.55 1.05) (layer "F.CrtYd") (width 0.05) (tstamp 5bcace5d-edd0-4e19-92d0-835e43cf8eb2))
(fp_line (start 3.55 -1.05) (end -1.05 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp 6c2d26bc-6eca-436c-8025-79f817bf57d6))
(fp_line (start -1.05 -1.05) (end -1.05 1.05) (layer "F.CrtYd") (width 0.05) (tstamp bd065eaf-e495-4837-bdb3-129934de1fc7))
(fp_line (start 3.55 1.05) (end 3.55 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp cb24efdd-07c6-4317-9277-131625b065ac))
(fp_line (start 2.75 -0.8) (end -0.25 -0.8) (layer "F.Fab") (width 0.1) (tstamp 14769dc5-8525-4984-8b15-a734ee247efa))
(fp_line (start 2.75 0.8) (end 2.75 -0.8) (layer "F.Fab") (width 0.1) (tstamp 19c56563-5fe3-442a-885b-418dbc2421eb))
(fp_line (start -0.25 0.8) (end 2.75 0.8) (layer "F.Fab") (width 0.1) (tstamp 21ae9c3a-7138-444e-be38-56a4842ab594))
(fp_line (start -0.25 -0.8) (end -0.25 0.8) (layer "F.Fab") (width 0.1) (tstamp c7e7067c-5f5e-48d8-ab59-df26f9b35863))
(pad "1" thru_hole circle locked (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "VCC") (tstamp 7cee474b-af8f-4832-b07a-c43c1ab0b464))
(pad "2" thru_hole circle locked (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "GND") (tstamp 9cb12cc8-7f1a-4a01-9256-c119f11a8a02))
(model "${KISYS3DMOD}/Capacitor_THT.3dshapes/C_Disc_D3.0mm_W1.6mm_P2.50mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x39_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp 00000000-0000-0000-0000-00005bdf6977)
(at 155.194 152.146 90)
(descr "Through hole straight pin header, 1x39, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x39 2.54mm single row")
(path "/00000000-0000-0000-0000-00005a772849")
(attr through_hole)
(fp_text reference "J1" (at 0 -2.33 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b447dbb1-d38e-4a15-93cb-12c25382ea53)
)
(fp_text value "Conn_01x39" (at 0 98.85 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cfa5c16e-7859-460d-a0b8-cea7d7ea629c)
)
(fp_text user "${REFERENCE}" (at 0 48.26 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 67763d19-f622-4e1e-81e5-5b24da7c3f99)
)
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 0e1ed1c5-7428-4dc7-b76e-49b2d5f8177d))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 14c51520-6d91-4098-a59a-5121f2a898f7))
(fp_line (start -1.33 97.85) (end 1.33 97.85) (layer "F.SilkS") (width 0.12) (tstamp 240e5dac-6242-47a5-bbef-f76d11c715c0))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 2d67a417-188f-4014-9282-000265d80009))
(fp_line (start -1.33 1.27) (end -1.33 97.85) (layer "F.SilkS") (width 0.12) (tstamp aa2ea573-3f20-43c1-aa99-1f9c6031a9aa))
(fp_line (start 1.33 1.27) (end 1.33 97.85) (layer "F.SilkS") (width 0.12) (tstamp f40d350f-0d3e-4f8a-b004-d950f2f8f1ba))
(fp_line (start 1.8 98.3) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 097edb1b-8998-4e70-b670-bba125982348))
(fp_line (start -1.8 98.3) (end 1.8 98.3) (layer "F.CrtYd") (width 0.05) (tstamp 477311b9-8f81-40c8-9c55-fd87e287247a))
(fp_line (start -1.8 -1.8) (end -1.8 98.3) (layer "F.CrtYd") (width 0.05) (tstamp 84e5506c-143e-495f-9aa4-d3a71622f213))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 994b6220-4755-4d84-91b3-6122ac1c2c5e))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 0351df45-d042-41d4-ba35-88092c7be2fc))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 37e8181c-a81e-498b-b2e2-0aef0c391059))
(fp_line (start 1.27 -1.27) (end 1.27 97.79) (layer "F.Fab") (width 0.1) (tstamp 676efd2f-1c48-4786-9e4b-2444f1e8f6ff))
(fp_line (start 1.27 97.79) (end -1.27 97.79) (layer "F.Fab") (width 0.1) (tstamp 8d9a3ecc-539f-41da-8099-d37cea9c28e7))
(fp_line (start -1.27 97.79) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp e472dac4-5b65-4920-b8b2-6065d140a69d))
(pad "1" thru_hole rect locked (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (tstamp 6284122b-79c3-4e04-925e-3d32cc3ec077))
(pad "2" thru_hole oval locked (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (tstamp ca5a4651-0d1d-441b-b17d-01518ef3b656))
(pad "3" thru_hole oval locked (at 0 5.08 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (tstamp a13ab237-8f8d-4e16-8c47-4440653b8534))
(pad "4" thru_hole oval locked (at 0 7.62 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (tstamp 099096e4-8c2a-4d84-a16f-06b4b6330e7a))
(pad "5" thru_hole oval locked (at 0 10.16 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (tstamp 87d7448e-e139-4209-ae0b-372f805267da))
(pad "6" thru_hole oval locked (at 0 12.7 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (tstamp 34a74736-156e-4bf3-9200-cd137cfa59da))
(pad "7" thru_hole oval locked (at 0 15.24 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (tstamp d0d2eee9-31f6-44fa-8149-ebb4dc2dc0dc))
(pad "8" thru_hole oval locked (at 0 17.78 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (tstamp ee41cb8e-512d-41d2-81e1-3c50fff32aeb))
(pad "9" thru_hole oval locked (at 0 20.32 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 11 "/A7") (tstamp 1e518c2a-4cb7-4599-a1fa-5b9f847da7d3))
(pad "10" thru_hole oval locked (at 0 22.86 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 12 "/A6") (tstamp 644ae9fc-3c8e-4089-866e-a12bf371c3e9))
(pad "11" thru_hole oval locked (at 0 25.4 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 13 "/A5") (tstamp 41acfe41-fac7-432a-a7a3-946566e2d504))
(pad "12" thru_hole oval locked (at 0 27.94 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 14 "/A4") (tstamp 3a52f112-cb97-43db-aaeb-20afe27664d7))
(pad "13" thru_hole oval locked (at 0 30.48 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 45 "/A3") (tstamp f4eb0267-179f-46c9-b516-9bfb06bac1ba))
(pad "14" thru_hole oval locked (at 0 33.02 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 46 "/A2") (tstamp 8087f566-a94d-4bbc-985b-e49ee7762296))
(pad "15" thru_hole oval locked (at 0 35.56 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 47 "/A1") (tstamp 98c78427-acd5-4f90-9ad6-9f61c4809aec))
(pad "16" thru_hole oval locked (at 0 38.1 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 15 "/A0") (tstamp 65134029-dbd2-409a-85a8-13c2a33ff019))
(pad "17" thru_hole oval locked (at 0 40.64 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (tstamp 7f2301df-e4bc-479e-a681-cc59c9a2dbbb))
(pad "18" thru_hole oval locked (at 0 43.18 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "VCC") (tstamp a8447faf-e0a0-4c4a-ae53-4d4b28669151))
(pad "19" thru_hole oval locked (at 0 45.72 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (tstamp 7f52d787-caa3-4a92-b1b2-19d554dc29a4))
(pad "20" thru_hole oval locked (at 0 48.26 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 48 "/~{RESET}") (tstamp 101ef598-601d-400e-9ef6-d655fbb1dbfa))
(pad "21" thru_hole oval locked (at 0 50.8 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 91 "/BUSCLK") (tstamp c8029a4c-945d-42ca-871a-dd73ff50a1a3))
(pad "22" thru_hole oval locked (at 0 53.34 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 49 "/~{INT}") (tstamp 6781326c-6e0d-4753-8f28-0f5c687e01f9))
(pad "23" thru_hole oval locked (at 0 55.88 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (tstamp c701ee8e-1214-4781-a973-17bef7b6e3eb))
(pad "24" thru_hole oval locked (at 0 58.42 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 50 "/~{WR}") (tstamp 5b34a16c-5a14-4291-8242-ea6d6ac54372))
(pad "25" thru_hole oval locked (at 0 60.96 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 51 "/~{RD}") (tstamp 35a9f71f-ba35-47f6-814e-4106ac36c51e))
(pad "26" thru_hole oval locked (at 0 63.5 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 52 "/~{IORQ}") (tstamp c094494a-f6f7-43fc-a007-4951484ddf3a))
(pad "27" thru_hole oval locked (at 0 66.04 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 "/D0") (tstamp 9b3c58a7-a9b9-4498-abc0-f9f43e4f0292))
(pad "28" thru_hole oval locked (at 0 68.58 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 4 "/D1") (tstamp e40e8cef-4fb0-4fc3-be09-3875b2cc8469))
(pad "29" thru_hole oval locked (at 0 71.12 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 5 "/D2") (tstamp 15fe8f3d-6077-4e0e-81d0-8ec3f4538981))
(pad "30" thru_hole oval locked (at 0 73.66 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 6 "/D3") (tstamp 814763c2-92e5-4a2c-941c-9bbd073f6e87))
(pad "31" thru_hole oval locked (at 0 76.2 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 7 "/D4") (tstamp e65b62be-e01b-4688-a999-1d1be370c4ae))
(pad "32" thru_hole oval locked (at 0 78.74 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 8 "/D5") (tstamp 82be7aae-5d06-4178-8c3e-98760c41b054))
(pad "33" thru_hole oval locked (at 0 81.28 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 9 "/D6") (tstamp e1535036-5d36-405f-bb86-3819621c4f23))
(pad "34" thru_hole oval locked (at 0 83.82 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 10 "/D7") (tstamp d9c6d5d2-0b49-49ba-a970-cd2c32f74c54))
(pad "35" thru_hole oval locked (at 0 86.36 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (tstamp a6b7df29-bcf8-46a9-b623-7eaac47f5110))
(pad "36" thru_hole oval locked (at 0 88.9 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (tstamp a9b3f6e4-7a6d-4ae8-ad28-3d8458e0ca1a))
(pad "37" thru_hole oval locked (at 0 91.44 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (tstamp 7a4ce4b3-518a-4819-b8b2-5127b3347c64))
(pad "38" thru_hole oval locked (at 0 93.98 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (tstamp 20c315f4-1e4f-49aa-8d61-778a7389df7e))
(pad "39" thru_hole oval locked (at 0 96.52 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (tstamp 7e0a03ae-d054-4f76-a131-5c09b8dc1636))
(model "${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x39_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x14_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp 00000000-0000-0000-0000-00005bdf69b1)
(at 203.2 112.522 -90)
(descr "Through hole straight pin header, 1x14, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x14 2.54mm single row")
(path "/00000000-0000-0000-0000-00005b0e0805")
(attr through_hole)
(fp_text reference "J3" (at 0 -2.33 -90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3fd54105-4b7e-4004-9801-76ec66108a22)
)
(fp_text value "Conn_01x14" (at 0 35.35 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 29e058a7-50a3-43e5-81c3-bfee53da08be)
)
(fp_text user "${REFERENCE}" (at 0 16.51) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8c0807a7-765b-4fa5-baaa-e09a2b610e6b)
)
(fp_line (start -1.33 34.35) (end 1.33 34.35) (layer "F.SilkS") (width 0.12) (tstamp 0ce8d3ab-2662-4158-8a2a-18b782908fc5))
(fp_line (start -1.33 1.27) (end -1.33 34.35) (layer "F.SilkS") (width 0.12) (tstamp 29195ea4-8218-44a1-b4bf-466bee0082e4))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp c9667181-b3c7-4b01-b8b4-baa29a9aea63))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp cff34251-839c-4da9-a0ad-85d0fc4e32af))
(fp_line (start 1.33 1.27) (end 1.33 34.35) (layer "F.SilkS") (width 0.12) (tstamp d0fb0864-e79b-4bdc-8e8e-eed0cabe6d56))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp d5b800ca-1ab6-4b66-b5f7-2dda5658b504))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 309b3bff-19c8-41ec-a84d-63399c649f46))
(fp_line (start 1.8 34.8) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp bd9595a1-04f3-4fda-8f1b-e65ad874edd3))
(fp_line (start -1.8 34.8) (end 1.8 34.8) (layer "F.CrtYd") (width 0.05) (tstamp be645d0f-8568-47a0-a152-e3ddd33563eb))
(fp_line (start -1.8 -1.8) (end -1.8 34.8) (layer "F.CrtYd") (width 0.05) (tstamp ebd06df3-d52b-4cff-99a2-a771df6d3733))
(fp_line (start -1.27 34.29) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 0e8f7fc0-2ef2-4b90-9c15-8a3a601ee459))
(fp_line (start 1.27 34.29) (end -1.27 34.29) (layer "F.Fab") (width 0.1) (tstamp 382ca670-6ae8-4de6-90f9-f241d1337171))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 5cf2db29-f7ab-499a-9907-cdeba64bf0f3))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp b0906e10-2fbc-4309-a8b4-6fc4cd1a5490))
(fp_line (start 1.27 -1.27) (end 1.27 34.29) (layer "F.Fab") (width 0.1) (tstamp feb26ecb-9193-46ea-a41b-d09305bf0a3e))
(pad "1" thru_hole rect locked (at 0 0 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 58 "/VD3") (tstamp 2e842263-c0ba-46fd-a760-6624d4c78278))
(pad "2" thru_hole oval locked (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 59 "/VD4") (tstamp 173f6f06-e7d0-42ac-ab03-ce6b79b9eeee))
(pad "3" thru_hole oval locked (at 0 5.08 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 60 "/VD5") (tstamp 4632212f-13ce-4392-bc68-ccb9ba333770))
(pad "4" thru_hole oval locked (at 0 7.62 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 61 "/VD6") (tstamp cb16d05e-318b-4e51-867b-70d791d75bea))
(pad "5" thru_hole oval locked (at 0 10.16 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 62 "/VD7") (tstamp 057af6bb-cf6f-4bfb-b0c0-2e92a2c09a47))
(pad "6" thru_hole oval locked (at 0 12.7 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 63 "/~{CAS}") (tstamp 935f462d-8b1e-4005-9f1e-17f537ab1756))
(pad "7" thru_hole oval locked (at 0 15.24 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 36 "/VA4") (tstamp 0325ec43-0390-4ae2-b055-b1ec6ce17b1c))
(pad "8" thru_hole oval locked (at 0 17.78 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 64 "/~{R}W") (tstamp 7b044939-8c4d-444f-b9e0-a15fcdeb5a86))
(pad "9" thru_hole oval locked (at 0 20.32 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 42 "/VA7") (tstamp 576c6616-e95d-4f1e-8ead-dea30fcdc8c2))
(pad "10" thru_hole oval locked (at 0 22.86 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 68 "/VA10") (tstamp 89e83c2e-e90a-4a50-b278-880bac0cfb49))
(pad "11" thru_hole oval locked (at 0 25.4 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 41 "/VA12") (tstamp a5e521b9-814e-4853-a5ac-f158785c6269))
(pad "12" thru_hole oval locked (at 0 27.94 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 66 "/VA13") (tstamp 262f1ea9-0133-4b43-be36-456207ea857c))
(pad "13" thru_hole oval locked (at 0 30.48 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 65 "/R~{W}") (tstamp c1c799a0-3c93-493a-9ad7-8a0561bc69ee))
(pad "14" thru_hole oval locked (at 0 33.02 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "VCC") (tstamp 721d1be9-236e-470b-ba69-f1cc6c43faf9))
(model "${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x14_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_2x08_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp 00000000-0000-0000-0000-00005bdf69d2)
(at 210.566 107.442 90)
(descr "Through hole straight pin header, 2x08, 2.54mm pitch, double rows")
(tags "Through hole pin header THT 2x08 2.54mm double row")
(path "/00000000-0000-0000-0000-00005b1e36e0")
(attr through_hole)
(fp_text reference "J4" (at 1.27 -2.33 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6e68f0cd-800e-4167-9553-71fc59da1eeb)
)
(fp_text value "Conn_02x08_Odd_Even" (at 1.27 20.11 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 658dad07-97fd-466c-8b49-21892ac96ea4)
)
(fp_text user "${REFERENCE}" (at 1.27 8.89 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 071522c0-d0ed-49b9-906e-6295f67fb0dc)
)
(fp_line (start 3.87 -1.33) (end 3.87 19.11) (layer "F.SilkS") (width 0.12) (tstamp 20cca02e-4c4d-4961-b6b4-b40a1731b220))
(fp_line (start -1.33 1.27) (end 1.27 1.27) (layer "F.SilkS") (width 0.12) (tstamp 5487601b-81d3-4c70-8f3d-cf9df9c63302))
(fp_line (start -1.33 19.11) (end 3.87 19.11) (layer "F.SilkS") (width 0.12) (tstamp 592f25e6-a01b-47fd-8172-3da01117d00a))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 597a11f2-5d2c-4a65-ac95-38ad106e1367))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 926001fd-2747-4639-8c0f-4fc46ff7218d))
(fp_line (start 1.27 1.27) (end 1.27 -1.33) (layer "F.SilkS") (width 0.12) (tstamp a29f8df0-3fae-4edf-8d9c-bd5a875b13e3))
(fp_line (start -1.33 1.27) (end -1.33 19.11) (layer "F.SilkS") (width 0.12) (tstamp cb614b23-9af3-4aec-bed8-c1374e001510))
(fp_line (start 1.27 -1.33) (end 3.87 -1.33) (layer "F.SilkS") (width 0.12) (tstamp e3fc1e69-a11c-4c84-8952-fefb9372474e))
(fp_line (start 4.35 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 4e315e69-0417-463a-8b7f-469a08d1496e))
(fp_line (start -1.8 -1.8) (end -1.8 19.55) (layer "F.CrtYd") (width 0.05) (tstamp 59ec3156-036e-4049-89db-91a9dd07095f))
(fp_line (start 4.35 19.55) (end 4.35 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 6a2b20ae-096c-4d9f-92f8-2087c865914f))
(fp_line (start -1.8 19.55) (end 4.35 19.55) (layer "F.CrtYd") (width 0.05) (tstamp d39d813e-3e64-490c-ba5c-a64bb5ad6bd0))
(fp_line (start -1.27 19.05) (end -1.27 0) (layer "F.Fab") (width 0.1) (tstamp 240c10af-51b5-420e-a6f4-a2c8f5db1db5))
(fp_line (start 3.81 19.05) (end -1.27 19.05) (layer "F.Fab") (width 0.1) (tstamp 2d697cf0-e02e-4ed1-a048-a704dab0ee43))
(fp_line (start 0 -1.27) (end 3.81 -1.27) (layer "F.Fab") (width 0.1) (tstamp 40b14a16-fb82-4b9d-89dd-55cd98abb5cc))
(fp_line (start -1.27 0) (end 0 -1.27) (layer "F.Fab") (width 0.1) (tstamp 503dbd88-3e6b-48cc-a2ea-a6e28b52a1f7))
(fp_line (start 3.81 -1.27) (end 3.81 19.05) (layer "F.Fab") (width 0.1) (tstamp c09938fd-06b9-4771-9f63-2311626243b3))
(pad "1" thru_hole rect locked (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 71 "Net-(J4-Pad1)") (tstamp 2846428d-39de-4eae-8ce2-64955d56c493))
(pad "2" thru_hole oval locked (at 2.54 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 53 "/~{ADDR}") (tstamp 4fa10683-33cd-4dcd-8acc-2415cd63c62a))
(pad "3" thru_hole oval locked (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 72 "Net-(J4-Pad3)") (tstamp 9cbf35b8-f4d3-42a3-bb16-04ffd03fd8fd))
(pad "4" thru_hole oval locked (at 2.54 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 53 "/~{ADDR}") (tstamp 8bc2c25a-a1f1-4ce8-b96a-a4f8f4c35079))
(pad "5" thru_hole oval locked (at 0 5.08 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 73 "Net-(J4-Pad5)") (tstamp b1ddb058-f7b2-429c-9489-f4e2242ad7e5))
(pad "6" thru_hole oval locked (at 2.54 5.08 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 53 "/~{ADDR}") (tstamp eee16674-2d21-45b6-ab5e-d669125df26c))
(pad "7" thru_hole oval locked (at 0 7.62 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 74 "Net-(J4-Pad7)") (tstamp f449bd37-cc90-4487-aee6-2a20b8d2843a))
(pad "8" thru_hole oval locked (at 2.54 7.62 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 53 "/~{ADDR}") (tstamp c106154f-d948-43e5-abfa-e1b96055d91b))
(pad "9" thru_hole oval locked (at 0 10.16 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 75 "Net-(J4-Pad9)") (tstamp c24d6ac8-802d-4df3-a210-9cb1f693e865))
(pad "10" thru_hole oval locked (at 2.54 10.16 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 53 "/~{ADDR}") (tstamp 88668202-3f0b-4d07-84d4-dcd790f57272))
(pad "11" thru_hole oval locked (at 0 12.7 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 76 "Net-(J4-Pad11)") (tstamp 37f31dec-63fc-4634-a141-5dc5d2b60fe4))
(pad "12" thru_hole oval locked (at 2.54 12.7 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 53 "/~{ADDR}") (tstamp 91c1eb0a-67ae-4ef0-95ce-d060a03a7313))
(pad "13" thru_hole oval locked (at 0 15.24 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 77 "Net-(J4-Pad13)") (tstamp 009a4fb4-fcc0-4623-ae5d-c1bae3219583))
(pad "14" thru_hole oval locked (at 2.54 15.24 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 53 "/~{ADDR}") (tstamp cf386a39-fc62-49dd-8ec5-e044f6bd67ce))
(pad "15" thru_hole oval locked (at 0 17.78 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 78 "Net-(J4-Pad15)") (tstamp 2dc54bac-8640-4dd7-b8ed-3c7acb01a8ea))
(pad "16" thru_hole oval locked (at 2.54 17.78 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 53 "/~{ADDR}") (tstamp eae0ab9f-65b2-44d3-aba7-873c3227fba7))
(model "${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_2x08_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x10_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp 00000000-0000-0000-0000-00005bdf69f7)
(at 195.834 149.606 90)
(descr "Through hole straight pin header, 1x10, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x10 2.54mm single row")
(path "/00000000-0000-0000-0000-00005b5672b7")
(attr through_hole)
(fp_text reference "J5" (at 0 -2.33 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6bf05d19-ba3e-4ba6-8a6f-4e0bc45ea3b2)
)
(fp_text value "Conn_01x10" (at 0 25.19 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 25e5aa8e-2696-44a3-8d3c-c2c53f2923cf)
)
(fp_text user "${REFERENCE}" (at 0 11.43 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e502d1d5-04b0-4d4b-b5c3-8c52d09668e7)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 5fc9acb6-6dbb-4598-825b-4b9e7c4c67c4))
(fp_line (start -1.33 1.27) (end -1.33 24.19) (layer "F.SilkS") (width 0.12) (tstamp 6d1d60ff-408a-47a7-892f-c5cf9ef6ca75))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp a53767ed-bb28-4f90-abe0-e0ea734812a4))
(fp_line (start -1.33 24.19) (end 1.33 24.19) (layer "F.SilkS") (width 0.12) (tstamp b6135480-ace6-42b2-9c47-856ef57cded1))
(fp_line (start 1.33 1.27) (end 1.33 24.19) (layer "F.SilkS") (width 0.12) (tstamp e4aa537c-eb9d-4dbb-ac87-fae46af42391))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp f9403623-c00c-4b71-bc5c-d763ff009386))
(fp_line (start -1.8 24.65) (end 1.8 24.65) (layer "F.CrtYd") (width 0.05) (tstamp 0f31f11f-c374-4640-b9a4-07bbdba8d354))
(fp_line (start -1.8 -1.8) (end -1.8 24.65) (layer "F.CrtYd") (width 0.05) (tstamp 18b7e157-ae67-48ad-bd7c-9fef6fe45b22))
(fp_line (start 1.8 24.65) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 998b7fa5-31a5-472e-9572-49d5226d6098))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp e4d2f565-25a0-48c6-be59-f4bf31ad2558))
(fp_line (start 1.27 24.13) (end -1.27 24.13) (layer "F.Fab") (width 0.1) (tstamp 065b9982-55f2-4822-977e-07e8a06e7b35))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 970e0f64-111f-41e3-9f5a-fb0d0f6fa101))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp a24ddb4f-c217-42ca-b6cb-d12da84fb2b9))
(fp_line (start 1.27 -1.27) (end 1.27 24.13) (layer "F.Fab") (width 0.1) (tstamp a6ccc556-da88-4006-ae1a-cc35733efef3))
(fp_line (start -1.27 24.13) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp dc2801a1-d539-4721-b31f-fe196b9f13df))
(pad "1" thru_hole rect locked (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (tstamp 7c04618d-9115-4179-b234-a8faf854ea92))
(pad "2" thru_hole oval locked (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "VCC") (tstamp e67b9f8c-019b-4145-98a4-96545f6bb128))
(pad "3" thru_hole oval locked (at 0 5.08 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (tstamp 19b0959e-a79b-43b2-a5ad-525ced7e9131))
(pad "4" thru_hole oval locked (at 0 7.62 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (tstamp 109caac1-5036-4f23-9a66-f569d871501b))
(pad "5" thru_hole oval locked (at 0 10.16 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (tstamp 31540a7e-dc9e-4e4d-96b1-dab15efa5f4b))
(pad "6" thru_hole oval locked (at 0 12.7 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (tstamp 8c1605f9-6c91-4701-96bf-e753661d5e23))
(pad "7" thru_hole oval locked (at 0 15.24 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (tstamp f1447ad6-651c-45be-a2d6-33bddf672c2c))
(pad "8" thru_hole oval locked (at 0 17.78 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (tstamp f6c644f4-3036-41a6-9e14-2c08c079c6cd))
(pad "9" thru_hole oval locked (at 0 20.32 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (tstamp 0cc45b5b-96b3-4284-9cae-a3a9e324a916))
(pad "10" thru_hole oval locked (at 0 22.86 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 84 "/~{NMI}") (tstamp 6b7c1048-12b6-46b2-b762-fa3ad30472dd))
(model "${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x10_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_2x03_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp 00000000-0000-0000-0000-00005bdf6a14)
(at 157.988 125.984 90)
(descr "Through hole straight pin header, 2x03, 2.54mm pitch, double rows")
(tags "Through hole pin header THT 2x03 2.54mm double row")
(path "/00000000-0000-0000-0000-00005b562712")
(attr through_hole)
(fp_text reference "J6" (at 1.27 -2.33 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 79e31048-072a-4a40-a625-26bb0b5f046b)
)
(fp_text value "A4" (at 1.27 7.41 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c76d4423-ef1b-4a6f-8176-33d65f2877bb)
)
(fp_text user "${REFERENCE}" (at 1.27 2.54 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 752417ee-7d0b-4ac8-a22c-26669881a2ab)
)
(fp_line (start 3.87 -1.33) (end 3.87 6.41) (layer "F.SilkS") (width 0.12) (tstamp 0ae82096-0994-4fb0-9a2a-d4ac4804abac))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 0f324b67-75ef-407f-8dbc-3c1fc5c2abba))
(fp_line (start -1.33 1.27) (end -1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp 0fdc6f30-77bc-4e9b-8665-c8aa9acf5bf9))
(fp_line (start -1.33 6.41) (end 3.87 6.41) (layer "F.SilkS") (width 0.12) (tstamp 4107d40a-e5df-4255-aacc-13f9928e090c))
(fp_line (start 1.27 1.27) (end 1.27 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 8195a7cf-4576-44dd-9e0e-ee048fdb93dd))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp d2d7bea6-0c22-495f-8666-323b30e03150))
(fp_line (start -1.33 1.27) (end 1.27 1.27) (layer "F.SilkS") (width 0.12) (tstamp e0f06b5c-de63-4833-a591-ca9e19217a35))
(fp_line (start 1.27 -1.33) (end 3.87 -1.33) (layer "F.SilkS") (width 0.12) (tstamp e7bb7815-0d52-4bb8-b29a-8cf960bd2905))
(fp_line (start -1.8 -1.8) (end -1.8 6.85) (layer "F.CrtYd") (width 0.05) (tstamp 1c68b844-c861-46b7-b734-0242168a4220))
(fp_line (start -1.8 6.85) (end 4.35 6.85) (layer "F.CrtYd") (width 0.05) (tstamp 4b03e854-02fe-44cc-bece-f8268b7cae54))
(fp_line (start 4.35 6.85) (end 4.35 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp b5071759-a4d7-4769-be02-251f23cd4454))
(fp_line (start 4.35 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp cada57e2-1fa7-4b9d-a2a0-2218773d5c50))
(fp_line (start 3.81 6.35) (end -1.27 6.35) (layer "F.Fab") (width 0.1) (tstamp 03c7f780-fc1b-487a-b30d-567d6c09fdc8))
(fp_line (start 3.81 -1.27) (end 3.81 6.35) (layer "F.Fab") (width 0.1) (tstamp b873bc5d-a9af-4bd9-afcb-87ce4d417120))
(fp_line (start -1.27 0) (end 0 -1.27) (layer "F.Fab") (width 0.1) (tstamp b9bb0e73-161a-4d06-b6eb-a9f66d8a95f5))
(fp_line (start -1.27 6.35) (end -1.27 0) (layer "F.Fab") (width 0.1) (tstamp c04386e0-b49e-4fff-b380-675af13a62cb))
(fp_line (start 0 -1.27) (end 3.81 -1.27) (layer "F.Fab") (width 0.1) (tstamp f7667b23-296e-4362-a7e3-949632c8954b))
(pad "1" thru_hole rect locked (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (tstamp 9f80220c-1612-4589-b9ca-a5579617bdb8))
(pad "2" thru_hole oval locked (at 2.54 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 81 "/~{E2}") (tstamp 224768bc-6009-43ba-aa4a-70cbaa15b5a3))
(pad "3" thru_hole oval locked (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 14 "/A4") (tstamp fef37e8b-0ff0-4da2-8a57-acaf19551d1a))
(pad "4" thru_hole oval locked (at 2.54 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 81 "/~{E2}") (tstamp d21cc5e4-177a-4e1d-a8d5-060ed33e5b8e))
(pad "5" thru_hole oval locked (at 0 5.08 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 83 "/~{A4}") (tstamp 89c0bc4d-eee5-4a77-ac35-d30b35db5cbe))
(pad "6" thru_hole oval locked (at 2.54 5.08 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 81 "/~{E2}") (tstamp e1c30a32-820e-4b17-aec9-5cb8b76f0ccc))
(model "${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_2x03_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp 00000000-0000-0000-0000-00005bdf6a46)
(at 162.306 115.316)
(descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x03 2.54mm single row")
(path "/00000000-0000-0000-0000-00005b4be5f8")
(attr through_hole)
(fp_text reference "JP1" (at 0 -2.33) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 37b6c6d6-3e12-4736-912a-ea6e2bf06721)