-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathEZ-USB_motherboard.kicad_pcb
2239 lines (2196 loc) · 176 KB
/
EZ-USB_motherboard.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
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010f0_ffffffff)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(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 true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "gerber/")
)
)
(net 0 "")
(net 1 "/PWR")
(net 2 "Net-(C2-Pad1)")
(net 3 "/GND")
(net 4 "Net-(C2-Pad2)")
(net 5 "unconnected-(J1-Pad0)")
(net 6 "/ZOOM_A")
(net 7 "/FOCUS_B")
(net 8 "/IRIS_A")
(net 9 "/ZOOM_B")
(net 10 "/FOCUS_A")
(net 11 "Net-(R1-Pad1)")
(net 12 "Net-(R1-Pad2)")
(net 13 "Net-(R2-Pad2)")
(net 14 "Net-(R2-Pad1)")
(net 15 "Net-(R3-Pad1)")
(net 16 "Net-(R3-Pad2)")
(net 17 "Net-(R4-Pad2)")
(net 18 "Net-(R4-Pad1)")
(net 19 "Net-(R5-Pad1)")
(net 20 "Net-(R5-Pad2)")
(net 21 "Net-(R6-Pad2)")
(net 22 "Net-(R6-Pad1)")
(net 23 "Net-(R7-Pad2)")
(net 24 "Net-(R8-Pad2)")
(net 25 "Net-(R9-Pad2)")
(net 26 "Net-(R10-Pad2)")
(net 27 "Net-(R11-Pad2)")
(net 28 "Net-(R12-Pad2)")
(net 29 "/IRIS_B")
(net 30 "/OUT_ZOOM_B")
(net 31 "/OUT_IRIS_B")
(net 32 "/OUT_IRIS_A")
(net 33 "/OUT_FOCUS_B")
(net 34 "/OUT_FOCUS_A")
(net 35 "/OUT_ZOOM_A")
(net 36 "unconnected-(U6-Pad1)")
(net 37 "unconnected-(U6-Pad2)")
(net 38 "unconnected-(U6-Pad3)")
(net 39 "unconnected-(U6-Pad5)")
(net 40 "unconnected-(U6-Pad7)")
(net 41 "unconnected-(U6-Pad8)")
(net 42 "unconnected-(U6-Pad12)")
(net 43 "unconnected-(U6-Pad13)")
(net 44 "unconnected-(U6-Pad14)")
(net 45 "unconnected-(U6-Pad21)")
(net 46 "unconnected-(U6-Pad22)")
(net 47 "unconnected-(U6-Pad23)")
(net 48 "unconnected-(U6-Pad24)")
(net 49 "unconnected-(U6-Pad25)")
(net 50 "unconnected-(U6-Pad26)")
(net 51 "unconnected-(U6-Pad27)")
(net 52 "unconnected-(U6-Pad28)")
(net 53 "unconnected-(U6-Pad29)")
(net 54 "unconnected-(U6-Pad30)")
(net 55 "unconnected-(U6-Pad31)")
(net 56 "unconnected-(U6-Pad32)")
(net 57 "unconnected-(U6-Pad33)")
(net 58 "unconnected-(U6-Pad34)")
(net 59 "unconnected-(U6-Pad35)")
(net 60 "unconnected-(U6-Pad36)")
(net 61 "unconnected-(U6-Pad37)")
(net 62 "unconnected-(U6-Pad38)")
(footprint "Capacitor_THT:C_Rect_L7.0mm_W2.0mm_P5.00mm" (layer "F.Cu")
(tedit 5AE50EF0) (tstamp 00000000-0000-0000-0000-000061c2d352)
(at 100.33 86.36 180)
(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")
(property "Sheetfile" "EZ-USB_motherboard.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000061cf4e07")
(attr through_hole)
(fp_text reference "C3" (at 2.5 -2.25) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 31e08896-1992-4725-96d9-9d2728bca7a3)
)
(fp_text value "100nF" (at 2.5 2.25) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b5352a33-563a-4ffe-a231-2e68fb54afa3)
)
(fp_text user "${REFERENCE}" (at 2.5 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ee27d19c-8dca-4ac8-a760-6dfd54d28071)
)
(fp_line (start -1.12 1.12) (end 6.12 1.12) (layer "F.SilkS") (width 0.12) (tstamp 08a7c925-7fae-4530-b0c9-120e185cb318))
(fp_line (start -1.12 -1.12) (end 6.12 -1.12) (layer "F.SilkS") (width 0.12) (tstamp 4a4ec8d9-3d72-4952-83d4-808f65849a2b))
(fp_line (start 6.12 -1.12) (end 6.12 1.12) (layer "F.SilkS") (width 0.12) (tstamp 5528bcad-2950-4673-90eb-c37e6952c475))
(fp_line (start -1.12 -1.12) (end -1.12 1.12) (layer "F.SilkS") (width 0.12) (tstamp 7edc9030-db7b-43ac-a1b3-b87eeacb4c2d))
(fp_line (start -1.25 1.25) (end 6.25 1.25) (layer "F.CrtYd") (width 0.05) (tstamp 2d6db888-4e40-41c8-b701-07170fc894bc))
(fp_line (start 6.25 1.25) (end 6.25 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp 66043bca-a260-4915-9fce-8a51d324c687))
(fp_line (start -1.25 -1.25) (end -1.25 1.25) (layer "F.CrtYd") (width 0.05) (tstamp 7bbf981c-a063-4e30-8911-e4228e1c0743))
(fp_line (start 6.25 -1.25) (end -1.25 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp 852dabbf-de45-4470-8176-59d37a754407))
(fp_line (start -1 -1) (end -1 1) (layer "F.Fab") (width 0.1) (tstamp 003c2200-0632-4808-a662-8ddd5d30c768))
(fp_line (start -1 1) (end 6 1) (layer "F.Fab") (width 0.1) (tstamp 240e07e1-770b-4b27-894f-29fd601c924d))
(fp_line (start 6 -1) (end -1 -1) (layer "F.Fab") (width 0.1) (tstamp cbd8faed-e1f8-4406-87c8-58b2c504a5d4))
(fp_line (start 6 1) (end 6 -1) (layer "F.Fab") (width 0.1) (tstamp f2c93195-af12-4d3e-acdf-bdd0ff675c24))
(pad "1" thru_hole circle locked (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "Net-(C2-Pad1)") (pintype "passive") (tstamp 9b0a1687-7e1b-4a04-a30b-c27a072a2949))
(pad "2" thru_hole circle locked (at 5 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 4 "Net-(C2-Pad2)") (pintype "passive") (tstamp c01d25cd-f4bb-4ef3-b5ea-533a2a4ddb2b))
(model "${KISYS3DMOD}/Capacitor_THT.3dshapes/C_Rect_L7.0mm_W2.0mm_P5.00mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_THT:C_Rect_L7.0mm_W2.0mm_P5.00mm" (layer "F.Cu")
(tedit 5AE50EF0) (tstamp 00000000-0000-0000-0000-000061c2d378)
(at 100.33 92.71 180)
(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")
(property "Sheetfile" "EZ-USB_motherboard.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000061cf72a6")
(attr through_hole)
(fp_text reference "C5" (at 2.5 -2.25) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp babeabf2-f3b0-4ed5-8d9e-0215947e6cf3)
)
(fp_text value "100nF" (at 2.5 2.25) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e8c50f1b-c316-4110-9cce-5c24c65a1eaa)
)
(fp_text user "${REFERENCE}" (at 2.5 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a15a7506-eae4-4933-84da-9ad754258706)
)
(fp_line (start -1.12 -1.12) (end -1.12 1.12) (layer "F.SilkS") (width 0.12) (tstamp 1e8701fc-ad24-40ea-846a-e3db538d6077))
(fp_line (start 6.12 -1.12) (end 6.12 1.12) (layer "F.SilkS") (width 0.12) (tstamp 25d545dc-8f50-4573-922c-35ef5a2a3a19))
(fp_line (start -1.12 -1.12) (end 6.12 -1.12) (layer "F.SilkS") (width 0.12) (tstamp c25a772d-af9c-4ebc-96f6-0966738c13a8))
(fp_line (start -1.12 1.12) (end 6.12 1.12) (layer "F.SilkS") (width 0.12) (tstamp d5641ac9-9be7-46bf-90b3-6c83d852b5ba))
(fp_line (start 6.25 1.25) (end 6.25 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp aca4de92-9c41-4c2b-9afa-540d02dafa1c))
(fp_line (start -1.25 1.25) (end 6.25 1.25) (layer "F.CrtYd") (width 0.05) (tstamp c43663ee-9a0d-4f27-a292-89ba89964065))
(fp_line (start -1.25 -1.25) (end -1.25 1.25) (layer "F.CrtYd") (width 0.05) (tstamp c830e3bc-dc64-4f65-8f47-3b106bae2807))
(fp_line (start 6.25 -1.25) (end -1.25 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp d7269d2a-b8c0-422d-8f25-f79ea31bf75e))
(fp_line (start 6 1) (end 6 -1) (layer "F.Fab") (width 0.1) (tstamp 40976bf0-19de-460f-ad64-224d4f51e16b))
(fp_line (start 6 -1) (end -1 -1) (layer "F.Fab") (width 0.1) (tstamp 8c514922-ffe1-4e37-a260-e807409f2e0d))
(fp_line (start -1 -1) (end -1 1) (layer "F.Fab") (width 0.1) (tstamp c8c79177-94d4-43e2-a654-f0a5554fbb68))
(fp_line (start -1 1) (end 6 1) (layer "F.Fab") (width 0.1) (tstamp e21aa84b-970e-47cf-b64f-3b55ee0e1b51))
(pad "1" thru_hole circle locked (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "Net-(C2-Pad1)") (pintype "passive") (tstamp d3c11c8f-a73d-4211-934b-a6da255728ad))
(pad "2" thru_hole circle locked (at 5 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 4 "Net-(C2-Pad2)") (pintype "passive") (tstamp 639c0e59-e95c-4114-bccd-2e7277505454))
(model "${KISYS3DMOD}/Capacitor_THT.3dshapes/C_Rect_L7.0mm_W2.0mm_P5.00mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_Dsub:DSUB-9_Male_Horizontal_P2.77x2.84mm_EdgePinOffset9.90mm_Housed_MountingHolesOffset11.32mm" (layer "F.Cu")
(tedit 59FEDEE2) (tstamp 00000000-0000-0000-0000-000061c2d3ac)
(at 102.87 40.64 180)
(descr "9-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 9.9mm, distance of mounting holes 25mm, distance of mounting holes to PCB edge 11.32mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf")
(tags "9-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 9.9mm mounting-holes-distance 25mm mounting-hole-offset 25mm")
(property "Sheetfile" "EZ-USB_motherboard.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000061c1e82f")
(attr through_hole)
(fp_text reference "J1" (at 5.54 -2.8) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a27eb049-c992-4f11-a026-1e6a8d9d0160)
)
(fp_text value "DB9_Male_MountingHoles" (at 5.54 20.64) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 13c0ff76-ed71-4cd9-abb0-92c376825d5d)
)
(fp_text user "${REFERENCE}" (at 5.54 16.14) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 16a9ae8c-3ad2-439b-8efe-377c994670c7)
)
(fp_line (start 0 -2.321325) (end -0.25 -2.754338) (layer "F.SilkS") (width 0.12) (tstamp 68877d35-b796-44db-9124-b8e744e7412e))
(fp_line (start -9.945 -1.86) (end 21.025 -1.86) (layer "F.SilkS") (width 0.12) (tstamp 6d26d68f-1ca7-4ff3-b058-272f1c399047))
(fp_line (start 21.025 -1.86) (end 21.025 12.68) (layer "F.SilkS") (width 0.12) (tstamp 911bdcbe-493f-4e21-a506-7cbc636e2c17))
(fp_line (start -0.25 -2.754338) (end 0.25 -2.754338) (layer "F.SilkS") (width 0.12) (tstamp 9f8381e9-3077-4453-a480-a01ad9c1a940))
(fp_line (start 0.25 -2.754338) (end 0 -2.321325) (layer "F.SilkS") (width 0.12) (tstamp b96fe6ac-3535-4455-ab88-ed77f5e46d6e))
(fp_line (start -9.945 12.68) (end -9.945 -1.86) (layer "F.SilkS") (width 0.12) (tstamp d3d7e298-1d39-4294-a3ab-c84cc0dc5e5a))
(fp_line (start 21.5 19.65) (end 21.5 -2.35) (layer "F.CrtYd") (width 0.05) (tstamp 8412992d-8754-44de-9e08-115cec1a3eff))
(fp_line (start -10.4 -2.35) (end -10.4 19.65) (layer "F.CrtYd") (width 0.05) (tstamp c332fa55-4168-4f55-88a5-f82c7c21040b))
(fp_line (start -10.4 19.65) (end 21.5 19.65) (layer "F.CrtYd") (width 0.05) (tstamp df32840e-2912-4088-b54c-9a85f64c0265))
(fp_line (start 21.5 -2.35) (end -10.4 -2.35) (layer "F.CrtYd") (width 0.05) (tstamp ffd175d1-912a-4224-be1e-a8198680f46b))
(fp_line (start 13.69 19.14) (end 13.69 13.14) (layer "F.Fab") (width 0.1) (tstamp 01e9b6e7-adf9-4ee7-9447-a588630ee4a2))
(fp_line (start 20.54 13.14) (end 15.54 13.14) (layer "F.Fab") (width 0.1) (tstamp 0755aee5-bc01-4cb5-b830-583289df50a3))
(fp_line (start -9.885 12.74) (end -9.885 13.14) (layer "F.Fab") (width 0.1) (tstamp 0c3dceba-7c95-4b3d-b590-0eb581444beb))
(fp_line (start -9.46 18.14) (end -4.46 18.14) (layer "F.Fab") (width 0.1) (tstamp 16bd6381-8ac0-4bf2-9dce-ecc20c724b8d))
(fp_line (start 20.54 18.14) (end 20.54 13.14) (layer "F.Fab") (width 0.1) (tstamp 4a21e717-d46d-4d9e-8b98-af4ecb02d3ec))
(fp_line (start 13.69 13.14) (end -2.61 13.14) (layer "F.Fab") (width 0.1) (tstamp 4f66b314-0f62-4fb6-8c3c-f9c6a75cd3ec))
(fp_line (start -8.56 12.74) (end -8.56 1.42) (layer "F.Fab") (width 0.1) (tstamp 4fb21471-41be-4be8-9687-66030f97befc))
(fp_line (start 15.54 13.14) (end 15.54 18.14) (layer "F.Fab") (width 0.1) (tstamp 60dcd1fe-7079-4cb8-b509-04558ccf5097))
(fp_line (start -9.885 -1.8) (end -9.885 12.74) (layer "F.Fab") (width 0.1) (tstamp 6595b9c7-02ee-4647-bde5-6b566e35163e))
(fp_line (start 19.64 12.74) (end 19.64 1.42) (layer "F.Fab") (width 0.1) (tstamp 70e15522-1572-4451-9c0d-6d36ac70d8c6))
(fp_line (start 20.965 13.14) (end 20.965 12.74) (layer "F.Fab") (width 0.1) (tstamp 730b670c-9bcf-4dcd-9a8d-fcaa61fb0955))
(fp_line (start -5.36 12.74) (end -5.36 1.42) (layer "F.Fab") (width 0.1) (tstamp 7599133e-c681-4202-85d9-c20dac196c64))
(fp_line (start -2.61 13.14) (end -2.61 19.14) (layer "F.Fab") (width 0.1) (tstamp 7d928d56-093a-4ca8-aed1-414b7e703b45))
(fp_line (start -4.46 18.14) (end -4.46 13.14) (layer "F.Fab") (width 0.1) (tstamp 85b7594c-358f-454b-b2ad-dd0b1d67ed76))
(fp_line (start 20.965 12.74) (end -9.885 12.74) (layer "F.Fab") (width 0.1) (tstamp 8a650ebf-3f78-4ca4-a26b-a5028693e36d))
(fp_line (start 20.965 -1.8) (end -9.885 -1.8) (layer "F.Fab") (width 0.1) (tstamp 965308c8-e014-459a-b9db-b8493a601c62))
(fp_line (start -9.46 13.14) (end -9.46 18.14) (layer "F.Fab") (width 0.1) (tstamp a5cd8da1-8f7f-4f80-bb23-0317de562222))
(fp_line (start -9.885 13.14) (end 20.965 13.14) (layer "F.Fab") (width 0.1) (tstamp abe07c9a-17c3-43b5-b7a6-ae867ac27ea7))
(fp_line (start 20.965 12.74) (end 20.965 -1.8) (layer "F.Fab") (width 0.1) (tstamp b1c649b1-f44d-46c7-9dea-818e75a1b87e))
(fp_line (start -4.46 13.14) (end -9.46 13.14) (layer "F.Fab") (width 0.1) (tstamp c5eb1e4c-ce83-470e-8f32-e20ff1f886a3))
(fp_line (start -2.61 19.14) (end 13.69 19.14) (layer "F.Fab") (width 0.1) (tstamp ca87f11b-5f48-4b57-8535-68d3ec2fe5a9))
(fp_line (start 16.44 12.74) (end 16.44 1.42) (layer "F.Fab") (width 0.1) (tstamp dde51ae5-b215-445e-92bb-4a12ec410531))
(fp_line (start 15.54 18.14) (end 20.54 18.14) (layer "F.Fab") (width 0.1) (tstamp ec31c074-17b2-48e1-ab01-071acad3fa04))
(fp_line (start -9.885 12.74) (end 20.965 12.74) (layer "F.Fab") (width 0.1) (tstamp f3628265-0155-43e2-a467-c40ff783e265))
(fp_arc (start 16.44 1.42) (mid 18.04 -0.18) (end 19.64 1.42) (layer "F.Fab") (width 0.1) (tstamp 770ad51a-7219-4633-b24a-bd20feb0a6c5))
(fp_arc (start -8.56 1.42) (mid -6.96 -0.18) (end -5.36 1.42) (layer "F.Fab") (width 0.1) (tstamp b7199d9b-bebb-4100-9ad3-c2bd31e21d65))
(pad "0" thru_hole circle locked (at -6.96 1.42 180) (size 4 4) (drill 3.2) (layers *.Cu *.Mask)
(net 5 "unconnected-(J1-Pad0)") (pinfunction "PAD") (pintype "passive") (tstamp 2dc272bd-3aa2-45b5-889d-1d3c8aac80f8))
(pad "0" thru_hole circle locked (at 18.04 1.42 180) (size 4 4) (drill 3.2) (layers *.Cu *.Mask)
(net 5 "unconnected-(J1-Pad0)") (pinfunction "PAD") (pintype "passive") (tstamp 6c2d26bc-6eca-436c-8025-79f817bf57d6))
(pad "1" thru_hole rect locked (at 0 0 180) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 6 "/ZOOM_A") (pinfunction "1") (pintype "passive") (tstamp db36f6e3-e72a-487f-bda9-88cc84536f62))
(pad "2" thru_hole circle locked (at 2.77 0 180) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 7 "/FOCUS_B") (pinfunction "2") (pintype "passive") (tstamp e4c6fdbb-fdc7-4ad4-a516-240d84cdc120))
(pad "3" thru_hole circle locked (at 5.54 0 180) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 3 "/GND") (pinfunction "3") (pintype "passive") (tstamp 789ca812-3e0c-4a3f-97bc-a916dd9bce80))
(pad "4" thru_hole circle locked (at 8.31 0 180) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 8 "/IRIS_A") (pinfunction "4") (pintype "passive") (tstamp e6b860cc-cb76-4220-acfb-68f1eb348bfa))
(pad "5" thru_hole circle locked (at 11.08 0 180) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 9 "/ZOOM_B") (pinfunction "5") (pintype "passive") (tstamp cdfb07af-801b-44ba-8c30-d021a6ad3039))
(pad "6" thru_hole circle locked (at 1.385 2.84 180) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 10 "/FOCUS_A") (pinfunction "6") (pintype "passive") (tstamp a17904b9-135e-4dae-ae20-401c7787de72))
(pad "7" thru_hole circle locked (at 4.155 2.84 180) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 1 "/PWR") (pinfunction "7") (pintype "passive") (tstamp f202141e-c20d-4cac-b016-06a44f2ecce8))
(pad "8" thru_hole circle locked (at 6.925 2.84 180) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 3 "/GND") (pinfunction "8") (pintype "passive") (tstamp 182b2d54-931d-49d6-9f39-60a752623e36))
(pad "9" thru_hole circle locked (at 9.695 2.84 180) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 29 "/IRIS_B") (pinfunction "9") (pintype "passive") (tstamp 5114c7bf-b955-49f3-a0a8-4b954c81bde0))
(model "${KISYS3DMOD}/Connector_Dsub.3dshapes/DSUB-9_Male_Horizontal_P2.77x2.84mm_EdgePinOffset9.90mm_Housed_MountingHolesOffset11.32mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp 00000000-0000-0000-0000-000061c2d43e)
(at 123.19 77.47)
(descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x02 2.54mm single row")
(property "Sheetfile" "EZ-USB_motherboard.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000061e62007")
(attr through_hole)
(fp_text reference "JP1" (at 0 -2.33) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 14769dc5-8525-4984-8b15-a734ee247efa)
)
(fp_text value "Jumper_2_Open" (at 0 4.87) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 19c56563-5fe3-442a-885b-418dbc2421eb)
)
(fp_text user "${REFERENCE}" (at 0 1.27 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 21ae9c3a-7138-444e-be38-56a4842ab594)
)
(fp_line (start -1.33 1.27) (end -1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp 275aa44a-b61f-489f-9e2a-819a0fe0d1eb))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 37e8181c-a81e-498b-b2e2-0aef0c391059))
(fp_line (start -1.33 3.87) (end 1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp 5ca4be1c-537e-4a4a-b344-d0c8ffde8546))
(fp_line (start 1.33 1.27) (end 1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp 6c67e4f6-9d04-4539-b356-b76e915ce848))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp b447dbb1-d38e-4a15-93cb-12c25382ea53))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp cfa5c16e-7859-460d-a0b8-cea7d7ea629c))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 0351df45-d042-41d4-ba35-88092c7be2fc))
(fp_line (start -1.8 -1.8) (end -1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp 676efd2f-1c48-4786-9e4b-2444f1e8f6ff))
(fp_line (start -1.8 4.35) (end 1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp 8d9a3ecc-539f-41da-8099-d37cea9c28e7))
(fp_line (start 1.8 4.35) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp e472dac4-5b65-4920-b8b2-6065d140a69d))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 57c0c267-8bf9-4cc7-b734-d71a239ac313))
(fp_line (start 1.27 3.81) (end -1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp 7cee474b-af8f-4832-b07a-c43c1ab0b464))
(fp_line (start -1.27 3.81) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 853ee787-6e2c-4f32-bc75-6c17337dd3d5))
(fp_line (start 1.27 -1.27) (end 1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp 9cb12cc8-7f1a-4a01-9256-c119f11a8a02))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp c7e7067c-5f5e-48d8-ab59-df26f9b35863))
(pad "1" thru_hole rect locked (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "/PWR") (pinfunction "A") (pintype "passive") (tstamp aa2ea573-3f20-43c1-aa99-1f9c6031a9aa))
(pad "2" thru_hole oval locked (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "Net-(C2-Pad1)") (pinfunction "B") (pintype "passive") (tstamp 240e5dac-6242-47a5-bbef-f76d11c715c0))
(model "${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_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_1x02_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp 00000000-0000-0000-0000-000061c2d454)
(at 71.12 77.47)
(descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x02 2.54mm single row")
(property "Sheetfile" "EZ-USB_motherboard.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000061e61cf1")
(attr through_hole)
(fp_text reference "JP2" (at 0 -2.33) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 477311b9-8f81-40c8-9c55-fd87e287247a)
)
(fp_text value "Jumper_2_Open" (at 0 4.87) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 097edb1b-8998-4e70-b670-bba125982348)
)
(fp_text user "${REFERENCE}" (at 0 1.27 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8087f566-a94d-4bbc-985b-e49ee7762296)
)
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 099096e4-8c2a-4d84-a16f-06b4b6330e7a))
(fp_line (start 1.33 1.27) (end 1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp 34a74736-156e-4bf3-9200-cd137cfa59da))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 87d7448e-e139-4209-ae0b-372f805267da))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp a13ab237-8f8d-4e16-8c47-4440653b8534))
(fp_line (start -1.33 1.27) (end -1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp d0d2eee9-31f6-44fa-8149-ebb4dc2dc0dc))
(fp_line (start -1.33 3.87) (end 1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp ee41cb8e-512d-41d2-81e1-3c50fff32aeb))
(fp_line (start -1.8 4.35) (end 1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp 6284122b-79c3-4e04-925e-3d32cc3ec077))
(fp_line (start 1.8 4.35) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 67763d19-f622-4e1e-81e5-5b24da7c3f99))
(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.8 -1.8) (end -1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp ca5a4651-0d1d-441b-b17d-01518ef3b656))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 1e518c2a-4cb7-4599-a1fa-5b9f847da7d3))
(fp_line (start 1.27 -1.27) (end 1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp 3a52f112-cb97-43db-aaeb-20afe27664d7))
(fp_line (start 1.27 3.81) (end -1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp 41acfe41-fac7-432a-a7a3-946566e2d504))
(fp_line (start -1.27 3.81) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 644ae9fc-3c8e-4089-866e-a12bf371c3e9))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp f4eb0267-179f-46c9-b516-9bfb06bac1ba))
(pad "1" thru_hole rect locked (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 "/GND") (pinfunction "A") (pintype "passive") (tstamp 98c78427-acd5-4f90-9ad6-9f61c4809aec))
(pad "2" thru_hole oval locked (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 4 "Net-(C2-Pad2)") (pinfunction "B") (pintype "passive") (tstamp 65134029-dbd2-409a-85a8-13c2a33ff019))
(model "${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 00000000-0000-0000-0000-000061c2d46b)
(at 118.11 67.31 180)
(descr "Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=12.7mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0309 series Axial Horizontal pin pitch 12.7mm 0.5W = 1/2W length 9mm diameter 3.2mm")
(property "Sheetfile" "EZ-USB_motherboard.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000061c33b8c")
(attr through_hole)
(fp_text reference "R1" (at 6.35 -2.72) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6781326c-6e0d-4753-8f28-0f5c687e01f9)
)
(fp_text value "360" (at 6.35 2.72) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c701ee8e-1214-4781-a973-17bef7b6e3eb)
)
(fp_text user "${REFERENCE}" (at 6.35 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d6fb27cf-362d-4568-967c-a5bf49d5931b)
)
(fp_line (start 1.04 0) (end 1.73 0) (layer "F.SilkS") (width 0.12) (tstamp 15fe8f3d-6077-4e0e-81d0-8ec3f4538981))
(fp_line (start 10.97 -1.72) (end 1.73 -1.72) (layer "F.SilkS") (width 0.12) (tstamp 814763c2-92e5-4a2c-941c-9bbd073f6e87))
(fp_line (start 1.73 1.72) (end 10.97 1.72) (layer "F.SilkS") (width 0.12) (tstamp 82be7aae-5d06-4178-8c3e-98760c41b054))
(fp_line (start 1.73 -1.72) (end 1.73 1.72) (layer "F.SilkS") (width 0.12) (tstamp e1535036-5d36-405f-bb86-3819621c4f23))
(fp_line (start 11.66 0) (end 10.97 0) (layer "F.SilkS") (width 0.12) (tstamp e40e8cef-4fb0-4fc3-be09-3875b2cc8469))
(fp_line (start 10.97 1.72) (end 10.97 -1.72) (layer "F.SilkS") (width 0.12) (tstamp e65b62be-e01b-4688-a999-1d1be370c4ae))
(fp_line (start 13.75 1.85) (end 13.75 -1.85) (layer "F.CrtYd") (width 0.05) (tstamp 35a9f71f-ba35-47f6-814e-4106ac36c51e))
(fp_line (start 13.75 -1.85) (end -1.05 -1.85) (layer "F.CrtYd") (width 0.05) (tstamp 5b34a16c-5a14-4291-8242-ea6d6ac54372))
(fp_line (start -1.05 -1.85) (end -1.05 1.85) (layer "F.CrtYd") (width 0.05) (tstamp 9b3c58a7-a9b9-4498-abc0-f9f43e4f0292))
(fp_line (start -1.05 1.85) (end 13.75 1.85) (layer "F.CrtYd") (width 0.05) (tstamp c094494a-f6f7-43fc-a007-4951484ddf3a))
(fp_line (start 1.85 1.6) (end 10.85 1.6) (layer "F.Fab") (width 0.1) (tstamp 20c315f4-1e4f-49aa-8d61-778a7389df7e))
(fp_line (start 10.85 1.6) (end 10.85 -1.6) (layer "F.Fab") (width 0.1) (tstamp 7a4ce4b3-518a-4819-b8b2-5127b3347c64))
(fp_line (start 1.85 -1.6) (end 1.85 1.6) (layer "F.Fab") (width 0.1) (tstamp 7e0a03ae-d054-4f76-a131-5c09b8dc1636))
(fp_line (start 0 0) (end 1.85 0) (layer "F.Fab") (width 0.1) (tstamp a6b7df29-bcf8-46a9-b623-7eaac47f5110))
(fp_line (start 10.85 -1.6) (end 1.85 -1.6) (layer "F.Fab") (width 0.1) (tstamp a9b3f6e4-7a6d-4ae8-ad28-3d8458e0ca1a))
(fp_line (start 12.7 0) (end 10.85 0) (layer "F.Fab") (width 0.1) (tstamp d9c6d5d2-0b49-49ba-a970-cd2c32f74c54))
(pad "1" thru_hole circle locked (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 11 "Net-(R1-Pad1)") (pintype "passive") (tstamp 9193c41e-d425-447d-b95c-6986d66ea01c))
(pad "2" thru_hole oval locked (at 12.7 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 12 "Net-(R1-Pad2)") (pintype "passive") (tstamp 27d56953-c620-4d5b-9c1c-e48bc3d9684a))
(model "${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 00000000-0000-0000-0000-000061c2d482)
(at 118.11 62.23 180)
(descr "Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=12.7mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0309 series Axial Horizontal pin pitch 12.7mm 0.5W = 1/2W length 9mm diameter 3.2mm")
(property "Sheetfile" "EZ-USB_motherboard.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000061c34189")
(attr through_hole)
(fp_text reference "R2" (at 6.35 -2.72) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp feb26ecb-9193-46ea-a41b-d09305bf0a3e)
)
(fp_text value "360" (at 6.35 2.72) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 382ca670-6ae8-4de6-90f9-f241d1337171)
)
(fp_text user "${REFERENCE}" (at 6.35 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0e8f7fc0-2ef2-4b90-9c15-8a3a601ee459)
)
(fp_line (start 1.04 0) (end 1.73 0) (layer "F.SilkS") (width 0.12) (tstamp 309b3bff-19c8-41ec-a84d-63399c649f46))
(fp_line (start 11.66 0) (end 10.97 0) (layer "F.SilkS") (width 0.12) (tstamp 8c0807a7-765b-4fa5-baaa-e09a2b610e6b))
(fp_line (start 10.97 -1.72) (end 1.73 -1.72) (layer "F.SilkS") (width 0.12) (tstamp bd9595a1-04f3-4fda-8f1b-e65ad874edd3))
(fp_line (start 10.97 1.72) (end 10.97 -1.72) (layer "F.SilkS") (width 0.12) (tstamp be645d0f-8568-47a0-a152-e3ddd33563eb))
(fp_line (start 1.73 -1.72) (end 1.73 1.72) (layer "F.SilkS") (width 0.12) (tstamp c9667181-b3c7-4b01-b8b4-baa29a9aea63))
(fp_line (start 1.73 1.72) (end 10.97 1.72) (layer "F.SilkS") (width 0.12) (tstamp ebd06df3-d52b-4cff-99a2-a771df6d3733))
(fp_line (start -1.05 1.85) (end 13.75 1.85) (layer "F.CrtYd") (width 0.05) (tstamp 173f6f06-e7d0-42ac-ab03-ce6b79b9eeee))
(fp_line (start -1.05 -1.85) (end -1.05 1.85) (layer "F.CrtYd") (width 0.05) (tstamp 2e842263-c0ba-46fd-a760-6624d4c78278))
(fp_line (start 13.75 1.85) (end 13.75 -1.85) (layer "F.CrtYd") (width 0.05) (tstamp 4632212f-13ce-4392-bc68-ccb9ba333770))
(fp_line (start 13.75 -1.85) (end -1.05 -1.85) (layer "F.CrtYd") (width 0.05) (tstamp cb16d05e-318b-4e51-867b-70d791d75bea))
(fp_line (start 1.85 1.6) (end 10.85 1.6) (layer "F.Fab") (width 0.1) (tstamp 0ce8d3ab-2662-4158-8a2a-18b782908fc5))
(fp_line (start 10.85 1.6) (end 10.85 -1.6) (layer "F.Fab") (width 0.1) (tstamp 29195ea4-8218-44a1-b4bf-466bee0082e4))
(fp_line (start 1.85 -1.6) (end 1.85 1.6) (layer "F.Fab") (width 0.1) (tstamp b0906e10-2fbc-4309-a8b4-6fc4cd1a5490))
(fp_line (start 0 0) (end 1.85 0) (layer "F.Fab") (width 0.1) (tstamp cff34251-839c-4da9-a0ad-85d0fc4e32af))
(fp_line (start 10.85 -1.6) (end 1.85 -1.6) (layer "F.Fab") (width 0.1) (tstamp d0fb0864-e79b-4bdc-8e8e-eed0cabe6d56))
(fp_line (start 12.7 0) (end 10.85 0) (layer "F.Fab") (width 0.1) (tstamp d5b800ca-1ab6-4b66-b5f7-2dda5658b504))
(pad "1" thru_hole circle locked (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 14 "Net-(R2-Pad1)") (pintype "passive") (tstamp 935f462d-8b1e-4005-9f1e-17f537ab1756))
(pad "2" thru_hole oval locked (at 12.7 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 13 "Net-(R2-Pad2)") (pintype "passive") (tstamp 057af6bb-cf6f-4bfb-b0c0-2e92a2c09a47))
(model "${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 00000000-0000-0000-0000-000061c2d499)
(at 118.11 57.15 180)
(descr "Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=12.7mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0309 series Axial Horizontal pin pitch 12.7mm 0.5W = 1/2W length 9mm diameter 3.2mm")
(property "Sheetfile" "EZ-USB_motherboard.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000061c34659")
(attr through_hole)
(fp_text reference "R3" (at 6.35 -2.72) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 262f1ea9-0133-4b43-be36-456207ea857c)
)
(fp_text value "360" (at 6.35 2.72) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c1c799a0-3c93-493a-9ad7-8a0561bc69ee)
)
(fp_text user "${REFERENCE}" (at 6.35 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5487601b-81d3-4c70-8f3d-cf9df9c63302)
)
(fp_line (start 1.04 0) (end 1.73 0) (layer "F.SilkS") (width 0.12) (tstamp 22999e73-da32-43a5-9163-4b3a41614f25))
(fp_line (start 1.73 1.72) (end 10.97 1.72) (layer "F.SilkS") (width 0.12) (tstamp 40b14a16-fb82-4b9d-89dd-55cd98abb5cc))
(fp_line (start 10.97 1.72) (end 10.97 -1.72) (layer "F.SilkS") (width 0.12) (tstamp 658dad07-97fd-466c-8b49-21892ac96ea4))
(fp_line (start 10.97 -1.72) (end 1.73 -1.72) (layer "F.SilkS") (width 0.12) (tstamp 6e68f0cd-800e-4167-9553-71fc59da1eeb))
(fp_line (start 11.66 0) (end 10.97 0) (layer "F.SilkS") (width 0.12) (tstamp a4f86a46-3bc8-4daa-9125-a63f297eb114))
(fp_line (start 1.73 -1.72) (end 1.73 1.72) (layer "F.SilkS") (width 0.12) (tstamp c09938fd-06b9-4771-9f63-2311626243b3))
(fp_line (start 13.75 1.85) (end 13.75 -1.85) (layer "F.CrtYd") (width 0.05) (tstamp 5edcefbe-9766-42c8-9529-28d0ec865573))
(fp_line (start 13.75 -1.85) (end -1.05 -1.85) (layer "F.CrtYd") (width 0.05) (tstamp 721d1be9-236e-470b-ba69-f1cc6c43faf9))
(fp_line (start -1.05 -1.85) (end -1.05 1.85) (layer "F.CrtYd") (width 0.05) (tstamp 81a15393-727e-448b-a777-b18773023d89))
(fp_line (start -1.05 1.85) (end 13.75 1.85) (layer "F.CrtYd") (width 0.05) (tstamp ec5c2062-3a41-4636-8803-069e60a1641a))
(fp_line (start 1.85 -1.6) (end 1.85 1.6) (layer "F.Fab") (width 0.1) (tstamp 20cca02e-4c4d-4961-b6b4-b40a1731b220))
(fp_line (start 0 0) (end 1.85 0) (layer "F.Fab") (width 0.1) (tstamp 240c10af-51b5-420e-a6f4-a2c8f5db1db5))
(fp_line (start 12.7 0) (end 10.85 0) (layer "F.Fab") (width 0.1) (tstamp 2d697cf0-e02e-4ed1-a048-a704dab0ee43))
(fp_line (start 10.85 -1.6) (end 1.85 -1.6) (layer "F.Fab") (width 0.1) (tstamp 503dbd88-3e6b-48cc-a2ea-a6e28b52a1f7))
(fp_line (start 10.85 1.6) (end 10.85 -1.6) (layer "F.Fab") (width 0.1) (tstamp 592f25e6-a01b-47fd-8172-3da01117d00a))
(fp_line (start 1.85 1.6) (end 10.85 1.6) (layer "F.Fab") (width 0.1) (tstamp cb614b23-9af3-4aec-bed8-c1374e001510))
(pad "1" thru_hole circle locked (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 15 "Net-(R3-Pad1)") (pintype "passive") (tstamp a29f8df0-3fae-4edf-8d9c-bd5a875b13e3))
(pad "2" thru_hole oval locked (at 12.7 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 16 "Net-(R3-Pad2)") (pintype "passive") (tstamp e3fc1e69-a11c-4c84-8952-fefb9372474e))
(model "${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 00000000-0000-0000-0000-000061c2d4b0)
(at 77.47 54.61)
(descr "Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=12.7mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0309 series Axial Horizontal pin pitch 12.7mm 0.5W = 1/2W length 9mm diameter 3.2mm")
(property "Sheetfile" "EZ-USB_motherboard.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000061c34f10")
(attr through_hole)
(fp_text reference "R4" (at 6.35 -2.72) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4e315e69-0417-463a-8b7f-469a08d1496e)
)
(fp_text value "360" (at 6.35 2.72) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 071522c0-d0ed-49b9-906e-6295f67fb0dc)
)
(fp_text user "${REFERENCE}" (at 6.35 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2846428d-39de-4eae-8ce2-64955d56c493)
)
(fp_line (start 11.66 0) (end 10.97 0) (layer "F.SilkS") (width 0.12) (tstamp 009a4fb4-fcc0-4623-ae5d-c1bae3219583))
(fp_line (start 10.97 -1.72) (end 1.73 -1.72) (layer "F.SilkS") (width 0.12) (tstamp 37f31dec-63fc-4634-a141-5dc5d2b60fe4))
(fp_line (start 10.97 1.72) (end 10.97 -1.72) (layer "F.SilkS") (width 0.12) (tstamp 88668202-3f0b-4d07-84d4-dcd790f57272))
(fp_line (start 1.04 0) (end 1.73 0) (layer "F.SilkS") (width 0.12) (tstamp 91c1eb0a-67ae-4ef0-95ce-d060a03a7313))
(fp_line (start 1.73 -1.72) (end 1.73 1.72) (layer "F.SilkS") (width 0.12) (tstamp c106154f-d948-43e5-abfa-e1b96055d91b))
(fp_line (start 1.73 1.72) (end 10.97 1.72) (layer "F.SilkS") (width 0.12) (tstamp c24d6ac8-802d-4df3-a210-9cb1f693e865))
(fp_line (start -1.05 1.85) (end 13.75 1.85) (layer "F.CrtYd") (width 0.05) (tstamp 2dc54bac-8640-4dd7-b8ed-3c7acb01a8ea))
(fp_line (start 13.75 -1.85) (end -1.05 -1.85) (layer "F.CrtYd") (width 0.05) (tstamp 70fb572d-d5ec-41e7-9482-63d4578b4f47))
(fp_line (start -1.05 -1.85) (end -1.05 1.85) (layer "F.CrtYd") (width 0.05) (tstamp cf386a39-fc62-49dd-8ec5-e044f6bd67ce))
(fp_line (start 13.75 1.85) (end 13.75 -1.85) (layer "F.CrtYd") (width 0.05) (tstamp eae0ab9f-65b2-44d3-aba7-873c3227fba7))
(fp_line (start 1.85 -1.6) (end 1.85 1.6) (layer "F.Fab") (width 0.1) (tstamp 4fa10683-33cd-4dcd-8acc-2415cd63c62a))
(fp_line (start 10.85 1.6) (end 10.85 -1.6) (layer "F.Fab") (width 0.1) (tstamp 8bc2c25a-a1f1-4ce8-b96a-a4f8f4c35079))
(fp_line (start 1.85 1.6) (end 10.85 1.6) (layer "F.Fab") (width 0.1) (tstamp 9cbf35b8-f4d3-42a3-bb16-04ffd03fd8fd))
(fp_line (start 10.85 -1.6) (end 1.85 -1.6) (layer "F.Fab") (width 0.1) (tstamp b1ddb058-f7b2-429c-9489-f4e2242ad7e5))
(fp_line (start 0 0) (end 1.85 0) (layer "F.Fab") (width 0.1) (tstamp eee16674-2d21-45b6-ab5e-d669125df26c))
(fp_line (start 12.7 0) (end 10.85 0) (layer "F.Fab") (width 0.1) (tstamp f449bd37-cc90-4487-aee6-2a20b8d2843a))
(pad "1" thru_hole circle locked (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 18 "Net-(R4-Pad1)") (pintype "passive") (tstamp 609b9e1b-4e3b-42b7-ac76-a62ec4d0e7c7))
(pad "2" thru_hole oval locked (at 12.7 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 17 "Net-(R4-Pad2)") (pintype "passive") (tstamp 7afa54c4-2181-41d3-81f7-39efc497ecae))
(model "${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 00000000-0000-0000-0000-000061c2d4c7)
(at 77.47 59.69)
(descr "Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=12.7mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0309 series Axial Horizontal pin pitch 12.7mm 0.5W = 1/2W length 9mm diameter 3.2mm")
(property "Sheetfile" "EZ-USB_motherboard.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000061c35807")
(attr through_hole)
(fp_text reference "R5" (at 6.35 -2.72) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a6ccc556-da88-4006-ae1a-cc35733efef3)
)
(fp_text value "360" (at 6.35 2.72) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 065b9982-55f2-4822-977e-07e8a06e7b35)
)
(fp_text user "${REFERENCE}" (at 6.35 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 109caac1-5036-4f23-9a66-f569d871501b)
)
(fp_line (start 1.73 -1.72) (end 1.73 1.72) (layer "F.SilkS") (width 0.12) (tstamp 0f31f11f-c374-4640-b9a4-07bbdba8d354))
(fp_line (start 1.73 1.72) (end 10.97 1.72) (layer "F.SilkS") (width 0.12) (tstamp 18b7e157-ae67-48ad-bd7c-9fef6fe45b22))
(fp_line (start 10.97 1.72) (end 10.97 -1.72) (layer "F.SilkS") (width 0.12) (tstamp 5fc9acb6-6dbb-4598-825b-4b9e7c4c67c4))
(fp_line (start 10.97 -1.72) (end 1.73 -1.72) (layer "F.SilkS") (width 0.12) (tstamp a53767ed-bb28-4f90-abe0-e0ea734812a4))
(fp_line (start 11.66 0) (end 10.97 0) (layer "F.SilkS") (width 0.12) (tstamp e4aa537c-eb9d-4dbb-ac87-fae46af42391))
(fp_line (start 1.04 0) (end 1.73 0) (layer "F.SilkS") (width 0.12) (tstamp f9403623-c00c-4b71-bc5c-d763ff009386))
(fp_line (start -1.05 -1.85) (end -1.05 1.85) (layer "F.CrtYd") (width 0.05) (tstamp 6d1d60ff-408a-47a7-892f-c5cf9ef6ca75))
(fp_line (start 13.75 1.85) (end 13.75 -1.85) (layer "F.CrtYd") (width 0.05) (tstamp 970e0f64-111f-41e3-9f5a-fb0d0f6fa101))
(fp_line (start -1.05 1.85) (end 13.75 1.85) (layer "F.CrtYd") (width 0.05) (tstamp b6135480-ace6-42b2-9c47-856ef57cded1))
(fp_line (start 13.75 -1.85) (end -1.05 -1.85) (layer "F.CrtYd") (width 0.05) (tstamp dc2801a1-d539-4721-b31f-fe196b9f13df))
(fp_line (start 1.85 -1.6) (end 1.85 1.6) (layer "F.Fab") (width 0.1) (tstamp 19b0959e-a79b-43b2-a5ad-525ced7e9131))
(fp_line (start 10.85 1.6) (end 10.85 -1.6) (layer "F.Fab") (width 0.1) (tstamp 7c04618d-9115-4179-b234-a8faf854ea92))
(fp_line (start 12.7 0) (end 10.85 0) (layer "F.Fab") (width 0.1) (tstamp 998b7fa5-31a5-472e-9572-49d5226d6098))
(fp_line (start 0 0) (end 1.85 0) (layer "F.Fab") (width 0.1) (tstamp e4d2f565-25a0-48c6-be59-f4bf31ad2558))
(fp_line (start 10.85 -1.6) (end 1.85 -1.6) (layer "F.Fab") (width 0.1) (tstamp e502d1d5-04b0-4d4b-b5c3-8c52d09668e7))
(fp_line (start 1.85 1.6) (end 10.85 1.6) (layer "F.Fab") (width 0.1) (tstamp e67b9f8c-019b-4145-98a4-96545f6bb128))
(pad "1" thru_hole circle locked (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 19 "Net-(R5-Pad1)") (pintype "passive") (tstamp 31540a7e-dc9e-4e4d-96b1-dab15efa5f4b))
(pad "2" thru_hole oval locked (at 12.7 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 20 "Net-(R5-Pad2)") (pintype "passive") (tstamp 8c1605f9-6c91-4701-96bf-e753661d5e23))
(model "${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 00000000-0000-0000-0000-000061c2d4de)
(at 77.47 64.77)
(descr "Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=12.7mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0309 series Axial Horizontal pin pitch 12.7mm 0.5W = 1/2W length 9mm diameter 3.2mm")
(property "Sheetfile" "EZ-USB_motherboard.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000061c35a89")
(attr through_hole)
(fp_text reference "R6" (at 6.35 -2.72) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e5203297-b913-4288-a576-12a92185cb52)
)
(fp_text value "360" (at 6.35 2.72) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1f8b2c0c-b042-4e2e-80f6-4959a27b238f)
)
(fp_text user "${REFERENCE}" (at 6.35 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 700e8b73-5976-423f-a3f3-ab3d9f3e9760)
)
(fp_line (start 1.04 0) (end 1.73 0) (layer "F.SilkS") (width 0.12) (tstamp 0ae82096-0994-4fb0-9a2a-d4ac4804abac))
(fp_line (start 10.97 -1.72) (end 1.73 -1.72) (layer "F.SilkS") (width 0.12) (tstamp 0fdc6f30-77bc-4e9b-8665-c8aa9acf5bf9))
(fp_line (start 10.97 1.72) (end 10.97 -1.72) (layer "F.SilkS") (width 0.12) (tstamp 4107d40a-e5df-4255-aacc-13f9928e090c))
(fp_line (start 1.73 1.72) (end 10.97 1.72) (layer "F.SilkS") (width 0.12) (tstamp b9bb0e73-161a-4d06-b6eb-a9f66d8a95f5))
(fp_line (start 1.73 -1.72) (end 1.73 1.72) (layer "F.SilkS") (width 0.12) (tstamp c04386e0-b49e-4fff-b380-675af13a62cb))
(fp_line (start 11.66 0) (end 10.97 0) (layer "F.SilkS") (width 0.12) (tstamp e0f06b5c-de63-4833-a591-ca9e19217a35))
(fp_line (start 13.75 -1.85) (end -1.05 -1.85) (layer "F.CrtYd") (width 0.05) (tstamp 0f324b67-75ef-407f-8dbc-3c1fc5c2abba))
(fp_line (start -1.05 -1.85) (end -1.05 1.85) (layer "F.CrtYd") (width 0.05) (tstamp 8195a7cf-4576-44dd-9e0e-ee048fdb93dd))
(fp_line (start 13.75 1.85) (end 13.75 -1.85) (layer "F.CrtYd") (width 0.05) (tstamp d2d7bea6-0c22-495f-8666-323b30e03150))
(fp_line (start -1.05 1.85) (end 13.75 1.85) (layer "F.CrtYd") (width 0.05) (tstamp e7bb7815-0d52-4bb8-b29a-8cf960bd2905))
(fp_line (start 12.7 0) (end 10.85 0) (layer "F.Fab") (width 0.1) (tstamp 03c7f780-fc1b-487a-b30d-567d6c09fdc8))
(fp_line (start 1.85 1.6) (end 10.85 1.6) (layer "F.Fab") (width 0.1) (tstamp 79e31048-072a-4a40-a625-26bb0b5f046b))
(fp_line (start 1.85 -1.6) (end 1.85 1.6) (layer "F.Fab") (width 0.1) (tstamp b4300db7-1220-431a-b7c3-2edbdf8fa6fc))
(fp_line (start 0 0) (end 1.85 0) (layer "F.Fab") (width 0.1) (tstamp b873bc5d-a9af-4bd9-afcb-87ce4d417120))
(fp_line (start 10.85 1.6) (end 10.85 -1.6) (layer "F.Fab") (width 0.1) (tstamp c76d4423-ef1b-4a6f-8176-33d65f2877bb))
(fp_line (start 10.85 -1.6) (end 1.85 -1.6) (layer "F.Fab") (width 0.1) (tstamp f7667b23-296e-4362-a7e3-949632c8954b))
(pad "1" thru_hole circle locked (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 22 "Net-(R6-Pad1)") (pintype "passive") (tstamp 4b03e854-02fe-44cc-bece-f8268b7cae54))
(pad "2" thru_hole oval locked (at 12.7 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 21 "Net-(R6-Pad2)") (pintype "passive") (tstamp 1c68b844-c861-46b7-b734-0242168a4220))
(model "${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 00000000-0000-0000-0000-000061c2d50c)
(at 118.11 105.41 180)
(descr "Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=12.7mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0309 series Axial Horizontal pin pitch 12.7mm 0.5W = 1/2W length 9mm diameter 3.2mm")
(property "Sheetfile" "EZ-USB_motherboard.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000061c93896")
(attr through_hole)
(fp_text reference "R8" (at 6.35 -2.72) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp eae14f5f-515c-4a6f-ad0e-e8ef233d14bf)
)
(fp_text value "1k" (at 6.35 2.72) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6e435cd4-da2b-4602-a0aa-5dd988834dff)
)
(fp_text user "${REFERENCE}" (at 6.35 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 699feae1-8cdd-4d2b-947f-f24849c73cdb)
)
(fp_line (start 1.73 -1.72) (end 1.73 1.72) (layer "F.SilkS") (width 0.12) (tstamp 00e38d63-5436-49db-81f5-697421f168fc))
(fp_line (start 10.97 -1.72) (end 1.73 -1.72) (layer "F.SilkS") (width 0.12) (tstamp 155b0b7c-70b4-4a26-a550-bac13cab0aa4))
(fp_line (start 1.04 0) (end 1.73 0) (layer "F.SilkS") (width 0.12) (tstamp 1fa508ef-df83-4c99-846b-9acf535b3ad9))
(fp_line (start 10.97 1.72) (end 10.97 -1.72) (layer "F.SilkS") (width 0.12) (tstamp 399fc36a-ed5d-44b5-82f7-c6f83d9acc14))
(fp_line (start 11.66 0) (end 10.97 0) (layer "F.SilkS") (width 0.12) (tstamp 4f411f68-04bd-4175-a406-bcaa4cf6601e))
(fp_line (start 1.73 1.72) (end 10.97 1.72) (layer "F.SilkS") (width 0.12) (tstamp fbe8ebfc-2a8e-4eb8-85c5-38ddeaa5dd00))
(fp_line (start 13.75 -1.85) (end -1.05 -1.85) (layer "F.CrtYd") (width 0.05) (tstamp 6f675e5f-8fe6-4148-baf1-da97afc770f8))
(fp_line (start -1.05 -1.85) (end -1.05 1.85) (layer "F.CrtYd") (width 0.05) (tstamp 8fc062a7-114d-48eb-a8f8-71128838f380))
(fp_line (start -1.05 1.85) (end 13.75 1.85) (layer "F.CrtYd") (width 0.05) (tstamp 917920ab-0c6e-4927-974d-ef342cdd4f63))
(fp_line (start 13.75 1.85) (end 13.75 -1.85) (layer "F.CrtYd") (width 0.05) (tstamp d69a5fdf-de15-4ec9-94f6-f9ee2f4b69fa))
(fp_line (start 0 0) (end 1.85 0) (layer "F.Fab") (width 0.1) (tstamp 38a501e2-0ee8-439d-bd02-e9e90e7503e9))
(fp_line (start 1.85 1.6) (end 10.85 1.6) (layer "F.Fab") (width 0.1) (tstamp 61fe4c73-be59-4519-98f1-a634322a841d))
(fp_line (start 12.7 0) (end 10.85 0) (layer "F.Fab") (width 0.1) (tstamp 70e4263f-d95a-4431-b3f3-cfc800c82056))
(fp_line (start 10.85 -1.6) (end 1.85 -1.6) (layer "F.Fab") (width 0.1) (tstamp c0c2eb8e-f6d1-4506-8e6b-4f995ad74c1f))
(fp_line (start 1.85 -1.6) (end 1.85 1.6) (layer "F.Fab") (width 0.1) (tstamp e5864fe6-2a71-47f0-90ce-38c3f8901580))
(fp_line (start 10.85 1.6) (end 10.85 -1.6) (layer "F.Fab") (width 0.1) (tstamp f9c81c26-f253-4227-a69f-53e64841cfbe))
(pad "1" thru_hole circle locked (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "Net-(C2-Pad1)") (pintype "passive") (tstamp d88958ac-68cd-4955-a63f-0eaa329dec86))
(pad "2" thru_hole oval locked (at 12.7 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 24 "Net-(R8-Pad2)") (pintype "passive") (tstamp b6cd701f-4223-4e72-a305-466869ccb250))
(model "${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 00000000-0000-0000-0000-000061c2d523)
(at 118.11 100.33 180)
(descr "Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=12.7mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0309 series Axial Horizontal pin pitch 12.7mm 0.5W = 1/2W length 9mm diameter 3.2mm")
(property "Sheetfile" "EZ-USB_motherboard.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000061c9457a")
(attr through_hole)
(fp_text reference "R9" (at 6.35 -2.72) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 71f92193-19b0-44ed-bc7f-77535083d769)
)
(fp_text value "1k" (at 6.35 2.72) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 143ed874-a01f-4ced-ba4e-bbb66ddd1f70)
)
(fp_text user "${REFERENCE}" (at 6.35 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 795e68e2-c9ba-45cf-9bff-89b8fae05b5a)
)
(fp_line (start 1.73 -1.72) (end 1.73 1.72) (layer "F.SilkS") (width 0.12) (tstamp 009b5465-0a65-4237-93e7-eb65321eeb18))
(fp_line (start 1.73 1.72) (end 10.97 1.72) (layer "F.SilkS") (width 0.12) (tstamp 221bef83-3ea7-4d3f-adeb-53a8a07c6273))
(fp_line (start 10.97 -1.72) (end 1.73 -1.72) (layer "F.SilkS") (width 0.12) (tstamp 4ba06b66-7669-4c70-b585-f5d4c9c33527))
(fp_line (start 1.04 0) (end 1.73 0) (layer "F.SilkS") (width 0.12) (tstamp 60ff6322-62e2-4602-9bc0-7a0f0a5ecfbf))
(fp_line (start 10.97 1.72) (end 10.97 -1.72) (layer "F.SilkS") (width 0.12) (tstamp b52d6ff3-fef1-496e-8dd5-ebb89b6bce6a))
(fp_line (start 11.66 0) (end 10.97 0) (layer "F.SilkS") (width 0.12) (tstamp e7369115-d491-4ef3-be3d-f5298992c3e8))
(fp_line (start 13.75 -1.85) (end -1.05 -1.85) (layer "F.CrtYd") (width 0.05) (tstamp 477892a1-722e-4cda-bb6c-fcdb8ba5f93e))
(fp_line (start 13.75 1.85) (end 13.75 -1.85) (layer "F.CrtYd") (width 0.05) (tstamp 4d586a18-26c5-441e-a9ff-8125ee516126))
(fp_line (start -1.05 1.85) (end 13.75 1.85) (layer "F.CrtYd") (width 0.05) (tstamp 9186fd02-f30d-4e17-aa38-378ab73e3908))
(fp_line (start -1.05 -1.85) (end -1.05 1.85) (layer "F.CrtYd") (width 0.05) (tstamp aa130053-a451-4f12-97f7-3d4d891a5f83))
(fp_line (start 12.7 0) (end 10.85 0) (layer "F.Fab") (width 0.1) (tstamp 00f3ea8b-8a54-4e56-84ff-d98f6c00496c))
(fp_line (start 10.85 1.6) (end 10.85 -1.6) (layer "F.Fab") (width 0.1) (tstamp 0520f61d-4522-4301-a3fa-8ed0bf060f69))
(fp_line (start 1.85 1.6) (end 10.85 1.6) (layer "F.Fab") (width 0.1) (tstamp 411d4270-c66c-4318-b7fb-1470d34862b8))
(fp_line (start 1.85 -1.6) (end 1.85 1.6) (layer "F.Fab") (width 0.1) (tstamp 8fcec304-c6b1-4655-8326-beacd0476953))
(fp_line (start 0 0) (end 1.85 0) (layer "F.Fab") (width 0.1) (tstamp bc0dbc57-3ae8-4ce5-a05c-2d6003bba475))
(fp_line (start 10.85 -1.6) (end 1.85 -1.6) (layer "F.Fab") (width 0.1) (tstamp c8b92953-cd23-44e6-85ce-083fb8c3f20f))
(pad "1" thru_hole circle locked (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "Net-(C2-Pad1)") (pintype "passive") (tstamp 479331ff-c540-41f4-84e6-b48d65171e59))
(pad "2" thru_hole oval locked (at 12.7 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 25 "Net-(R9-Pad2)") (pintype "passive") (tstamp b09666f9-12f1-4ee9-8877-2292c94258ca))
(model "${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 00000000-0000-0000-0000-000061c2d53a)
(at 77.47 97.79)
(descr "Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=12.7mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0309 series Axial Horizontal pin pitch 12.7mm 0.5W = 1/2W length 9mm diameter 3.2mm")
(property "Sheetfile" "EZ-USB_motherboard.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000061c94cfd")
(attr through_hole)
(fp_text reference "R10" (at 6.35 -2.72) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 98b00c9d-9188-4bce-aa70-92d12dd9cf82)
)
(fp_text value "1k" (at 6.35 2.72) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a24ce0e2-fdd3-4e6a-b754-5dee9713dd27)
)
(fp_text user "${REFERENCE}" (at 6.35 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ae77c3c8-1144-468e-ad5b-a0b4090735bd)
)
(fp_line (start 1.73 -1.72) (end 1.73 1.72) (layer "F.SilkS") (width 0.12) (tstamp 16121028-bdf5-49c0-aae7-e28fe5bfa771))
(fp_line (start 10.97 1.72) (end 10.97 -1.72) (layer "F.SilkS") (width 0.12) (tstamp 4db55cb8-197b-4402-871f-ce582b65664b))
(fp_line (start 11.66 0) (end 10.97 0) (layer "F.SilkS") (width 0.12) (tstamp 9031bb33-c6aa-4758-bf5c-3274ed3ebab7))
(fp_line (start 10.97 -1.72) (end 1.73 -1.72) (layer "F.SilkS") (width 0.12) (tstamp 9aedbb9e-8340-4899-b813-05b23382a36b))
(fp_line (start 1.73 1.72) (end 10.97 1.72) (layer "F.SilkS") (width 0.12) (tstamp e97b5984-9f0f-43a4-9b8a-838eef4cceb2))
(fp_line (start 1.04 0) (end 1.73 0) (layer "F.SilkS") (width 0.12) (tstamp fa918b6d-f6cf-4471-be3b-4ff713f55a2e))
(fp_line (start 13.75 -1.85) (end -1.05 -1.85) (layer "F.CrtYd") (width 0.05) (tstamp 3f43d730-2a73-49fe-9672-32428e7f5b49))
(fp_line (start 13.75 1.85) (end 13.75 -1.85) (layer "F.CrtYd") (width 0.05) (tstamp 9186dae5-6dc3-4744-9f90-e697559c6ac8))
(fp_line (start -1.05 1.85) (end 13.75 1.85) (layer "F.CrtYd") (width 0.05) (tstamp f1a9fb80-4cc4-410f-9616-e19c969dcab5))
(fp_line (start -1.05 -1.85) (end -1.05 1.85) (layer "F.CrtYd") (width 0.05) (tstamp fea7c5d1-76d6-41a0-b5e3-29889dbb8ce0))
(fp_line (start 0 0) (end 1.85 0) (layer "F.Fab") (width 0.1) (tstamp 6bd115d6-07e0-45db-8f2e-3cbb0429104f))
(fp_line (start 10.85 -1.6) (end 1.85 -1.6) (layer "F.Fab") (width 0.1) (tstamp 97fe2a5c-4eee-4c7a-9c43-47749b396494))
(fp_line (start 1.85 -1.6) (end 1.85 1.6) (layer "F.Fab") (width 0.1) (tstamp c3c499b1-9227-4e4b-9982-f9f1aa6203b9))
(fp_line (start 10.85 1.6) (end 10.85 -1.6) (layer "F.Fab") (width 0.1) (tstamp ce72ea62-9343-4a4f-81bf-8ac601f5d005))
(fp_line (start 12.7 0) (end 10.85 0) (layer "F.Fab") (width 0.1) (tstamp d0a0deb1-4f0f-4ede-b730-2c6d67cb9618))
(fp_line (start 1.85 1.6) (end 10.85 1.6) (layer "F.Fab") (width 0.1) (tstamp fb30f9bb-6a0b-4d8a-82b0-266eab794bc6))
(pad "1" thru_hole circle locked (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "Net-(C2-Pad1)") (pintype "passive") (tstamp 2454fd1b-3484-4838-8b7e-d26357238fe1))
(pad "2" thru_hole oval locked (at 12.7 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 26 "Net-(R10-Pad2)") (pintype "passive") (tstamp 45884597-7014-4461-83ee-9975c42b9a53))
(model "${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 00000000-0000-0000-0000-000061c2d551)
(at 77.47 102.87)
(descr "Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=12.7mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0309 series Axial Horizontal pin pitch 12.7mm 0.5W = 1/2W length 9mm diameter 3.2mm")
(property "Sheetfile" "EZ-USB_motherboard.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000061c954cf")
(attr through_hole)
(fp_text reference "R11" (at 6.35 -2.72) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d4c9471f-7503-4339-928c-d1abae1eede6)
)
(fp_text value "1k" (at 6.35 2.72) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 43707e99-bdd7-4b02-9974-540ed6c2b0aa)
)
(fp_text user "${REFERENCE}" (at 6.35 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e17e6c0e-7e5b-43f0-ad48-0a2760b45b04)
)
(fp_line (start 1.73 1.72) (end 10.97 1.72) (layer "F.SilkS") (width 0.12) (tstamp 180245d9-4a3f-4d1b-adcc-b4eafac722e0))
(fp_line (start 10.97 -1.72) (end 1.73 -1.72) (layer "F.SilkS") (width 0.12) (tstamp 28e37b45-f843-47c2-85c9-ca19f5430ece))
(fp_line (start 1.73 -1.72) (end 1.73 1.72) (layer "F.SilkS") (width 0.12) (tstamp 54212c01-b363-47b8-a145-45c40df316f4))
(fp_line (start 1.04 0) (end 1.73 0) (layer "F.SilkS") (width 0.12) (tstamp 88610282-a92d-4c3d-917a-ea95d59e0759))
(fp_line (start 11.66 0) (end 10.97 0) (layer "F.SilkS") (width 0.12) (tstamp 98914cc3-56fe-40bb-820a-3d157225c145))
(fp_line (start 10.97 1.72) (end 10.97 -1.72) (layer "F.SilkS") (width 0.12) (tstamp f8f3a9fc-1e34-4573-a767-508104e8d242))
(fp_line (start -1.05 -1.85) (end -1.05 1.85) (layer "F.CrtYd") (width 0.05) (tstamp 3c5e5ea9-793d-46e3-86bc-5884c4490dc7))
(fp_line (start 13.75 -1.85) (end -1.05 -1.85) (layer "F.CrtYd") (width 0.05) (tstamp 5d9921f1-08b3-4cc9-8cf7-e9a72ca2fdb7))
(fp_line (start -1.05 1.85) (end 13.75 1.85) (layer "F.CrtYd") (width 0.05) (tstamp 9dcdc92b-2219-4a4a-8954-45f02cc3ab25))
(fp_line (start 13.75 1.85) (end 13.75 -1.85) (layer "F.CrtYd") (width 0.05) (tstamp dae72997-44fc-4275-b36f-cd70bf46cfba))
(fp_line (start 10.85 -1.6) (end 1.85 -1.6) (layer "F.Fab") (width 0.1) (tstamp 1fbb0219-551e-409b-a61b-76e8cebdfb9d))
(fp_line (start 1.85 1.6) (end 10.85 1.6) (layer "F.Fab") (width 0.1) (tstamp 79770cd5-32d7-429a-8248-0d9e6212231a))
(fp_line (start 0 0) (end 1.85 0) (layer "F.Fab") (width 0.1) (tstamp 7bfba61b-6752-4a45-9ee6-5984dcb15041))
(fp_line (start 10.85 1.6) (end 10.85 -1.6) (layer "F.Fab") (width 0.1) (tstamp 99332785-d9f1-4363-9377-26ddc18e6d2c))
(fp_line (start 12.7 0) (end 10.85 0) (layer "F.Fab") (width 0.1) (tstamp 99dfa524-0366-4808-b4e8-328fc38e8656))
(fp_line (start 1.85 -1.6) (end 1.85 1.6) (layer "F.Fab") (width 0.1) (tstamp e4e20505-1208-4100-a4aa-676f50844c06))
(pad "1" thru_hole circle locked (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "Net-(C2-Pad1)") (pintype "passive") (tstamp 92035a88-6c95-4a61-bd8a-cb8dd9e5018a))
(pad "2" thru_hole oval locked (at 12.7 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 27 "Net-(R11-Pad2)") (pintype "passive") (tstamp c8b6b273-3d20-4a46-8069-f6d608563604))
(model "${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 00000000-0000-0000-0000-000061c2d568)
(at 77.47 107.95)
(descr "Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=12.7mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0309 series Axial Horizontal pin pitch 12.7mm 0.5W = 1/2W length 9mm diameter 3.2mm")
(property "Sheetfile" "EZ-USB_motherboard.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000061c961c3")
(attr through_hole)
(fp_text reference "R12" (at 6.35 -2.72) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 935057d5-6882-4c15-9a35-54677912ba12)
)
(fp_text value "1k" (at 6.35 2.72) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e091e263-c616-48ef-a460-465c70218987)
)
(fp_text user "${REFERENCE}" (at 6.35 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp faa1812c-fdf3-47ae-9cf4-ae06a263bfbd)
)
(fp_line (start 1.04 0) (end 1.73 0) (layer "F.SilkS") (width 0.12) (tstamp 0fd35a3e-b394-4aae-875a-fac843f9cbb7))
(fp_line (start 11.66 0) (end 10.97 0) (layer "F.SilkS") (width 0.12) (tstamp a8b4bc7e-da32-4fb8-b71a-d7b47c6f741f))
(fp_line (start 10.97 -1.72) (end 1.73 -1.72) (layer "F.SilkS") (width 0.12) (tstamp c088f712-1abe-4cac-9a8b-d564931395aa))
(fp_line (start 1.73 -1.72) (end 1.73 1.72) (layer "F.SilkS") (width 0.12) (tstamp d3d57924-54a6-421d-a3a0-a044fc909e88))
(fp_line (start 10.97 1.72) (end 10.97 -1.72) (layer "F.SilkS") (width 0.12) (tstamp ea6fde00-59dc-4a79-a647-7e38199fae0e))
(fp_line (start 1.73 1.72) (end 10.97 1.72) (layer "F.SilkS") (width 0.12) (tstamp f73b5500-6337-4860-a114-6e307f65ec9f))
(fp_line (start -1.05 -1.85) (end -1.05 1.85) (layer "F.CrtYd") (width 0.05) (tstamp 4185c36c-c66e-4dbd-be5d-841e551f4885))
(fp_line (start 13.75 -1.85) (end -1.05 -1.85) (layer "F.CrtYd") (width 0.05) (tstamp 71c6e723-673c-45a9-a0e4-9742220c52a3))
(fp_line (start 13.75 1.85) (end 13.75 -1.85) (layer "F.CrtYd") (width 0.05) (tstamp b4833916-7a3e-4498-86fb-ec6d13262ffe))
(fp_line (start -1.05 1.85) (end 13.75 1.85) (layer "F.CrtYd") (width 0.05) (tstamp cc48dd41-7768-48d3-b096-2c4cc2126c9d))
(fp_line (start 10.85 -1.6) (end 1.85 -1.6) (layer "F.Fab") (width 0.1) (tstamp 30317bf0-88bb-49e7-bf8b-9f3883982225))
(fp_line (start 0 0) (end 1.85 0) (layer "F.Fab") (width 0.1) (tstamp 3e915099-a18e-49f4-89bb-abe64c2dade5))
(fp_line (start 1.85 1.6) (end 10.85 1.6) (layer "F.Fab") (width 0.1) (tstamp cb721686-5255-4788-a3b0-ce4312e32eb7))
(fp_line (start 1.85 -1.6) (end 1.85 1.6) (layer "F.Fab") (width 0.1) (tstamp d4db7f11-8cfe-40d2-b021-b36f05241701))
(fp_line (start 12.7 0) (end 10.85 0) (layer "F.Fab") (width 0.1) (tstamp eab9c52c-3aa0-43a7-bc7f-7e234ff1e9f4))
(fp_line (start 10.85 1.6) (end 10.85 -1.6) (layer "F.Fab") (width 0.1) (tstamp f959907b-1cef-4760-b043-4260a660a2ae))
(pad "1" thru_hole circle locked (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "Net-(C2-Pad1)") (pintype "passive") (tstamp 88cb65f4-7e9e-44eb-8692-3b6e2e788a94))
(pad "2" thru_hole oval locked (at 12.7 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 28 "Net-(R12-Pad2)") (pintype "passive") (tstamp e5b328f6-dc69-4905-ae98-2dc3200a51d6))
(model "${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_DIP:DIP-14_W7.62mm" (layer "F.Cu")
(tedit 5A02E8C5) (tstamp 00000000-0000-0000-0000-000061c2d58a)
(at 93.98 52.07)
(descr "14-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils)")
(tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil")
(property "Sheetfile" "EZ-USB_motherboard.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000061c20fe3")
(attr through_hole)
(fp_text reference "U1" (at 3.81 -2.33) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4c843bdb-6c9e-40dd-85e2-0567846e18ba)
)
(fp_text value "74AHC04" (at 3.81 17.57) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 72b36951-3ec7-4569-9c88-cf9b4afe1cae)
)
(fp_text user "${REFERENCE}" (at 3.81 7.62) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 96de0051-7945-413a-9219-1ab367546962)
)
(fp_line (start 6.46 -1.33) (end 4.81 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 0a1a4d88-972a-46ce-b25e-6cb796bd41f7))
(fp_line (start 1.16 -1.33) (end 1.16 16.57) (layer "F.SilkS") (width 0.12) (tstamp 57276367-9ce4-4738-88d7-6e8cb94c966c))
(fp_line (start 1.16 16.57) (end 6.46 16.57) (layer "F.SilkS") (width 0.12) (tstamp bdf40d30-88ff-4479-bad1-69529464b61b))
(fp_line (start 6.46 16.57) (end 6.46 -1.33) (layer "F.SilkS") (width 0.12) (tstamp c9b9e62d-dede-4d1a-9a05-275614f8bdb2))
(fp_line (start 2.81 -1.33) (end 1.16 -1.33) (layer "F.SilkS") (width 0.12) (tstamp e5217a0c-7f55-4c30-adda-7f8d95709d1b))
(fp_arc (start 4.81 -1.33) (mid 3.81 -0.33) (end 2.81 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 3f8a5430-68a9-4732-9b89-4e00dd8ae219))
(fp_line (start 8.7 16.8) (end 8.7 -1.55) (layer "F.CrtYd") (width 0.05) (tstamp 29bb7297-26fb-4776-9266-2355d022bab0))
(fp_line (start -1.1 -1.55) (end -1.1 16.8) (layer "F.CrtYd") (width 0.05) (tstamp 36d783e7-096f-4c97-9672-7e08c083b87b))
(fp_line (start -1.1 16.8) (end 8.7 16.8) (layer "F.CrtYd") (width 0.05) (tstamp cb6062da-8dcd-4826-92fd-4071e9e97213))
(fp_line (start 8.7 -1.55) (end -1.1 -1.55) (layer "F.CrtYd") (width 0.05) (tstamp eb8d02e9-145c-465d-b6a8-bae84d47a94b))
(fp_line (start 0.635 16.51) (end 0.635 -0.27) (layer "F.Fab") (width 0.1) (tstamp 30c33e3e-fb78-498d-bffe-76273d527004))
(fp_line (start 1.635 -1.27) (end 6.985 -1.27) (layer "F.Fab") (width 0.1) (tstamp 42ff012d-5eb7-42b9-bb45-415cf26799c6))
(fp_line (start 0.635 -0.27) (end 1.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 5b0a5a46-7b51-4262-a80e-d33dd1806615))
(fp_line (start 6.985 16.51) (end 0.635 16.51) (layer "F.Fab") (width 0.1) (tstamp c3b3d7f4-943f-4cff-b180-87ef3e1bcbff))
(fp_line (start 6.985 -1.27) (end 6.985 16.51) (layer "F.Fab") (width 0.1) (tstamp f64497d1-1d62-44a4-8e5e-6fba4ebc969a))
(pad "1" thru_hole rect locked (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 8 "/IRIS_A") (pintype "input") (tstamp 2db910a0-b943-40b4-b81f-068ba5265f56))
(pad "2" thru_hole oval locked (at 0 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 17 "Net-(R4-Pad2)") (pintype "output") (tstamp 22bb6c80-05a9-4d89-98b0-f4c23fe6c1ce))
(pad "3" thru_hole oval locked (at 0 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 29 "/IRIS_B") (pintype "input") (tstamp eed466bf-cd88-4860-9abf-41a594ca08bd))
(pad "4" thru_hole oval locked (at 0 7.62) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 20 "Net-(R5-Pad2)") (pintype "output") (tstamp 011ee658-718d-416a-85fd-961729cd1ee5))
(pad "5" thru_hole oval locked (at 0 10.16) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 9 "/ZOOM_B") (pintype "input") (tstamp f1e619ac-5067-41df-8384-776ec70a6093))
(pad "6" thru_hole oval locked (at 0 12.7) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 21 "Net-(R6-Pad2)") (pintype "output") (tstamp ed8a7f02-cf05-41d0-97b4-4388ef205e73))
(pad "7" thru_hole oval locked (at 0 15.24) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 3 "/GND") (pinfunction "GND") (pintype "power_in") (tstamp 60aa0ce8-9d0e-48ca-bbf9-866403979e9b))
(pad "8" thru_hole oval locked (at 7.62 15.24) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 12 "Net-(R1-Pad2)") (pintype "output") (tstamp f8bd6470-fafd-47f2-8ed5-9449988187ce))
(pad "9" thru_hole oval locked (at 7.62 12.7) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 6 "/ZOOM_A") (pintype "input") (tstamp 802c2dc3-ca9f-491e-9d66-7893e89ac34c))
(pad "10" thru_hole oval locked (at 7.62 10.16) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 13 "Net-(R2-Pad2)") (pintype "output") (tstamp 72508b1f-1505-46cb-9d37-2081c5a12aca))
(pad "11" thru_hole oval locked (at 7.62 7.62) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 10 "/FOCUS_A") (pintype "input") (tstamp 7d76d925-f900-42af-a03f-bb32d2381b09))
(pad "12" thru_hole oval locked (at 7.62 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 16 "Net-(R3-Pad2)") (pintype "output") (tstamp 7a74c4b1-6243-4a12-85a2-bc41d346e7aa))