-
Notifications
You must be signed in to change notification settings - Fork 0
/
ESP-DEVKIT-MINI.kicad_pcb
22195 lines (22141 loc) · 880 KB
/
ESP-DEVKIT-MINI.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)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(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 4)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "gerbers/")
)
)
(net 0 "")
(net 1 "VCC_3V3")
(net 2 "GND")
(net 3 "GPIO0")
(net 4 "CHIP_PU")
(net 5 "ESP_3V3")
(net 6 "GPIO1")
(net 7 "GPIO2")
(net 8 "GPIO3")
(net 9 "GPIO4")
(net 10 "GPIO5")
(net 11 "GPIO6")
(net 12 "GPIO7")
(net 13 "GPIO8")
(net 14 "GPIO9")
(net 15 "GPIO10")
(net 16 "GPIO11")
(net 17 "GPIO12")
(net 18 "GPIO13")
(net 19 "GPIO14")
(net 20 "GPIO15")
(net 21 "GPIO16")
(net 22 "GPIO17")
(net 23 "GPIO18")
(net 24 "VCC_5V")
(net 25 "GPIO46")
(net 26 "GPIO45")
(net 27 "U0RXD")
(net 28 "U0TXD")
(net 29 "GPIO42")
(net 30 "GPIO41")
(net 31 "GPIO40")
(net 32 "GPIO39")
(net 33 "GPIO38")
(net 34 "GPIO37")
(net 35 "GPIO36")
(net 36 "GPIO35")
(net 37 "GPIO34")
(net 38 "GPIO33")
(net 39 "GPIO26")
(net 40 "GPIO21")
(net 41 "GPIO20")
(net 42 "GPIO19")
(net 43 "GPIO48")
(net 44 "GPIO47")
(net 45 "Net-(U2-VBUS)")
(net 46 "Net-(D1-A)")
(net 47 "Net-(U2-TXD)")
(net 48 "Net-(U2-RXD)")
(net 49 "Net-(U2-~{RST})")
(net 50 "Net-(U2-SUSPEND)")
(net 51 "VBUS")
(net 52 "unconnected-(U2-~{DCD}-Pad1)")
(net 53 "unconnected-(U2-~{RI}{slash}CLK-Pad2)")
(net 54 "unconnected-(U2-NC-Pad10)")
(net 55 "unconnected-(U2-~{SUSPEND}-Pad11)")
(net 56 "unconnected-(U2-CHREN-Pad13)")
(net 57 "unconnected-(U2-CHR1-Pad14)")
(net 58 "unconnected-(U2-CHR0-Pad15)")
(net 59 "unconnected-(U2-~{WAKEUP}{slash}GPIO.3-Pad16)")
(net 60 "unconnected-(U2-RS485{slash}GPIO.2-Pad17)")
(net 61 "unconnected-(U2-~{RXT}{slash}GPIO.1-Pad18)")
(net 62 "unconnected-(U2-~{TXT}{slash}GPIO.0-Pad19)")
(net 63 "unconnected-(U2-GPIO.6-Pad20)")
(net 64 "unconnected-(U2-GPIO.5-Pad21)")
(net 65 "unconnected-(U2-GPIO.4-Pad22)")
(net 66 "unconnected-(U2-~{CTS}-Pad23)")
(net 67 "RST")
(net 68 "unconnected-(U2-~{DSR}-Pad27)")
(net 69 "DTR")
(net 70 "unconnected-(J3-CC1-PadA5)")
(net 71 "unconnected-(J3-SBU1-PadA8)")
(net 72 "unconnected-(J3-CC2-PadB5)")
(net 73 "unconnected-(J3-SBU2-PadB8)")
(net 74 "Net-(J4-ID)")
(net 75 "USB_DP")
(net 76 "USB_DN")
(net 77 "unconnected-(D6-DOUT-Pad1)")
(net 78 "Net-(D6-DIN)")
(net 79 "Net-(Q1-B)")
(net 80 "Net-(Q1-C)")
(net 81 "Net-(Q2-B)")
(net 82 "Net-(Q2-C)")
(footprint "PCM_4ms_Resistor:R_0603" (layer "F.Cu")
(tstamp 0753e95c-13ca-40e5-9015-dbb461d825ee)
(at 101.6 109.968664 -90)
(descr "Resistor SMD 0603, reflow soldering, Vishay (see dcrcw.pdf)")
(tags "resistor 0603")
(property "Sheetfile" "ESP-DEVKIT-MINI.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "DO-201 Bidirectional TVS Diode, 6.8V, 1500W, Alternate KiCAD Library")
(property "ki_keywords" "diode TVS bidirectional 1.5KE-CA")
(path "/45ed021a-68cd-473f-8ee9-5db7930c3bc2")
(attr smd)
(fp_text reference "D5" (at -2.339145 -0.18233 90) (layer "F.SilkS")
(effects (font (size 0.65 0.65) (thickness 0.15)))
(tstamp b70679a1-26c4-435b-b011-bf57bc680e34)
)
(fp_text value "1.5KE6.8CA" (at -5.828664 -1.61 90) (layer "F.SilkS") hide
(effects (font (size 0.6 0.6) (thickness 0.15)))
(tstamp 8fd13c3a-14bf-4c36-9ef2-9dee4c25b64e)
)
(fp_line (start -0.85 -0.7) (end 0.85 -0.7)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp b68cbf3b-c35b-465f-b5aa-4a125d13a279))
(fp_line (start 0.85 0.7) (end -0.85 0.7)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp c555a565-dc6b-4435-9861-9954edec9c3c))
(fp_line (start -1.6 -0.75) (end -1.6 0.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 096a67f2-8117-478e-9450-7263d1ef65a0))
(fp_line (start -1.6 -0.75) (end 1.6 -0.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c9edf48e-7de3-4b19-af0d-c33479ba4aa2))
(fp_line (start -1.6 0.75) (end 1.6 0.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d3549899-fd3d-48db-bd3f-41c576ee5ac5))
(fp_line (start 1.6 -0.75) (end 1.6 0.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp df9ce13c-3e53-4800-86d8-a3f43d9188ac))
(pad "1" smd rect (at -0.85 0 270) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "K") (pintype "passive") (tstamp b963fce5-40dd-464e-9611-78a5a65b5da2))
(pad "2" smd rect (at 0.85 0 270) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 75 "USB_DP") (pinfunction "A") (pintype "passive") (tstamp 76ee9c1a-4b21-445b-9b46-6c699e05f113))
(model "Resistors_SMD.3dshapes/R_0603.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(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 "LED_SMD:LED_0603_1608Metric" placed (layer "F.Cu")
(tstamp 0b7dfe3b-cc49-4808-b36c-8b25f25210ac)
(at 112.063149 80.577453 90)
(descr "LED SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "LED")
(property "Sheetfile" "ESP-DEVKIT-MINI.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Light emitting diode")
(property "ki_keywords" "LED diode")
(path "/dca3ebe2-a226-4e39-aeb6-a2295a00f467")
(attr smd)
(fp_text reference "D1" (at -0.124083 1.26481 90) (layer "F.SilkS")
(effects (font (size 0.65 0.65) (thickness 0.15)))
(tstamp 2bd9c55e-f381-4cc1-803a-dfe2466e3706)
)
(fp_text value "LED" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f0ac052b-fe9f-4195-ba00-5b0bd5e160e4)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 67a0c275-bf1a-40d9-97a5-f69aec008005)
)
(fp_line (start -1.485 -0.735) (end -1.485 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2baa31c8-e6e5-4147-89a9-35cba45b43e4))
(fp_line (start -1.485 0.735) (end 0.8 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0f01cc6f-9c66-4248-b9f5-544322d1c9b0))
(fp_line (start 0.8 -0.735) (end -1.485 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 730d9853-435d-4791-9bc2-99398aa4a00b))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 750ab47f-595f-4572-9bc1-6433b117864c))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 68190f8e-8d6a-420a-8302-f1e2389278c9))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp faeeb0a0-0219-4d1e-a2f7-55b0fe9b4bc5))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5c7543aa-5d94-47ab-b8ee-cc5a0698dc34))
(fp_line (start -0.8 -0.1) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 06d1889f-21ea-4866-8725-80b4844e9d1e))
(fp_line (start -0.8 0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5d5a5abc-c881-4490-b2de-f7138646a038))
(fp_line (start -0.5 -0.4) (end -0.8 -0.1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 964fdeb3-f567-48b4-b733-ccf25c60ecd9))
(fp_line (start 0.8 -0.4) (end -0.5 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f2f8f318-515f-47ab-80a1-ca6219dab7d1))
(fp_line (start 0.8 0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f1bbe7b6-f930-41ef-87e3-a547ef99dab7))
(pad "1" smd roundrect (at -0.7875 0 90) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "K") (pintype "passive") (tstamp c92a476c-9e0a-4638-ac56-c765c70e1c65))
(pad "2" smd roundrect (at 0.7875 0 90) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 46 "Net-(D1-A)") (pinfunction "A") (pintype "passive") (tstamp e9d3e477-e404-495c-8f62-ee3cfa341545))
(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 "PCM_4ms_Resistor:R_0603" placed (layer "F.Cu")
(tstamp 0cfdaabd-9105-4f8e-a741-e5374f9757a2)
(at 111.069144 97.14211)
(descr "Resistor SMD 0603, reflow soldering, Vishay (see dcrcw.pdf)")
(tags "resistor 0603")
(property "Display" "0R")
(property "JLCPCB ID" "C21189")
(property "Manufacturer" "Yageo")
(property "Part Number" "RC0603FR-100RL")
(property "Sheetfile" "ESP-DEVKIT-MINI.kicad_sch")
(property "Sheetname" "")
(property "Specifications" "0R, 1%, 1/10W, 0603")
(property "ki_description" "0R, 1%, 1/10W, 0603")
(property "ki_keywords" "0R_0603")
(path "/5ab150b4-1a7c-4162-8e44-8b085bbdb8e3")
(attr smd)
(fp_text reference "R4" (at 0.121424 1.443831) (layer "F.SilkS")
(effects (font (size 0.65 0.65) (thickness 0.15)))
(tstamp 7d72b2b2-8df5-4225-b118-257a69257e30)
)
(fp_text value "0R_0603" (at 0.09 -1.61) (layer "F.SilkS") hide
(effects (font (size 0.6 0.6) (thickness 0.15)))
(tstamp 44c9dec1-ea0b-4f9b-a580-b5f1e3e231fd)
)
(fp_line (start -0.85 -0.7) (end 0.85 -0.7)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 125711d1-daae-43bd-9fee-f469ac2bc40b))
(fp_line (start 0.85 0.7) (end -0.85 0.7)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp e9e17b91-3d69-43c5-a9d3-fef8715987d0))
(fp_line (start -1.6 -0.75) (end -1.6 0.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 33cc04e4-74ce-4c6a-a34b-34b84ac60236))
(fp_line (start -1.6 -0.75) (end 1.6 -0.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp af6a63b3-2442-4f0c-a57b-c8f1fcb0e326))
(fp_line (start -1.6 0.75) (end 1.6 0.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ea583151-a9ad-4dc7-99e9-8c5ce33d512e))
(fp_line (start 1.6 -0.75) (end 1.6 0.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0ad04650-9843-45e2-9d55-e02cbb444a6c))
(pad "1" smd rect (at -0.85 0) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 48 "Net-(U2-RXD)") (pintype "passive") (tstamp 1ef3d903-f8aa-4d51-9fc3-df41f4c7b275))
(pad "2" smd rect (at 0.85 0) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 28 "U0TXD") (pintype "passive") (tstamp 96cb493a-559f-4892-94db-e9a27163e1db))
(model "Resistors_SMD.3dshapes/R_0603.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(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 "PCM_4ms_Resistor:R_0603" placed (layer "F.Cu")
(tstamp 1b972b9e-71bc-4095-b9d1-052095a77f26)
(at 99.864562 97.484834)
(descr "Resistor SMD 0603, reflow soldering, Vishay (see dcrcw.pdf)")
(tags "resistor 0603")
(property "Display" "1K(1%)")
(property "JLCPCB ID" "C21189")
(property "Manufacturer" "Yageo")
(property "Part Number" "RC0603FR-100RL")
(property "Sheetfile" "ESP-DEVKIT-MINI.kicad_sch")
(property "Sheetname" "")
(property "Specifications" "0R, 1%, 1/10W, 0603")
(property "ki_description" "0R, 1%, 1/10W, 0603")
(property "ki_keywords" "0R_0603")
(path "/4b927b0c-0d0c-4d26-8e84-58bd5245061f")
(attr smd)
(fp_text reference "R5" (at -2.458157 0.043592) (layer "F.SilkS")
(effects (font (size 0.65 0.65) (thickness 0.15)))
(tstamp ad46dc30-ce18-464d-aead-edfc82ead530)
)
(fp_text value "0R_0603" (at 0.09 -1.61) (layer "F.SilkS") hide
(effects (font (size 0.6 0.6) (thickness 0.15)))
(tstamp 9352c337-2b65-4368-b94a-b462322fb187)
)
(fp_line (start -0.85 -0.7) (end 0.85 -0.7)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 6791a813-b19f-491a-8d8d-8c180498031c))
(fp_line (start 0.85 0.7) (end -0.85 0.7)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 389ac01f-d1b6-43d7-bb97-c543a05e201d))
(fp_line (start -1.6 -0.75) (end -1.6 0.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 554afafc-2f69-4854-b967-3333c184ad73))
(fp_line (start -1.6 -0.75) (end 1.6 -0.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 78651e64-ada8-4f9a-987e-e04c391ec57a))
(fp_line (start -1.6 0.75) (end 1.6 0.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 863c1508-0676-4db1-a0d6-e2b6b1fa8efb))
(fp_line (start 1.6 -0.75) (end 1.6 0.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 68eefde2-7e7c-4a1e-bad2-16d1381ddc4b))
(pad "1" smd rect (at -0.85 0) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "VCC_3V3") (pintype "passive") (tstamp a781e597-44e3-4cdd-95d6-862422f382de))
(pad "2" smd rect (at 0.85 0) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 49 "Net-(U2-~{RST})") (pintype "passive") (tstamp bd89b9b1-3e9b-4af3-a4fc-83a48fb50dc3))
(model "Resistors_SMD.3dshapes/R_0603.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(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 "PCM_4ms_Resistor:R_0603" placed (layer "F.Cu")
(tstamp 203f8dec-a0a6-43a1-ba07-6bcd73306226)
(at 112.063149 77.333294 -90)
(descr "Resistor SMD 0603, reflow soldering, Vishay (see dcrcw.pdf)")
(tags "resistor 0603")
(property "Display" "5.1K(1%)")
(property "JLCPCB ID" "C21189")
(property "Manufacturer" "Yageo")
(property "Part Number" "RC0603FR-100RL")
(property "Sheetfile" "ESP-DEVKIT-MINI.kicad_sch")
(property "Sheetname" "")
(property "Specifications" "0R, 1%, 1/10W, 0603")
(property "ki_description" "0R, 1%, 1/10W, 0603")
(property "ki_keywords" "0R_0603")
(path "/74a2232c-788c-4e95-9a8e-a2674883545c")
(attr smd)
(fp_text reference "R2" (at -0.149352 -1.363204 90) (layer "F.SilkS")
(effects (font (size 0.65 0.65) (thickness 0.15)))
(tstamp 7c0189de-6a1b-46bd-84e8-22e241dfd01d)
)
(fp_text value "0R_0603" (at 0.09 -1.61 90) (layer "F.SilkS") hide
(effects (font (size 0.6 0.6) (thickness 0.15)))
(tstamp d75b5cba-c478-46f3-b522-57ccf18e7824)
)
(fp_line (start -0.85 -0.7) (end 0.85 -0.7)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 1b6d1a37-83a9-4670-b5ec-a864c2f8a1ba))
(fp_line (start 0.85 0.7) (end -0.85 0.7)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 3fe5d6de-7163-458b-8308-8baa2d999fb0))
(fp_line (start -1.6 -0.75) (end -1.6 0.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 306a0723-0387-43ef-aec9-41376650942b))
(fp_line (start -1.6 -0.75) (end 1.6 -0.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0aee2def-50f9-459a-a007-72735637e5a6))
(fp_line (start -1.6 0.75) (end 1.6 0.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c9bf19e4-adde-412d-8924-d2e24d06951d))
(fp_line (start 1.6 -0.75) (end 1.6 0.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 102cb2bc-9c05-4662-8494-ca26cd192b1c))
(pad "1" smd rect (at -0.85 0 270) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "VCC_3V3") (pintype "passive") (tstamp f2d8b2a7-3de8-4a04-981c-8cb2ba047a01))
(pad "2" smd rect (at 0.85 0 270) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 46 "Net-(D1-A)") (pintype "passive") (tstamp ea8f599c-ad4d-4dc9-8290-1de8c2ee7030))
(model "Resistors_SMD.3dshapes/R_0603.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(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 "Capacitor_SMD:C_0603_1608Metric" placed (layer "F.Cu")
(tstamp 206b191f-e6a8-4255-855f-cbbd41617454)
(at 99.06 78.667265 90)
(descr "Capacitor SMD 0603 (1608 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 "Display" "0.1uF/25V(10%)")
(property "JLCPCB ID" "C14663")
(property "Manufacturer" "AVX Corporation")
(property "Part Number" "0603YC104KAT2A")
(property "Sheetfile" "ESP-DEVKIT-MINI.kicad_sch")
(property "Sheetname" "")
(property "Specifications" "0.1uF, Min. 16V 10%, X7R or X5R or similar")
(property "ki_description" "0.1uF, Min. 16V 10%, X7R or X5R or similar")
(property "ki_keywords" "100nF_0603_16V")
(path "/1c596dd7-0446-4ca0-8aa2-83ff8177d1e9")
(attr smd)
(fp_text reference "C7" (at 0.022016 -2.926289 90) (layer "F.SilkS")
(effects (font (size 0.65 0.65) (thickness 0.15)))
(tstamp b9b974e0-618d-4d49-a141-3710d0debc0f)
)
(fp_text value "0.1uF_0603_16V" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b205fa40-f3a2-42cb-ac1a-39e1118e586c)
)
(fp_text user "${REFERENCE}" (at 0.8 0.4 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 89422ce5-0410-4357-ae39-a9838dee8518)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 44f223cf-9ae5-424a-8a0d-c80b2c2fb74c))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 646cd4b6-afcf-4b0d-b7d3-ec94fede5821))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6bbb4a10-1a2c-44c5-a00f-e6bde4e6e1e2))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a66dd674-2486-4e5f-9090-b33485867277))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6a293366-0b8a-41e7-8748-08412d948e2d))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 88e6f8d6-c152-42b2-a981-c7364d3e4eb1))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ec7c9dc7-6786-488d-8e58-3fa4c76bd7a0))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c6466cd6-a2c8-4935-915a-0cd8c9709390))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b4a5f9c2-1e2b-44eb-a66a-e2e7043ffaad))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a829430a-4834-46e4-b398-1ddbd2ecac71))
(pad "1" smd roundrect (at -0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "VCC_3V3") (pintype "passive") (tstamp 7aac4d73-4fab-463b-9d27-e99921b99b01))
(pad "2" smd roundrect (at 0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 468d4c8c-8bed-4a03-858d-e5490149d97d))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" placed (layer "F.Cu")
(tstamp 2dea9044-dec0-4fd5-99d5-1a044371151b)
(at 99.777525 94.297119)
(descr "Capacitor SMD 0603 (1608 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 "Display" "1uF")
(property "JLCPCB ID" "16V(10%)")
(property "Manufacturer" "TDK")
(property "Part Number" "C3216X6S1V106K160AC")
(property "Sheetfile" "ESP-DEVKIT-MINI.kicad_sch")
(property "Sheetname" "")
(property "Specifications" "10uF, X6S, Min 35V")
(property "ki_description" "10uF, X6S, Min 35V")
(property "ki_keywords" "10uF_1206_35V")
(path "/9a3f6655-df8d-46ec-ae29-174465f0160a")
(attr smd)
(fp_text reference "C10" (at -2.564671 0.10785) (layer "F.SilkS")
(effects (font (size 0.65 0.65) (thickness 0.15)))
(tstamp 3dbc4301-7aca-44ee-9e44-eb9dfcf59adf)
)
(fp_text value "10uF_1206_35V" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ce593679-49df-46b2-a259-9891ae3db4ee)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp b1d1a368-6fa6-492c-b58b-a8632579223e)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e7f41404-155a-4f4c-86ce-bb1f40289459))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp feae2d04-9aed-4c43-869b-9aecb8258906))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2c6171b0-dbc5-40e4-99b4-66499f2be474))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 29feadaf-10ee-43ed-9b4d-fc81a7eb0d01))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 939ac9e7-02f6-4af0-a002-2217c9442a1f))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 914e519c-12ef-4ec4-a1b2-f22aa4a06b12))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 99e21f74-cf35-421e-aa7f-4139a6846bc7))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 48058385-fdc9-4654-8c5a-cb061a99e4af))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5385bed5-443a-4a21-bfd4-81e743bb9d38))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9dd4e6f9-71d4-45c3-aa42-ef5c11eaf6b0))
(pad "1" smd roundrect (at -0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp cc6d3b29-cecf-4619-a2b8-f4c1905caedd))
(pad "2" smd roundrect (at 0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 45 "Net-(U2-VBUS)") (pintype "passive") (tstamp c88e73f2-66ec-491b-9cd4-f9c62e2036c2))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "PCM_4ms_Resistor:R_0603" placed (layer "F.Cu")
(tstamp 3459b320-6ac4-4aa2-a5a2-c8611b589f7a)
(at 104.14 73.66 180)
(descr "Resistor SMD 0603, reflow soldering, Vishay (see dcrcw.pdf)")
(tags "resistor 0603")
(property "Display" "1OK(1%)")
(property "JLCPCB ID" "C21189")
(property "Manufacturer" "Yageo")
(property "Part Number" "RC0603FR-100RL")
(property "Sheetfile" "ESP-DEVKIT-MINI.kicad_sch")
(property "Sheetname" "")
(property "Specifications" "0R, 1%, 1/10W, 0603")
(property "ki_description" "0R, 1%, 1/10W, 0603")
(property "ki_keywords" "0R_0603")
(path "/ba4418a3-baa6-4052-80ae-afc3101a016f")
(attr smd)
(fp_text reference "R10" (at -0.005553 1.39577) (layer "F.SilkS")
(effects (font (size 0.65 0.65) (thickness 0.15)))
(tstamp b24fa465-bc19-46af-bc45-34ff348cecac)
)
(fp_text value "0R_0603" (at 0.09 -1.61) (layer "F.SilkS") hide
(effects (font (size 0.6 0.6) (thickness 0.15)))
(tstamp 311f2d9d-9e4d-46fa-9611-e82c4bbf271d)
)
(fp_line (start -0.85 -0.7) (end 0.85 -0.7)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 52ff4a90-282e-4911-a1c9-b0d3a2217d92))
(fp_line (start 0.85 0.7) (end -0.85 0.7)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 52615e2f-09a3-42d4-a892-88642dd8c91d))
(fp_line (start -1.6 -0.75) (end -1.6 0.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 42f19810-ceca-4ff1-adf8-bafc1c3f4c5e))
(fp_line (start -1.6 -0.75) (end 1.6 -0.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 907605d5-f622-44d1-a37d-d1b9afc938a0))
(fp_line (start -1.6 0.75) (end 1.6 0.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b7ec7779-4b30-4ef4-bb43-64b83376480e))
(fp_line (start 1.6 -0.75) (end 1.6 0.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2355c7b1-62e8-4698-8219-f4343d248ec9))
(pad "1" smd rect (at -0.85 0 180) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "CHIP_PU") (pintype "passive") (tstamp 7a9971b5-6888-4c60-8214-c2ab2f2f2d74))
(pad "2" smd rect (at 0.85 0 180) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "ESP_3V3") (pintype "passive") (tstamp 506dfcb7-31e7-4c80-af85-0fda903fed8a))
(model "Resistors_SMD.3dshapes/R_0603.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(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 "Capacitor_SMD:C_0603_1608Metric" placed (layer "F.Cu")
(tstamp 3c5bd1cd-344a-487b-a570-0f094bcae439)
(at 99.887345 82.517345 180)
(descr "Capacitor SMD 0603 (1608 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 "Display" "10uF")
(property "JLCPCB ID" "25V(20%)")
(property "Manufacturer" "TDK")
(property "Part Number" "C3216X6S1V106K160AC")
(property "Sheetfile" "ESP-DEVKIT-MINI.kicad_sch")
(property "Sheetname" "")
(property "Specifications" "10uF, X6S, Min 35V")
(property "ki_description" "10uF, X6S, Min 35V")
(property "ki_keywords" "10uF_1206_35V")
(path "/af82aaea-7f3f-482b-9518-87301a4e610e")
(attr smd)
(fp_text reference "C6" (at 2.549245 0.060317) (layer "F.SilkS")
(effects (font (size 0.65 0.65) (thickness 0.15)))
(tstamp e4296825-e18a-4cc1-91bd-e9dedce431cf)
)
(fp_text value "10uF_1206_35V" (at 86.85 50.13) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cbc833ba-e15f-4f1f-9ae3-5ddabe5417ce)
)
(fp_text user "${REFERENCE}" (at -0.847928 0.823829) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 60fc9a14-3f41-42d1-a776-0086c226c543)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5e28250c-3613-4cd5-8dc7-23752fee31f4))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e85c7a6a-76c8-4b22-a4c0-820568bb4391))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 92e5af83-e5d6-4505-9d2a-0ecc087b54fc))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 41c453d7-c77a-4e58-952c-2b0c1b30edfe))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 842d98d6-b9ee-4d2e-ac30-98d60ec2f08c))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b6511a30-4b56-4aab-8daf-6383685e9407))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 08743f5f-b70d-44e2-9eec-fb1cde7ab0b0))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b14312cb-c4c3-48d6-b100-d31e1afb4523))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c3ef47dd-51b7-4361-b39f-3fccf51d71cf))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1b01753e-4415-4e55-b191-976164824a96))
(pad "1" smd roundrect (at -0.775 0 180) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 24 "VCC_5V") (pintype "passive") (tstamp e0875a44-5041-4d13-9629-bafb506d4ecd))
(pad "2" smd roundrect (at 0.775 0 180) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 701219f5-b1b5-4c99-97d5-525017a378b0))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "PCM_4ms_Resistor:R_0603" placed (layer "F.Cu")
(tstamp 4758061b-3644-46e3-81e6-dbd30d0eb63f)
(at 100.872619 73.941033 -90)
(descr "Resistor SMD 0603, reflow soldering, Vishay (see dcrcw.pdf)")
(tags "resistor 0603")
(property "Display" "0R")
(property "JLCPCB ID" "C21189")
(property "Manufacturer" "Yageo")
(property "Part Number" "RC0603FR-100RL")
(property "Sheetfile" "ESP-DEVKIT-MINI.kicad_sch")
(property "Sheetname" "")
(property "Specifications" "0R, 1%, 1/10W, 0603")
(property "ki_description" "0R, 1%, 1/10W, 0603")
(property "ki_keywords" "0R_0603")
(path "/15e447ff-c90e-4704-bd8a-bfda69a77f6f")
(attr smd)
(fp_text reference "R1" (at -0.0287 -1.280451 90) (layer "F.SilkS")
(effects (font (size 0.65 0.65) (thickness 0.15)))
(tstamp 544851cf-38c7-4a34-9191-1acd1a025422)
)
(fp_text value "0R_0603" (at -0.281033 4.352619 90) (layer "F.SilkS") hide
(effects (font (size 0.6 0.6) (thickness 0.15)))
(tstamp 13a23501-5453-4da6-9161-de2aef396f2e)
)
(fp_line (start -0.85 -0.7) (end 0.85 -0.7)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp ea476741-c943-4f43-8195-8b7414a3a349))
(fp_line (start 0.85 0.7) (end -0.85 0.7)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp d001905b-c5c7-4a9a-ab3c-99902b0821d1))
(fp_line (start -1.6 -0.75) (end -1.6 0.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d01bd55a-f201-4cb1-b88e-187355e6cf57))
(fp_line (start -1.6 -0.75) (end 1.6 -0.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 177a6953-d8f0-4fa6-a54c-197228e55595))
(fp_line (start -1.6 0.75) (end 1.6 0.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fb13fb2f-aeac-48bc-8f82-6cfb7d085340))
(fp_line (start 1.6 -0.75) (end 1.6 0.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 04dc64a1-120c-4a6b-a28c-56b7df07d262))
(pad "1" smd rect (at -0.85 0 270) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "ESP_3V3") (pintype "passive") (tstamp 7e63894d-a0f7-481a-a0d3-c575aeb95db2))
(pad "2" smd rect (at 0.85 0 270) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "VCC_3V3") (pintype "passive") (tstamp d86cac69-6a6c-498a-9269-00398afad3d4))
(model "Resistors_SMD.3dshapes/R_0603.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(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 "PCM_4ms_Resistor:R_0603" placed (layer "F.Cu")
(tstamp 4c96f788-4d4a-4da5-99f6-2e1ece05fbac)
(at 103.725342 83.477632 180)
(descr "Resistor SMD 0603, reflow soldering, Vishay (see dcrcw.pdf)")
(tags "resistor 0603")
(property "Display" "0R")
(property "JLCPCB ID" "C21189")
(property "Manufacturer" "Yageo")
(property "Part Number" "RC0603FR-100RL")
(property "Sheetfile" "ESP-DEVKIT-MINI.kicad_sch")
(property "Sheetname" "")
(property "Specifications" "0R, 1%, 1/10W, 0603")
(property "ki_description" "0R, 1%, 1/10W, 0603")
(property "ki_keywords" "0R_0603")
(path "/f65958a7-6923-4f4e-a0f1-d26dd284950b")
(attr smd)
(fp_text reference "R15" (at -2.894615 0.020263) (layer "F.SilkS")
(effects (font (size 0.65 0.65) (thickness 0.15)))
(tstamp daa617e7-0b13-4067-b24d-bd39346e361b)
)
(fp_text value "0R_0603" (at 0.09 -1.61) (layer "F.SilkS") hide
(effects (font (size 0.6 0.6) (thickness 0.15)))
(tstamp e42ed4ed-dca8-4689-b3e5-f2cde0b424c5)
)
(fp_line (start -0.85 -0.7) (end 0.85 -0.7)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 801de390-06bf-408c-b6bd-22565cafefc0))
(fp_line (start 0.85 0.7) (end -0.85 0.7)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 6225f5a3-0d05-4690-9583-0a2d4a1ac20d))
(fp_line (start -1.6 -0.75) (end -1.6 0.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3f57543b-afbe-48b5-8157-788c78cbec6e))
(fp_line (start -1.6 -0.75) (end 1.6 -0.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5058b162-164b-4a01-9612-379d57ab574f))
(fp_line (start -1.6 0.75) (end 1.6 0.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fd5264dc-7421-49e4-885a-99ad5923f055))
(fp_line (start 1.6 -0.75) (end 1.6 0.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 51203cb5-da33-4c6e-8db3-134469a9efee))
(pad "1" smd rect (at -0.85 0 180) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 43 "GPIO48") (pintype "passive") (tstamp db467d0b-7729-4400-bcca-0f74013ca954))
(pad "2" smd rect (at 0.85 0 180) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 78 "Net-(D6-DIN)") (pintype "passive") (tstamp be4c150d-f562-48c9-b973-aba73f8ec632))
(model "Resistors_SMD.3dshapes/R_0603.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(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 "Button_Switch_SMD:SW_SPST_Omron_B3FS-100xP" (layer "F.Cu")
(tstamp 537eb747-7715-4769-92b5-5db51bac3075)
(at 95.749481 106.536742 -90)
(descr "Surface Mount Tactile Switch for High-Density Mounting, 3.1mm height, https://omronfs.omron.com/en_US/ecb/products/pdf/en-b3fs.pdf")
(tags "Tactile Switch")
(property "Sheetfile" "ESP-DEVKIT-MINI.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Omron B3FS 6x6mm single pole normally-open tactile switch")
(property "ki_keywords" "switch normally-open pushbutton push-button")
(path "/d7abc04d-6e3c-49a7-a9c9-75f54ece2c71")
(attr smd)
(fp_text reference "SW2" (at 0 -4.3 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 528af51a-bce6-4824-926c-540a2186a7b0)
)
(fp_text value "SW_Omron_B3FS" (at 0 4.2 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 28b666bc-bcba-421b-a305-57636f09666c)
)
(fp_text user "${REFERENCE}" (at 0 -2.2 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0f2b7e84-3f2e-4169-84c0-2653dca5686f)
)
(fp_line (start -5.1 -3.3) (end -4.1 -3.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1b07a429-4556-4a94-9169-226216a1aea6))
(fp_line (start -5.1 -2.3) (end -5.1 -3.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2da5c8bc-3a49-42c4-900d-b8036291e710))
(fp_line (start -3.1 -1.3) (end -3.1 1.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bb6d3742-d5a0-4dae-aa28-fdb59b264ce5))
(fp_line (start 2.9 -3.25) (end -2.9 -3.25)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7e3ee1b0-6514-4a77-81ec-889726f1b810))
(fp_line (start 3 3.25) (end -3 3.25)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9feabc81-71e4-4481-8fe2-f0ddbea3fcfb))
(fp_line (start 3.1 -1.3) (end 3.1 1.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 479b9bdf-59af-4a47-9bfc-1a5920e486ac))
(fp_line (start -5.05 -3.4) (end 5.05 -3.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5acfd048-0910-4786-bbc0-23e4a47ec32c))
(fp_line (start -5.05 -1.3) (end -5.05 -3.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6e569695-6dc6-4559-9baa-916ed7786955))
(fp_line (start -5.05 1.3) (end -3.25 1.3)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 026f3157-3471-4bb0-8296-abd7c7eaf505))
(fp_line (start -5.05 3.4) (end -5.05 1.3)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 868cd77a-2da3-423f-9a5d-ce17e6d613b8))
(fp_line (start -3.25 -1.3) (end -5.05 -1.3)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0e09b0a8-ed27-4925-a56b-e726a4032b54))
(fp_line (start -3.25 1.3) (end -3.25 -1.3)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7fc1c114-4c05-4c0f-9357-88e82b904d9f))
(fp_line (start 3.25 -1.3) (end 3.25 1.3)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 87b3257f-5247-4c46-bc94-f2526d99f382))
(fp_line (start 3.25 1.3) (end 5.05 1.3)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 962350a0-b38f-4206-8fc9-2553004fe249))
(fp_line (start 5.05 -3.4) (end 5.05 -1.3)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 028fd63d-c9b7-4f92-9379-a8d4c0b93718))
(fp_line (start 5.05 -1.3) (end 3.25 -1.3)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b1cb22d0-4aa0-4d41-b134-4c53ca5c6d6c))
(fp_line (start 5.05 1.3) (end 5.05 3.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3541a605-577b-42e8-9ffb-5ceda22c2b41))
(fp_line (start 5.05 3.4) (end -5.05 3.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5d9ae308-12c3-4730-a781-61506b061b37))
(fp_line (start -3 -3.15) (end 3 -3.15)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 62c1b088-5e9f-400a-b72b-fa2b39c3d9a4))
(fp_line (start -3 3.15) (end -3 -3.15)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6af84b38-beb4-420d-993c-1850b2d85bda))
(fp_line (start 3 -3.15) (end 3 3.15)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a5efb9be-46b1-475a-8b8a-3a99c9b1e25f))
(fp_line (start 3 3.15) (end -3 3.15)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp be88ae33-dc20-4477-83e0-d5e11c5ed722))
(fp_circle (center 0 0) (end 1.5 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 82c6ec7f-65b4-4b73-9ed8-d28cb7233431))
(pad "1" smd rect (at -4 -2.25 90) (size 1.6 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "GPIO0") (pinfunction "1") (pintype "passive") (tstamp c8630815-4ef4-4b97-a1e8-be55fa92cf3f))
(pad "1" smd rect (at 4 -2.25 90) (size 1.6 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "GPIO0") (pinfunction "1") (pintype "passive") (tstamp ce802abc-a7dd-4019-85b2-d005848826a9))
(pad "2" smd rect (at -4 2.25 90) (size 1.6 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "2") (pintype "passive") (tstamp ceddd466-1bda-4793-a77c-5c95b7cc34ab))
(pad "2" smd rect (at 4 2.25 90) (size 1.6 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "2") (pintype "passive") (tstamp 8652ded7-db0c-4ec3-99e2-8983814a1ade))
(model "${KICAD6_3DMODEL_DIR}/Button_Switch_SMD.3dshapes/SW_SPST_Omron_B3FS-100xP.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_SMD:LED_SK6812MINI_PLCC4_3.5x3.5mm_P1.75mm" placed (layer "F.Cu")
(tstamp 563b6d3b-c318-4a93-8269-15ed27a68f12)
(at 99.147634 86.17362)
(descr "https://cdn-shop.adafruit.com/product-files/2686/SK6812MINI_REV.01-1-2.pdf")
(tags "LED RGB NeoPixel Mini")
(property "Sheetfile" "ESP-DEVKIT-MINI.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "RGB LED with integrated controller")
(property "ki_keywords" "RGB LED NeoPixel Mini addressable")
(path "/69ae69f2-e347-4a40-9097-8afa36ded26c")
(attr smd)
(fp_text reference "D6" (at -0.087634 0.18638) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ee8be2cf-8034-47e6-a47d-1014cd797b43)
)
(fp_text value "SK6812MINI" (at 0 3.25) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e0d37210-8a50-44cc-9d29-923e0d71f49f)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp 14c88f28-5cdc-47fd-8cd3-60545a6deca7)
)
(fp_line (start -2.95 -1.95) (end 2.95 -1.95)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1f984375-0c98-45d4-bce4-d2519fd4acd4))
(fp_line (start -2.95 1.95) (end 2.95 1.95)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 381784ad-2ae7-4f7f-851e-d52f73c4c9fd))
(fp_line (start 2.95 1.95) (end 2.95 0.875)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7f778af7-ecd7-4e93-84d6-7ce5c158b8c6))
(fp_line (start -2.8 -2) (end -2.8 2)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2f71f5e8-089e-4556-8b85-c30c8c6b248d))
(fp_line (start -2.8 2) (end 2.8 2)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c99ed392-a7bc-44ed-9369-0bdd1d602f6f))
(fp_line (start 2.8 -2) (end -2.8 -2)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7fe1de97-a6d4-4858-99c4-e4bec427a2c5))
(fp_line (start 2.8 2) (end 2.8 -2)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6a1155a9-90d1-426c-9b1d-0fdc03e870b5))
(fp_line (start -1.75 -1.75) (end -1.75 1.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2f3c916b-b27e-4f2f-9cc3-cedb2dd07285))
(fp_line (start -1.75 1.75) (end 1.75 1.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6da97cab-553d-47fe-b5fa-647a5dff4872))
(fp_line (start 1.75 -1.75) (end -1.75 -1.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 81d0e11b-8fbd-4364-97f3-d18fff10ff74))
(fp_line (start 1.75 0.75) (end 0.75 1.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp dcdc3acb-6654-4b36-a935-aff3618d47d7))
(fp_line (start 1.75 1.75) (end 1.75 -1.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f562fce7-6c31-490c-9617-75b927195417))
(fp_circle (center 0 0) (end 0 -1.5)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 7b681639-f86f-41a5-975a-1b71bb46922b))
(pad "1" smd rect (at -1.75 -0.875) (size 1.6 0.85) (layers "F.Cu" "F.Paste" "F.Mask")
(net 77 "unconnected-(D6-DOUT-Pad1)") (pinfunction "DOUT") (pintype "output") (tstamp 4da8f3b0-c908-4383-beba-969fb487b910))
(pad "2" smd rect (at -1.75 0.875) (size 1.6 0.85) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp 282e74ee-509d-4bec-a56e-14e211da862e))
(pad "3" smd rect (at 1.75 0.875) (size 1.6 0.85) (layers "F.Cu" "F.Paste" "F.Mask")
(net 78 "Net-(D6-DIN)") (pinfunction "DIN") (pintype "input") (tstamp ff20c811-7b83-4686-87c0-154b1568d484))
(pad "4" smd rect (at 1.75 -0.875) (size 1.6 0.85) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "VCC_3V3") (pinfunction "VDD") (pintype "power_in") (tstamp 803b7ff0-243b-48ee-b191-b62457b59f8a))
(model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_SK6812MINI_PLCC4_3.5x3.5mm_P1.75mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "PCM_4ms_Resistor:R_0603" (layer "F.Cu")
(tstamp 564ab0a0-11e5-4e24-9630-d588ccc2f42b)
(at 103.484836 109.968664 -90)
(descr "Resistor SMD 0603, reflow soldering, Vishay (see dcrcw.pdf)")
(tags "resistor 0603")
(property "Sheetfile" "ESP-DEVKIT-MINI.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "DO-201 Bidirectional TVS Diode, 6.8V, 1500W, Alternate KiCAD Library")
(property "ki_keywords" "diode TVS bidirectional 1.5KE-CA")
(path "/f389b1f7-1e32-487c-9f57-6582ee77b0ec")
(attr smd)
(fp_text reference "D4" (at -2.485009 -0.120796 90) (layer "F.SilkS")
(effects (font (size 0.65 0.65) (thickness 0.15)))
(tstamp 12838944-5519-452c-9c87-4034116d0ce6)
)
(fp_text value "1.5KE6.8CA" (at 0.09 -1.61 90) (layer "F.SilkS") hide
(effects (font (size 0.6 0.6) (thickness 0.15)))
(tstamp 53559490-2af6-4871-9478-835b07c0d344)
)
(fp_line (start -0.85 -0.7) (end 0.85 -0.7)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 8ca6a3ba-c843-444c-a3a0-5d5e4cde14db))
(fp_line (start 0.85 0.7) (end -0.85 0.7)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp f90b6b7a-bc45-442d-9c4a-63bb5f20f01e))
(fp_line (start -1.6 -0.75) (end -1.6 0.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b8ef1229-4a16-482f-8410-a1001dc6032c))
(fp_line (start -1.6 -0.75) (end 1.6 -0.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 95ed9248-721b-41a5-a046-909edcf05a35))
(fp_line (start -1.6 0.75) (end 1.6 0.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c6608319-ee5d-43c8-87c1-3c201f95c77b))
(fp_line (start 1.6 -0.75) (end 1.6 0.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f04b28f4-c323-463d-a556-ffebc4601503))
(pad "1" smd rect (at -0.85 0 270) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "K") (pintype "passive") (tstamp 6200e706-324a-4850-8e26-7676988338fb))
(pad "2" smd rect (at 0.85 0 270) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 76 "USB_DN") (pinfunction "A") (pintype "passive") (tstamp 3c9ee9b6-7939-44fb-94e3-66848990da87))
(model "Resistors_SMD.3dshapes/R_0603.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(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 "Connector_USB:USB_C_Receptacle_Palconn_UTC16-G" (layer "F.Cu")
(tstamp 5ea2349d-e2a3-4eed-82c1-77005f7ffcfc)
(at 111.13593 120.26849)
(descr "http://www.palpilot.com/wp-content/uploads/2017/05/UTC027-GKN-OR-Rev-A.pdf")
(tags "USB C Type-C Receptacle USB2.0")
(property "LCSC" "C167321")
(property "Sheetfile" "ESP-DEVKIT-MINI.kicad_sch")
(property "Sheetname" "")
(path "/4d40ffda-efff-4634-8203-edf589a7b532")
(attr smd)
(fp_text reference "J3" (at -0.003194 0.612419) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f8564400-6201-4b19-938d-f76b04a0ba58)
)
(fp_text value "USB_C_Receptacle_USB2.0" (at 0 6.24) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 40576b9c-70cb-4afc-8f6c-d436e2c0acec)
)
(fp_text user "PCB Edge" (at 0 3.43) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1bf62e2f-5781-4d95-aac8-fa0f220b81a5)
)
(fp_text user "${REFERENCE}" (at 0 1.18) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 370f1976-c86e-4c2b-a47e-765864c0a7f3)
)
(fp_line (start -4.47 -0.67) (end -4.47 1.13)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dfa4f429-7869-455e-9c8f-656077e14e13))
(fp_line (start -4.47 4.84) (end -4.47 3.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8c6ff1be-71f5-4bd0-adde-0d7837d27469))
(fp_line (start 4.47 -0.67) (end 4.47 1.13)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 519c8faa-ae07-4013-88d4-2f4a7b8b6340))
(fp_line (start 4.47 4.84) (end -4.47 4.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a07da02d-a47e-4eee-866f-e1ca962c6c6a))
(fp_line (start 4.47 4.84) (end 4.47 3.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bbe8a339-4689-453b-9017-78f1767ab40b))
(fp_line (start -4.47 4.34) (end 4.47 4.34)
(stroke (width 0.1) (type solid)) (layer "Dwgs.User") (tstamp 26488204-1b62-40ab-b594-52f3e2f44645))
(fp_line (start -5.27 -3.59) (end -5.27 5.34)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 30e0765b-db8e-47aa-822b-732a41e195db))
(fp_line (start -5.27 5.34) (end 5.27 5.34)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7d886bc9-8138-4331-b8ca-522fa110bce9))
(fp_line (start 5.27 -3.59) (end -5.27 -3.59)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6f505ef6-ed52-4d6c-811e-aaa6af9c13e7))
(fp_line (start 5.27 5.34) (end 5.27 -3.59)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 87b243fa-14e0-45a5-87e1-950ec40dd345))
(fp_line (start -4.47 -2.48) (end -4.47 4.84)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fec8ff93-a42f-41d6-8924-68ac20d0e2af))
(fp_line (start -4.47 -2.48) (end 4.47 -2.48)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5f9dbad7-2cc4-4adf-9de1-46cc3188593d))