-
Notifications
You must be signed in to change notification settings - Fork 0
/
stm32f1_nano.kicad_pcb
6331 lines (6275 loc) · 369 KB
/
stm32f1_nano.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 "STM32F1 Nano")
(date "2023-09-05")
(rev "1.1.0")
(company "easy-smart solution GmbH")
)
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (color "Green") (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") (color "Green") (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)
(aux_axis_origin 100 82.22)
(grid_origin 100 82.22)
(pcbplotparams
(layerselection 0x0000030_80000001)
(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 1)
(scaleselection 1)
(outputdirectory "")
)
)
(net 0 "")
(net 1 "GND")
(net 2 "/~{RESET}")
(net 3 "+3.3V")
(net 4 "+3.3VA")
(net 5 "/HSE_IN")
(net 6 "/HSE_OUT")
(net 7 "+12V")
(net 8 "/LED1_GRN")
(net 9 "+5V")
(net 10 "Net-(D1-A)")
(net 11 "/LED2_ORG")
(net 12 "Net-(D2-A)")
(net 13 "/LED3_RED")
(net 14 "Net-(D3-A)")
(net 15 "/LED4_BLU")
(net 16 "Net-(D4-A)")
(net 17 "/PB13")
(net 18 "unconnected-(J1-Pin_3-Pad3)")
(net 19 "/PA0")
(net 20 "/PA1")
(net 21 "/PA2")
(net 22 "/PA3")
(net 23 "/PB7")
(net 24 "/PB6")
(net 25 "/PB0")
(net 26 "/PB1")
(net 27 "/PB14")
(net 28 "/PB15")
(net 29 "/PB12")
(net 30 "/PB9")
(net 31 "/PB8")
(net 32 "/PB11")
(net 33 "/PC13")
(net 34 "/PB5")
(net 35 "/PB4")
(net 36 "/PB10")
(net 37 "/PA15")
(net 38 "/PA10")
(net 39 "/PA9")
(net 40 "Net-(J3-CC1)")
(net 41 "/USB_D+")
(net 42 "/USB_D-")
(net 43 "unconnected-(J3-SBU1-PadA8)")
(net 44 "Net-(J3-CC2)")
(net 45 "unconnected-(J3-SBU2-PadB8)")
(net 46 "unconnected-(J2-Pin_13-Pad13)")
(net 47 "SWDIO")
(net 48 "SWCLK")
(net 49 "SWO")
(net 50 "/BOOT0")
(net 51 "/SPI1_NSS")
(net 52 "/SPI1_SCK")
(net 53 "/SPI1_MISO")
(net 54 "/SPI1_MOSI")
(net 55 "VBUS")
(net 56 "Net-(D8-K)")
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tstamp 014be4cc-c51f-458c-ba27-d6e447374b3b)
(at 114.605 87.808 180)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (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")
(property "Description" "62.5mW Thick Film Resistors ±100ppm/℃ ±1% 200Ω 0402 Chip Resistor - Surface Mount ROHS")
(property "JLCPCB Part #" "C25087")
(property "Manufacturer" "UNI-ROYAL(Uniroyal Elec)")
(property "Partnumber" "0402WGF2000TCE")
(property "Sheetfile" "stm32f1_nano.kicad_sch")
(property "Sheetname" "")
(property "isBasicPart" "YES")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/ce2d7685-9eae-4fef-a101-40add2fea29d")
(attr smd)
(fp_text reference "R1" (at 0 -1.17) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0c1dfdd9-05f7-4dd5-922f-beccdd719559)
)
(fp_text value "200" (at 0 1.17) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7522bd48-ca90-4fcc-83fa-52f122d8f746)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp 6b8e932a-4271-49f0-a02c-7da596b12277)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 433b0331-b7bb-4acb-a6a3-da69ff7e5ef3))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 10fb9329-be62-4af3-bd18-80a731fa7ed3))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2984452b-3f7e-4fbe-9457-7d31c92ffbf8))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp df79e519-59de-4c9f-9581-66c038768d48))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9284657d-1c5c-4ff3-9a44-ff53f97737e6))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ea1b26ae-a798-4fab-b981-bc818b8e17e0))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1f0ea736-3172-478b-bc17-b355ba7dca58))
(fp_line (start -0.525 0.27) (end -0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9cce2c95-9514-4135-aeeb-12ff7ab7e257))
(fp_line (start 0.525 -0.27) (end 0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8d51d78a-568f-47ec-adb6-09d7773fa813))
(fp_line (start 0.525 0.27) (end -0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5962905a-910f-4416-96c6-c0f0f7c34d18))
(pad "1" smd roundrect (at -0.51 0 180) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp d070fb84-f8d0-4dfd-bd11-21665eca5ea4))
(pad "2" smd roundrect (at 0.51 0 180) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 56 "Net-(D8-K)") (pintype "passive") (tstamp 6af1c471-a8f8-4fde-a051-e9e18be08cb7))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tstamp 0ec1c497-cf7c-4ff8-9bb3-630cc8895119)
(at 114.732 91.1862 180)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (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")
(property "Description" "50V 20pF C0G ±5% 0402 Multilayer Ceramic Capacitors MLCC - SMD/SMT ROHS")
(property "JLCPCB Part #" "C1554")
(property "Manufacturer" "FH (Guangdong Fenghua Advanced Tech)")
(property "Partnumber" "0402CG200J500NT")
(property "Sheetfile" "stm32f1_nano.kicad_sch")
(property "Sheetname" "")
(property "isBasicPart" "YES")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/a78cba21-d4b9-4764-bbe6-e4296b46c99c")
(attr smd)
(fp_text reference "C19" (at 0 -1.16) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 89baf802-1abe-4e5b-afc6-89bbb9c6bf58)
)
(fp_text value "20p 50V" (at 0 1.16) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f756d36d-dd98-49c2-bd32-96b91af6af32)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 830b524a-429b-49ba-8945-46c6dc45b05d)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e723c4e0-f43d-49da-8b8f-bd7c232d6a8e))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7eab3a09-a291-4299-b83c-51ab90de9281))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b795593a-0baf-4242-9b39-776d0ef5fd2a))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0d027a84-deb0-41f1-9ef1-be145b8141a6))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 15867647-5d92-4352-943f-2b70bb09b1d1))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a5c609d9-39e8-4d89-a4fd-aebe3cd41c15))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ff55b21b-c501-42bb-9815-daa6268fa144))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c5aeaa62-f3d0-4b9d-b8e7-15556c7a0ce7))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 44ee233f-49e8-4a17-b4e5-5b692c54269a))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp dee9ddc4-8598-4c38-9ad3-ea2c5b65e785))
(pad "1" smd roundrect (at -0.48 0 180) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 8098caf3-89a0-4b79-8f92-c839cb8ca23e))
(pad "2" smd roundrect (at 0.48 0 180) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "/HSE_IN") (pintype "passive") (tstamp 679a19da-8a0a-4b3d-80e3-ff892f961a40))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tstamp 1006cc7e-6344-411f-bb53-8ed6114abf91)
(at 110.922 86.411 180)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (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")
(property "Description" "62.5mW Thick Film Resistors ±100ppm/℃ ±1% 1.5kΩ 0402 Chip Resistor - Surface Mount ROHS")
(property "JLCPCB Part #" "C25867")
(property "Manufacturer" "UNI-ROYAL(Uniroyal Elec)")
(property "Manufacturer_Name" "UNI-ROYAL(Uniroyal Elec)")
(property "Manufacturer_Part_Number" "0402WGF1501TCE")
(property "Partnumber" "0402WGF1501TCE")
(property "Sheetfile" "stm32f1_nano.kicad_sch")
(property "Sheetname" "")
(property "isBasicPart" "YES")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/78cfc3c7-dadb-400b-a14f-0778de8935e8")
(attr smd)
(fp_text reference "R8" (at 0 -1.17) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f3a38969-41ec-422b-bb2b-ea85ed57d399)
)
(fp_text value "1k5" (at 0 1.17) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3a990591-6231-40bc-921b-14685f2a845a)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp 5810ce2b-bbf0-434d-9604-0f264ad995f3)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp eec0b4e9-2847-4874-8807-0c6b5690b88f))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d41824ab-4642-4178-a074-ab4692e61a9c))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 206adfb8-a186-4f44-b573-40584d1733fa))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 37dc45f3-0bce-4d66-af76-78fb956352a5))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cf316983-7de6-4921-b7ea-8ef434beeaac))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2da366cb-a6eb-4c80-9297-ec623cc68b5d))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1f28f31d-939b-4847-a5a1-59c94b2ca510))
(fp_line (start -0.525 0.27) (end -0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 44bb1e6b-a5c1-4ea8-a8e9-4c513c60110c))
(fp_line (start 0.525 -0.27) (end 0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a21155aa-65bd-4c3c-8a84-2a953ddc7f2c))
(fp_line (start 0.525 0.27) (end -0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2bf1c254-80e3-4ead-97ce-00d6ad7246b9))
(pad "1" smd roundrect (at -0.51 0 180) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+3.3V") (pintype "passive") (tstamp c391ab01-06cf-438d-ba24-4ce817f258f2))
(pad "2" smd roundrect (at 0.51 0 180) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 41 "/USB_D+") (pintype "passive") (tstamp 8fe7835c-35e7-4c6c-9818-5c68875a9478))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tstamp 1c6afa8a-6036-41e7-ae2b-d2f5ef8662d4)
(at 118.9992 96.317 180)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (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")
(property "Description" "50V 10nF X7R ±10% 0402 Multilayer Ceramic Capacitors MLCC - SMD/SMT ROHS")
(property "JLCPCB Part #" "C15195")
(property "Manufacturer" "Samsung Electro-Mechanics")
(property "Partnumber" "CL05B103KB5NNNC")
(property "Sheetfile" "stm32f1_nano.kicad_sch")
(property "Sheetname" "")
(property "isBasicPart" "YES")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/eb1a6570-2502-43c8-afed-2d4aaa338681")
(attr smd)
(fp_text reference "C6" (at 0 -1.16) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4b3df104-7792-4d72-88e4-b895b909b763)
)
(fp_text value "10n 50V" (at 0 1.16) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0375edfc-2816-4355-ba81-a8c0454c6932)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 4edeba7a-dbf8-4a71-8d7b-0424bf32fd53)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b6bbe0b6-363e-4e6a-8ce1-89fcdb9a5bc4))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6b4a89e1-fadf-48dd-b1fa-b4c0bd65a2dc))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2c4e937d-c38a-4ac0-8a67-c5d0eee28b06))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6e64bf72-df0a-4e19-9178-ff7ddeb7977e))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a91c0138-f7a8-4a08-a486-a77b7bc28892))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp dcb26d9e-6761-4ae7-8b49-1e05f169974a))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b0deb899-60ed-4b0d-8ca5-74b7c183a0bc))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 715bba33-8a6e-4fc0-a38e-932f7d9c4c39))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c9f9dc0c-aeff-49c6-b55d-a936d534a463))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8920b2de-3f16-41b5-8d4d-884a160259c1))
(pad "1" smd roundrect (at -0.48 0 180) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "+3.3VA") (pintype "passive") (tstamp e15b2329-8262-4fb2-89c2-b5f6024acfd0))
(pad "2" smd roundrect (at 0.48 0 180) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 93c12acf-a168-48cf-a875-d14eb6e99913))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tstamp 1f6dd008-2532-4c54-a16d-f3b35c29e92c)
(at 116.51 87.808 180)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (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")
(property "Description" "62.5mW Thick Film Resistors ±100ppm/℃ ±1% 10kΩ 0402 Chip Resistor - Surface Mount ROHS")
(property "JLCPCB Part #" "C25744")
(property "Manufacturer" "UNI-ROYAL(Uniroyal Elec)")
(property "Partnumber" "0402WGF1002TCE")
(property "Sheetfile" "stm32f1_nano.kicad_sch")
(property "Sheetname" "")
(property "isBasicPart" "YES")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/2fbf4819-98f8-4df6-850e-4eeedad13d03")
(attr smd)
(fp_text reference "R5" (at 0 -1.17) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b5a3ec5b-4639-48cc-8753-4e571c2379af)
)
(fp_text value "10k" (at 0 1.17) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8de7f373-64e2-4d05-872d-7a96a6d06778)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp b4a4f0c9-36e0-4420-a2d1-67fa01fb0164)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 56745f41-70ed-4663-b0d4-507aa4b3a405))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cbe70037-5b8a-44c8-aecd-eab8472033f7))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 04d725a8-b629-4d02-8278-3370f54889ed))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp af0e9bc0-cc87-4998-8753-bb9658496aad))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 85383839-4099-4e1f-8719-bb396e64e646))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5bd56990-10bd-46aa-a584-ed69585d9b8a))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 099ffa5f-1ce6-4a68-a684-6c301a747cf9))
(fp_line (start -0.525 0.27) (end -0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ba97521e-2dfa-4a85-a226-8536d33603d3))
(fp_line (start 0.525 -0.27) (end 0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 966449fd-90f8-4d2c-99b1-633c290501cc))
(fp_line (start 0.525 0.27) (end -0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f45aee4f-c421-45e3-a1f3-2eed1438e6dd))
(pad "1" smd roundrect (at -0.51 0 180) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 50 "/BOOT0") (pintype "passive") (tstamp e77af541-0cef-4ebb-9874-6c8d435ea779))
(pad "2" smd roundrect (at 0.51 0 180) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp b40625d9-ea1b-420b-9751-43c534673dd0))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-23" (layer "F.Cu")
(tstamp 235eed72-b8e8-488b-b076-a44e38b28208)
(at 110.795 91.8775 -90)
(descr "SOT, 3 Pin (https://www.jedec.org/system/files/docs/to-236h.pdf variant AB), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "SOT TO_SOT_SMD")
(property "Description" "200mA Fixed 3.3V~3.3V Positive 6V SOT-23-3L Linear Voltage Regulators (LDO) ROHS")
(property "JLCPCB Part #" "C5446")
(property "Manufacturer" "Torex Semicon")
(property "Partnumber" "XC6206P332MR")
(property "Sheetfile" "stm32f1_nano.kicad_sch")
(property "Sheetname" "")
(property "isBasicPart" "YES")
(property "ki_description" "Positive 60-250mA Low Dropout Regulator, Fixed Output, SOT-23")
(property "ki_keywords" "Torex LDO Voltage Regulator Fixed Positive")
(path "/c6647ca5-e146-415f-976f-4312ae64de5e")
(attr smd)
(fp_text reference "U4" (at 0 -2.4 -90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 95e472ea-2297-4214-bf34-af0b51a60101)
)
(fp_text value "XC6206P332MR" (at 0 2.4 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7743501a-dc98-44d9-884a-180e72145d12)
)
(fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab")
(effects (font (size 0.32 0.32) (thickness 0.05)))
(tstamp dc25ebbb-4be6-4675-a13a-4a3523b4cedb)
)
(fp_line (start 0 -1.56) (end -1.675 -1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 528d17b4-5671-4f77-ab6c-5051f46b4420))
(fp_line (start 0 -1.56) (end 0.65 -1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 10c12019-71fe-4c2f-b2d7-5e71d38ecc7e))
(fp_line (start 0 1.56) (end -0.65 1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d1c3aa83-5c0b-41d0-b5f9-4a17e237d9b6))
(fp_line (start 0 1.56) (end 0.65 1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9e5ad1f0-fb74-46ce-8efb-cdbca366c194))
(fp_line (start -1.92 -1.7) (end -1.92 1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 70e7dd34-3e2d-4ff7-a411-369334038c42))
(fp_line (start -1.92 1.7) (end 1.92 1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d0a3dd2c-2f80-4e2b-9dde-4f84bc073942))
(fp_line (start 1.92 -1.7) (end -1.92 -1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3bd24dc0-6224-47b6-95e1-caa5809d0f88))
(fp_line (start 1.92 1.7) (end 1.92 -1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 969c8730-47dd-495c-a67a-05e362137be4))
(fp_line (start -0.65 -1.125) (end -0.325 -1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d59f2357-1341-47a5-a250-7990b9096962))
(fp_line (start -0.65 1.45) (end -0.65 -1.125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f09ffbea-6627-44cb-8379-d0ba6f2c770c))
(fp_line (start -0.325 -1.45) (end 0.65 -1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 94b600ec-f7b7-4787-9fc3-8f172cbf110e))
(fp_line (start 0.65 -1.45) (end 0.65 1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e20faad6-b0ab-47f2-a958-66becc53b8e6))
(fp_line (start 0.65 1.45) (end -0.65 1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 791f8061-a2d3-4775-9936-887891e43521))
(pad "1" smd roundrect (at -0.9375 -0.95 270) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp ecb81df5-95ca-489a-825c-cdf32900efaa))
(pad "2" smd roundrect (at -0.9375 0.95 270) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+3.3V") (pinfunction "VO") (pintype "power_out") (tstamp 2ab874b7-487d-4475-96d7-7f8e92f57735))
(pad "3" smd roundrect (at 0.9375 0 270) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "+5V") (pinfunction "VI") (pintype "power_in") (tstamp 30e914fe-033e-4d49-9268-9cf93f13b769))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric" (layer "F.Cu")
(tstamp 236ae99c-8164-40a6-aa04-2167923d9f48)
(at 134.025799 95.6058 180)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (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, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Description" "25V 22uF X5R ±20% 0805 Multilayer Ceramic Capacitors MLCC - SMD/SMT ROHS")
(property "JLCPCB Part #" "C45783")
(property "Manufacturer" "Samsung Electro-Mechanics")
(property "Manufacturer_Name" "Samsung Electro-Mechanics")
(property "Manufacturer_Part_Number" "CL21A226MAQNNNE")
(property "Partnumber" "CL21A226MAQNNNE")
(property "Sheetfile" "stm32f1_nano.kicad_sch")
(property "Sheetname" "")
(property "isBasicPart" "YES")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/60bb2abf-00f2-43de-9538-f6d15ca76182")
(attr smd)
(fp_text reference "C15" (at 0 -1.68) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b6f6196d-cb6a-4812-9679-4ff28c12a3ec)
)
(fp_text value "22u 25V" (at 0 1.68) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 56e47af8-41d6-4598-bd12-53c2cabdda00)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 87f3e9e3-cdbb-4606-a4ac-3f9fc9d822a7)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d7edacd5-fb10-4089-a09f-28d227ea49d4))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a5791b10-b2f2-4165-9a59-682c5c2a8e35))
(fp_line (start -1.7 -0.98) (end 1.7 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1663823f-c73e-499f-acbc-781a0d6963c0))
(fp_line (start -1.7 0.98) (end -1.7 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fadbd5c2-633f-4633-8775-9ade851fcc56))
(fp_line (start 1.7 -0.98) (end 1.7 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp da98580f-e079-4691-bcf0-5b4407e41da0))
(fp_line (start 1.7 0.98) (end -1.7 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1406c178-99ba-4760-a8de-ef3c1c6419df))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6130f00e-8dc3-4e44-b692-a18393d7e00f))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1f26bcaa-dfc7-45c5-9706-691da7644a36))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e0b8ffc4-fa73-470b-908a-4892180ee4ca))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7a9ad9c9-120e-4a7f-9985-7970ed19e7a5))
(pad "1" smd roundrect (at -0.95 0 180) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "+12V") (pintype "passive") (tstamp 5a7bff6f-b667-43ea-8053-823677432567))
(pad "2" smd roundrect (at 0.95 0 180) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp b74a93d8-dcfb-46e6-94c9-8db88fc9ed1e))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tstamp 260dfae6-afaa-43dc-bc68-019d8c4b1139)
(at 114.732 96.3678)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (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")
(property "Description" "50V 20pF C0G ±5% 0402 Multilayer Ceramic Capacitors MLCC - SMD/SMT ROHS")
(property "JLCPCB Part #" "C1554")
(property "Manufacturer" "FH (Guangdong Fenghua Advanced Tech)")
(property "Partnumber" "0402CG200J500NT")
(property "Sheetfile" "stm32f1_nano.kicad_sch")
(property "Sheetname" "")
(property "isBasicPart" "YES")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/299a3711-9581-48ee-933e-c1f5cdea505d")
(attr smd)
(fp_text reference "C10" (at 0 -1.16) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8d10a35a-4f26-438a-9c3a-d1565c173ea9)
)
(fp_text value "20p 50V" (at 0 1.16) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2c4850d8-ee44-47eb-94ab-24bd89f927e4)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 6103ef8c-7d03-4d40-ad1b-930da0aac69a)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 78d26dee-5c0e-4a93-a1ef-e39f913f88ee))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6f6f0bae-4028-448b-b1a5-b907af877f17))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ae7a445e-b9f6-4ebb-a570-bed978d2d649))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c8f840bb-80f8-40b3-bb2f-db6de04ea3d1))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bfa60884-2815-4eb2-8c90-d38c9993e13c))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 49c0703c-e2e7-451b-b020-03f94cfab68b))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e940f9e0-c9b6-4703-aac9-592522e831be))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2ca4c817-fd08-4319-af40-f2e41b604c57))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b0a86172-8e84-4bfe-a00c-fbc59627c8b0))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b38e51fa-c371-41c7-aac6-35bd905bfbeb))
(pad "1" smd roundrect (at -0.48 0) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp fe97a1dc-1b35-4b7f-b80e-99bba07bd1e4))
(pad "2" smd roundrect (at 0.48 0) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "/HSE_OUT") (pintype "passive") (tstamp d7618ab3-3606-4877-a009-2def56b70096))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_SMD:LED_0603_1608Metric" (layer "F.Cu")
(tstamp 2b48ea58-e074-42f2-a182-6e64a166da8d)
(at 137.973 92.38)
(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")
(property "Description" "Colorless transparence -40℃~+85℃ 520nm~535nm Emerald 120° 110mW 0603 Light Emitting Diodes (LED) ROHS")
(property "JLCPCB Part #" "C72043")
(property "Manufacturer" "Everlight Elec")
(property "Manufacturer_Name" "Everlight Elec")
(property "Manufacturer_Part_Number" "19-217/GHC-YR1S2/3T")
(property "Partnumber" "19-217/GHC-YR1S2/3T")
(property "Sheetfile" "stm32f1_nano.kicad_sch")
(property "Sheetname" "")
(property "isBasicPart" "YES")
(property "ki_description" "Light emitting diode, small symbol")
(property "ki_keywords" "LED diode light-emitting-diode")
(path "/1fedc5f9-10b3-4dab-9037-f6e26a6fd775")
(attr smd)
(fp_text reference "D1" (at 0 -1.43) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 29eb7718-9a8b-47c5-b0dd-98dd0fc4e647)
)
(fp_text value "LED green" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 544b84c6-793d-4650-93dc-b3f04f070891)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp b0940cd5-63d8-4f22-9a7f-1c3e0f0b0e64)
)
(fp_line (start -1.485 -0.735) (end -1.485 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5e88bcb3-dd7d-408e-8585-189945bbbaa5))
(fp_line (start -1.485 0.735) (end 0.8 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2d060df9-02c8-43ab-a939-0a76967e5f15))
(fp_line (start 0.8 -0.735) (end -1.485 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c7b0873f-efe2-4a38-8b42-448378df1c0b))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6f322a09-f673-4873-b8e7-21cfdad738b7))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ff6afe59-a466-4636-921d-6b33e43556b9))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a43901a3-c7c8-4dd7-9af9-76c350737fab))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 04d25725-e1d4-4f2b-addc-871102718545))
(fp_line (start -0.8 -0.1) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d5b751b4-575f-4907-b6fd-cd8a5cb51ede))
(fp_line (start -0.8 0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d5fde5d5-c99e-4d74-99bd-a600e9f13847))
(fp_line (start -0.5 -0.4) (end -0.8 -0.1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e7caf99f-0467-4f64-869f-04b0162f830e))
(fp_line (start 0.8 -0.4) (end -0.5 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0722a59f-60ed-43a6-8ced-d1f36665fc51))
(fp_line (start 0.8 0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9764504c-da55-48ef-ab84-43808c64e150))
(pad "1" smd roundrect (at -0.7875 0) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "/LED1_GRN") (pinfunction "K") (pintype "passive") (tstamp 4e9df7b6-8396-4f54-9f1d-94b3f51d7b65))
(pad "2" smd roundrect (at 0.7875 0) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "Net-(D1-A)") (pinfunction "A") (pintype "passive") (tstamp 797f9b0c-06ee-47bf-b98e-a683e0916ee8))
(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 "Arduino_MountingHole:MountingHole_65mil" locked (layer "F.Cu")
(tstamp 2bf8febf-ca69-456d-bda8-117371d230e8)
(at 101.27 83.49)
(descr "Mounting Hole 2.1mm, no annular")
(tags "mounting hole 2.1mm no annular")
(attr board_only exclude_from_pos_files exclude_from_bom)
(fp_text reference "MH2" (at 0 -3.2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 882ade13-8b3a-48f9-940e-ec4de7d2da7e)
)
(fp_text value "MountingHole_65mil" (at 0 3.2) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 68237d07-f3d4-43b8-9be5-672a2257b5fe)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3d686533-0473-46c4-91d7-9cefac96efea)
)
(fp_circle (center 0 0) (end 0.8636 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp ccb0b8f2-1ac6-42b3-a9db-fa9497d492a8))
(pad "" np_thru_hole circle locked (at 0 0) (size 1.651 1.651) (drill 1.651) (layers "F&B.Cu" "*.Mask") (tstamp ca1516b9-017b-42f7-a40d-6505a7bad518))
)
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tstamp 36bcaa59-f51d-4777-b282-ed2453cc8b5a)
(at 111.811 95.047 90)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (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")
(property "Description" "25V 1uF X5R ±10% 0402 Multilayer Ceramic Capacitors MLCC - SMD/SMT ROHS")
(property "JLCPCB Part #" "C52923")
(property "Manufacturer" "Samsung Electro-Mechanics")
(property "Partnumber" "CL05A105KA5NQNC")
(property "Sheetfile" "stm32f1_nano.kicad_sch")
(property "Sheetname" "")
(property "isBasicPart" "YES")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/268403c4-c44b-407b-afbf-6c46ed8a1200")
(attr smd)
(fp_text reference "C17" (at 0 -1.16 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 91b505a0-a5b2-46a5-b63a-bef809f2009b)
)
(fp_text value "1u 25V" (at 0 1.16 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6f043dab-9ac2-47c7-80a8-e732bed42ece)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 638b6890-bb67-4114-a3bf-9c43e30c119e)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5bf6cf6c-4abf-4317-9f4b-1ade4a1c1751))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cb39bad6-0299-4eea-82e3-d818d128b915))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1a1b441b-e13b-4f5a-aacb-9cc24a9719d9))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5b7edb0a-15a4-4548-ab34-6b8efa017a06))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5751c712-81af-445f-ae18-542c83df76ec))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6a920043-5e54-49a3-ad0c-372e2e1b493f))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 30881070-b178-447f-8305-e87e56e9fa63))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp da819d39-85eb-41fb-be54-f1b7389e9202))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b5b01af2-bb66-4524-ad0a-9c99f87155db))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d6343214-a0d6-4625-8c9c-ae9bfc263a7a))
(pad "1" smd roundrect (at -0.48 0 90) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "+5V") (pintype "passive") (tstamp 680396cf-1587-4b70-900c-6eb1ccdc4c65))
(pad "2" smd roundrect (at 0.48 0 90) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 4114723f-718e-414e-9ca3-572b3a5dd47d))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tstamp 37039576-2ddd-4dd9-bf16-1afa180c572d)
(at 137.973 91.11 180)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (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")
(property "Description" "62.5mW Thick Film Resistors ±100ppm/℃ ±1% 330Ω 0402 Chip Resistor - Surface Mount ROHS")
(property "JLCPCB Part #" "C25104")
(property "Manufacturer" "UNI-ROYAL(Uniroyal Elec)")
(property "Partnumber" "0402WGF3300TCE")
(property "Sheetfile" "stm32f1_nano.kicad_sch")
(property "Sheetname" "")
(property "isBasicPart" "YES")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/29f2f3ba-b730-4099-9b18-2431f6d6e25f")
(attr smd)
(fp_text reference "R2" (at 0 -1.17) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 41c2ae54-ac32-46bb-b952-6f4c8be3eba5)
)
(fp_text value "330" (at 0 1.17) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 789287b3-e599-4ce0-b2ba-59c50d04b7e7)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp 869b59ca-0517-43f0-a255-d6ed459c67f0)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c3908852-dd8a-4b3b-90d6-06261c2e8c93))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 061f7f78-f99b-4421-adfc-023f2ce03291))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 167841b5-c429-4fe4-84b4-5bf0fa25e67a))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c2b1de77-3aa8-4f55-8b06-f43c64e5b159))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6f875dd8-c0fc-445f-9067-988322a4c605))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp acb4f09a-9130-4ce8-9889-3af55dee9329))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6a0fb467-3273-4e04-ad9e-1f2413ffc6a2))
(fp_line (start -0.525 0.27) (end -0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0e04afd2-78d9-4f19-b694-c2e1408178b7))
(fp_line (start 0.525 -0.27) (end 0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e8b992f8-b41d-453d-a180-a342a2840184))
(fp_line (start 0.525 0.27) (end -0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e0ce0480-a67a-4a5a-a48e-67c837ce00f9))
(pad "1" smd roundrect (at -0.51 0 180) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "Net-(D2-A)") (pintype "passive") (tstamp 47b14ee3-aaee-4255-b83d-816f93b08f38))
(pad "2" smd roundrect (at 0.51 0 180) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+3.3V") (pintype "passive") (tstamp 2b7b253d-68c4-405a-98de-4aa6c9b969c5))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tstamp 378690a6-fb27-433c-8c6b-a418f42ee813)
(at 117.907 95.301 180)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (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")
(property "Description" "16V 100nF X7R ±10% 0402 Multilayer Ceramic Capacitors MLCC - SMD/SMT ROHS")
(property "JLCPCB Part #" "C1525")
(property "Manufacturer" "Samsung Electro-Mechanics")
(property "Partnumber" "CL05B104KO5NNNC")
(property "Sheetfile" "stm32f1_nano.kicad_sch")
(property "Sheetname" "")
(property "isBasicPart" "YES")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/ecca41fd-ae90-4020-bbc5-517ed0fc5e9b")
(attr smd)
(fp_text reference "C9" (at 0 -1.16) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e6656566-02d9-437a-a336-21221cac2158)
)
(fp_text value "100n 16V" (at 0 1.16) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c90ac5d7-9993-46b7-904b-21f0c3b17303)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp bd29359a-f483-48ae-bfe3-c50d9847ded2)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d25a828e-3f12-414a-bf27-13b6c3b39b74))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ea05e9ab-eba6-4164-b57e-dc7f678617eb))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 630e509c-daaa-42d9-9f7f-6bd68add900b))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp aabb4364-d892-4acb-ae2b-c2c87f0e31d9))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2b1a08f8-aae8-4b92-84c6-c1307c795169))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 62c8104e-5725-4ea5-8d22-1b2bd69976fa))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7ee5ef6d-d657-47ca-8e68-d4078f270483))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1830387d-0e43-4f79-8a3d-061bcc2ab317))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 007b665b-f209-4c67-86ac-0d026c5ba4cd))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f56cfce5-0863-40f1-a4d0-08026d7b6c06))
(pad "1" smd roundrect (at -0.48 0 180) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "/~{RESET}") (pintype "passive") (tstamp c5e052d4-2687-46bb-a105-662695539a39))
(pad "2" smd roundrect (at 0.48 0 180) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 8d80ec3d-72cf-447b-ad59-fc0a4fe82b07))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tstamp 39858641-fe66-4ed3-95dd-ab143abdd935)
(at 137.973 96.19 180)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (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")
(property "Description" "62.5mW Thick Film Resistors ±100ppm/℃ ±1% 150Ω 0402 Chip Resistor - Surface Mount ROHS")
(property "JLCPCB Part #" "C25082")
(property "Manufacturer" "UNI-ROYAL(Uniroyal Elec)")
(property "Partnumber" "0402WGF1500TCE")
(property "Sheetfile" "stm32f1_nano.kicad_sch")
(property "Sheetname" "")
(property "isBasicPart" "YES")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/2336e044-766f-421c-bb36-3ed7ee7adb81")
(attr smd)
(fp_text reference "R4" (at 0 -1.17) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2f44a874-beb0-4bc8-8292-ced55f2903e3)
)
(fp_text value "150" (at 0 1.17) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 110d7648-f5b7-4725-8bff-920a21947e84)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp 9ad73472-ceda-4cab-bcd1-45ed334e9570)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 90643ce7-96d6-445c-a1ea-fcc265f3bc0e))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0a82b9b2-8177-4c7c-923d-d7bb5b4d96da))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5181c45a-3a1a-4c8b-8f2f-1ef577d7f1f6))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cdeeb620-f0e5-4e20-865d-a8a6ac154514))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0abd78aa-9b83-4b21-9775-672f477f0761))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 20046f8e-0f3a-4fac-b098-dab1d8a018fd))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 27257ac0-69d0-4c17-bf63-c4a2dbad7a31))
(fp_line (start -0.525 0.27) (end -0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 87d66054-8d95-4d40-9094-1d9234ce173d))
(fp_line (start 0.525 -0.27) (end 0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 994b82cd-80c6-4958-a3f7-0b78f78d9581))
(fp_line (start 0.525 0.27) (end -0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 937c9603-cfcc-487c-941f-572cab92fb55))
(pad "1" smd roundrect (at -0.51 0 180) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 16 "Net-(D4-A)") (pintype "passive") (tstamp e6c751f0-086a-41c5-af0a-77b92c7b53ab))
(pad "2" smd roundrect (at 0.51 0 180) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+3.3V") (pintype "passive") (tstamp a91b11f4-3cda-4c60-90c7-2d77110237e4))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tstamp 3efaf3d9-2488-4dcd-aad4-ea9bbae11f79)
(at 127.051 85.776)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (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")
(property "Description" "16V 100nF X7R ±10% 0402 Multilayer Ceramic Capacitors MLCC - SMD/SMT ROHS")
(property "JLCPCB Part #" "C1525")
(property "Manufacturer" "Samsung Electro-Mechanics")
(property "Partnumber" "CL05B104KO5NNNC")
(property "Sheetfile" "stm32f1_nano.kicad_sch")
(property "Sheetname" "")
(property "isBasicPart" "YES")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/947ca789-31ea-4e02-940e-a01827fd362c")
(attr smd)
(fp_text reference "C3" (at 0 -1.16) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a3c3720e-6e68-4073-9912-2ff2ab5f4cfc)
)
(fp_text value "100n 16V" (at 0 1.16) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ff45ca5e-6660-4b1f-97fe-e75712402038)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 923088d0-dd6d-436e-9797-3c1b0b3ef714)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d72d4463-a32e-42a1-ae5b-732cbbac3b9a))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 231c390a-c952-49c0-8ea3-217b803c997f))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 729a7b81-e332-4aeb-9232-ed85dd0d4e26))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 97342c38-36ec-44e3-bfa7-cb74cc24cf9b))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b2cccdf5-dd7a-4405-b456-8c42de89d4bf))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 42cf7871-92e1-4032-8c28-9ea39203486b))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 25ff791e-59d3-4d4d-985a-36a4652768f1))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4fbb4ab3-4da2-4dfd-b2ff-16cc801974e6))