-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkicad-pmod_usb.kicad_pcb
4560 lines (4538 loc) · 195 KB
/
kicad-pmod_usb.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 20221018) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(title_block
(title "PMOD - USB")
(date "2023-12-01")
(rev "1.0")
(company "S59MZ")
)
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(grid_origin 123.19 65.9765)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions true)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 4)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue false)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk true)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "GERBERS")
)
)
(net 0 "")
(net 1 "+3V3")
(net 2 "GND")
(net 3 "Net-(D1-A)")
(net 4 "Net-(D2-A)")
(net 5 "/dp_pull")
(net 6 "/led")
(net 7 "/uart_tx")
(net 8 "/uart-rx")
(net 9 "/rst")
(net 10 "/clk")
(net 11 "Net-(J2-VBUS)")
(net 12 "/d-")
(net 13 "/d+")
(net 14 "/d_N")
(net 15 "/d_P")
(footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu")
(tstamp 18e9de6e-8c43-4943-a556-98650951a2cf)
(at 122.682 87.3125 -90)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(property "Sheetfile" "kicad-pmod_usb.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/62e781e0-9809-41ac-9b74-df3772f06b69")
(attr smd)
(fp_text reference "R3" (at 2.54 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9da7498d-5924-4bf4-9ec6-ba3bf665fb88)
)
(fp_text value "150E" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 24d9ab0f-b332-47f5-a207-dbf4779d2467)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 6801b401-d4f5-41e3-a6b9-1b36587ad20b)
)
(fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 27b92137-e7c5-4628-8175-24b9efb8377c))
(fp_line (start -0.254724 0.5225) (end 0.254724 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 723dc1bc-ba0d-455e-b12e-afb326c73ffe))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b007d9dc-54b2-4ab7-a141-a3520479cdb9))
(fp_line (start -1.65 0.73) (end -1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 456a8e6e-a132-4ac0-9d75-2564a15652c4))
(fp_line (start 1.65 -0.73) (end 1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 71fea92a-1b1c-4df2-816f-c1d082134efb))
(fp_line (start 1.65 0.73) (end -1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp aef8a65b-22fd-4c57-9f65-246be018dae3))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0e50a849-9f12-479b-b0bf-51eed08b748d))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d3a7c03f-191d-4654-bc2c-23e35c9f2d70))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 871a79ed-574b-4cd8-a6e0-ce9a25f2c334))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b742619c-0929-49b7-b092-689b8880f8ee))
(pad "1" smd roundrect (at -0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "Net-(D1-A)") (pintype "passive") (tstamp 36dd7027-b630-4ef7-8b07-b233826ae22e))
(pad "2" smd roundrect (at 0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "Net-(J2-VBUS)") (pintype "passive") (tstamp a55e8e2c-8a2b-4632-895c-dc08e24a42ce))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_SMD:LED_0603_1608Metric_Pad1.05x0.95mm_HandSolder" (layer "F.Cu")
(tstamp 292d2f9d-4f35-401a-a45a-4072d060d44d)
(at 124.714 87.3125 90)
(descr "LED SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "LED handsolder")
(property "Sheetfile" "kicad-pmod_usb.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Light emitting diode")
(property "ki_keywords" "LED diode")
(path "/17f6ace2-09bc-42e4-a41c-f482e115a0b9")
(attr smd)
(fp_text reference "D1" (at -2.54 0 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cbb3df24-a6ff-49a7-a95b-e97c69373bb8)
)
(fp_text value "Vbus" (at 2.54 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fbf842e8-f5b8-4659-9c55-463c56df41ac)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp e581893f-cae1-454d-a860-94dcd9fb44af)
)
(fp_line (start -1.66 -0.735) (end -1.66 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a4ffc0dd-13c9-4428-a3bb-ff6d909d6b64))
(fp_line (start -1.66 0.735) (end 0.8 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4a36631e-bd41-4f43-8be8-8731affea624))
(fp_line (start 0.8 -0.735) (end -1.66 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b4f902bc-416e-4274-bf06-0edf504b9f67))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ee219a81-bcd1-4573-9ac1-f8821ea00b26))
(fp_line (start -1.65 0.73) (end -1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5030fa12-4a71-4926-b711-8db471e8d346))
(fp_line (start 1.65 -0.73) (end 1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 17e191ef-7838-4ac1-9083-0645d496cb09))
(fp_line (start 1.65 0.73) (end -1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 805c4aab-1ea6-45ff-8ad0-dce09cef9133))
(fp_line (start -0.8 -0.1) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 38cdf8cd-5cc1-45f9-ad89-b0438267eb93))
(fp_line (start -0.8 0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f7aa2e9e-6ae5-4eae-acc8-3ce2568c9ff0))
(fp_line (start -0.5 -0.4) (end -0.8 -0.1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c4a68ca9-1a2e-4ec9-abb3-8126daf1102e))
(fp_line (start 0.8 -0.4) (end -0.5 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1aea7c56-602b-48b3-b0d0-f2a3af1bff69))
(fp_line (start 0.8 0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 112ee2d3-6e46-4c50-8a8e-5662bd14386f))
(pad "1" smd roundrect (at -0.875 0 90) (size 1.05 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "K") (pintype "passive") (tstamp c39c3e96-39bb-4826-b957-7e5d82d5b6c6))
(pad "2" smd roundrect (at 0.875 0 90) (size 1.05 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "Net-(D1-A)") (pinfunction "A") (pintype "passive") (tstamp bbf1e66b-63be-47e6-8fbf-ba4a2612f356))
(model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu")
(tstamp 2b8bbcf9-7096-4c3d-85a5-5dab49bcb7be)
(at 122.682 71.0565 -90)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(property "Sheetfile" "kicad-pmod_usb.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/e86197cc-78a0-4f15-ab6c-2e6cb018cea8")
(attr smd)
(fp_text reference "R6" (at 0 -1.43 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 936f5258-4007-4fb0-98e3-46b35eb34e07)
)
(fp_text value "10k" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ff3390c3-d866-4126-9890-185e7ad939a4)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 1d5940c9-1a28-468a-b20e-6c931cc2d923)
)
(fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f571f912-349b-4f32-9c4e-2e0869b3d607))
(fp_line (start -0.254724 0.5225) (end 0.254724 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b7738211-d417-4284-97b4-954f14be06c6))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 815f0547-63d8-4fe8-96d8-66124b74aee4))
(fp_line (start -1.65 0.73) (end -1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 64ab2ee4-a539-45fc-9125-18f3546155a5))
(fp_line (start 1.65 -0.73) (end 1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 50537bdb-d26b-453b-a8f9-f1cafe9f14d9))
(fp_line (start 1.65 0.73) (end -1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bb3da19a-0451-4a73-bcd7-f01142a0a0da))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 45037508-afc7-43a6-9560-80dd3c49a135))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9ab87f18-aa1c-4e56-9403-0778c15416ab))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b18e8ba1-2c10-49eb-92f6-6376c0e93490))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 03647c70-578f-49fc-9007-37409601eafc))
(pad "1" smd roundrect (at -0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "+3V3") (pintype "passive") (tstamp 3e6b5b3c-c311-4218-8c60-d5cf1d594089))
(pad "2" smd roundrect (at 0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "/uart-rx") (pintype "passive") (tstamp f9fb1fc8-1bf7-40f7-9260-6b92727c4503))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu")
(tstamp 40f45bc7-3a76-4105-a7b3-53238e371060)
(at 109.982 71.0565 -90)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(property "Sheetfile" "kicad-pmod_usb.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/60416659-0775-40e9-80d7-4da869be8c7e")
(attr smd)
(fp_text reference "R4" (at 0 1.524 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d34f1260-8571-4e53-b8fa-3ee82361b29f)
)
(fp_text value "10k" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dc187d21-e9d6-482f-bebb-f3a4e04b45c0)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 4b6f043a-bbe1-44d3-ac54-27943efb8d84)
)
(fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 81583097-cfcd-4d94-b94c-a3dd682793d0))
(fp_line (start -0.254724 0.5225) (end 0.254724 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 74fdcd32-7acd-461d-b47b-c384f45b405b))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6996d72f-e6b8-4f54-ac4a-240fb0c190fb))
(fp_line (start -1.65 0.73) (end -1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2602f78d-31c9-4e80-94bd-214f84f01525))
(fp_line (start 1.65 -0.73) (end 1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7285b2d8-b17c-4a45-a749-c2794dd4790e))
(fp_line (start 1.65 0.73) (end -1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e47461e7-aaa7-4af7-8779-5b40e52028cf))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp de7602a1-dc51-4666-9181-1064462c9f79))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8bdd749d-56af-46e7-b94a-ffc7335b44c1))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d2a3e935-2b85-46f7-ae29-421dd0a0b9c8))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 99378189-154c-4ca1-8ea1-b2c8dbf28db9))
(pad "1" smd roundrect (at -0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "+3V3") (pintype "passive") (tstamp ecba49e1-e820-4594-b900-74698a7c9390))
(pad "2" smd roundrect (at 0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "/rst") (pintype "passive") (tstamp 911d5e2e-7dbd-41e7-94de-989c1f66975e))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_SMD:LED_0603_1608Metric_Pad1.05x0.95mm_HandSolder" (layer "F.Cu")
(tstamp 4554b9cb-2b7b-42cb-8a65-a103fcd574a6)
(at 124.714 78.6765 90)
(descr "LED SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "LED handsolder")
(property "Sheetfile" "kicad-pmod_usb.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Light emitting diode")
(property "ki_keywords" "LED diode")
(path "/38852602-ffd5-426c-bf98-346c1a56a887")
(attr smd)
(fp_text reference "D2" (at -2.54 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f3bebfbf-4eca-48d4-9ae6-7a99d39de9b4)
)
(fp_text value "Rdy" (at 2.54 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6ca49b3e-76be-4aa1-9274-b1cc098da38d)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 15b6dedf-f275-4045-9bc1-4c3532474317)
)
(fp_line (start -1.66 -0.735) (end -1.66 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 212f0f05-0e4b-45fd-9037-df49a26cc20f))
(fp_line (start -1.66 0.735) (end 0.8 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 36d35824-003c-486d-bb54-2d818948cacf))
(fp_line (start 0.8 -0.735) (end -1.66 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 726ea9af-5c5d-4607-a301-7b877f0fa2bb))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp caf35efb-0e7e-4b12-83b3-ae0e22b241d9))
(fp_line (start -1.65 0.73) (end -1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp de3cab62-cd87-48c8-9886-3fcb22796f25))
(fp_line (start 1.65 -0.73) (end 1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3fe123fb-5395-4885-87b9-330d170b408c))
(fp_line (start 1.65 0.73) (end -1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 909b14a5-3393-4dbe-8508-43ce15441a54))
(fp_line (start -0.8 -0.1) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5a94404c-4159-4ab3-b8d6-c1b841ede115))
(fp_line (start -0.8 0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5543d1f3-b23f-4f16-b045-7757d714eb8c))
(fp_line (start -0.5 -0.4) (end -0.8 -0.1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b72215af-d974-4107-99c1-b4536422b2cf))
(fp_line (start 0.8 -0.4) (end -0.5 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8ffb9571-dc2e-4458-ab07-201c21a3135c))
(fp_line (start 0.8 0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e50c66cc-3209-4ebd-ad4d-8f13e6cc6dea))
(pad "1" smd roundrect (at -0.875 0 90) (size 1.05 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "K") (pintype "passive") (tstamp c7056290-1b2e-4669-b8e1-f02497fbd671))
(pad "2" smd roundrect (at 0.875 0 90) (size 1.05 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "Net-(D2-A)") (pinfunction "A") (pintype "passive") (tstamp 15b63c5f-b8fe-4ff8-8d41-3e69ac69da97))
(model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_2x06_P2.54mm_Horizontal" locked (layer "F.Cu")
(tstamp 5fe0d8d6-04f5-43e9-ad49-7c74cbe3fed5)
(at 123.19 65.9765 90)
(descr "Through hole angled pin header, 2x06, 2.54mm pitch, 6mm pin length, double rows")
(tags "Through hole angled pin header THT 2x06 2.54mm double row")
(property "Sheetfile" "kicad-pmod_usb.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, double row, 02x06, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/c6f61120-f16c-4b4b-b9da-7e4791641d56")
(attr through_hole)
(fp_text reference "J1" (at 1.524 -15.24) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 13b6efd6-b1d1-4e90-ba96-e7b07e100dc0)
)
(fp_text value "pmod" (at 4.572 2.54 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 12469e4f-def8-489b-bb17-e8fdfac849bb)
)
(fp_text user "${REFERENCE}" (at 5.31 -6.35) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 997c3849-4aa5-4020-b931-10b52cddd451)
)
(fp_line (start -1.27 1.27) (end -1.27 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0bcc0d36-f1a4-40f6-bc52-e4f29b7e0a2f))
(fp_line (start -1.27 1.27) (end 0 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2da9b4ec-950d-4bca-9a37-5eed79181577))
(fp_line (start 1.042929 -10.54) (end 1.497071 -10.54)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dd962e69-19c1-4458-bc56-14ac87b97479))
(fp_line (start 1.042929 -9.78) (end 1.497071 -9.78)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 025c362d-7fe0-4379-b2ed-60fcdf3dd58b))
(fp_line (start 1.042929 -8) (end 1.497071 -8)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 99f047ac-0fe6-4870-91b6-a4bc74118e9d))
(fp_line (start 1.042929 -7.24) (end 1.497071 -7.24)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp efba945d-417c-48b0-a42d-b7317fd111fb))
(fp_line (start 1.042929 -5.46) (end 1.497071 -5.46)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c9b430a5-baf8-4e1a-8372-cb8c996b89d4))
(fp_line (start 1.042929 -4.7) (end 1.497071 -4.7)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e82afa50-d511-4d21-8d4e-555ad850207c))
(fp_line (start 1.042929 -2.92) (end 1.497071 -2.92)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 21950c18-68db-453c-bca5-6cc360611618))
(fp_line (start 1.042929 -2.16) (end 1.497071 -2.16)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e965a43f-3417-4b93-8ffd-afea93258e50))
(fp_line (start 1.042929 -0.38) (end 1.497071 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e4e02f31-4996-40af-a712-73e74615a3ec))
(fp_line (start 1.042929 0.38) (end 1.497071 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c5f5fc17-71d5-4aa5-80ad-db283609a209))
(fp_line (start 1.11 -13.08) (end 1.497071 -13.08)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f065d4ad-6b5c-4c9d-a431-65987af92f2d))
(fp_line (start 1.11 -12.32) (end 1.497071 -12.32)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e1c3f056-6840-44a1-a882-cbfdb397246d))
(fp_line (start 3.582929 -13.08) (end 3.98 -13.08)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 91e0d983-f897-4ecb-b50b-758d97293c30))
(fp_line (start 3.582929 -12.32) (end 3.98 -12.32)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 539c7a66-7bab-42f5-aa4f-1e712d23e311))
(fp_line (start 3.582929 -10.54) (end 3.98 -10.54)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f7bf14c9-f970-46a1-b422-b78316d1658e))
(fp_line (start 3.582929 -9.78) (end 3.98 -9.78)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 54b3325c-2572-4030-b228-592e84c12507))
(fp_line (start 3.582929 -8) (end 3.98 -8)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a83b43fb-c753-48db-8dcc-222a31e38dac))
(fp_line (start 3.582929 -7.24) (end 3.98 -7.24)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ff3e3df2-efc4-4b3a-9b44-6554942d26bb))
(fp_line (start 3.582929 -5.46) (end 3.98 -5.46)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 363d03f3-3cc0-454b-98c9-20f536633a0f))
(fp_line (start 3.582929 -4.7) (end 3.98 -4.7)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c096a85a-f804-4474-831d-0a33e59242f8))
(fp_line (start 3.582929 -2.92) (end 3.98 -2.92)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9bde32d6-8ec0-4788-8c19-ecef04908375))
(fp_line (start 3.582929 -2.16) (end 3.98 -2.16)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 01c36cf1-a7c4-4050-96fd-83e51a763b32))
(fp_line (start 3.582929 -0.38) (end 3.98 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 541b91e2-9cfd-4612-b0e8-160e701a4d14))
(fp_line (start 3.582929 0.38) (end 3.98 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 47818aaf-6101-40f4-812c-12a3b2be9ab6))
(fp_line (start 3.98 -14.03) (end 3.98 1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b5cbf172-c1c6-4b4e-96fe-87959a4a7a22))
(fp_line (start 3.98 -11.43) (end 6.096 -11.43)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e41cb825-0aad-484e-9b1a-c2bb81288043))
(fp_line (start 3.98 -8.89) (end 6.096 -8.89)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f0bac76a-894c-4c3b-a59d-b69f8e64098a))
(fp_line (start 3.98 -6.35) (end 6.096 -6.35)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 99469f89-fd04-423a-a48c-86b1b700ab0a))
(fp_line (start 3.98 -3.81) (end 6.096 -3.81)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7aaed3f0-befe-4ebc-b765-6c05133fa675))
(fp_line (start 3.98 -1.27) (end 6.096 -1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a2f3d6d3-58ac-4f56-b0da-dee1826272ee))
(fp_line (start 3.98 1.33) (end 6.096 1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a80b0853-4fa1-402a-8de7-7a805c6ed90d))
(fp_line (start 6.096 -14.03) (end 3.98 -14.03)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 592d3784-377a-4ac7-aa8b-e48e32219f3f))
(fp_line (start 6.096 1.33) (end 6.096 -14.03)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7ebd1b81-cf39-42f1-833f-0b421fb7c943))
(fp_line (start -1.8 -14.5) (end -1.8 1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 67a53f1a-b2e0-498a-90a4-08bca62ccd6e))
(fp_line (start -1.8 1.8) (end 6.604 1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5fd92c2e-3704-469f-bf4a-443437112fb2))
(fp_line (start 6.604 -14.5) (end -1.8 -14.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 67c546a2-5956-4de3-9fdb-b46710a04ce8))
(fp_line (start 6.604 1.8) (end 6.604 -14.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 52d51408-6107-441a-9bd2-b2ff05fd4311))
(fp_line (start -0.32 -13.02) (end -0.32 -12.38)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b9d8dbb9-293f-4037-a74a-3afbaa84c573))
(fp_line (start -0.32 -13.02) (end 4.04 -13.02)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 07124705-b166-4d3b-9b42-6892c99efb5c))
(fp_line (start -0.32 -12.38) (end 4.04 -12.38)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6bab1bc5-6866-44aa-9e31-a62ff73fbbd4))
(fp_line (start -0.32 -10.48) (end -0.32 -9.84)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 89ecaebf-48ae-45d8-9ad3-868377f93481))
(fp_line (start -0.32 -10.48) (end 4.04 -10.48)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a2cf9c30-f0eb-45fe-bf4d-a0d56a78c999))
(fp_line (start -0.32 -9.84) (end 4.04 -9.84)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5b6074f0-e1c2-441c-acd8-1eab265ad1a8))
(fp_line (start -0.32 -7.94) (end -0.32 -7.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0c02b533-43ab-40ec-891e-0ab6bc1d267b))
(fp_line (start -0.32 -7.94) (end 4.04 -7.94)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0f504b13-f70b-46b4-9440-a056ad4d2a8e))
(fp_line (start -0.32 -7.3) (end 4.04 -7.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7abbf7d7-30ba-4188-a928-5361fca2b3f5))
(fp_line (start -0.32 -5.4) (end -0.32 -4.76)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a919fdcc-f3ca-4e7c-9c0c-f98ad77436a8))
(fp_line (start -0.32 -5.4) (end 4.04 -5.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7cd955f6-9084-4f48-b58d-0a6e503b72e9))
(fp_line (start -0.32 -4.76) (end 4.04 -4.76)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d1e095ca-a27b-4b30-a1dc-ec71bebb8935))
(fp_line (start -0.32 -2.86) (end -0.32 -2.22)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 22e999b8-862a-4ffb-9168-c8659978d104))
(fp_line (start -0.32 -2.86) (end 4.04 -2.86)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d5cf4636-18b1-43af-bc8a-a99e07dbbd28))
(fp_line (start -0.32 -2.22) (end 4.04 -2.22)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2c36a819-a104-41ce-b2a0-032ef887e485))
(fp_line (start -0.32 -0.32) (end -0.32 0.32)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b5bfe87f-ffe5-432c-b8a4-4069925c45d1))
(fp_line (start -0.32 -0.32) (end 4.04 -0.32)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b95b3325-5d0c-4389-9c04-d72aa0ed586d))
(fp_line (start -0.32 0.32) (end 4.04 0.32)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 755af8ad-0fd0-419a-9f11-c277eb138509))
(fp_line (start 4.04 -13.335) (end 4.675 -13.97)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2478c0a4-f175-45f9-bce3-f9504627c935))
(fp_line (start 4.04 1.27) (end 4.04 -13.335)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 53243133-b70e-4b89-a6cb-a500376a8c54))
(fp_line (start 4.675 -13.97) (end 6.096 -13.97)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4a5b9f46-b4e8-4975-81a1-4f01ee601a03))
(fp_line (start 6.096 -13.97) (end 6.096 1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b3c9e91d-af40-4bf2-b0b6-369576fb8a00))
(fp_line (start 6.096 1.27) (end 4.04 1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d5e10f5d-767b-41ad-9b39-a40971ea5bac))
(pad "1" thru_hole rect locked (at 0 0 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 5 "/dp_pull") (pinfunction "Pin_1") (pintype "passive") (tstamp e819b67e-5237-4e5e-bec8-f01a11a2e741))
(pad "2" thru_hole oval locked (at 2.54 0 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 6 "/led") (pinfunction "Pin_2") (pintype "passive") (tstamp ef454c81-ac64-4ccf-aa67-50f002fd257f))
(pad "3" thru_hole oval locked (at 0 -2.54 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 9 "/rst") (pinfunction "Pin_3") (pintype "passive") (tstamp 9092463f-5b04-4507-b352-ec6b97d90037))
(pad "4" thru_hole oval locked (at 2.54 -2.54 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 7 "/uart_tx") (pinfunction "Pin_4") (pintype "passive") (tstamp 74c08234-801c-4aeb-83ec-353fc7f3bd9e))
(pad "5" thru_hole oval locked (at 0 -5.08 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 14 "/d_N") (pinfunction "Pin_5") (pintype "passive") (tstamp 6f984e9a-2640-41bf-bd41-3949800b3cc2))
(pad "6" thru_hole oval locked (at 2.54 -5.08 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 8 "/uart-rx") (pinfunction "Pin_6") (pintype "passive") (tstamp 6e9fb4f0-d6e8-4545-86a7-2885f682590f))
(pad "7" thru_hole oval locked (at 0 -7.62 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 15 "/d_P") (pinfunction "Pin_7") (pintype "passive") (tstamp 1f35bdfe-f642-4198-8b37-f7159f85f578))
(pad "8" thru_hole oval locked (at 2.54 -7.62 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 10 "/clk") (pinfunction "Pin_8") (pintype "passive") (tstamp bf060a92-854a-4bfe-9387-c9fcd0b8e459))
(pad "9" thru_hole oval locked (at 0 -10.16 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "Pin_9") (pintype "passive") (thermal_bridge_angle 45) (tstamp 8e29df67-fac7-42a9-9117-c04840766edd))
(pad "10" thru_hole oval locked (at 2.54 -10.16 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "Pin_10") (pintype "passive") (thermal_bridge_angle 45) (tstamp 2d3df0be-4f5f-4f26-aebb-ab00c2beb5a6))
(pad "11" thru_hole oval locked (at 0 -12.7 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 1 "+3V3") (pinfunction "Pin_11") (pintype "passive") (tstamp 472565eb-ccde-4ca2-9048-3a74617b7dbc))
(pad "12" thru_hole oval locked (at 2.54 -12.7 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 1 "+3V3") (pinfunction "Pin_12") (pintype "passive") (tstamp 16ca2163-08b5-4d48-baf5-955d13e63a6f))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_2x06_P2.54mm_Horizontal.wrl"
(offset (xyz 0 12.7 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_USB:USB_B_Lumberg_2411_02_Horizontal" locked (layer "F.Cu")
(tstamp 61a190e4-a9d7-4eed-bd9e-8a8df92c0a28)
(at 118.11 93.1545 -90)
(descr "USB 2.0 receptacle type B, horizontal version, through-hole, https://downloads.lumberg.com/datenblaetter/en/2411_02.pdf")
(tags "USB B receptacle horizontal through-hole")
(property "Sheetfile" "kicad-pmod_usb.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "USB Type B connector")
(property "ki_keywords" "connector USB")
(path "/2ce2b65f-ecb6-4d05-9bf9-e15e2db16a7a")
(attr through_hole)
(fp_text reference "J2" (at 7.5 -7.65 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3cacd3d9-e270-41a1-8bdd-882e5a1d7b9d)
)
(fp_text value "USB_B" (at 7.05 10.45 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e420f53d-01fe-4470-b6de-2fa35d1a6819)
)
(fp_text user "${REFERENCE}" (at 7.5 1.25 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dc51ba5a-0e41-40e3-8125-a161e27d5cbe)
)
(fp_line (start -2.05 -0.5) (end -2.05 0.5)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1709ed4b-6fb5-41a7-b8ae-d3d940917878))
(fp_line (start -2.05 0.5) (end -1.55 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6d4904ec-4a8f-4a1a-b233-eaffe799a50a))
(fp_line (start -1.55 0) (end -2.05 -0.5)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 207ca0a1-c9e9-4a02-91b4-9fecebb87e95))
(fp_line (start -1.35 -4.86) (end 2.4 -4.86)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d2d2710c-8427-4927-be50-a18fcee65c75))
(fp_line (start -1.35 7.36) (end -1.35 -4.86)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b48b44cb-8b41-44c4-b3f7-96acad2b8aa6))
(fp_line (start -1.35 7.36) (end 2.4 7.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b7c3e91c-baf1-48dc-885a-e15e054c1652))
(fp_line (start 15.27 -4.86) (end 7.3 -4.86)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 76094ee2-7b37-455f-8fd9-963b92d95f55))
(fp_line (start 15.27 7.36) (end 7.3 7.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3514c880-0ff7-427c-aa29-5339422881b9))
(fp_line (start 15.27 7.36) (end 15.27 -4.86)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 074a726c-cb92-43c8-ab05-7da2b31a0042))
(fp_line (start -1.74 -7.25) (end -1.74 9.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a0125c48-bf43-4c99-b513-ecc4674d4c80))
(fp_line (start -1.74 9.75) (end 15.66 9.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0e2f54b0-97dd-41fa-b654-060ec152f012))
(fp_line (start 15.66 -7.25) (end -1.74 -7.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2c95ab7e-bccc-4d92-b258-0aa7aef8e625))
(fp_line (start 15.66 9.75) (end 15.66 -7.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 59f2a148-dc7e-4247-becb-2371d94dd19d))
(fp_line (start -1.24 -4.75) (end 15.16 -4.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0b9890cb-2587-45f4-b3fc-257de4d49403))
(fp_line (start -1.24 0.49) (end -0.75 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 940d4b24-fbef-47fe-93b3-8bfb3a5dd15a))
(fp_line (start -1.24 7.25) (end -1.24 -4.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 01b85404-dba0-4997-9cdf-a015e5990b5c))
(fp_line (start -0.75 0) (end -1.24 -0.49)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 58aba059-3012-4d06-a8bf-c8666a737443))
(fp_line (start 15.16 -4.75) (end 15.16 7.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1d22d286-82e7-496a-a583-ad12276a0cb1))
(fp_line (start 15.16 7.25) (end -1.24 7.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 203da32f-7172-4d44-b510-b10ad7bc8494))
(pad "1" thru_hole rect locked (at 0 0) (size 1.6 1.6) (drill 0.95) (layers "*.Cu" "*.Mask")
(net 11 "Net-(J2-VBUS)") (pinfunction "VBUS") (pintype "power_out") (tstamp 7a4a9e76-4658-4a79-8287-9e3b1046c4b0))
(pad "2" thru_hole circle locked (at 0 2.5) (size 1.6 1.6) (drill 0.95) (layers "*.Cu" "*.Mask")
(net 12 "/d-") (pinfunction "D-") (pintype "bidirectional") (tstamp e344cb6c-951f-44d8-98fc-96f582fef633))
(pad "3" thru_hole circle locked (at 2 2.5) (size 1.6 1.6) (drill 0.95) (layers "*.Cu" "*.Mask")
(net 13 "/d+") (pinfunction "D+") (pintype "bidirectional") (tstamp 5d7ad618-8519-47cc-b207-ffeaaec726c5))
(pad "4" thru_hole circle locked (at 2 0) (size 1.6 1.6) (drill 0.95) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_out") (tstamp 6ca38478-44de-434f-945f-de35cdca607a))
(pad "5" thru_hole circle locked (at 4.86 -4.75) (size 4 4) (drill 2.3) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "Shield") (pintype "passive") (tstamp da47fd11-3b2b-4daa-bc79-3e584333b11a))
(pad "5" thru_hole circle locked (at 4.86 7.25) (size 4 4) (drill 2.3) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "Shield") (pintype "passive") (tstamp 982c1c8b-2f71-4b2f-a94a-8c539a041fd1))
(model "/home/matjaz/Kicad/kicad-pmod_usb/STEP/USB-B-S-F-B-TH.stp"
(offset (xyz 7 -1.25 0))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 -90))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu")
(tstamp 75da7e6a-bddf-4304-9140-f564bcdc304d)
(at 111.506 89.3445 180)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(property "Sheetfile" "kicad-pmod_usb.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/e60d5cef-4e87-4e37-a56a-ae39d90753b9")
(attr smd)
(fp_text reference "C1" (at 2.54 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 50758375-a4ed-4afc-a938-0b1140c10225)
)
(fp_text value "100n" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 734e4af6-27c3-4d52-9136-61e7d399844e)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp de3e621c-4bde-4420-a8fb-6864335d23ae)
)
(fp_line (start -0.146267 -0.51) (end 0.146267 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0790a4fc-efaf-4aea-9293-9c8b3ebcf25d))
(fp_line (start -0.146267 0.51) (end 0.146267 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c0c0dd6d-93bf-47b5-b005-cbfd3ccfe86f))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 255d63a9-cc19-4bdd-ae79-e8a533b21573))
(fp_line (start -1.65 0.73) (end -1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b1cbc958-ad24-43da-8fcf-98e56be4e594))
(fp_line (start 1.65 -0.73) (end 1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5904cfe6-a5ac-43c4-b1f2-e864cacb1ba4))
(fp_line (start 1.65 0.73) (end -1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ce587dd8-264d-489a-9742-66c12fd665e0))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e16111ba-3c93-4185-8d2e-43a03fca192f))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1ef0523f-0c73-43e6-8ca2-59c1eb416326))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cbf649e7-c45e-4448-b1f5-80b7ecceb64d))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d86fe824-f5be-4723-a99a-84d87f46fdc9))
(pad "1" smd roundrect (at -0.8625 0 180) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "+3V3") (pintype "passive") (tstamp 828f7dfc-754b-4f7f-81c8-5fb289616fc8))
(pad "2" smd roundrect (at 0.8625 0 180) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 6896539b-a57a-4cda-8190-b1e0593c11f7))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu")
(tstamp 7d40b77e-d473-46c7-822a-c14f7c2842d4)
(at 112.014 71.0565 -90)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(property "Sheetfile" "kicad-pmod_usb.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/665b613f-bf64-4679-bfbb-d947254bc880")
(attr smd)
(fp_text reference "R5" (at 0 -1.43 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c2ca7e97-b5d8-4e19-a50e-a48a4567762d)
)
(fp_text value "10k" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fd145811-ebba-4682-b0c3-58dd1f58a13d)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp e20a6c1f-4510-4052-b8a0-9bc65d783979)
)
(fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp acbf8f6b-df18-4438-820b-6ccc6721b2ae))
(fp_line (start -0.254724 0.5225) (end 0.254724 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3a004233-3eb8-4ac5-9e60-439adfb1b3f2))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a887a631-eeb8-41f9-b791-c915ab5bdcff))
(fp_line (start -1.65 0.73) (end -1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c0835fe0-dde2-49db-adc1-7a68a2a4bf47))
(fp_line (start 1.65 -0.73) (end 1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9f77380e-2e43-49b2-8a64-77cc5429ebf3))
(fp_line (start 1.65 0.73) (end -1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5db5da4d-5ade-4e99-9b78-bb68c0ec2ca3))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cfc82ea3-82cb-4d1c-a910-3c3fbe073033))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bee417dd-6c9f-447e-b2fc-6177a4ff85a7))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 507113fa-8168-45c9-b70c-424a95d3a965))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ab72a1d2-4b10-4e68-888f-d7a19bcbde62))
(pad "1" smd roundrect (at -0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "+3V3") (pintype "passive") (tstamp 2e243121-0d0c-47d3-a139-10d801b3c6de))
(pad "2" smd roundrect (at 0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "/clk") (pintype "passive") (tstamp 1e0efdc5-b59b-40fd-8977-a4ad8edc8ca7))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 8b8c1340-e5f4-4dc8-99dc-d48dd1cbd081)
(at 119.634 80.7085 180)
(descr "Through hole straight pin header, 1x04, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x04 2.54mm single row")
(property "Sheetfile" "kicad-pmod_usb.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x04, script generated")
(property "ki_keywords" "connector")
(path "/e390f2eb-71a3-4643-b3e4-bffd5566b4fe")
(attr through_hole)
(fp_text reference "J3" (at 0 -2.54) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d78d9517-5e62-460c-96e3-b4ad63ce46b6)
)
(fp_text value "Debug" (at 0 9.95) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5a0eaae3-d1cf-4c03-9688-f71140622adf)
)
(fp_text user "Rx" (at 2.032 5.08 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify right))
(tstamp 9fd6ccf1-a07e-457d-b8e1-eb7fa0ac67ca)
)
(fp_text user "Clk" (at 2.032 2.54 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify right))
(tstamp bcb20f00-a2eb-430a-884e-26c966ef0f9c)
)
(fp_text user "Tx" (at 2.032 7.62 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify right))
(tstamp ec858b5c-f3c8-49dc-a9a4-be180f7cab01)
)
(fp_text user "${REFERENCE}" (at 0 3.81 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b1c6a7e8-401a-424a-a0d8-e8506c11cf12)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7fdba63d-c95f-4543-a1d3-fe7d4c8e78dc))
(fp_line (start -1.33 0) (end -1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0ad762d6-739d-4867-9694-37f42e4815a7))
(fp_line (start -1.33 1.27) (end -1.33 8.95)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bd8c111e-f5b8-4359-80de-7c8b555d554e))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 13fd8b90-a828-4a3a-b56b-87d149aca467))
(fp_line (start -1.33 8.95) (end 1.33 8.95)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 06733e89-21bd-4864-bd10-92faab4f9d73))
(fp_line (start 1.33 1.27) (end 1.33 8.95)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f1526869-f1c3-40cc-bbc6-86fd2d15f02c))
(fp_line (start -1.8 -1.8) (end -1.8 9.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fadd4115-9e3d-4701-9a8a-18bcec28fdea))
(fp_line (start -1.8 9.4) (end 1.8 9.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d269ecee-9be2-457a-8f60-1ad17c11d555))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0baecaf5-bdc8-4ff3-bda4-ce01611108f2))
(fp_line (start 1.8 9.4) (end 1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7a55bbbb-ce73-432a-b97f-9ec5c1d9e8ed))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9892b244-7030-4f02-bd39-da9de7b155dd))
(fp_line (start -1.27 8.89) (end -1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 24a5e4f0-ff48-4ec5-aa48-733c21631858))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3aa60f89-273f-442a-b3f0-8dd220111446))
(fp_line (start 1.27 -1.27) (end 1.27 8.89)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 942b7441-6d08-4a56-bb65-609407c5b390))
(fp_line (start 1.27 8.89) (end -1.27 8.89)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e736bd12-5ca9-42e5-a3f3-135d0ab76ccb))
(pad "1" thru_hole rect (at 0 0 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp ac8eebfd-9af0-4b3e-9a98-efa47cb12f29))
(pad "2" thru_hole oval (at 0 2.54 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 10 "/clk") (pinfunction "Pin_2") (pintype "passive") (tstamp c3da3465-80da-4842-9576-0a355729a673))
(pad "3" thru_hole oval (at 0 5.08 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 8 "/uart-rx") (pinfunction "Pin_3") (pintype "passive") (tstamp a3045b0f-5f66-4125-b8fe-8b2762b84f1d))
(pad "4" thru_hole oval (at 0 7.62 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 7 "/uart_tx") (pinfunction "Pin_4") (pintype "passive") (tstamp 85215d67-48b6-4224-9dc6-95535847fc29))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x04_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Button_Switch_SMD:SW_SPST_FSMSM" (layer "F.Cu")
(tstamp bf85bc33-9fb0-44e0-ba96-147ad7eaf0e3)
(at 109.982 80.2005 -90)
(descr "http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=1437566-3&DocType=Customer+Drawing&DocLang=English")
(tags "SPST button tactile switch")
(property "Sheetfile" "kicad-pmod_usb.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Push button switch, generic, two pins")
(property "ki_keywords" "switch normally-open pushbutton push-button")
(path "/27de6ea1-6f70-48c7-b26b-fee21324025a")
(attr smd)
(fp_text reference "SW1" (at 7.112 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e76cd7ca-9733-4289-94d6-1ce88bb0a865)
)
(fp_text value "Reset" (at 0 -3.048 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6aca931c-a97c-4983-a651-75fc62c59b43)
)
(fp_text user "${REFERENCE}" (at 0 -2.6 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3b357954-085a-4844-8cd7-cdbfd9417da1)
)
(fp_line (start -3.06 -1.81) (end 3.06 -1.81)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 05c19d50-3779-48ee-b033-8adc40f6d2b6))
(fp_line (start -3.06 1.81) (end -3.06 -1.81)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 41e2403f-6e9b-44fb-b3f4-563c2bd6f894))
(fp_line (start 3.06 -1.81) (end 3.06 1.81)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 987ee321-4317-43b4-89cc-3982078b7236))
(fp_line (start 3.06 1.81) (end -3.06 1.81)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d381c0c7-39d3-4c82-9e29-2c7b67b83a9b))
(fp_line (start -5.95 -2) (end -5.95 2)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 70e112e4-ebd3-4c8b-8f58-8e2ab3c22e5e))
(fp_line (start -5.95 -2) (end 5.95 -2)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d170ce73-74ad-42ed-a947-4f7e7c4b574e))
(fp_line (start -5.95 2) (end 5.95 2)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b950799e-097f-4fd5-856b-c4c7fa1f4e82))
(fp_line (start 5.95 -2) (end 5.95 2)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4f3343e0-d307-4f28-82c0-a5c7f5d3c72a))
(fp_line (start -3 -1.75) (end -3 1.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 49fb70c8-4717-44ff-b9df-8f88c6000527))
(fp_line (start -3 -1.75) (end 3 -1.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f548e4a6-b813-4189-a120-a08d9d66f773))
(fp_line (start -3 1.75) (end 3 1.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 732a8777-362c-4354-86ea-c11f0ead6311))
(fp_line (start -1.75 -1) (end 1.75 -1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e19c1409-6c7f-476d-bfa3-b66da0273834))
(fp_line (start -1.75 1) (end -1.75 -1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp adf2a111-4dc3-4491-938e-61d0283894fc))
(fp_line (start -1.5 -0.8) (end -1.5 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4aa50c36-f1b5-4c7f-8d28-573bb30165c9))
(fp_line (start -1.5 -0.8) (end 1.5 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a3020c22-0dd6-47f5-be7c-a96d739d7d96))
(fp_line (start -1.5 0.8) (end 1.5 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 038eb0c9-a863-40b4-bce8-f87528957170))
(fp_line (start 1.5 -0.8) (end 1.5 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f438915b-2ee7-4a09-9445-0684a966482f))
(fp_line (start 1.75 -1) (end 1.75 1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e6ec2f7c-6c7c-467b-b332-b4507cf8892a))
(fp_line (start 1.75 1) (end -1.75 1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 811e5bb1-320d-4243-ba50-e7ebf3357383))
(fp_line (start 3 -1.75) (end 3 1.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d3fb1eed-d1a9-47e9-9c00-fa0bd3477903))
(pad "1" smd rect (at -4.59 0 270) (size 2.18 1.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "/rst") (pinfunction "1") (pintype "passive") (tstamp fdbdcd88-694d-4e98-a761-fe5a75107a54))
(pad "2" smd rect (at 4.59 0 270) (size 2.18 1.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "2") (pintype "passive") (tstamp e7da029c-127f-4d16-ad8d-22c5c2030941))
(model "${KICAD6_3DMODEL_DIR}/Button_Switch_SMD.3dshapes/SW_SPST_FSMSM.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu")
(tstamp d5d6797c-9cf7-4ce7-aff4-6fe1511cf3cd)
(at 122.682 78.6765 90)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(property "Sheetfile" "kicad-pmod_usb.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/7fa910bd-8baa-4c23-b5d2-4389cb63455c")
(attr smd)
(fp_text reference "R2" (at -2.54 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8e8ecbb1-5314-4304-8b31-f31819b97e8e)
)
(fp_text value "68E" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 41d82b0c-12ad-4d7b-96f0-a0d1f3b1ffba)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 4d084fac-a517-49fa-8304-407bdf1c64a8)
)
(fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c34504ad-89b5-4548-9430-45747d696041))
(fp_line (start -0.254724 0.5225) (end 0.254724 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 816981d1-64fa-4215-8c2d-b50d74540263))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 12681495-b688-43f2-82ba-0f38e2d797a8))
(fp_line (start -1.65 0.73) (end -1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 26c03bfb-c85c-4171-8bb8-a3110f429500))
(fp_line (start 1.65 -0.73) (end 1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e7c77435-c1ad-41c2-99c5-67071a93cddc))
(fp_line (start 1.65 0.73) (end -1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 157e5130-5c8a-4aef-8b7a-9f60839902a4))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0e960233-e9b9-4720-9f9c-694a5f5b6d38))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e2c41a73-2b0d-48b2-8f2d-3ffb5f0f0a9a))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 04340e4e-e1c5-4076-8362-9f87d3324cdf))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e7be2282-7c10-4709-96b5-38df841b33dd))
(pad "1" smd roundrect (at -0.9125 0 90) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "Net-(D2-A)") (pintype "passive") (tstamp 5cd69db4-fc25-4a4c-8bf1-c0aa4139d05b))
(pad "2" smd roundrect (at 0.9125 0 90) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "/led") (pintype "passive") (tstamp 029b2504-689f-4914-bf49-9e7b588af1a5))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu")
(tstamp da1203f5-7e55-44a4-8a66-43434929db53)
(at 116.4825 68.5165 180)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(property "Sheetfile" "kicad-pmod_usb.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/8058d38d-d3a8-45f2-a3d1-9746013b710c")
(attr smd)
(fp_text reference "R1" (at -2.6435 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 89b35c1d-b7ce-47bb-803c-c02cb4e47c47)
)
(fp_text value "1k5" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dfe3dbc3-a214-4822-ba05-66788f00a017)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 13145a44-05a2-4543-a75b-5f66a32f6997)
)
(fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 017a7216-dd19-44ac-ab3a-3bd92089891e))
(fp_line (start -0.254724 0.5225) (end 0.254724 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 404a4c74-c163-4dfe-b4c5-307cf9899cc5))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0d3abcda-5551-4e66-84e5-efdf14ce09f9))
(fp_line (start -1.65 0.73) (end -1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp dcaa9f53-638c-48a4-b062-db70284d93ba))
(fp_line (start 1.65 -0.73) (end 1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 03cd8ab7-0eb7-4172-ba1e-9722a64bd732))