-
Notifications
You must be signed in to change notification settings - Fork 2
/
HT42B534USB2UART.kicad_pcb
4954 lines (4932 loc) · 194 KB
/
HT42B534USB2UART.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")
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
)
(setup
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 6)
(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 "GND")
(net 2 "VDDA")
(net 3 "VDD")
(net 4 "/V33O")
(net 5 "/D-")
(net 6 "/D+")
(net 7 "Net-(D1-Pad2)")
(net 8 "Net-(J1-Pad3)")
(net 9 "Net-(J1-Pad2)")
(net 10 "/RX")
(net 11 "/TX")
(footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005fe915fe)
(at 72.39 83.4125 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")
(path "/00000000-0000-0000-0000-00005fe9d59b")
(attr smd)
(fp_text reference "C1" (at 2.54 -0.4075) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 477311b9-8f81-40c8-9c55-fd87e287247a)
)
(fp_text value "0.1uF" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 097edb1b-8998-4e70-b670-bba125982348)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 1e518c2a-4cb7-4599-a1fa-5b9f847da7d3)
)
(fp_line (start -0.146267 -0.51) (end 0.146267 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a13ab237-8f8d-4e16-8c47-4440653b8534))
(fp_line (start -0.146267 0.51) (end 0.146267 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 099096e4-8c2a-4d84-a16f-06b4b6330e7a))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 34a74736-156e-4bf3-9200-cd137cfa59da))
(fp_line (start -1.65 0.73) (end -1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 87d7448e-e139-4209-ae0b-372f805267da))
(fp_line (start 1.65 -0.73) (end 1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d0d2eee9-31f6-44fa-8149-ebb4dc2dc0dc))
(fp_line (start 1.65 0.73) (end -1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ee41cb8e-512d-41d2-81e1-3c50fff32aeb))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 67763d19-f622-4e1e-81e5-5b24da7c3f99))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 994b6220-4755-4d84-91b3-6122ac1c2c5e))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6284122b-79c3-4e04-925e-3d32cc3ec077))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ca5a4651-0d1d-441b-b17d-01518ef3b656))
(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 2 "VDDA") (tstamp 41acfe41-fac7-432a-a7a3-946566e2d504))
(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 1 "GND") (tstamp 644ae9fc-3c8e-4089-866e-a12bf371c3e9))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005fe9160f)
(at 83.82 92.71 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")
(path "/00000000-0000-0000-0000-00005fe9a0b6")
(attr smd)
(fp_text reference "C2" (at 0 1.27) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a795f1ba-cdd5-4cc5-9a52-08586e982934)
)
(fp_text value "0.1uF" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 46918595-4a45-48e8-84c0-961b4db7f35f)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp afb8e687-4a13-41a1-b8c0-89a749e897fe)
)
(fp_line (start -0.146267 -0.51) (end 0.146267 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6e105729-aba0-497c-a99e-c32d2b3ddb6d))
(fp_line (start -0.146267 0.51) (end 0.146267 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 983c426c-24e0-4c65-ab69-1f1824adc5c6))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e9bb29b2-2bb9-4ea2-acd9-2bb3ca677a12))
(fp_line (start -1.65 0.73) (end -1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c1d83899-e380-49f9-a87d-8e78bc089ebf))
(fp_line (start 1.65 -0.73) (end 1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 62c076a3-d618-44a2-9042-9a08b3576787))
(fp_line (start 1.65 0.73) (end -1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp da469d11-a8a4-414b-9449-d151eeaf4853))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 94c158d1-8503-4553-b511-bf42f506c2a8))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9ccf03e8-755a-4cd9-96fc-30e1d08fa253))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 23bb2798-d93a-4696-a962-c305c4298a0c))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 78cbdd6c-4878-4cc5-9a58-0e506478e37d))
(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 3 "VDD") (tstamp 3f5fe6b7-98fc-4d3e-9567-f9f7202d1455))
(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 1 "GND") (tstamp 5cbb5968-dbb5-4b84-864a-ead1cacf75b9))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005fe91620)
(at 79.1475 92.71 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")
(path "/00000000-0000-0000-0000-00005fe9b974")
(attr smd)
(fp_text reference "C3" (at 0 1.27) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 746ba970-8279-4e7b-aed3-f28687777c21)
)
(fp_text value "1uF" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 71c31975-2c45-4d18-a25a-18e07a55d11e)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp eb667eea-300e-4ca7-8a6f-4b00de80cd45)
)
(fp_line (start -0.146267 -0.51) (end 0.146267 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 47baf4b1-0938-497d-88f9-671136aa8be7))
(fp_line (start -0.146267 0.51) (end 0.146267 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 77ed3941-d133-4aef-a9af-5a39322d14eb))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4fb02e58-160a-4a39-9f22-d0c75e82ee72))
(fp_line (start -1.65 0.73) (end -1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e615f7aa-337e-474d-9615-2ad82b1c44ca))
(fp_line (start 1.65 -0.73) (end 1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ef8fe2ac-6a7f-4682-9418-b801a1b10a3b))
(fp_line (start 1.65 0.73) (end -1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 44d8279a-9cd1-4db6-856f-0363131605fc))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 55e740a3-0735-4744-896e-2bf5437093b9))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 10109f84-4940-47f8-8640-91f185ac9bc1))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f4f99e3d-7269-4f6a-a759-16ad2a258779))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c022004a-c968-410e-b59e-fbab0e561e9d))
(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 4 "/V33O") (tstamp 749dfe75-c0d6-4872-9330-29c5bbcb8ff8))
(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 1 "GND") (tstamp 66116376-6967-4178-9f23-a26cdeafc400))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005fe91631)
(at 88.9 86.36 90)
(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")
(path "/00000000-0000-0000-0000-00005fec2e3b")
(attr smd)
(fp_text reference "C4" (at -0.006111 -1.167842 90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 7cee474b-af8f-4832-b07a-c43c1ab0b464)
)
(fp_text value "10uF" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 853ee787-6e2c-4f32-bc75-6c17337dd3d5)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 0351df45-d042-41d4-ba35-88092c7be2fc)
)
(fp_line (start -0.146267 -0.51) (end 0.146267 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b447dbb1-d38e-4a15-93cb-12c25382ea53))
(fp_line (start -0.146267 0.51) (end 0.146267 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cfa5c16e-7859-460d-a0b8-cea7d7ea629c))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 676efd2f-1c48-4786-9e4b-2444f1e8f6ff))
(fp_line (start -1.65 0.73) (end -1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 37e8181c-a81e-498b-b2e2-0aef0c391059))
(fp_line (start 1.65 -0.73) (end 1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8d9a3ecc-539f-41da-8099-d37cea9c28e7))
(fp_line (start 1.65 0.73) (end -1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e472dac4-5b65-4920-b8b2-6065d140a69d))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5ca4be1c-537e-4a4a-b344-d0c8ffde8546))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 57c0c267-8bf9-4cc7-b734-d71a239ac313))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 275aa44a-b61f-489f-9e2a-819a0fe0d1eb))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6c67e4f6-9d04-4539-b356-b76e915ce848))
(pad "1" smd roundrect (at -0.8625 0 90) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "VDD") (tstamp aa2ea573-3f20-43c1-aa99-1f9c6031a9aa))
(pad "2" smd roundrect (at 0.8625 0 90) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (tstamp 240e5dac-6242-47a5-bbef-f76d11c715c0))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005fe91642)
(at 86.36 86.36 90)
(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")
(path "/00000000-0000-0000-0000-00005fec3892")
(attr smd)
(fp_text reference "C5" (at -0.006111 -1.229998 90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp e4c6fdbb-fdc7-4ad4-a516-240d84cdc120)
)
(fp_text value "0.1uF" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 789ca812-3e0c-4a3f-97bc-a916dd9bce80)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp bd065eaf-e495-4837-bdb3-129934de1fc7)
)
(fp_line (start -0.146267 -0.51) (end 0.146267 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 182b2d54-931d-49d6-9f39-60a752623e36))
(fp_line (start -0.146267 0.51) (end 0.146267 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5114c7bf-b955-49f3-a0a8-4b954c81bde0))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6c2d26bc-6eca-436c-8025-79f817bf57d6))
(fp_line (start -1.65 0.73) (end -1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2dc272bd-3aa2-45b5-889d-1d3c8aac80f8))
(fp_line (start 1.65 -0.73) (end 1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cb24efdd-07c6-4317-9277-131625b065ac))
(fp_line (start 1.65 0.73) (end -1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5bcace5d-edd0-4e19-92d0-835e43cf8eb2))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cdfb07af-801b-44ba-8c30-d021a6ad3039))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e6b860cc-cb76-4220-acfb-68f1eb348bfa))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a17904b9-135e-4dae-ae20-401c7787de72))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f202141e-c20d-4cac-b016-06a44f2ecce8))
(pad "1" smd roundrect (at -0.8625 0 90) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "VDD") (tstamp e43dbe34-ed17-4e35-a5c7-2f1679b3c415))
(pad "2" smd roundrect (at 0.8625 0 90) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (tstamp 6ec113ca-7d27-4b14-a180-1e5e2fd1c167))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005fe91653)
(at 87.63 90.17)
(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")
(path "/00000000-0000-0000-0000-00005fea6952")
(attr smd)
(fp_text reference "C6" (at 0 -1.43) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 51c4dc0a-5b9f-4edf-a83f-4a12881e42ef)
)
(fp_text value "47pF" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 03d88a85-11fd-47aa-954c-c318bb15294a)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 8d55e186-3e11-40e8-a65e-b36a8a00069e)
)
(fp_line (start -0.146267 -0.51) (end 0.146267 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f976e2cc-36f9-4479-a816-2c74d1d5da6f))
(fp_line (start -0.146267 0.51) (end 0.146267 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b635b16e-60bb-4b3e-9fc3-47d34eef8381))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2732632c-4768-42b6-bf7f-14643424019e))
(fp_line (start -1.65 0.73) (end -1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 13475e15-f37c-4de8-857e-1722b0c39513))
(fp_line (start 1.65 -0.73) (end 1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 854dd5d4-5fd2-4730-bd49-a9cd8299a065))
(fp_line (start 1.65 0.73) (end -1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 120a7b0f-ddfd-4447-85c1-35665465acdb))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0dcdf1b8-13c6-48b4-bd94-5d26038ff231))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1a2f72d1-0b36-4610-afc4-4ad1660d5d3b))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp dde3dba8-1b81-466c-93a3-c284ff4da1ef))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 58dc14f9-c158-4824-a84e-24a6a482a7a4))
(pad "1" smd roundrect (at -0.8625 0) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "/D-") (tstamp e877bf4a-4210-4bd3-b7b0-806eb4affc5b))
(pad "2" smd roundrect (at 0.8625 0) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (tstamp 48f827a8-6e22-4a2e-abdc-c2a03098d883))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005fe91664)
(at 87.63 97.79)
(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")
(path "/00000000-0000-0000-0000-00005fea77f0")
(attr smd)
(fp_text reference "C7" (at 0.02191 -1.2975) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp c8c79177-94d4-43e2-a654-f0a5554fbb68)
)
(fp_text value "47pF" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a15a7506-eae4-4933-84da-9ad754258706)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 8412992d-8754-44de-9e08-115cec1a3eff)
)
(fp_line (start -0.146267 -0.51) (end 0.146267 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1f3003e6-dce5-420f-906b-3f1e92b67249))
(fp_line (start -0.146267 0.51) (end 0.146267 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0ff508fd-18da-4ab7-9844-3c8a28c2587e))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a27eb049-c992-4f11-a026-1e6a8d9d0160))
(fp_line (start -1.65 0.73) (end -1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 378af8b4-af3d-46e7-89ae-deff12ca9067))
(fp_line (start 1.65 -0.73) (end 1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 13c0ff76-ed71-4cd9-abb0-92c376825d5d))
(fp_line (start 1.65 0.73) (end -1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ffd175d1-912a-4224-be1e-a8198680f46b))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 639c0e59-e95c-4114-bccd-2e7277505454))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d3c11c8f-a73d-4211-934b-a6da255728ad))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8ca3e20d-bcc7-4c5e-9deb-562dfed9fecb))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 03caada9-9e22-4e2d-9035-b15433dfbb17))
(pad "1" smd roundrect (at -0.8625 0) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "/D+") (tstamp c332fa55-4168-4f55-88a5-f82c7c21040b))
(pad "2" smd roundrect (at 0.8625 0) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (tstamp df32840e-2912-4088-b54c-9a85f64c0265))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Diode_SMD:D_0603_1608Metric_Pad1.05x0.95mm_HandSolder" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005fe91677)
(at 81.28 86.36 -90)
(descr "Diode 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 "diode handsolder")
(path "/00000000-0000-0000-0000-00005fedb250")
(attr smd)
(fp_text reference "D1" (at -0.043283 1.621058 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4e3d7c0d-12e3-42f2-b944-e4bcdbbcac2a)
)
(fp_text value "LED" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp aa02e544-13f5-4cf8-a5f4-3e6cda006090)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp f3490fa5-5a27-423b-af60-53609669542c)
)
(fp_line (start -1.66 -0.735) (end -1.66 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 81bbc3ff-3938-49ac-8297-ce2bcc9a42bd))
(fp_line (start -1.66 0.735) (end 0.8 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 15875808-74d5-4210-b8ca-aa8fbc04ae21))
(fp_line (start 0.8 -0.735) (end -1.66 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b1169a2d-8998-4b50-a48d-c520bcc1b8e1))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0a3cc030-c9dd-4d74-9d50-715ed2b361a2))
(fp_line (start -1.65 0.73) (end -1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp dd00c2e1-6027-4717-b312-4fab3ee52002))
(fp_line (start 1.65 -0.73) (end 1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8322f275-268c-4e87-a69f-4cfbf05e747f))
(fp_line (start 1.65 0.73) (end -1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b6270a28-e0d9-4655-a18a-03dbf007b940))
(fp_line (start -0.8 -0.1) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d1262c4d-2245-4c4f-8f35-7bb32cd9e21e))
(fp_line (start -0.8 0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d22e95aa-f3db-4fbc-a331-048a2523233e))
(fp_line (start -0.5 -0.4) (end -0.8 -0.1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0147f16a-c952-4891-8f53-a9fb8cddeb8d))
(fp_line (start 0.8 -0.4) (end -0.5 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6a44418c-7bb4-4e99-8836-57f153c19721))
(fp_line (start 0.8 0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0d0bb7b2-a6e5-46d2-9492-a1aa6e5a7b2f))
(pad "1" smd roundrect (at -0.875 0 270) (size 1.05 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (tstamp 3dcc657b-55a1-48e0-9667-e01e7b6b08b5))
(pad "2" smd roundrect (at 0.875 0 270) (size 1.05 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "Net-(D1-Pad2)") (tstamp 1860e030-7a36-4298-b7fc-a16d48ab15ba))
(model "${KISYS3DMOD}/Diode_SMD.3dshapes/D_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_USB:USB_A_CNCTech_1001-011-01101_Horizontal" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005fe916ab)
(at 101.6 90.17)
(descr "USB type A Plug, Horizontal, http://cnctech.us/pdfs/1001-011-01101.pdf")
(tags "USB-A")
(path "/00000000-0000-0000-0000-00005fea1885")
(attr smd)
(fp_text reference "J1" (at -6.9 -8) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 852dabbf-de45-4470-8176-59d37a754407)
)
(fp_text value "USB_A" (at 0 8 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 66043bca-a260-4915-9fce-8a51d324c687)
)
(fp_text user "PCB Edge" (at -4.55 -0.05 90) (layer "Dwgs.User")
(effects (font (size 0.6 0.6) (thickness 0.09)))
(tstamp df68c26a-03b5-4466-aecf-ba34b7dce6b7)
)
(fp_text user "${REFERENCE}" (at -6 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4780a290-d25c-4459-9579-eba3f7678762)
)
(fp_line (start -8.02 -4.4) (end -8.775 -4.4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 12422a89-3d0c-485c-9386-f77121fd68fd))
(fp_line (start -8.02 -4.4) (end -8.02 4.4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8da933a9-35f8-42e6-8504-d1bab7264306))
(fp_line (start -4.85 -6.145) (end -3.8 -6.145)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0217dfc4-fc13-4699-99ad-d9948522648e))
(fp_line (start -4.85 6.145) (end -3.8 6.145)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c0eca5ed-bc5e-4618-9bcd-80945bea41ed))
(fp_line (start -3.8 6.025) (end -3.8 -6.025)
(stroke (width 0.1) (type solid)) (layer "Dwgs.User") (tstamp bd5408e4-362d-4e43-9d39-78fb99eb52c8))
(fp_line (start -11.4 -4.55) (end -9.15 -4.55)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1d9cdadc-9036-4a95-b6db-fa7b3b74c869))
(fp_line (start -11.4 4.55) (end -11.4 -4.55)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6bfe5804-2ef9-4c65-b2a7-f01e4014370a))
(fp_line (start -11.4 4.55) (end -9.15 4.55)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7d34f6b1-ab31-49be-b011-c67fe67a8a56))
(fp_line (start -9.15 -7.15) (end -9.15 -4.55)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3a7648d8-121a-4921-9b92-9b35b76ce39b))
(fp_line (start -9.15 -7.15) (end -4.65 -7.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 24f7628d-681d-4f0e-8409-40a129e929d9))
(fp_line (start -9.15 4.55) (end -9.15 7.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1a6d2848-e78e-49fe-8978-e1890f07836f))
(fp_line (start -9.15 7.15) (end -4.65 7.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a544eb0a-75db-4baf-bf54-9ca21744343b))
(fp_line (start -4.65 -6.52) (end -4.65 -7.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3e903008-0276-4a73-8edb-5d9dfde6297c))
(fp_line (start -4.65 -6.52) (end 11.4 -6.52)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 75ffc65c-7132-4411-9f2a-ae0c73d79338))
(fp_line (start -4.65 6.52) (end 11.4 6.52)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8c6a821f-8e19-48f3-8f44-9b340f7689bc))
(fp_line (start -4.65 7.15) (end -4.65 6.52)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 45008225-f50f-4d6b-b508-6730a9408caf))
(fp_line (start 11.4 6.52) (end 11.4 -6.52)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6475547d-3216-45a4-a15c-48314f1dd0f9))
(fp_line (start -10.4 -3.75) (end -7.9 -3.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9e1b837f-0d34-4a18-9644-9ee68f141f46))
(fp_line (start -10.4 -3.25) (end -10.4 -3.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 63ff1c93-3f96-4c33-b498-5dd8c33bccc0))
(fp_line (start -10.4 -3.25) (end -7.9 -3.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b88717bd-086f-46cd-9d3f-0396009d0996))
(fp_line (start -10.4 -1.25) (end -7.9 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c01d25cd-f4bb-4ef3-b5ea-533a2a4ddb2b))
(fp_line (start -10.4 -0.75) (end -10.4 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ee27d19c-8dca-4ac8-a760-6dfd54d28071))
(fp_line (start -10.4 -0.75) (end -7.9 -0.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9b0a1687-7e1b-4a04-a30b-c27a072a2949))
(fp_line (start -10.4 0.75) (end -7.9 0.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f2c93195-af12-4d3e-acdf-bdd0ff675c24))
(fp_line (start -10.4 1.25) (end -10.4 0.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 240e07e1-770b-4b27-894f-29fd601c924d))
(fp_line (start -10.4 1.25) (end -7.9 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 003c2200-0632-4808-a662-8ddd5d30c768))
(fp_line (start -10.4 3.25) (end -7.9 3.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4a4ec8d9-3d72-4952-83d4-808f65849a2b))
(fp_line (start -10.4 3.75) (end -10.4 3.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 08a7c925-7fae-4530-b0c9-120e185cb318))
(fp_line (start -10.4 3.75) (end -7.9 3.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cbd8faed-e1f8-4406-87c8-58b2c504a5d4))
(fp_line (start -7.9 -6.025) (end 10.9 -6.025)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7bbf981c-a063-4e30-8911-e4228e1c0743))
(fp_line (start -7.9 6.025) (end -7.9 -6.025)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2d6db888-4e40-41c8-b701-07170fc894bc))
(fp_line (start -7.9 6.025) (end 10.9 6.025)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5528bcad-2950-4673-90eb-c37e6952c475))
(fp_line (start -7.75 -3.5) (end -7.25 -4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 40165eda-4ba6-4565-9bb4-b9df6dbb08da))
(fp_line (start -7.75 -3.5) (end -7.25 -3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8e06ba1f-e3ba-4eb9-a10e-887dffd566d6))
(fp_line (start -7.25 -4) (end -7.25 -3.05)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7e023245-2c2b-4e2b-bfb9-5d35176e88f2))
(fp_line (start 10.9 6.025) (end 10.9 -6.025)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7edc9030-db7b-43ac-a1b3-b87eeacb4c2d))
(fp_circle (center -6.9 -2.3) (end -6.9 -2.8)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 61fe293f-6808-4b7f-9340-9aaac7054a97))
(fp_circle (center -6.9 2.3) (end -6.9 2.8)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 2f215f15-3d52-4c91-93e6-3ea03a95622f))
(pad "" np_thru_hole circle (at -6.9 -2.3) (size 1.1 1.1) (drill 1.1) (layers "*.Cu" "*.Mask") (tstamp e8c50f1b-c316-4110-9cce-5c24c65a1eaa))
(pad "" np_thru_hole circle (at -6.9 2.3) (size 1.1 1.1) (drill 1.1) (layers "*.Cu" "*.Mask") (tstamp babeabf2-f3b0-4ed5-8d9e-0215947e6cf3))
(pad "1" smd rect (at -9.65 -3.5) (size 2.5 1.1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "VDD") (tstamp c830e3bc-dc64-4f65-8f47-3b106bae2807))
(pad "2" smd rect (at -9.65 -1) (size 2.5 1.1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "Net-(J1-Pad2)") (tstamp 1e8701fc-ad24-40ea-846a-e3db538d6077))
(pad "3" smd rect (at -9.65 1) (size 2.5 1.1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "Net-(J1-Pad3)") (tstamp 25d545dc-8f50-4573-922c-35ef5a2a3a19))
(pad "4" smd rect (at -9.65 3.5) (size 2.5 1.1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (tstamp c43663ee-9a0d-4f27-a292-89ba89964065))
(pad "5" thru_hole oval (at -6.9 -5.7) (size 3.5 1.9) (drill oval 2.5 0.9) (layers "*.Cu" "*.Mask")
(net 1 "GND") (tstamp aca4de92-9c41-4c2b-9afa-540d02dafa1c))
(pad "5" thru_hole oval (at -6.9 5.7) (size 3.5 1.9) (drill oval 2.5 0.9) (layers "*.Cu" "*.Mask")
(net 1 "GND") (tstamp d7269d2a-b8c0-422d-8f25-f79ea31bf75e))
(model "${KISYS3DMOD}/Connector_USB.3dshapes/USB_A_CNCTech_1001-011-01101_Horizontal.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_Horizontal" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005fe91712)
(at 71.12 93.98 180)
(descr "Through hole angled pin header, 1x04, 2.54mm pitch, 6mm pin length, single row")
(tags "Through hole angled pin header THT 1x04 2.54mm single row")
(path "/00000000-0000-0000-0000-00005fec8b41")
(attr through_hole)
(fp_text reference "J2" (at 0 -2.54) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dd2f6b13-9e35-4a67-90ac-cf0d1ea34e5a)
)
(fp_text value "Conn_01x04" (at 4.385 9.89) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3559e287-424e-4397-b080-77c7ba6f395b)
)
(fp_text user "${REFERENCE}" (at 2.77 3.81 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ef1b4b98-541b-4673-a04f-2043250fc40a)
)
(fp_line (start -1.27 -1.27) (end 0 -1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4e66a44f-7fa6-4e16-bf9b-62ec864301a5))
(fp_line (start -1.27 0) (end -1.27 -1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0d35483a-0b12-46cc-b9f2-896fd6831779))
(fp_line (start 1.042929 2.16) (end 1.44 2.16)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2f3deced-880d-4075-a81b-95c62da5b94d))
(fp_line (start 1.042929 2.92) (end 1.44 2.92)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4d609e7c-74c9-4ae9-a26d-946ff00c167d))
(fp_line (start 1.042929 4.7) (end 1.44 4.7)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b6bcc3cf-50de-4a33-bc41-678825c1ecf2))
(fp_line (start 1.042929 5.46) (end 1.44 5.46)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5740c959-93d8-47fd-8f68-62f0109e753d))
(fp_line (start 1.042929 7.24) (end 1.44 7.24)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ec9e24d8-d1c5-40e2-9812-dc315d05f470))
(fp_line (start 1.042929 8) (end 1.44 8)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9702d639-3b1f-4825-8985-b32b9008503d))
(fp_line (start 1.11 -0.38) (end 1.44 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ebadd2a5-21ab-4a7e-b5bc-6f737367e560))
(fp_line (start 1.11 0.38) (end 1.44 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4dc6088c-89a5-4db7-b3ae-db4b6396ad49))
(fp_line (start 1.44 -1.33) (end 1.44 8.95)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2d6718e7-f18d-444d-9792-ddf1a113460c))
(fp_line (start 1.44 1.27) (end 4.1 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0c30a4be-5679-499f-8c5b-5f3024f9d6cf))
(fp_line (start 1.44 3.81) (end 4.1 3.81)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 786b6072-5772-4bc1-8eeb-6c4e19f2a91b))
(fp_line (start 1.44 6.35) (end 4.1 6.35)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c3c93de0-69b1-4a04-8e0b-d78caf487c63))
(fp_line (start 1.44 8.95) (end 4.1 8.95)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f144a97d-c3f0-423f-b0a9-3f7dbc42478b))
(fp_line (start 4.1 -1.33) (end 1.44 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 04f5865e-f449-4408-a0c8-771cccfcb129))
(fp_line (start 4.1 -0.38) (end 10.1 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6199bec7-e7eb-4ae0-b9ec-c563e157d635))
(fp_line (start 4.1 -0.32) (end 10.1 -0.32)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 213a2af1-412b-47f4-ab3b-c5f43b6be7a6))
(fp_line (start 4.1 -0.2) (end 10.1 -0.2)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d2de4093-1fc2-4bc1-94b6-4d0fe3426c6f))
(fp_line (start 4.1 -0.08) (end 10.1 -0.08)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 43891a3c-749f-498d-ba99-685a27689b0d))
(fp_line (start 4.1 0.04) (end 10.1 0.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cbc539d2-6a10-4052-9b7a-f10326dcac67))
(fp_line (start 4.1 0.16) (end 10.1 0.16)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 909b030b-fa1a-4fe8-b1ee-422b4d9e23cf))
(fp_line (start 4.1 0.28) (end 10.1 0.28)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 936e2ca6-11ae-4f42-9128-52bb329f3d21))
(fp_line (start 4.1 2.16) (end 10.1 2.16)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp db83d0af-e085-4050-8496-fa2ebdecbd62))
(fp_line (start 4.1 4.7) (end 10.1 4.7)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9a9f2d82-f64d-4264-8bec-c182528fc4de))
(fp_line (start 4.1 7.24) (end 10.1 7.24)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f9865a9f-edb8-49c7-828f-4896e1f3047a))
(fp_line (start 4.1 8.95) (end 4.1 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 71c77456-1405-42e3-95ed-69e629de0558))
(fp_line (start 10.1 -0.38) (end 10.1 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e47adf3d-9c24-4345-80c9-66679cad107e))
(fp_line (start 10.1 0.38) (end 4.1 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7f3eb118-a20c-4239-b800-c9211c66847d))
(fp_line (start 10.1 2.16) (end 10.1 2.92)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a501555e-bbc7-4b58-ad89-28a0cd3dd6d0))
(fp_line (start 10.1 2.92) (end 4.1 2.92)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3cfcbcc7-4f45-46ab-82a8-c414c7972161))
(fp_line (start 10.1 4.7) (end 10.1 5.46)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b60c50d1-225e-415c-8712-7acb5e3dc8ea))
(fp_line (start 10.1 5.46) (end 4.1 5.46)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7e08f2a4-63d6-468b-bd8b-ec607077e023))
(fp_line (start 10.1 7.24) (end 10.1 8)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 55992e35-fe7b-468a-9b7a-1e4dc931b904))
(fp_line (start 10.1 8) (end 4.1 8)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a06e8e78-f567-42e6-b645-013b1073ca31))
(fp_line (start -1.8 -1.8) (end -1.8 9.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4412226e-d975-40a2-921f-502ff4129a95))
(fp_line (start -1.8 9.4) (end 10.55 9.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7447a6e7-8205-46ba-afca-d0fa8f90c95a))
(fp_line (start 10.55 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 34871042-9d5c-4e29-abdd-a168368c3c22))
(fp_line (start 10.55 9.4) (end 10.55 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 53c85970-3e21-4fae-a84f-721cfc0513b5))
(fp_line (start -0.32 -0.32) (end -0.32 0.32)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 02165243-61a3-4857-84ba-71a77cb9a387))
(fp_line (start -0.32 -0.32) (end 1.5 -0.32)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9ff4672a-e1a4-4a1e-887d-1b9a3429d278))
(fp_line (start -0.32 0.32) (end 1.5 0.32)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 825c70b0-4860-42b7-97dc-86bfa46e06fd))
(fp_line (start -0.32 2.22) (end -0.32 2.86)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bb4f0314-c44c-4dda-b85c-537120eaae9a))
(fp_line (start -0.32 2.22) (end 1.5 2.22)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 46cfd089-6873-4d8b-89af-02ff30e49472))
(fp_line (start -0.32 2.86) (end 1.5 2.86)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9d984d1b-8097-407f-92f3-3ef68867dcfa))
(fp_line (start -0.32 4.76) (end -0.32 5.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f022716e-b121-4cbf-a833-20e924070c22))
(fp_line (start -0.32 4.76) (end 1.5 4.76)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f1dd8642-b405-490b-a449-d1cc5797fda8))
(fp_line (start -0.32 5.4) (end 1.5 5.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cb868d2e-5efb-4bfb-8796-88435b326918))
(fp_line (start -0.32 7.3) (end -0.32 7.94)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fb03d859-dcc9-4533-b352-64830e0e5423))
(fp_line (start -0.32 7.3) (end 1.5 7.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 483f60da-14d7-4f88-8d01-3f9f30784c70))
(fp_line (start -0.32 7.94) (end 1.5 7.94)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 37e4dc66-4492-4061-908d-7213940a2ec3))
(fp_line (start 1.5 -0.635) (end 2.135 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp edc9ab4f-487a-48dc-95f2-4d87f0e9cf9e))
(fp_line (start 1.5 8.89) (end 1.5 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 87c78429-be2b-40ed-8d3b-56cb9666a56f))
(fp_line (start 2.135 -1.27) (end 4.04 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e6521bef-4109-48f7-8b88-4121b0468927))
(fp_line (start 4.04 -1.27) (end 4.04 8.89)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 646d9e91-59b4-4865-a2fc-29780ed32563))
(fp_line (start 4.04 -0.32) (end 10.04 -0.32)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bbb15673-6d42-42b8-9d51-7515b3ad9ee9))
(fp_line (start 4.04 0.32) (end 10.04 0.32)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e83e0227-ac0f-4180-82bd-68d3a7b56476))
(fp_line (start 4.04 2.22) (end 10.04 2.22)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 68b52f01-fa04-4908-bf88-60c62ace1cfa))
(fp_line (start 4.04 2.86) (end 10.04 2.86)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7e969d15-6cc0-4258-8b27-586608a21adb))
(fp_line (start 4.04 4.76) (end 10.04 4.76)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fc0a4225-db46-4d48-8163-d522602d57cd))
(fp_line (start 4.04 5.4) (end 10.04 5.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6ca3c38c-4e71-4202-b6c1-1b25f04a27ae))
(fp_line (start 4.04 7.3) (end 10.04 7.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 29256b3d-9450-4c0a-a4d4-911f04b9c140))
(fp_line (start 4.04 7.94) (end 10.04 7.94)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b603d26a-e034-42fb-8327-b60c5bf9cdd2))
(fp_line (start 4.04 8.89) (end 1.5 8.89)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 99030c03-63b4-49ba-b5ab-4d56974f7963))
(fp_line (start 10.04 -0.32) (end 10.04 0.32)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0f3c9e3a-9c59-4881-b27a-d0e982b3ea8e))
(fp_line (start 10.04 2.22) (end 10.04 2.86)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b8c83ad1-b3c9-495c-bdc6-62dead00f5ad))
(fp_line (start 10.04 4.76) (end 10.04 5.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2bef89de-08c7-4a13-9d85-67948d429ca0))
(fp_line (start 10.04 7.3) (end 10.04 7.94)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b994142f-02ac-4881-9587-6d3df53c96d2))
(pad "1" thru_hole rect (at 0 0 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 1 "GND") (tstamp 4831966c-bb32-4bc8-a400-0382a02ffa1c))
(pad "2" thru_hole oval (at 0 2.54 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 10 "/RX") (tstamp 2bf3f24b-fd30-41a7-a274-9b519491916b))
(pad "3" thru_hole oval (at 0 5.08 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 11 "/TX") (tstamp c264c438-a475-4ad4-9915-0f1e6ecf3053))
(pad "4" thru_hole oval (at 0 7.62 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 2 "VDDA") (tstamp a9ec539a-d80d-40cc-803c-12b6adefe42a))
(model "${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x04_P2.54mm_Horizontal.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 00000000-0000-0000-0000-00005fe91723)
(at 87.63 92.71)
(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")
(path "/00000000-0000-0000-0000-00005fea4007")
(attr smd)
(fp_text reference "R1" (at 0.054956 -1.246244) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 87371631-aa02-498a-998a-09bdb74784c1)
)
(fp_text value "33" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2e642b3e-a476-4c54-9a52-dcea955640cd)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp b1086f75-01ba-4188-8d36-75a9e2828ca9)
)
(fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a690fc6c-55d9-47e6-b533-faa4b67e20f3))
(fp_line (start -0.254724 0.5225) (end 0.254724 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c144caa5-b0d4-4cef-840a-d4ad178a2102))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5fc27c35-3e1c-4f96-817c-93b5570858a6))
(fp_line (start -1.65 0.73) (end -1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp efeac2a2-7682-4dc7-83ee-f6f1b23da506))
(fp_line (start 1.65 -0.73) (end 1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6c9b793c-e74d-4754-a2c0-901e73b26f1c))
(fp_line (start 1.65 0.73) (end -1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6a45789b-3855-401f-8139-3c734f7f52f9))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ac264c30-3e9a-4be2-b97a-9949b68bd497))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5038e144-5119-49db-b6cf-f7c345f1cf03))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 54365317-1355-4216-bb75-829375abc4ec))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a3e4f0ae-9f86-49e9-b386-ed8b42e012fb))
(pad "1" smd roundrect (at -0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "/D-") (tstamp 127679a9-3981-4934-815e-896a4e3ff56e))
(pad "2" smd roundrect (at 0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "Net-(J1-Pad2)") (tstamp 716e31c5-485f-40b5-88e3-a75900da9811))
(model "${KISYS3DMOD}/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 00000000-0000-0000-0000-00005fe91734)
(at 87.63 95.25)
(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")
(path "/00000000-0000-0000-0000-00005fea2cdf")
(attr smd)
(fp_text reference "R2" (at 0.02191 -1.196913) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 6c2e273e-743c-4f1e-a647-4171f8122550)
)
(fp_text value "33" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 666713b0-70f4-42df-8761-f65bc212d03b)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 922058ca-d09a-45fd-8394-05f3e2c1e03a)
)
(fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 42713045-fffd-4b2d-ae1e-7232d705fb12))
(fp_line (start -0.254724 0.5225) (end 0.254724 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c0515cd2-cdaa-467e-8354-0f6eadfa35c9))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3aaee4c4-dbf7-49a5-a620-9465d8cc3ae7))
(fp_line (start -1.65 0.73) (end -1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1bf544e3-5940-4576-9291-2464e95c0ee2))
(fp_line (start 1.65 -0.73) (end 1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bdc7face-9f7c-4701-80bb-4cc144448db1))
(fp_line (start 1.65 0.73) (end -1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 97fe9c60-586f-4895-8504-4d3729f5f81a))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9157f4ae-0244-4ff1-9f73-3cb4cbb5f280))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7dc880bc-e7eb-4cce-8d8c-0b65a9dd788e))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7aed3a71-054b-4aaa-9c0a-030523c32827))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1a1ab354-5f85-45f9-938c-9f6c4c8c3ea2))
(pad "1" smd roundrect (at -0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "/D+") (tstamp 80094b70-85ab-4ff6-934b-60d5ee65023a))
(pad "2" smd roundrect (at 0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "Net-(J1-Pad3)") (tstamp 0f54db53-a272-4955-88fb-d7ab00657bb0))
(model "${KISYS3DMOD}/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 00000000-0000-0000-0000-00005fe91745)
(at 83.82 86.36 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")
(path "/00000000-0000-0000-0000-00005feda0aa")
(attr smd)
(fp_text reference "R3" (at -0.032003 -1.123855 90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 0eaa98f0-9565-4637-ace3-42a5231b07f7)
)
(fp_text value "330" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 181abe7a-f941-42b6-bd46-aaa3131f90fb)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp a1823eb2-fb0d-4ed8-8b96-04184ac3a9d5)
)
(fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0f22151c-f260-4674-b486-4710a2c42a55))
(fp_line (start -0.254724 0.5225) (end 0.254724 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fe8d9267-7834-48d6-a191-c8724b2ee78d))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3cd1bda0-18db-417d-b581-a0c50623df68))
(fp_line (start -1.65 0.73) (end -1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0b21a65d-d20b-411e-920a-75c343ac5136))
(fp_line (start 1.65 -0.73) (end 1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d57dcfee-5058-4fc2-a68b-05f9a48f685b))
(fp_line (start 1.65 0.73) (end -1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 03c52831-5dc5-43c5-a442-8d23643b46fb))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c41b3c8b-634e-435a-b582-96b83bbd4032))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ce83728b-bebd-48c2-8734-b6a50d837931))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9340c285-5767-42d5-8b6d-63fe2a40ddf3))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1831fb37-1c5d-42c4-b898-151be6fca9dc))
(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 3 "VDD") (tstamp 94a873dc-af67-4ef9-8159-1f7c93eeb3d7))
(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 7 "Net-(D1-Pad2)") (tstamp 29e78086-2175-405e-9ba3-c48766d2f50c))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_SO:SOP-8_3.9x4.9mm_P1.27mm" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005fe9175f)
(at 81.28 96.52)
(descr "SOP, 8 Pin (http://www.macronix.com/Lists/Datasheet/Attachments/7534/MX25R3235F,%20Wide%20Range,%2032Mb,%20v1.6.pdf#page=79), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "SOP SO")
(path "/00000000-0000-0000-0000-00005fe8f8c2")
(attr smd)
(fp_text reference "U1" (at -5.08 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d3d7e298-1d39-4294-a3ab-c84cc0dc5e5a)
)
(fp_text value "HT42B534_8SOP" (at 0 3.81) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 70e15522-1572-4451-9c0d-6d36ac70d8c6)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.98 0.98) (thickness 0.15)))
(tstamp ca87f11b-5f48-4b57-8535-68d3ec2fe5a9)
)
(fp_line (start 0 -2.56) (end -3.45 -2.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0755aee5-bc01-4cb5-b830-583289df50a3))
(fp_line (start 0 -2.56) (end 1.95 -2.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4fb21471-41be-4be8-9687-66030f97befc))
(fp_line (start 0 2.56) (end -1.95 2.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7599133e-c681-4202-85d9-c20dac196c64))
(fp_line (start 0 2.56) (end 1.95 2.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dde51ae5-b215-445e-92bb-4a12ec410531))
(fp_line (start -3.7 -2.7) (end -3.7 2.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 16bd6381-8ac0-4bf2-9dce-ecc20c724b8d))
(fp_line (start -3.7 2.7) (end 3.7 2.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a5cd8da1-8f7f-4f80-bb23-0317de562222))
(fp_line (start 3.7 -2.7) (end -3.7 -2.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 01e9b6e7-adf9-4ee7-9447-a588630ee4a2))
(fp_line (start 3.7 2.7) (end 3.7 -2.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4f66b314-0f62-4fb6-8c3c-f9c6a75cd3ec))
(fp_line (start -1.95 -1.475) (end -0.975 -2.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 85b7594c-358f-454b-b2ad-dd0b1d67ed76))
(fp_line (start -1.95 2.45) (end -1.95 -1.475)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c5eb1e4c-ce83-470e-8f32-e20ff1f886a3))
(fp_line (start -0.975 -2.45) (end 1.95 -2.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4a21e717-d46d-4d9e-8b98-af4ecb02d3ec))
(fp_line (start 1.95 -2.45) (end 1.95 2.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ec31c074-17b2-48e1-ab01-071acad3fa04))
(fp_line (start 1.95 2.45) (end -1.95 2.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 60dcd1fe-7079-4cb8-b509-04558ccf5097))
(pad "1" smd roundrect (at -2.625 -1.905) (size 1.65 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (tstamp f3628265-0155-43e2-a467-c40ff783e265))
(pad "2" smd roundrect (at -2.625 -0.635) (size 1.65 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "/TX") (tstamp b1c649b1-f44d-46c7-9dea-818e75a1b87e))
(pad "3" smd roundrect (at -2.625 0.635) (size 1.65 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "VDDA") (tstamp 965308c8-e014-459a-b9db-b8493a601c62))
(pad "4" smd roundrect (at -2.625 1.905) (size 1.65 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "/RX") (tstamp 0c3dceba-7c95-4b3d-b590-0eb581444beb))
(pad "5" smd roundrect (at 2.625 1.905) (size 1.65 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "/D+") (tstamp abe07c9a-17c3-43b5-b7a6-ae867ac27ea7))
(pad "6" smd roundrect (at 2.625 0.635) (size 1.65 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "/D-") (tstamp 730b670c-9bcf-4dcd-9a8d-fcaa61fb0955))
(pad "7" smd roundrect (at 2.625 -0.635) (size 1.65 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "VDD") (tstamp 8a650ebf-3f78-4ca4-a26b-a5028693e36d))
(pad "8" smd roundrect (at 2.625 -1.905) (size 1.65 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "/V33O") (tstamp 7d928d56-093a-4ca8-aed1-414b7e703b45))
(model "${KISYS3DMOD}/Package_SO.3dshapes/SOP-8_3.9x4.9mm_P1.27mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005fe98ef2)
(at 77.47 88.9 180)
(descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x03 2.54mm single row")
(path "/00000000-0000-0000-0000-00005ff92187")
(attr through_hole)