-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathESP32_robot.kicad_pcb
13223 lines (13186 loc) · 543 KB
/
ESP32_robot.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20211014) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
(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)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "juni2022")
)
)
(net 0 "")
(net 1 "GND")
(net 2 "5V")
(net 3 "+3V3")
(net 4 "ENABLE")
(net 5 "BOOT")
(net 6 "/USB_R1")
(net 7 "unconnected-(J1-PadA8)")
(net 8 "/USB_R2")
(net 9 "unconnected-(J1-PadB8)")
(net 10 "/Header_1")
(net 11 "/Header_2")
(net 12 "/Header_3")
(net 13 "/Header_4")
(net 14 "/Header_5")
(net 15 "/Header_6")
(net 16 "/Header_7")
(net 17 "/Header_8")
(net 18 "USB_N")
(net 19 "USB_P")
(net 20 "unconnected-(U1-Pad45)")
(net 21 "unconnected-(U1-Pad44)")
(net 22 "/Header_11")
(net 23 "/Header_12")
(net 24 "unconnected-(U1-Pad40)")
(net 25 "/Header_13")
(net 26 "unconnected-(U1-Pad39)")
(net 27 "/Header_14")
(net 28 "unconnected-(U1-Pad38)")
(net 29 "/Header_15")
(net 30 "unconnected-(U1-Pad37)")
(net 31 "/Header_16")
(net 32 "unconnected-(U1-Pad36)")
(net 33 "/Header_17")
(net 34 "unconnected-(U1-Pad35)")
(net 35 "/SDA")
(net 36 "/Header_18")
(net 37 "SCL")
(net 38 "/SENSOR")
(net 39 "/Header_9")
(net 40 "/Header_10")
(net 41 "unconnected-(U1-Pad20)")
(net 42 "unconnected-(U1-Pad21)")
(net 43 "Net-(D1-Pad2)")
(net 44 "Net-(D1-Pad3)")
(net 45 "unconnected-(U1-Pad22)")
(net 46 "unconnected-(U1-Pad27)")
(net 47 "/RGB_SDI")
(net 48 "/RGB_CKI")
(net 49 "Net-(D2-Pad2)")
(net 50 "Net-(D2-Pad3)")
(net 51 "Net-(D3-Pad2)")
(net 52 "Net-(D3-Pad3)")
(net 53 "Net-(D4-Pad2)")
(net 54 "Net-(D4-Pad3)")
(net 55 "unconnected-(D5-Pad2)")
(net 56 "unconnected-(D5-Pad3)")
(net 57 "/USB1_P")
(net 58 "/USB1_N")
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 18c61c95-8af1-4986-b67e-c7af9c15ab6b)
(at 95.7326 48.019 -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 "Sheetfile" "ESP32_robot.kicad_sch")
(property "Sheetname" "")
(path "/bb78e85b-8ae5-4d45-a6d9-ef4871adf3e4")
(attr smd)
(fp_text reference "C3" (at 2.7432 -0.0508 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4d8e4893-5784-4228-9df9-73667ed32abe)
)
(fp_text value "0.1uF" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b6e2af5c-26ce-44e6-9d1b-ad399334dfc4)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 96e58220-2c57-4cd3-bcf4-b1767bcee4be)
)
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp 1cf62cc7-1010-44e6-8cd7-c001e7338f13))
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp ded48ece-2ef7-46f5-a977-8c92db740132))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 183cde98-bab0-4968-88af-53864d2fd937))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 4481f4e3-2442-4e5a-9cd3-9630b148d3c4))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 78ed4606-db0a-4d17-9ed9-2333dadb1fde))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp b232abab-7792-40df-aafd-825af43e3b5e))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 8179c67d-685e-449a-baec-1b5bfaecff71))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp b3e652f7-0425-46d6-a5a2-71ad7eea48d8))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp b5f93493-28fa-4d5b-acce-38e77fb8ed3b))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp e51e5dfc-5407-4a57-bf29-ca4f47ee6f1b))
(pad "1" smd roundrect (at -0.775 0 270) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 031fd0c9-c195-4b35-bd48-b265d4605f0a))
(pad "2" smd roundrect (at 0.775 0 270) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+3V3") (pintype "passive") (tstamp f9e592a6-a4da-49ef-a323-c9d56ba58939))
(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 "USB-C-Power-tester:TYPE-C-31-M-12" (layer "F.Cu")
(tedit 6228878E) (tstamp 18ca5aef-6a2c-41ac-9e7f-bf7acb716e53)
(at 104.3686 79.8754)
(descr "Korean Hroparts Elec, Power only USB connector supporting up to 3A")
(property "Sheetfile" "ESP32_robot.kicad_sch")
(property "Sheetname" "")
(path "/21812c1f-37d5-4d17-bc31-f118e8a6cf35")
(attr smd)
(fp_text reference "J1" (at 0 -2.15 -180) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.1)))
(tstamp 0cd74c0d-8071-4dfe-a0de-87fcf03d5f55)
)
(fp_text value "USB_C_Receptacle_USB2.0" (at 0.025 -7.9 -180) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.1)))
(tstamp b249e1d6-47e7-4364-abfd-c5c4b868721a)
)
(fp_line (start 4.2 1.5) (end -4.2 1.5) (layer "F.SilkS") (width 0.1) (tstamp 11b09243-23c6-4e84-9575-4ef0d2a211c2))
(fp_line (start -4.4 -4.5) (end 4.4 -4.5) (layer "F.SilkS") (width 0.1) (tstamp 3d12fbab-31cc-4462-ab31-bddca037b098))
(fp_line (start -4.4 -4.5) (end -4.4 2.6) (layer "F.SilkS") (width 0.1) (tstamp 62a888ce-e7b9-4445-b1bb-8885b886b4f0))
(fp_line (start 4.4 -4.5) (end 4.4 2.6) (layer "F.SilkS") (width 0.1) (tstamp 6b8d4a10-acb5-4c34-a421-34b8ee2ea0c9))
(fp_line (start 4.4 2.6) (end -4.4 2.6) (layer "F.SilkS") (width 0.1) (tstamp 7a302f4e-0bbe-4342-ac4d-53ed2173d91a))
(fp_line (start 0 -4.02) (end 0 2.3) (layer "F.SilkS") (width 0.02) (tstamp 9f298dd5-f538-41c8-9bfc-5a7e71c62a5e))
(fp_line (start 2.45 -4.37) (end 2.45 0) (layer "Dwgs.User") (width 0.02) (tstamp 059c77b2-fe34-4653-ad23-b56060bb43ca))
(fp_line (start -2.9 -3.65) (end -2.9 0) (layer "Dwgs.User") (width 0.02) (tstamp 3102d5d9-0b28-483b-a7ff-26e57363da17))
(fp_line (start 0.25 -4.37) (end 0.25 -1) (layer "Dwgs.User") (width 0.02) (tstamp 4aa7f065-ee86-4857-a39f-39b7f31a383e))
(fp_line (start -2.89 0.5) (end 2.89 0.5) (layer "Dwgs.User") (width 0.02) (tstamp 8572397b-5469-48fb-adee-83c3efae79e6))
(fp_line (start -0.75 -0.5) (end 0.75 -0.5) (layer "Dwgs.User") (width 0.02) (tstamp 8697d58e-81bc-4137-b3ec-a25ef25eabcc))
(fp_line (start 0.75 -4.37) (end 0.75 -0.5) (layer "Dwgs.User") (width 0.02) (tstamp 8ccf3e84-8417-4277-93e7-d23537931983))
(fp_line (start -0.75 -4.37) (end -0.75 -0.5) (layer "Dwgs.User") (width 0.02) (tstamp 99f03853-abfd-416e-9854-f99846798db1))
(fp_line (start -3.25 1) (end 3.25 1) (layer "Dwgs.User") (width 0.02) (tstamp 9b4ad1cd-e881-4ce3-82d3-c82792165ea8))
(fp_line (start -2.45 -4.37) (end -2.45 0) (layer "Dwgs.User") (width 0.02) (tstamp a9496845-8429-4c59-95fe-5b4bd10078c8))
(fp_line (start -0.25 -1) (end 0.25 -1) (layer "Dwgs.User") (width 0.02) (tstamp ab21dac9-844f-4f3f-aa48-ec2d0078fb65))
(fp_line (start -2.45 0) (end 2.45 0) (layer "Dwgs.User") (width 0.02) (tstamp b8339e69-3884-4c67-b924-33258fd064cc))
(fp_line (start -3.25 -4.37) (end -3.25 0) (layer "Dwgs.User") (width 0.02) (tstamp c767e921-993d-46d0-b7af-97a2c9b10bd4))
(fp_line (start 3.25 -4.37) (end 3.25 0) (layer "Dwgs.User") (width 0.02) (tstamp d1548efb-dd04-4a3e-9527-4af08b636b4d))
(fp_line (start -0.25 -4.37) (end -0.25 -1) (layer "Dwgs.User") (width 0.02) (tstamp e8c13331-4edc-4599-bdf8-a341ac939455))
(fp_line (start 2.9 -3.65) (end 2.9 0) (layer "Dwgs.User") (width 0.02) (tstamp ec64ea48-9352-474f-9d5b-3a2e4d3b6b70))
(pad "" np_thru_hole circle (at 2.9 -3.65) (size 0.65 0.65) (drill 0.65) (layers *.Cu *.Mask)
(solder_mask_margin 0.01) (solder_paste_margin 0.01) (clearance 0.01) (tstamp 947d9fc0-01c7-440f-b9f5-5cc785da5868))
(pad "" np_thru_hole circle (at -2.9 -3.65) (size 0.65 0.65) (drill 0.65) (layers *.Cu *.Mask)
(solder_mask_margin 0.01) (solder_paste_margin 0.01) (clearance 0.01) (tstamp f498d28d-fb22-4df8-ac3a-9e9feacfb6c0))
(pad "A1" smd rect (at -3.375 -5.1) (size 0.25 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp 1e94ce56-d880-47f4-8f4c-a80be79554ea))
(pad "A4" smd rect (at -2.575 -5.1) (size 0.25 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "5V") (pinfunction "VBUS") (pintype "passive") (tstamp 1082bb98-40fb-40f2-b293-681071b36b43))
(pad "A5" smd rect (at -1.25 -5.1) (size 0.25 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "/USB_R1") (pinfunction "CC1") (pintype "bidirectional") (tstamp cb97183b-a1ef-4f26-945b-5491f1b28ffc))
(pad "A6" smd rect (at -0.25 -5.1) (size 0.25 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 57 "/USB1_P") (pinfunction "D+") (pintype "bidirectional") (tstamp a104dd58-c5a1-4c01-8a85-2b242b23c578))
(pad "A7" smd rect (at 0.25 -5.1) (size 0.25 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 58 "/USB1_N") (pinfunction "D-") (pintype "bidirectional") (tstamp 4a11bbdc-5fd2-4264-8360-4d9aa6357af3))
(pad "A8" smd rect (at 1.25 -5.1) (size 0.25 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "unconnected-(J1-PadA8)") (pinfunction "SBU1") (pintype "bidirectional+no_connect") (tstamp b52dbab3-43dc-4b37-9863-d5d226866c8c))
(pad "A9" smd rect (at 2.575 -5.1) (size 0.25 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "5V") (pinfunction "VBUS") (pintype "passive") (tstamp d299cc90-9654-4988-bc41-ee0b8be6774e))
(pad "A12" smd rect (at 3.375 -5.1) (size 0.25 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp a9d4eaa3-58a5-472f-9f91-a27b8de65d6d))
(pad "B1" smd rect (at 3.1 -5.1) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp d30876d3-b75d-4b1e-ac43-66fefeda72f6))
(pad "B4" smd rect (at 2.3 -5.1) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "5V") (pinfunction "VBUS") (pintype "passive") (tstamp 644225dc-283c-4c44-ae9a-5d8a0f8d16ab))
(pad "B5" smd rect (at 1.75 -5.1) (size 0.25 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "/USB_R2") (pinfunction "CC2") (pintype "bidirectional") (tstamp ff062194-2b44-4c15-b792-ccc93a729dfc))
(pad "B6" smd rect (at 0.75 -5.1) (size 0.25 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 57 "/USB1_P") (pinfunction "D+") (pintype "bidirectional") (tstamp b685361a-2a13-45a0-998f-ffdc3dd3ebf1))
(pad "B7" smd rect (at -0.75 -5.1) (size 0.25 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 58 "/USB1_N") (pinfunction "D-") (pintype "bidirectional") (tstamp 59ba08e8-3e51-4971-b2f8-01c814af8276))
(pad "B8" smd rect (at -1.75 -5.1) (size 0.25 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "unconnected-(J1-PadB8)") (pinfunction "SBU2") (pintype "bidirectional+no_connect") (tstamp a57855bc-0746-4b64-bf9d-7319d77263b0))
(pad "B9" smd rect (at -2.3 -5.1) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "5V") (pinfunction "VBUS") (pintype "passive") (tstamp 47ef8d86-2b2b-4438-bb81-2b968ec64ec8))
(pad "B12" smd rect (at -3.1 -5.1) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp 20a82a15-3c9e-46b9-b2c9-a8fab2e69532))
(pad "S1" thru_hole roundrect (at 4.32 -4.18) (size 1 2.2) (drill oval 0.6 1.7) (layers *.Cu *.Mask) (roundrect_rratio 0.5)
(net 1 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp 21df8873-67c5-4b61-bc15-b2119c2e8efd))
(pad "S1" thru_hole roundrect (at 4.32 0) (size 1 1.6) (drill oval 0.6 1.2) (layers *.Cu *.Mask) (roundrect_rratio 0.5)
(net 1 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp 3ab12f0b-8f12-4f73-8069-88c3709a0fe5))
(pad "S1" thru_hole roundrect (at -4.32 -4.18) (size 1 2.2) (drill oval 0.6 1.7) (layers *.Cu *.Mask) (roundrect_rratio 0.5)
(net 1 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp 6dec34a8-0285-4ade-971d-d4b3cf07ca9c))
(pad "S1" thru_hole roundrect (at -4.32 0) (size 1 1.6) (drill oval 0.6 1.2) (layers *.Cu *.Mask) (roundrect_rratio 0.5)
(net 1 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp c06474f9-c609-4d2e-8b98-783578a59586))
)
(footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 2165c9a4-eb84-4cb6-a870-2fdc39d2511b)
(at 122.64575 49.7176 90)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(property "Sheetfile" "ESP32_robot.kicad_sch")
(property "Sheetname" "")
(path "/0346590f-54f8-4b47-ab40-be443754a935")
(attr smd)
(fp_text reference "R5" (at -2.8194 0.0254 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7f943214-c2d2-4c4c-a4c5-4de568dc1e7d)
)
(fp_text value "10k" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c655dbff-5d40-4c1f-94bb-7b3da381e5a3)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp d13ad1d9-baa8-49f6-ac16-b9a0e9497bd9)
)
(fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 7687d93a-d34e-4c11-9784-88f2575d5ccb))
(fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 904eec4b-b4b4-4b27-95a3-d96d5256d39f))
(fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 0bbcadcd-d853-47ff-9e74-80b76bf9d7d9))
(fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 1dddec04-52a9-4495-a50c-a84d2ad1f820))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 51c8f59c-6e89-4ba4-95f9-3b95d3658a6c))
(fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp c3364f5f-de4f-490d-a069-221b34e32ae7))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 227e8789-7d89-4599-b723-4d5425516574))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 2453e15c-afa0-40d4-988f-caa704d0e874))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 3feafe7d-e6d1-4aa5-9b84-d25da81082e8))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp f6bba217-ef94-45b1-82fb-168a3c87c526))
(pad "1" smd roundrect (at -0.9125 0 90) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "ENABLE") (pintype "passive") (tstamp 844a9b24-0d2d-4624-8e94-4b3a89d10a87))
(pad "2" smd roundrect (at 0.9125 0 90) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+3V3") (pintype "passive") (tstamp ef23dfef-e11a-45d1-a790-22dc464151a5))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x08_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp 35707dec-36d5-43d2-8721-83780692d257)
(at 82.8 56.05)
(descr "Through hole straight pin header, 1x08, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x08 2.54mm single row")
(property "Sheetfile" "ESP32_robot.kicad_sch")
(property "Sheetname" "")
(path "/a65a0ec5-b875-4912-98d6-d80bfa23e356")
(attr through_hole)
(fp_text reference "J4" (at 0 -2.33) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bbc6895f-68fd-489a-9103-e6f23cebc08f)
)
(fp_text value "Conn_01x08_Male" (at 0 20.11) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4c6ef715-668f-468c-880e-aa52d4e82d1e)
)
(fp_text user "${REFERENCE}" (at 0 8.89 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp de16eef3-0b67-4c92-86d9-13d8fc7289b6)
)
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 7e74a975-d727-460a-943a-589a0d59fb49))
(fp_line (start 1.33 1.27) (end 1.33 19.11) (layer "F.SilkS") (width 0.12) (tstamp 948adcaa-a65e-4d0a-a6d8-5546ad018879))
(fp_line (start -1.33 1.27) (end -1.33 19.11) (layer "F.SilkS") (width 0.12) (tstamp a2da3e6e-91f6-4256-933c-12e8785e7bca))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp b115caa2-4946-4555-b6bb-cfdf271898c9))
(fp_line (start -1.33 19.11) (end 1.33 19.11) (layer "F.SilkS") (width 0.12) (tstamp c309fa56-7be3-416d-bf56-354ddfad5a45))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp c38d5958-88dd-4300-8509-4a2540a0df1d))
(fp_line (start 1.8 19.55) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 5d1bfe1e-848d-4cdd-961e-e72bdbda276b))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 744f6693-b39e-444b-81dc-2dc963444ff5))
(fp_line (start -1.8 19.55) (end 1.8 19.55) (layer "F.CrtYd") (width 0.05) (tstamp b1064040-ecb1-481a-b498-1f655e39edf9))
(fp_line (start -1.8 -1.8) (end -1.8 19.55) (layer "F.CrtYd") (width 0.05) (tstamp f0be5aa9-485e-46d0-9332-676e80eb10b7))
(fp_line (start 1.27 -1.27) (end 1.27 19.05) (layer "F.Fab") (width 0.1) (tstamp 666b110b-64b3-4b1b-b648-8cefb6eb0bcb))
(fp_line (start 1.27 19.05) (end -1.27 19.05) (layer "F.Fab") (width 0.1) (tstamp 6a8a7660-67c7-44c5-8ef3-bb33be497d3b))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 90f3d599-bb98-41e3-85f2-638568426026))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp c20c6b29-8399-49c4-8d84-2b2fcb52d731))
(fp_line (start -1.27 19.05) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp c363df37-be76-44cd-846e-5e1010ee0d3e))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 22 "/Header_11") (pinfunction "Pin_1") (pintype "passive") (tstamp 6eddda49-826b-40e5-824c-265dbc4222ac))
(pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 23 "/Header_12") (pinfunction "Pin_2") (pintype "passive") (tstamp 4fe54948-6050-4268-a2a6-53f634bc2286))
(pad "3" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 25 "/Header_13") (pinfunction "Pin_3") (pintype "passive") (tstamp 1f4a9b01-9b55-47ae-b8c2-0821b1cb4216))
(pad "4" thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 27 "/Header_14") (pinfunction "Pin_4") (pintype "passive") (tstamp 1af9ab9c-4d68-48f2-bf77-f990e9d9e294))
(pad "5" thru_hole oval (at 0 10.16) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 29 "/Header_15") (pinfunction "Pin_5") (pintype "passive") (tstamp a4e1d365-9e7e-40d3-b532-a8a2c2418e17))
(pad "6" thru_hole oval (at 0 12.7) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 31 "/Header_16") (pinfunction "Pin_6") (pintype "passive") (tstamp f8778dac-4b55-4626-a2ac-6006da10946a))
(pad "7" thru_hole oval (at 0 15.24) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 33 "/Header_17") (pinfunction "Pin_7") (pintype "passive") (tstamp 6e0d9015-8325-4285-ad89-35206d2e2fce))
(pad "8" thru_hole oval (at 0 17.78) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 36 "/Header_18") (pinfunction "Pin_8") (pintype "passive") (tstamp 1ee3e19d-c90e-4cec-a71f-878d4ec8f0cc))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x08_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "footprints:ESP32-S2-MINI-1-N4" (layer "F.Cu")
(tedit 624F2B71) (tstamp 3993c707-5291-41b6-83c0-d1c09cb3833a)
(at 106.68 50.8)
(property "Sheetfile" "ESP32_robot.kicad_sch")
(property "Sheetname" "")
(path "/a95f3371-e6a4-4c52-ad68-758de807591b")
(attr through_hole)
(fp_text reference "U1" (at 0 2.288515) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8e12e1d4-019f-4039-b815-413c77257a2c)
)
(fp_text value "ESP32-S2-MINI-1-N4" (at 0 2.288515) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp edf15974-d674-4ac0-adb9-5a312c34cdf8)
)
(fp_text user "*" (at 0 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d56e3538-116f-4198-ac01-205d8e8543f5)
)
(fp_text user "Copyright 2021 Accelerated Designs. All rights reserved." (at 0 0) (layer "Cmts.User")
(effects (font (size 0.127 0.127) (thickness 0.002)))
(tstamp ebab1235-9ca0-40c8-93dc-5ee3f6f863d8)
)
(fp_text user "*" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e36d9115-4cdd-43ed-8229-2266d3992207)
)
(fp_circle (center -9.6012 -3.661486) (end -9.2202 -3.661486) (layer "B.SilkS") (width 0.12) (fill none) (tstamp 91a0db24-c386-4b3b-8d4f-c85e559003bd))
(fp_line (start 7.8232 10.1219) (end 7.8232 -10.1219) (layer "F.SilkS") (width 0.12) (tstamp 1f8bf407-d66c-4753-9b2a-5b811445ba84))
(fp_line (start 7.8232 -10.1219) (end -7.8232 -10.1219) (layer "F.SilkS") (width 0.12) (tstamp 6724043f-53c5-497a-9319-83aa6a5f578d))
(fp_line (start -7.8232 10.1219) (end 7.8232 10.1219) (layer "F.SilkS") (width 0.12) (tstamp 67294450-fcad-4860-9dc7-efb9f66a9cb6))
(fp_line (start -7.8232 -10.1219) (end -7.8232 10.1219) (layer "F.SilkS") (width 0.12) (tstamp 6c96184c-0fee-4a95-ad62-9b06f70e7e69))
(fp_circle (center -9.6012 -3.661486) (end -9.2202 -3.661486) (layer "F.SilkS") (width 0.12) (fill none) (tstamp cc98a245-d2de-4205-a78e-31181f79aef6))
(fp_line (start -5.1 -4.711485) (end -5.1 -18.2499) (layer "Cmts.User") (width 0.1) (tstamp 05eb73f9-92d7-4459-8ee0-752aba71550b))
(fp_line (start -7.6962 -9.9949) (end -18.4912 -9.9949) (layer "Cmts.User") (width 0.1) (tstamp 0c59818d-737a-4085-93ac-34674a7e178d))
(fp_line (start -9.9822 -4.457485) (end -9.7282 -4.457485) (layer "Cmts.User") (width 0.1) (tstamp 111c47b7-501f-407b-b8a8-c0dffda62b41))
(fp_line (start -9.9822 2.034515) (end -9.7282 2.034515) (layer "Cmts.User") (width 0.1) (tstamp 12344596-747a-4a32-8f07-5e7d5ea93c48))
(fp_line (start 0 2.288515) (end -18.4912 2.288515) (layer "Cmts.User") (width 0.1) (tstamp 1249e4d5-06ce-46fd-bdbf-531f4c48bfa7))
(fp_line (start -9.8552 -4.711485) (end -9.7282 -4.457485) (layer "Cmts.User") (width 0.1) (tstamp 129b12ca-518e-4b79-b872-f693ba02ab38))
(fp_line (start 0.254 -15.2019) (end 0.254 -14.9479) (layer "Cmts.User") (width 0.1) (tstamp 1323ffeb-dacf-49da-ac18-ef38aa61d3c5))
(fp_line (start 7.6962 -9.9949) (end 7.6962 -20.7899) (layer "Cmts.User") (width 0.1) (tstamp 15feb7c3-a4bd-4bca-a8c6-4324e3683fe5))
(fp_line (start -6.204 -17.9959) (end -6.204 -17.7419) (layer "Cmts.User") (width 0.1) (tstamp 178a013e-67a7-4c2f-bdc9-27b713ee132a))
(fp_line (start -13.1572 9.034514) (end -12.9032 9.034514) (layer "Cmts.User") (width 0.1) (tstamp 19c6edd6-ed4d-491a-b696-a2cd39c21d21))
(fp_line (start -9.8552 2.288515) (end -9.9822 2.034515) (layer "Cmts.User") (width 0.1) (tstamp 1c9e6fe5-4a93-440f-819c-6eee9f3a8dfa))
(fp_line (start -18.1102 -9.9949) (end -17.9832 -9.7409) (layer "Cmts.User") (width 0.1) (tstamp 1f33da0e-09b9-4384-959f-c1a8c20d3505))
(fp_line (start -5.95 -4.711485) (end -5.95 -18.2499) (layer "Cmts.User") (width 0.1) (tstamp 2209ee81-6409-4c18-b0f0-f2ebfef5bc4a))
(fp_line (start 10.2362 -2.811486) (end 10.2362 -1.541486) (layer "Cmts.User") (width 0.1) (tstamp 24312ee5-d995-461b-a5de-acf3ff1b0fc5))
(fp_line (start 0 2.288515) (end -13.4112 2.288515) (layer "Cmts.User") (width 0.1) (tstamp 2c233318-77c4-4780-9f23-eae3f0aab465))
(fp_line (start 0 -15.0749) (end -0.254 -14.9479) (layer "Cmts.User") (width 0.1) (tstamp 2faa68a9-747b-4b33-b22d-6a3531723f79))
(fp_line (start 7.6962 -20.4089) (end 7.4422 -20.2819) (layer "Cmts.User") (width 0.1) (tstamp 312e073c-2c4a-46fe-b344-72d505005f7f))
(fp_line (start -6.999999 -12.1539) (end 7.000001 -12.1539) (layer "Cmts.User") (width 0.1) (tstamp 34f0d60c-f5ae-4f08-8552-082d425e69a9))
(fp_line (start -18.1102 2.288515) (end -17.9832 2.034515) (layer "Cmts.User") (width 0.1) (tstamp 36137013-c2d8-4bf4-8608-b274c61c97fe))
(fp_line (start -18.1102 -9.9949) (end -18.1102 2.288515) (layer "Cmts.User") (width 0.1) (tstamp 37a902ef-6d99-4a10-a2d1-f46d88a011c7))
(fp_line (start -6.204 -15.4559) (end -6.204 -15.2019) (layer "Cmts.User") (width 0.1) (tstamp 37c646e1-4998-466f-a159-3feb2e172f96))
(fp_line (start -18.1102 -9.9949) (end -18.2372 -9.7409) (layer "Cmts.User") (width 0.1) (tstamp 38c73bac-cd6c-4dea-a004-ba7fb9ce3871))
(fp_line (start -13.0302 9.288514) (end -13.1572 9.034514) (layer "Cmts.User") (width 0.1) (tstamp 3db62080-78ae-4e18-bbee-7bb2b402709e))
(fp_line (start 7.4422 -20.5359) (end 7.4422 -20.2819) (layer "Cmts.User") (width 0.1) (tstamp 3e2cd89a-7c5b-4850-863d-a11349fdca34))
(fp_line (start -9.8552 2.288515) (end -9.7282 2.034515) (layer "Cmts.User") (width 0.1) (tstamp 412513c6-a6c0-4d8c-afdd-e9ffedb7dda0))
(fp_line (start -5.1 -17.8689) (end -3.83 -17.8689) (layer "Cmts.User") (width 0.1) (tstamp 41632447-3172-454a-a1d9-fd72a67c0786))
(fp_line (start -6.999999 -12.1539) (end -6.745999 -12.0269) (layer "Cmts.User") (width 0.1) (tstamp 449d690b-beb3-44ab-975b-5602f9412dc3))
(fp_line (start -4.846 -17.9959) (end -4.846 -17.7419) (layer "Cmts.User") (width 0.1) (tstamp 4561bd0c-a596-4b2a-b43a-98762b6b3846))
(fp_line (start -18.1102 2.288515) (end -18.2372 2.034515) (layer "Cmts.User") (width 0.1) (tstamp 459c65c8-1d43-4317-a78d-bf0f00d9cd24))
(fp_line (start 0 -15.0749) (end 1.27 -15.0749) (layer "Cmts.User") (width 0.1) (tstamp 4b28f045-1afd-4fe5-8ea1-a0d8301b5064))
(fp_line (start 0 -15.0749) (end -0.254 -15.2019) (layer "Cmts.User") (width 0.1) (tstamp 4edbb46c-9951-419e-b069-61ca2f26620e))
(fp_line (start -16.8402 -9.9949) (end -16.8402 9.9949) (layer "Cmts.User") (width 0.1) (tstamp 50cd47bb-7e89-4831-a5b8-6b5606e92b72))
(fp_line (start 0 2.288515) (end -10.2362 2.288515) (layer "Cmts.User") (width 0.1) (tstamp 52507082-0012-4122-b7d8-42281cf602b4))
(fp_line (start -6.745999 -12.2809) (end -6.745999 -12.0269) (layer "Cmts.User") (width 0.1) (tstamp 60db8887-7a6d-4846-bf40-f71d16be63f4))
(fp_line (start -6.999999 -12.1539) (end -6.745999 -12.2809) (layer "Cmts.User") (width 0.1) (tstamp 6454fd59-35b0-41f2-a983-54779fb796a9))
(fp_line (start -16.8402 -9.9949) (end -16.7132 -9.7409) (layer "Cmts.User") (width 0.1) (tstamp 67673605-f48d-4db7-b93d-1e3735fe4757))
(fp_line (start 0 2.288515) (end 0 -15.4559) (layer "Cmts.User") (width 0.1) (tstamp 68054d92-c5d2-438c-86b6-5092c1be26ab))
(fp_line (start -7.6962 -20.4089) (end -7.4422 -20.2819) (layer "Cmts.User") (width 0.1) (tstamp 6a329fcf-1e4c-49b6-860e-0b96de442f04))
(fp_line (start 7.000001 -3.661486) (end 7.000001 -12.5349) (layer "Cmts.User") (width 0.1) (tstamp 6a707ccf-bc71-461e-8cf6-88222fa0d724))
(fp_line (start -6.999999 -3.661486) (end -6.999999 -12.5349) (layer "Cmts.User") (width 0.1) (tstamp 6baad75d-8a21-451a-a735-b4a674e8fb8b))
(fp_line (start 10.2362 -3.661486) (end 10.2362 -4.931486) (layer "Cmts.User") (width 0.1) (tstamp 6d81cac0-18fa-45e6-ae29-fa023c80c7d2))
(fp_line (start 10.1092 -2.557486) (end 10.3632 -2.557486) (layer "Cmts.User") (width 0.1) (tstamp 6e2e3294-419d-4d21-a27d-76d21c02da3c))
(fp_line (start -5.1 9.288514) (end -5.1 -15.7099) (layer "Cmts.User") (width 0.1) (tstamp 6f6981f4-9234-4328-b8b5-2ac5d60dba9e))
(fp_line (start -13.0302 2.288515) (end -13.1572 2.542515) (layer "Cmts.User") (width 0.1) (tstamp 75f2cccb-ccbd-4463-a721-6fe269975ac3))
(fp_line (start -5.95 -17.8689) (end -6.204 -17.9959) (layer "Cmts.User") (width 0.1) (tstamp 78fc72f2-0fcd-4d74-82da-aaf6cb72dac0))
(fp_line (start -13.0302 9.288514) (end -12.9032 9.034514) (layer "Cmts.User") (width 0.1) (tstamp 7e8e384c-a6d9-488f-ba90-56d68751f310))
(fp_line (start -5.95 9.288514) (end -5.95 -15.7099) (layer "Cmts.User") (width 0.1) (tstamp 7eea6e00-8feb-4e10-b82e-7db53eec4365))
(fp_line (start -5.95 -15.3289) (end -6.204 -15.2019) (layer "Cmts.User") (width 0.1) (tstamp 8059dfe3-37a1-4d97-9406-85c383218db4))
(fp_line (start -5.95 -17.8689) (end -7.22 -17.8689) (layer "Cmts.User") (width 0.1) (tstamp 8552e7b3-904c-4423-8dd6-065ecf649753))
(fp_line (start -7.6962 -20.4089) (end 7.6962 -20.4089) (layer "Cmts.User") (width 0.1) (tstamp 881fd095-fb1c-4364-b913-a6e367f3780a))
(fp_line (start -18.2372 -9.7409) (end -17.9832 -9.7409) (layer "Cmts.User") (width 0.1) (tstamp 8a44f42c-b78f-41ca-bc19-ba7ea73c6b34))
(fp_line (start -5.1 -17.8689) (end -4.846 -17.9959) (layer "Cmts.User") (width 0.1) (tstamp 8b4628c1-8ce1-4f24-80d9-6bca1596a329))
(fp_line (start 7.6962 -20.4089) (end 7.4422 -20.5359) (layer "Cmts.User") (width 0.1) (tstamp 902a8fe3-dcec-4b8b-a0c0-506f07143c40))
(fp_line (start -7.6962 -20.4089) (end -7.4422 -20.5359) (layer "Cmts.User") (width 0.1) (tstamp 934b9715-7fac-4120-9e5e-16fca2bdd4d3))
(fp_line (start 0.425 -4.711485) (end -10.2362 -4.711485) (layer "Cmts.User") (width 0.1) (tstamp 9420c366-5336-4110-af7b-30f26aa6e1ac))
(fp_line (start -16.8402 9.9949) (end -16.9672 9.7409) (layer "Cmts.User") (width 0.1) (tstamp 99e3a073-10c6-4c41-9ce3-c8bfb59ff2df))
(fp_line (start -5.1 -15.3289) (end -4.846 -15.4559) (layer "Cmts.User") (width 0.1) (tstamp 9b0f53c2-8eaf-409e-abe0-d68cf5e41f8e))
(fp_line (start 0 2.288515) (end 0 -15.4559) (layer "Cmts.User") (width 0.1) (tstamp a55dbfef-e66d-4e1f-8d75-4b3323710d43))
(fp_line (start -16.9672 -9.7409) (end -16.7132 -9.7409) (layer "Cmts.User") (width 0.1) (tstamp afc31c6b-b9e8-4da0-9f26-87bdd393fc88))
(fp_line (start -6.999999 -2.811486) (end 10.6172 -2.811486) (layer "Cmts.User") (width 0.1) (tstamp afdef2b0-1c22-4284-b5b6-68dfd26f0d26))
(fp_line (start -5.1 -15.3289) (end -3.83 -15.3289) (layer "Cmts.User") (width 0.1) (tstamp b1d1be80-3d8d-45bd-93c5-a833a54d5549))
(fp_line (start 6.746001 -12.2809) (end 6.746001 -12.0269) (layer "Cmts.User") (width 0.1) (tstamp b347e90a-c999-4b14-a9d3-2b2d4d1014e6))
(fp_line (start -7.4422 -20.5359) (end -7.4422 -20.2819) (layer "Cmts.User") (width 0.1) (tstamp b3ba0a07-8155-4212-846c-736d741cc349))
(fp_line (start -13.0302 2.288515) (end -12.9032 2.542515) (layer "Cmts.User") (width 0.1) (tstamp b5b85ce9-0547-4c90-b27e-920a87a3368e))
(fp_line (start -5.95 -15.3289) (end -6.204 -15.4559) (layer "Cmts.User") (width 0.1) (tstamp b8557b74-d5e3-49cb-8b0d-3a7253d1d2fa))
(fp_line (start 0 -15.0749) (end 0.254 -15.2019) (layer "Cmts.User") (width 0.1) (tstamp bd76d942-4ed2-4cab-8982-6ee0dc04290f))
(fp_line (start -4.846 -15.4559) (end -4.846 -15.2019) (layer "Cmts.User") (width 0.1) (tstamp c56c68ad-af1e-4217-be87-5d03874b82af))
(fp_line (start 0.425 9.288514) (end -13.4112 9.288514) (layer "Cmts.User") (width 0.1) (tstamp c5e2ee26-9b9c-4c1a-98c6-4afb2105a8ac))
(fp_line (start 10.1092 -3.915486) (end 10.3632 -3.915486) (layer "Cmts.User") (width 0.1) (tstamp c7c4c3be-4aff-4093-b3a2-17237fef2cbc))
(fp_line (start -9.8552 -4.711485) (end -9.9822 -4.457485) (layer "Cmts.User") (width 0.1) (tstamp c8330bd0-2804-44a9-95aa-558907619b55))
(fp_line (start -16.8402 9.9949) (end -16.7132 9.7409) (layer "Cmts.User") (width 0.1) (tstamp c8905471-f39e-4cac-90f8-2265c893933d))
(fp_line (start 10.2362 -3.661486) (end 10.1092 -3.915486) (layer "Cmts.User") (width 0.1) (tstamp d10d869b-34b3-4d98-a49d-9815455ebcfb))
(fp_line (start -16.8402 -9.9949) (end -16.9672 -9.7409) (layer "Cmts.User") (width 0.1) (tstamp d129f7e2-fe7f-4814-a048-656941fde7b5))
(fp_line (start -16.9672 9.7409) (end -16.7132 9.7409) (layer "Cmts.User") (width 0.1) (tstamp d29144bf-f1f8-40f5-b4f0-ce4a22a5b6b6))
(fp_line (start 10.2362 -3.661486) (end 10.3632 -3.915486) (layer "Cmts.User") (width 0.1) (tstamp d3454eb2-4492-47dc-af9e-911dd5a58181))
(fp_line (start -7.6962 9.9949) (end -17.2212 9.9949) (layer "Cmts.User") (width 0.1) (tstamp d4e3c877-c56b-4fca-853a-3bb19db334ac))
(fp_line (start 7.000001 -12.1539) (end 6.746001 -12.2809) (layer "Cmts.User") (width 0.1) (tstamp d4f36221-b7fd-406c-bb87-afe9215f23f1))
(fp_line (start -9.8552 -4.711485) (end -9.8552 2.288515) (layer "Cmts.User") (width 0.1) (tstamp d7a88b4a-fb38-440f-aa73-458c8b698c48))
(fp_line (start -5.1 -17.8689) (end -4.846 -17.7419) (layer "Cmts.User") (width 0.1) (tstamp dfbb3417-f0f2-4f83-a95d-9608255bb7cc))
(fp_line (start 7.000001 -12.1539) (end 6.746001 -12.0269) (layer "Cmts.User") (width 0.1) (tstamp e0e5f970-9c65-4b75-9a00-b4aba86dce1c))
(fp_line (start -0.254 -15.2019) (end -0.254 -14.9479) (layer "Cmts.User") (width 0.1) (tstamp e1985bfa-de44-4b8b-b037-ce9668fa90ea))
(fp_line (start 10.2362 -2.811486) (end 10.1092 -2.557486) (layer "Cmts.User") (width 0.1) (tstamp e2a1457c-0ef5-4916-8b43-528ae62d9f0e))
(fp_line (start -13.1572 2.542515) (end -12.9032 2.542515) (layer "Cmts.User") (width 0.1) (tstamp e2f51f0d-f6f4-41cc-8277-77f94386e1b6))
(fp_line (start 0 -15.0749) (end -1.27 -15.0749) (layer "Cmts.User") (width 0.1) (tstamp e577aafb-d499-4dcf-8d65-64541954fb59))
(fp_line (start -7.6962 -9.9949) (end -7.6962 -20.7899) (layer "Cmts.User") (width 0.1) (tstamp e5cd1eff-320b-485f-8316-d60772364ecc))
(fp_line (start 10.2362 -2.811486) (end 10.3632 -2.557486) (layer "Cmts.User") (width 0.1) (tstamp e9cdee05-9135-4200-8674-f2f5cc0e9967))
(fp_line (start -5.95 -17.8689) (end -6.204 -17.7419) (layer "Cmts.User") (width 0.1) (tstamp f12b5e34-bd07-4a72-ac72-a072b155027f))
(fp_line (start -7.6962 -9.9949) (end -17.2212 -9.9949) (layer "Cmts.User") (width 0.1) (tstamp f14ce3d8-8371-41cd-9d15-2412f94ffff1))
(fp_line (start -18.2372 2.034515) (end -17.9832 2.034515) (layer "Cmts.User") (width 0.1) (tstamp f336827e-0223-4156-964e-10cfa331dd62))
(fp_line (start -5.1 -15.3289) (end -4.846 -15.2019) (layer "Cmts.User") (width 0.1) (tstamp f6746a7f-fa30-42db-8da7-abe2437e6137))
(fp_line (start 0 -15.0749) (end 0.254 -14.9479) (layer "Cmts.User") (width 0.1) (tstamp f7656397-56d2-4fa1-bc80-2351b91c30ca))
(fp_line (start -5.95 -15.3289) (end -7.22 -15.3289) (layer "Cmts.User") (width 0.1) (tstamp f7bdf6ae-d9d9-4216-8a03-1729a79b4e98))
(fp_line (start -6.999999 -3.661486) (end 10.6172 -3.661486) (layer "Cmts.User") (width 0.1) (tstamp faad48a1-7c49-428f-a85d-0071a7f7041b))
(fp_line (start -13.0302 2.288515) (end -13.0302 9.288514) (layer "Cmts.User") (width 0.1) (tstamp faf30a5d-e419-44ee-aa82-87d5bb9fb33f))
(fp_line (start -7.9502 10.2489) (end 7.9502 10.2489) (layer "F.CrtYd") (width 0.05) (tstamp 43571594-bef3-42d1-bd09-8e53234d01aa))
(fp_line (start -7.9502 -10.2489) (end -7.9502 10.2489) (layer "F.CrtYd") (width 0.05) (tstamp 85c1bb52-0943-4f6f-875b-f5fc4db0cdd1))
(fp_line (start 7.9502 10.2489) (end 7.9502 -10.2489) (layer "F.CrtYd") (width 0.05) (tstamp 8a85957e-2920-438d-acfd-bd7134cdf783))
(fp_line (start 7.9502 -10.2489) (end -7.9502 -10.2489) (layer "F.CrtYd") (width 0.05) (tstamp fc107b49-f240-4285-80a8-fe100d46537e))
(fp_line (start 7.6962 9.9949) (end 7.6962 -9.9949) (layer "F.Fab") (width 0.1) (tstamp 32ca2f9d-0731-4af9-ae65-a84e12f9044f))
(fp_line (start -7.6962 -9.9949) (end -7.6962 9.9949) (layer "F.Fab") (width 0.1) (tstamp 651282d9-008c-4ecf-80ba-baee695842d1))
(fp_line (start -7.6962 9.9949) (end 7.6962 9.9949) (layer "F.Fab") (width 0.1) (tstamp 84f9a265-15ae-4285-9064-97dffdd928d6))
(fp_line (start 7.6962 -9.9949) (end -7.6962 -9.9949) (layer "F.Fab") (width 0.1) (tstamp ac68fd27-b66b-48ed-b28d-d9d509bca784))
(fp_circle (center -6.999999 -5.566487) (end -6.618999 -5.566487) (layer "F.Fab") (width 0.1) (fill none) (tstamp 3fce7b98-5a02-44a7-995b-d223533a80c5))
(pad "1" smd rect (at -6.999999 -3.661486) (size 0.8128 0.4064) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp a61e2975-d1c4-4672-946c-8376f06a39cf))
(pad "2" smd rect (at -6.999999 -2.811485) (size 0.8128 0.4064) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 3d997f89-d41a-423f-acaf-212bcbb6d6fe))
(pad "3" smd rect (at -6.999999 -1.961485) (size 0.8128 0.4064) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "+3V3") (pinfunction "3V3") (pintype "unspecified") (tstamp 66a5ae58-c587-46fd-a7d9-5f88ceefbdd3))
(pad "4" smd rect (at -6.999999 -1.111486) (size 0.8128 0.4064) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "BOOT") (pinfunction "IO0") (pintype "bidirectional") (tstamp 51835f45-ebd3-40da-95bf-93072460e981))
(pad "5" smd rect (at -6.999999 -0.261485) (size 0.8128 0.4064) (layers "F.Cu" "F.Paste" "F.Mask")
(net 22 "/Header_11") (pinfunction "IO1") (pintype "bidirectional") (tstamp 290008c6-2faa-4234-a884-09ec53a4c7d8))
(pad "6" smd rect (at -6.999999 0.588515) (size 0.8128 0.4064) (layers "F.Cu" "F.Paste" "F.Mask")
(net 23 "/Header_12") (pinfunction "IO2") (pintype "bidirectional") (tstamp 49414c2a-ee95-47bb-8ff1-c06f25b6c5b7))
(pad "7" smd rect (at -6.999999 1.438514) (size 0.8128 0.4064) (layers "F.Cu" "F.Paste" "F.Mask")
(net 25 "/Header_13") (pinfunction "IO3") (pintype "bidirectional") (tstamp 50f8bd58-ba52-4b09-8df7-f2bab57825fe))
(pad "8" smd rect (at -6.999999 2.288515) (size 0.8128 0.4064) (layers "F.Cu" "F.Paste" "F.Mask")
(net 27 "/Header_14") (pinfunction "IO4") (pintype "bidirectional") (tstamp 0cc2a8d9-32eb-4ce4-9105-b7a479246995))
(pad "9" smd rect (at -6.999999 3.138515) (size 0.8128 0.4064) (layers "F.Cu" "F.Paste" "F.Mask")
(net 29 "/Header_15") (pinfunction "IO5") (pintype "bidirectional") (tstamp bb3dce95-e1e6-4080-9680-26f6c1c0c618))
(pad "10" smd rect (at -6.999999 3.988514) (size 0.8128 0.4064) (layers "F.Cu" "F.Paste" "F.Mask")
(net 31 "/Header_16") (pinfunction "IO6") (pintype "bidirectional") (tstamp 8e743d46-957c-4baf-a9e7-8c45f1905bd4))
(pad "11" smd rect (at -6.999999 4.838515) (size 0.8128 0.4064) (layers "F.Cu" "F.Paste" "F.Mask")
(net 33 "/Header_17") (pinfunction "IO7") (pintype "bidirectional") (tstamp df75c386-3877-4b84-8d39-8cba635c1f49))
(pad "12" smd rect (at -6.999999 5.688515) (size 0.8128 0.4064) (layers "F.Cu" "F.Paste" "F.Mask")
(net 35 "/SDA") (pinfunction "IO8") (pintype "bidirectional") (tstamp 4a0a10ea-d547-408a-9637-594f869ea574))
(pad "13" smd rect (at -6.999999 6.538514) (size 0.8128 0.4064) (layers "F.Cu" "F.Paste" "F.Mask")
(net 37 "SCL") (pinfunction "IO9") (pintype "bidirectional") (tstamp c69de3a4-ee95-40d8-9572-14c87215ff4a))
(pad "14" smd rect (at -6.999999 7.388515) (size 0.8128 0.4064) (layers "F.Cu" "F.Paste" "F.Mask")
(net 36 "/Header_18") (pinfunction "IO10") (pintype "bidirectional") (tstamp cdc14084-106f-45c7-b3c5-da17d0525b9b))
(pad "15" smd rect (at -6.999999 8.238515) (size 0.8128 0.4064) (layers "F.Cu" "F.Paste" "F.Mask")
(net 47 "/RGB_SDI") (pinfunction "IO11") (pintype "bidirectional") (tstamp f4cf465a-7179-4807-aeef-34e74c5a51f9))
(pad "16" smd rect (at -5.950001 9.288513) (size 0.4064 0.8128) (layers "F.Cu" "F.Paste" "F.Mask")
(net 48 "/RGB_CKI") (pinfunction "IO12") (pintype "bidirectional") (tstamp c44acbeb-08ac-4f17-99bb-0248630cf3f3))
(pad "17" smd rect (at -5.1 9.288513) (size 0.4064 0.8128) (layers "F.Cu" "F.Paste" "F.Mask")
(net 38 "/SENSOR") (pinfunction "IO13") (pintype "bidirectional") (tstamp 3acc3c7e-1c44-45dd-9b09-34394d36426a))
(pad "18" smd rect (at -4.249999 9.288513) (size 0.4064 0.8128) (layers "F.Cu" "F.Paste" "F.Mask")
(net 39 "/Header_9") (pinfunction "IO14") (pintype "bidirectional") (tstamp 04ecf2b0-b358-4647-b7d4-6b05b6aad685))
(pad "19" smd rect (at -3.400001 9.288513) (size 0.4064 0.8128) (layers "F.Cu" "F.Paste" "F.Mask")
(net 40 "/Header_10") (pinfunction "IO15") (pintype "bidirectional") (tstamp 2c68e754-48b7-4e80-a996-f241c915bf5e))
(pad "20" smd rect (at -2.55 9.288513) (size 0.4064 0.8128) (layers "F.Cu" "F.Paste" "F.Mask")
(net 41 "unconnected-(U1-Pad20)") (pinfunction "IO16") (pintype "bidirectional+no_connect") (tstamp ba5630af-c180-47af-8fca-20733915d2f4))
(pad "21" smd rect (at -1.699999 9.288513) (size 0.4064 0.8128) (layers "F.Cu" "F.Paste" "F.Mask")
(net 42 "unconnected-(U1-Pad21)") (pinfunction "IO17") (pintype "bidirectional+no_connect") (tstamp 2f781c34-7113-44e7-9a4b-d57c8c73515b))
(pad "22" smd rect (at -0.850001 9.288513) (size 0.4064 0.8128) (layers "F.Cu" "F.Paste" "F.Mask")
(net 45 "unconnected-(U1-Pad22)") (pinfunction "IO18") (pintype "bidirectional+no_connect") (tstamp 03647e05-0399-40ab-9882-3d78d809237b))
(pad "23" smd rect (at 0 9.288513) (size 0.4064 0.8128) (layers "F.Cu" "F.Paste" "F.Mask")
(net 18 "USB_N") (pinfunction "IO19") (pintype "bidirectional") (tstamp 74d208bb-5d90-49e4-ae1a-ab22bcd94484))
(pad "24" smd rect (at 0.850001 9.288513) (size 0.4064 0.8128) (layers "F.Cu" "F.Paste" "F.Mask")
(net 19 "USB_P") (pinfunction "IO20") (pintype "bidirectional") (tstamp 0e3b1324-1b96-4a73-9698-3b1d05bc0e37))
(pad "25" smd rect (at 1.699999 9.288513) (size 0.4064 0.8128) (layers "F.Cu" "F.Paste" "F.Mask")
(net 10 "/Header_1") (pinfunction "IO21") (pintype "bidirectional") (tstamp 9ac6cdc7-fa9a-4539-b23b-26b50d8adbd8))
(pad "26" smd rect (at 2.55 9.288513) (size 0.4064 0.8128) (layers "F.Cu" "F.Paste" "F.Mask")
(net 11 "/Header_2") (pinfunction "IO26") (pintype "bidirectional") (tstamp c267baac-aaed-4af1-8113-7e2e4cdc9efd))
(pad "27" smd rect (at 3.400001 9.288513) (size 0.4064 0.8128) (layers "F.Cu" "F.Paste" "F.Mask")
(net 46 "unconnected-(U1-Pad27)") (pinfunction "NC") (pintype "no_connect") (tstamp ef0707b1-9ca5-4310-bea2-7e07168f7a6f))
(pad "28" smd rect (at 4.249999 9.288513) (size 0.4064 0.8128) (layers "F.Cu" "F.Paste" "F.Mask")
(net 12 "/Header_3") (pinfunction "IO33") (pintype "bidirectional") (tstamp ccb3f54c-8abe-4c2b-a7b1-5f5e0daaf93e))
(pad "29" smd rect (at 5.1 9.288513) (size 0.4064 0.8128) (layers "F.Cu" "F.Paste" "F.Mask")
(net 13 "/Header_4") (pinfunction "IO34") (pintype "bidirectional") (tstamp c31d93fe-1d3d-42c2-a94e-f1a43a0d461d))
(pad "30" smd rect (at 5.950001 9.288513) (size 0.4064 0.8128) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp ed763179-d71f-4e49-ad9f-c04e590e0e1f))
(pad "31" smd rect (at 6.999999 8.238515) (size 0.8128 0.4064) (layers "F.Cu" "F.Paste" "F.Mask")
(net 14 "/Header_5") (pinfunction "IO35") (pintype "bidirectional") (tstamp 3a84d269-1a79-4cf6-b4a7-8b001bdf5685))
(pad "32" smd rect (at 6.999999 7.388515) (size 0.8128 0.4064) (layers "F.Cu" "F.Paste" "F.Mask")
(net 15 "/Header_6") (pinfunction "IO36") (pintype "bidirectional") (tstamp c9b585b6-5266-4166-962d-d27618e4267f))
(pad "33" smd rect (at 6.999999 6.538514) (size 0.8128 0.4064) (layers "F.Cu" "F.Paste" "F.Mask")
(net 16 "/Header_7") (pinfunction "IO37") (pintype "bidirectional") (tstamp e474d487-220d-413f-81aa-509f248ddd17))
(pad "34" smd rect (at 6.999999 5.688515) (size 0.8128 0.4064) (layers "F.Cu" "F.Paste" "F.Mask")
(net 17 "/Header_8") (pinfunction "IO38") (pintype "bidirectional") (tstamp 59521fc4-26b2-427c-b3f5-f5e5f34827ba))
(pad "35" smd rect (at 6.999999 4.838515) (size 0.8128 0.4064) (layers "F.Cu" "F.Paste" "F.Mask")
(net 34 "unconnected-(U1-Pad35)") (pinfunction "IO39") (pintype "bidirectional+no_connect") (tstamp c101c3c8-a3bf-4c28-8643-085f22243788))
(pad "36" smd rect (at 6.999999 3.988514) (size 0.8128 0.4064) (layers "F.Cu" "F.Paste" "F.Mask")
(net 32 "unconnected-(U1-Pad36)") (pinfunction "IO40") (pintype "bidirectional+no_connect") (tstamp 6441c2ed-032f-4cc3-8f80-e302f7910b11))
(pad "37" smd rect (at 6.999999 3.138515) (size 0.8128 0.4064) (layers "F.Cu" "F.Paste" "F.Mask")
(net 30 "unconnected-(U1-Pad37)") (pinfunction "IO41") (pintype "bidirectional+no_connect") (tstamp 1e07c6a5-08f6-4439-97c6-ab1ecde19fb7))
(pad "38" smd rect (at 6.999999 2.288515) (size 0.8128 0.4064) (layers "F.Cu" "F.Paste" "F.Mask")
(net 28 "unconnected-(U1-Pad38)") (pinfunction "IO42") (pintype "bidirectional+no_connect") (tstamp 35c210e0-5be9-4458-aa8f-b7d48a7a7071))
(pad "39" smd rect (at 6.999999 1.438514) (size 0.8128 0.4064) (layers "F.Cu" "F.Paste" "F.Mask")
(net 26 "unconnected-(U1-Pad39)") (pinfunction "TXD0") (pintype "bidirectional+no_connect") (tstamp d98ce761-5209-43e5-86aa-2d84bc3c2328))
(pad "40" smd rect (at 6.999999 0.588515) (size 0.8128 0.4064) (layers "F.Cu" "F.Paste" "F.Mask")
(net 24 "unconnected-(U1-Pad40)") (pinfunction "RXD0") (pintype "bidirectional+no_connect") (tstamp 3d50ca72-8dc9-4bc5-9488-6f6797e04670))
(pad "41" smd rect (at 6.999999 -0.261485) (size 0.8128 0.4064) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "ENABLE") (pinfunction "IO45") (pintype "bidirectional") (tstamp be663fef-5f01-4814-b0df-df2a61898f32))
(pad "42" smd rect (at 6.999999 -1.111486) (size 0.8128 0.4064) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 1c0ca0ca-0433-4c52-a615-f60c98902391))
(pad "43" smd rect (at 6.999999 -1.961485) (size 0.8128 0.4064) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 318c6f47-4cca-4d46-960c-08043db69ea2))
(pad "44" smd rect (at 6.999999 -2.811485) (size 0.8128 0.4064) (layers "F.Cu" "F.Paste" "F.Mask")
(net 21 "unconnected-(U1-Pad44)") (pinfunction "IO46") (pintype "bidirectional+no_connect") (tstamp 910d1cc4-15d6-43f2-8517-51b660023290))
(pad "45" smd rect (at 6.999999 -3.661486) (size 0.8128 0.4064) (layers "F.Cu" "F.Paste" "F.Mask")
(net 20 "unconnected-(U1-Pad45)") (pinfunction "EN") (pintype "unspecified+no_connect") (tstamp 18b644ce-891f-4006-af81-95ba4da7caeb))
(pad "46" smd rect (at 5.950001 -4.711484) (size 0.4064 0.8128) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp baccf262-8c14-4c57-874d-0436604aa992))
(pad "47" smd rect (at 5.1 -4.711484) (size 0.4064 0.8128) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp f18f2ed3-b5ba-4c75-bedf-ce94f6dcff7b))
(pad "48" smd rect (at 4.249999 -4.711484) (size 0.4064 0.8128) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp da91d24c-235c-487e-8a89-c861581e141b))
(pad "49" smd rect (at 3.400001 -4.711484) (size 0.4064 0.8128) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 90cd1996-0a0e-4ee1-9a26-afc32c6e5afc))
(pad "50" smd rect (at 2.55 -4.711484) (size 0.4064 0.8128) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp fe7739db-75b4-4405-9e01-4ab9b038cd05))
(pad "51" smd rect (at 1.699999 -4.711484) (size 0.4064 0.8128) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 515bb4b5-28b8-4f59-a9c6-fe108b7b76c1))
(pad "52" smd rect (at 0.850001 -4.711484) (size 0.4064 0.8128) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 721980af-f50e-45b8-8bb1-0818e4b8a1e5))
(pad "53" smd rect (at 0 -4.711484) (size 0.4064 0.8128) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 6304f2f0-9e3f-45aa-b6e1-f63c2249d161))
(pad "54" smd rect (at -0.850001 -4.711484) (size 0.4064 0.8128) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 96a06ee1-3834-497a-8278-1f38afd317db))
(pad "55" smd rect (at -1.699999 -4.711484) (size 0.4064 0.8128) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 1eb635c5-6566-4446-9831-d885c8405400))
(pad "56" smd rect (at -2.55 -4.711484) (size 0.4064 0.8128) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 6941509e-d537-4d22-8220-b842711d1953))
(pad "57" smd rect (at -3.400001 -4.711484) (size 0.4064 0.8128) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp f6c99850-0bcf-4447-ae3e-ab4f7ba00d0c))
(pad "58" smd rect (at -4.249999 -4.711484) (size 0.4064 0.8128) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp ffaebc2e-21a5-4e01-a6ba-a95e7a995cdd))
(pad "59" smd rect (at -5.1 -4.711484) (size 0.4064 0.8128) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 904937b9-ac4b-4885-835d-b2366cba3f46))
(pad "60" smd rect (at -5.950001 -4.711484) (size 0.4064 0.8128) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 11a3193e-dc09-4b44-ab63-35dd1926acce))
(pad "61" smd rect (at 0 2.288515) (size 1.1938 1.1938) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 6412fb26-bc2e-4ffc-bbfc-427669235723))
(pad "62" smd rect (at -6.999999 -4.711484) (size 0.8128 0.8128) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 6504e620-522c-45b5-8b9a-9047882ad969))
(pad "63" smd rect (at -6.999999 9.288516) (size 0.8128 0.8128) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 8910fa2f-f37c-4a37-8967-d29ef6c84308))
(pad "64" smd rect (at 6.999999 9.288516) (size 0.8128 0.8128) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 887c8cd1-e3d7-422f-a31d-ededc96529d8))
(pad "65" smd rect (at 6.999999 -4.711484) (size 0.8128 0.8128) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp e66ea5b1-3c2f-4882-b89f-80a22f49b13f))
(pad "66" smd rect (at -1.65 0.638515) (size 1.1938 1.1938) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp c9a69253-df21-4761-acdf-6323b201df54))
(pad "67" smd rect (at 0 0.638515) (size 1.1938 1.1938) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp adf2b3dd-df2c-4714-9f58-d4eb4d501552))
(pad "68" smd rect (at 1.65 0.638515) (size 1.1938 1.1938) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 665ddb4b-c2fa-431c-8729-cd6f005b8079))
(pad "69" smd rect (at -1.65 2.288515) (size 1.1938 1.1938) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 6b2d57e4-e0f8-4434-9c44-aefafd7248e0))
(pad "70" smd rect (at 1.65 2.288515) (size 1.1938 1.1938) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 37122272-8550-444a-8837-d91a0b5d3142))
(pad "71" smd rect (at -1.65 3.938515) (size 1.1938 1.1938) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 2bd8cd74-f481-4fc9-85ea-9d82cae0dd19))
(pad "72" smd rect (at 0 3.938515) (size 1.1938 1.1938) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 949325a8-1fba-4cf4-9f61-68569d53f454))
(pad "73" smd rect (at 1.65 3.938515) (size 1.1938 1.1938) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 45a313b6-6fea-4a8d-b19c-5fd8f096b767))
)
(footprint "Capacitor_SMD:C_0805_2012Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 42ff012d-5eb7-42b9-bb45-415cf26799c6)
(at 87.4 55.7)
(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 "Sheetfile" "ESP32_robot.kicad_sch")
(property "Sheetname" "")
(path "/8cc6d9c2-dba6-411e-87bf-293f38c5da67")
(attr smd)
(fp_text reference "C2" (at 0 -1.68) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 42577c82-e84c-4aea-9a17-362203780ff5)
)
(fp_text value "47uF" (at 0 1.68) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4aebe152-2251-49da-aa40-0dc83648b794)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp e437ad56-4773-402b-a3ab-6cea41788cc1)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 032ad9a8-6a2b-4a58-94b4-a4a3337ce983))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer "F.SilkS") (width 0.12) (tstamp 201b4454-8b9d-419b-8a3c-c72c9853fa37))
(fp_line (start 1.7 0.98) (end -1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 22994ef8-f5fd-4ef8-bae4-f9bc4121ee65))
(fp_line (start -1.7 0.98) (end -1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp 3fff4802-545f-426d-b401-504392c48527))
(fp_line (start -1.7 -0.98) (end 1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp a76fe77f-88a5-4d6f-a3f2-223323a6b6ea))
(fp_line (start 1.7 -0.98) (end 1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp ed4bb9e6-a008-4cd8-9c1e-472b427b8f52))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp 033be35b-d64d-453a-86e6-2f6ec9617e98))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 57647a92-7a73-4d19-8c6c-00cda57a06a7))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 5e1da704-3758-40f3-9c3c-95386656b1e4))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp f2e8d0e4-c552-46d5-a444-3a9bf9e2183c))
(pad "1" smd roundrect (at -0.95 0) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp e47eb475-a7aa-4f16-8061-28d491006090))
(pad "2" smd roundrect (at 0.95 0) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+3V3") (pintype "passive") (tstamp fb4c99b6-ecb1-42c2-aae4-84ee6a9d6759))
(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 "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 443bc73a-8dc0-4e2f-a292-a5eff00efa5b)
(at 101.9048 69.7916 90)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(property "Sheetfile" "ESP32_robot.kicad_sch")
(property "Sheetname" "")
(path "/9cdd6094-3d29-4aba-a2c7-c8050e0955b0")
(attr smd)
(fp_text reference "R3" (at 2.6924 0.0254 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 518ae3d6-70dd-4fe7-a620-845c686040c4)
)
(fp_text value "5.1k" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 248b2cb2-7b8d-4743-a5be-36e3eca395ed)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp ca45ee7b-f9a0-4ce7-a351-3e2b5c187818)
)
(fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 5f474b0c-f559-4e59-b124-30769ce23c0e))
(fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 650fba86-c87a-4156-bf72-74ea182f24f1))
(fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 09e3cc75-be9d-444d-b583-9204d32c10a9))
(fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 299e8a39-d371-479d-80ad-54890ec71a78))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 5c670992-d4a9-4200-b10e-2b7491729bc5))
(fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 958363c9-4e7e-47b4-88b6-002cec8a9803))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 13947b5a-ccc9-411b-9680-29529ae1ae82))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 26d43914-efa8-4704-8454-ea33e42507fa))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 838b7c43-1fa7-44d1-80c0-7c1dbb83d77a))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 9ffe3676-7b64-4d00-9a8a-45b0d68f6f9c))
(pad "1" smd roundrect (at -0.9125 0 90) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "/USB_R1") (pintype "passive") (tstamp f24da779-9650-4216-82b5-7b2ba8921b5f))
(pad "2" smd roundrect (at 0.9125 0 90) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp c53eebec-ff83-4b9b-a078-de46149ad945))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-223" (layer "F.Cu")
(tedit 5A02FF57) (tstamp 4e677390-a246-4ca0-954c-746e0870f88f)
(at 122.0678 75.4404)
(descr "module CMS SOT223 4 pins")
(tags "CMS SOT")
(property "Sheetfile" "ESP32_robot.kicad_sch")
(property "Sheetname" "")
(path "/5a48cbc5-4359-46d0-961e-964e7ddef572")
(attr smd)
(fp_text reference "U2" (at 0 -4.5) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1fcf4402-3abf-43fc-93d9-78721d05a741)
)
(fp_text value "LM1117-3.3" (at 0 4.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 04969a00-82c7-49aa-ae70-1880eb745e61)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 25ebfde1-95dc-4f41-8b2b-dc65a5838f7c)
)
(fp_line (start 1.91 -3.41) (end 1.91 -2.15) (layer "F.SilkS") (width 0.12) (tstamp 989cb00f-0e5c-49f5-840b-ba5bd05fcafa))
(fp_line (start -4.1 -3.41) (end 1.91 -3.41) (layer "F.SilkS") (width 0.12) (tstamp ab688a5d-bf78-4e0a-adc1-ccbb5b19dc5f))
(fp_line (start 1.91 3.41) (end 1.91 2.15) (layer "F.SilkS") (width 0.12) (tstamp af016eca-eccb-430d-8258-95ae747786ee))
(fp_line (start -1.85 3.41) (end 1.91 3.41) (layer "F.SilkS") (width 0.12) (tstamp ee6a5b37-4f07-4d1f-9251-8aa5a07d83e3))
(fp_line (start -4.4 -3.6) (end -4.4 3.6) (layer "F.CrtYd") (width 0.05) (tstamp 2c4c4968-6332-43cd-8e61-dceae3484e5f))
(fp_line (start 4.4 -3.6) (end -4.4 -3.6) (layer "F.CrtYd") (width 0.05) (tstamp 43444945-3d98-4db9-9e19-771cc22b7911))
(fp_line (start 4.4 3.6) (end 4.4 -3.6) (layer "F.CrtYd") (width 0.05) (tstamp 6918f9f8-92f1-4904-8cb8-08a4eafb24f8))
(fp_line (start -4.4 3.6) (end 4.4 3.6) (layer "F.CrtYd") (width 0.05) (tstamp a84c870c-2857-497c-9c5f-e7f563f5b6bf))
(fp_line (start -1.85 -2.3) (end -1.85 3.35) (layer "F.Fab") (width 0.1) (tstamp 071b85e8-c96e-4663-9ac7-82a2cb22d831))
(fp_line (start -1.85 3.35) (end 1.85 3.35) (layer "F.Fab") (width 0.1) (tstamp 5d061363-96c6-46a4-94b0-c5795d2a6904))
(fp_line (start 1.85 -3.35) (end 1.85 3.35) (layer "F.Fab") (width 0.1) (tstamp 6c9a15db-70ef-483a-bae9-23313c8a492a))
(fp_line (start -1.85 -2.3) (end -0.8 -3.35) (layer "F.Fab") (width 0.1) (tstamp 9d7b3337-72b8-4bfb-9054-324eb6e265fd))
(fp_line (start -0.8 -3.35) (end 1.85 -3.35) (layer "F.Fab") (width 0.1) (tstamp b7579393-e0e0-4373-b0d5-651dc0dde2c9))
(pad "1" smd rect (at -3.15 -2.3) (size 2 1.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp d8b482ea-0c6c-41aa-b84a-8b6aab2ecdb6))
(pad "2" smd rect (at -3.15 0) (size 2 1.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "+3V3") (pinfunction "VO") (pintype "power_out") (tstamp 7186751e-e8a0-4086-9216-264e903e1561))
(pad "3" smd rect (at -3.15 2.3) (size 2 1.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "5V") (pinfunction "VI") (pintype "power_in") (tstamp ea3db09f-c516-45ee-8056-7e5e8b4c7ab0))
(pad "4" smd rect (at 3.15 0) (size 2 3.8) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 9bb4ce05-b4a6-4335-be74-1a916b0b0c65))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-223.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")
(tedit 5F68FEEE) (tstamp 5c30b9b4-3014-4f50-9329-27a539b67e01)
(at 113 76.05 -90)
(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 "Sheetfile" "ESP32_robot.kicad_sch")
(property "Sheetname" "")
(path "/d0f15920-db10-4acb-933f-50d6d7dd388f")
(attr smd)
(fp_text reference "C1" (at 0 -1.68 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 09860502-39c7-446e-9908-c762cacf3412)
)
(fp_text value "47uF" (at 0 1.68 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6a8c5ca3-269d-4046-8aa4-a00dacb1cbf5)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 3fbabecf-e498-4a46-94f8-eb49a6a8312e)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 661b6453-cf17-4959-9a37-145f8165a00a))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer "F.SilkS") (width 0.12) (tstamp ab672f51-ba9a-440f-86c1-ccddf880047d))
(fp_line (start 1.7 0.98) (end -1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 63d4fe06-3c6f-4cbf-ae71-471ff78d93c9))
(fp_line (start -1.7 0.98) (end -1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp 94462010-d082-4adb-bbef-eba8ce982f66))
(fp_line (start 1.7 -0.98) (end 1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp e71624e0-a21b-4192-9728-00534a77829e))
(fp_line (start -1.7 -0.98) (end 1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp ea632c05-141e-4e01-936e-1fec1beff573))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 50b9a55a-eb57-41d0-b174-5d79cf885517))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp 7246efa6-357d-43d1-8a98-80da4c8a0c75))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp bba9f3f8-d46d-493f-a0b7-76ef518755e9))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp e4893166-0e48-43d7-aa2c-4723dbb602ea))
(pad "1" smd roundrect (at -0.95 0 270) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 2c5bd342-6eea-49c6-b2be-0c2144efaadc))
(pad "2" smd roundrect (at 0.95 0 270) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "5V") (pintype "passive") (tstamp 8d4cd47b-78c5-4cd7-a494-4c40af87f61a))
(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 "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp 5f108eeb-da04-4211-bd6d-02e0c960d5ad)
(at 131.2 57.2)
(descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x02 2.54mm single row")
(property "Sheetfile" "ESP32_robot.kicad_sch")
(property "Sheetname" "")
(path "/9458241a-34ea-41d5-b1cc-fe647cea4343")
(attr through_hole)
(fp_text reference "J3" (at 0 -2.33) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4258d014-7b72-40c3-84b6-8fda18b4af2f)
)
(fp_text value "01x02" (at 0 4.87) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9f3a99b0-b51c-426d-97d5-492b39272f1d)
)
(fp_text user "${REFERENCE}" (at 0 1.27 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3df60357-1c28-4313-8963-bf5065c1ab7b)
)
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 0a0e2de3-03be-4207-bd5f-c5ebbbbf2428))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 1adc52ef-7b6c-41cc-b1f2-d350a1e4d6b0))
(fp_line (start -1.33 3.87) (end 1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp 1affe030-2ecd-4da1-9748-de4f12712cfb))
(fp_line (start 1.33 1.27) (end 1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp 395876dc-25ca-4ac6-b54f-626217f82dba))
(fp_line (start -1.33 1.27) (end -1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp 747c9ca7-83e7-4331-89b8-39ac722c396d))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp af68a949-dcc1-48d3-b712-1a13d737fd29))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 1bef97dc-844a-4052-904c-546dfcc0521c))
(fp_line (start -1.8 4.35) (end 1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp 6dba6c38-c4be-4c12-95a0-1407d4b23787))
(fp_line (start -1.8 -1.8) (end -1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp 784f3920-47ac-4fb3-a6f8-e0d9b764fd11))
(fp_line (start 1.8 4.35) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp ae2e2c35-0205-4717-b1a8-cf0995a3283d))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 4cb2e2cf-70a4-4bc2-8b13-546b42b85d7e))
(fp_line (start 1.27 3.81) (end -1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp 58eafa99-f38f-43b2-90bc-72ecd51a925f))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 8bd60109-43e0-4ee4-8a00-c50793f4edaa))
(fp_line (start -1.27 3.81) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp aa944d93-b2b3-49b9-8ebf-978474af963c))
(fp_line (start 1.27 -1.27) (end 1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp dff84539-203c-492e-a3e6-0f3e146aa455))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 40 "/Header_10") (pinfunction "Pin_1") (pintype "passive") (tstamp ed1dc1a0-c3af-4b4a-8e9a-7a16d9c5e1d5))
(pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 39 "/Header_9") (pinfunction "Pin_2") (pintype "passive") (tstamp 5211b7ea-8f73-4e9e-a211-4d76d40027f6))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 679bb042-71d3-4cdf-84c8-8a9e0b064915)
(at 96.61 75.3 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 "MFGR" "Stackpole")
(property "MPN" "RMCF0603JG10K0")
(property "Sheetfile" "ESP32_robot.kicad_sch")
(property "Sheetname" "")
(path "/4c142143-27e8-45e6-97fa-f5ffcf910f17")
(attr smd)
(fp_text reference "R8" (at 0 -1.17) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b72604a9-0f4e-4a60-8d89-383c72f0b072)
)
(fp_text value "NTC 10k" (at 0 1.17) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 42714d91-ca58-4747-9c59-db1f568a7463)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp ff93c1fe-20d6-4750-a33f-76f728fa3d30)
)
(fp_line (start -0.153641 0.38) (end 0.153641 0.38) (layer "F.SilkS") (width 0.12) (tstamp 57b89bb3-166d-4ad0-85be-235f39fd3653))
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38) (layer "F.SilkS") (width 0.12) (tstamp 918e5bea-b989-4c25-bb6e-eb2ff78ff4fd))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 4e5ad335-b61b-4b8f-90b2-2b8d1f3eaf5e))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp a39c66dc-892d-4aa3-8fc5-3e0fe3343883))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp d03c851f-0b8f-4062-9026-ec0b9f0c2776))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp fd12b119-36ea-4c12-883f-b6cf13623cb8))
(fp_line (start -0.525 0.27) (end -0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp 246eba98-8686-48f4-9ac6-0d3508c1cdb5))
(fp_line (start 0.525 -0.27) (end 0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp 450c2675-d416-4faf-8b14-db22773f4628))
(fp_line (start 0.525 0.27) (end -0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp 5b694dc5-b08e-4127-9b8e-009ac55a3f1f))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp 87898bbc-9b2c-4fd1-8f32-9175dc2f07f9))
(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 a9aa5113-da5b-436f-9904-42bbe1f8e0a1))
(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 38 "/SENSOR") (pintype "passive") (tstamp de99509c-fcce-4985-8277-8b86dd7171c9))
(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 "LED_SMD:LED-APA102-2020" (layer "F.Cu")
(tedit 5CADBF17) (tstamp 6ef5f8e0-5c2d-4349-9162-179c7c438d89)
(at 93.1 70)
(descr "http://www.led-color.com/upload/201604/APA102-2020%20SMD%20LED.pdf")
(tags "LED RGB SPI")
(property "Sheetfile" "ESP32_robot.kicad_sch")
(property "Sheetname" "")
(path "/b2db3448-c32a-4858-86a9-e8aebe9922e9")
(attr smd)
(fp_text reference "D2" (at 0 2.11) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7992ede6-acb8-43e8-b6fa-ad64b0103bfd)
)
(fp_text value "APA102-2020" (at 0 -2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 319bb321-7500-47f9-ba78-ca94a5609fff)
)
(fp_text user "1" (at -1.7 -0.9) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 4b15b7ed-85be-46bd-8ecf-c7db11bc500e)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.3 0.3) (thickness 0.07)))
(tstamp 5b05e841-3430-4845-be8c-c3a9622aa788)
)
(fp_line (start -1.2 1.4) (end -0.5 1.4) (layer "F.SilkS") (width 0.12) (tstamp 7d07db6c-2b6a-4a46-bd49-1e71c9b00353))
(fp_line (start -1.5 -1.4) (end -1.5 1.4) (layer "F.CrtYd") (width 0.05) (tstamp 50241047-caa4-455c-a942-a06592e82f76))
(fp_line (start 1.5 1.4) (end 0.5 1.4) (layer "F.CrtYd") (width 0.05) (tstamp 516a734e-f531-43c6-b1df-d405fa9bd61a))
(fp_line (start -1.5 -1.4) (end -0.5 -1.4) (layer "F.CrtYd") (width 0.05) (tstamp 5a664bd7-f5b6-47d1-8bad-4ff1ead8bddd))
(fp_line (start -0.5 -1.4) (end -0.5 -1.58) (layer "F.CrtYd") (width 0.05) (tstamp 74588884-0562-49a1-a47d-a4c03d5a9d0c))
(fp_line (start -0.5 1.58) (end 0.5 1.58) (layer "F.CrtYd") (width 0.05) (tstamp 83fe1f26-bd1a-4bc3-a9cb-7fa29bad32b1))
(fp_line (start 0.5 -1.4) (end 1.5 -1.4) (layer "F.CrtYd") (width 0.05) (tstamp 94f93ab2-e061-4b09-bf81-ca23dfc585b7))
(fp_line (start 1.5 -1.4) (end 1.5 1.4) (layer "F.CrtYd") (width 0.05) (tstamp 962ea4e7-929c-4127-b071-ed2db5c3e181))
(fp_line (start -0.5 1.4) (end -1.5 1.4) (layer "F.CrtYd") (width 0.05) (tstamp 97b5fb81-a259-4fd1-996f-d99d9cb422ca))
(fp_line (start 0.5 -1.58) (end 0.5 -1.4) (layer "F.CrtYd") (width 0.05) (tstamp a186daeb-6e63-483b-bd5d-abc321f44b98))
(fp_line (start 0.5 1.58) (end 0.5 1.4) (layer "F.CrtYd") (width 0.05) (tstamp dece1508-8b16-41ff-9a3d-f89fe4c93101))
(fp_line (start -0.5 -1.58) (end 0.5 -1.58) (layer "F.CrtYd") (width 0.05) (tstamp f62c3c29-e54b-4271-8335-fcebc0a090ff))
(fp_line (start -0.5 1.4) (end -0.5 1.58) (layer "F.CrtYd") (width 0.05) (tstamp f6eb1b94-c195-449f-9ebf-1d2fcfc1f773))
(fp_line (start -1 0.5) (end -0.5 1) (layer "F.Fab") (width 0.1) (tstamp 256b7eae-f841-478a-974b-5cf339654f2c))
(fp_line (start -1 0.5) (end -1 -1) (layer "F.Fab") (width 0.1) (tstamp 3d4046d9-2bda-473e-a836-95c6f5fd33c1))
(fp_line (start 1 -1) (end 1 1) (layer "F.Fab") (width 0.1) (tstamp 6d303c32-d7bd-4d82-bd79-26f8da66b9d8))
(fp_line (start 1 1) (end -0.5 1) (layer "F.Fab") (width 0.1) (tstamp 85037fad-dacc-474a-a17d-bd399d13c76c))
(fp_line (start -1 -1) (end 1 -1) (layer "F.Fab") (width 0.1) (tstamp 9f15d0de-6d0d-4018-82ec-11a416393330))
(pad "1" smd rect (at 0 -0.83 90) (size 1 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "+3V3") (pinfunction "VDD") (pintype "power_in") (tstamp 5cc58432-9da9-4f5e-ae1e-0d8e355d6539))
(pad "1" smd rect (at -0.85 -0.9) (size 0.8 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "+3V3") (pinfunction "VDD") (pintype "power_in") (tstamp b386b509-b17d-4195-8fb3-b992c2b786cf))
(pad "2" smd rect (at -0.85 0) (size 0.8 0.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 49 "Net-(D2-Pad2)") (pinfunction "CKO") (pintype "output") (tstamp 87f97108-93cf-4ec2-9532-dae843228e58))
(pad "3" smd rect (at -0.85 0.9) (size 0.8 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 50 "Net-(D2-Pad3)") (pinfunction "SDO") (pintype "output") (tstamp 2b43928e-05ed-46ea-b015-1b6a48601607))
(pad "4" smd rect (at 0.85 0.9) (size 0.8 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 44 "Net-(D1-Pad3)") (pinfunction "SDI") (pintype "input") (tstamp 9cca3723-a14a-4b76-8bf3-396fee2fed84))
(pad "5" smd rect (at 0.85 0) (size 0.8 0.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 43 "Net-(D1-Pad2)") (pinfunction "CKI") (pintype "input") (tstamp 6248a37b-fc71-498e-b8af-ce8ea6f1c363))
(pad "6" smd rect (at 0.85 -0.9) (size 0.8 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 3c1740ae-10bc-45c2-97d1-03c468f570e9))
(pad "6" smd rect (at 0 0.59 90) (size 1.48 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 9eebe40a-4800-4751-b6e9-9bdd03c4eb61))
(model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED-APA102-2020.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 759788bd-3cb9-4d38-b58c-5cb10b7dca6b)
(at 103.5812 69.7935 90)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(property "Sheetfile" "ESP32_robot.kicad_sch")
(property "Sheetname" "")
(path "/20d90851-899e-44f4-bd82-b7fb61cf921e")
(attr smd)
(fp_text reference "R1" (at 2.6651 0.0254 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp abe7cc69-5044-4c3f-892b-d4fcff6e4c8c)
)
(fp_text value "33R" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c0f43a05-67b0-4261-b2ea-148ff468a924)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 31bd8660-fd53-4f68-a655-ca6058423928)
)
(fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp b555d02b-b159-4dec-a338-b6c2b9286899))
(fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp d2acb68c-44d4-4480-8eda-51e505a3f6f6))