-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCombadge.kicad_pcb
9712 lines (9657 loc) · 430 KB
/
Combadge.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
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 6)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "fab/")
)
)
(net 0 "")
(net 1 "+BATT")
(net 2 "GND")
(net 3 "+3.3V")
(net 4 "/ESP32/INDICATOR")
(net 5 "/ESP32/ESP_RX")
(net 6 "/ESP32/ESP_TX")
(net 7 "VBUS")
(net 8 "/ESP32/ESP_USB_D-")
(net 9 "/ESP32/TOUCH1")
(net 10 "/ESP32/ESP_USB_D+")
(net 11 "/Power/CHRG_FULL")
(net 12 "unconnected-(J1-ID-Pad4)")
(net 13 "/ESP32/MIC_WS")
(net 14 "unconnected-(J1-Shield-Pad6)")
(net 15 "/ESP32/MIC_DATA")
(net 16 "/ESP32/MIC_BCLK")
(net 17 "/ESP32/SPK_EN")
(net 18 "/ESP32/SPK_DATA")
(net 19 "/ESP32/SPK_BCLK")
(net 20 "/ESP32/SPK_WS")
(net 21 "BATT_AFTER_SWITCH")
(net 22 "Net-(U5-GAIN_SLOT)")
(net 23 "Net-(U5-SD_MODE)")
(net 24 "unconnected-(SW1-A-Pad1)")
(net 25 "Net-(U4-GPIO0{slash}BOOT)")
(net 26 "unconnected-(U3-NC-Pad4)")
(net 27 "unconnected-(U4-GPIO5{slash}TOUCH5{slash}ADC1_CH4-Pad5)")
(net 28 "unconnected-(U4-GPIO6{slash}TOUCH6{slash}ADC1_CH5-Pad6)")
(net 29 "unconnected-(U4-GPIO15{slash}U0RTS{slash}ADC2_CH4{slash}XTAL_32K_P-Pad8)")
(net 30 "unconnected-(U4-GPIO16{slash}U0CTS{slash}ADC2_CH5{slash}XTAL_32K_N-Pad9)")
(net 31 "/ESP32/TOUCH2")
(net 32 "unconnected-(U4-GPIO12{slash}TOUCH12{slash}ADC2_CH1{slash}FSPICLK{slash}FSPIIO6{slash}SUBSPICLK-Pad20)")
(net 33 "unconnected-(U4-GPIO3{slash}TOUCH3{slash}ADC1_CH2-Pad15)")
(net 34 "unconnected-(U4-GPIO46-Pad16)")
(net 35 "unconnected-(U4-GPIO48{slash}SPICLK_N{slash}SUBSPICLK_N_DIFF-Pad25)")
(net 36 "unconnected-(U4-SPIIO6{slash}GPIO35{slash}FSPID{slash}SUBSPID-Pad28)")
(net 37 "unconnected-(U4-SPIIO7{slash}GPIO36{slash}FSPICLK{slash}SUBSPICLK-Pad29)")
(net 38 "unconnected-(U4-SPIDQS{slash}GPIO37{slash}FSPIQ{slash}SUBSPIQ-Pad30)")
(net 39 "unconnected-(U4-MTCK{slash}GPIO39{slash}CLK_OUT3{slash}SUBSPICS1-Pad32)")
(net 40 "unconnected-(U4-MTDO{slash}GPIO40{slash}CLK_OUT2-Pad33)")
(net 41 "unconnected-(U4-MTDI{slash}GPIO41{slash}CLK_OUT1-Pad34)")
(net 42 "unconnected-(U4-MTMS{slash}GPIO42-Pad35)")
(net 43 "unconnected-(U4-GPIO2{slash}TOUCH2{slash}ADC1_CH1-Pad38)")
(net 44 "unconnected-(U5-NC-Pad5)")
(net 45 "unconnected-(U5-NC-Pad6)")
(net 46 "unconnected-(U5-NC-Pad12)")
(net 47 "unconnected-(U5-NC-Pad13)")
(net 48 "Net-(U4-EN)")
(net 49 "Net-(U1-PROG)")
(net 50 "Net-(U2-REF)")
(net 51 "Net-(U2-K)")
(net 52 "Net-(U1-STAT)")
(net 53 "unconnected-(U4-GPIO38{slash}FSPIWP{slash}SUBSPIWP-Pad31)")
(net 54 "unconnected-(U4-GPIO45-Pad26)")
(net 55 "/ESP32/TOUCH3")
(net 56 "unconnected-(U4-GPIO21-Pad23)")
(net 57 "Net-(U4-GPIO1{slash}TOUCH1{slash}ADC1_CH0)")
(net 58 "unconnected-(U4-GPIO47{slash}SPICLK_P{slash}SUBSPICLK_P_DIFF-Pad24)")
(net 59 "/Speaker/SPK-")
(net 60 "/Speaker/SPK+")
(net 61 "Net-(MK1-SEL)")
(net 62 "Net-(MK1-DATA)")
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 02ec81ec-8ff3-49f4-9198-b4f583a8149f)
(at 167.132 84.074 63)
(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" "Power.kicad_sch")
(property "Sheetname" "Power")
(property "exclude_from_bom" "")
(property "ki_description" "Single-cell battery")
(property "ki_keywords" "battery cell")
(path "/522738f4-f6b2-4897-a079-07da122bd152/54fa1821-1962-473c-8470-e88a1b27fa8c")
(attr through_hole exclude_from_bom)
(fp_text reference "BT1" (at -2.816662 0.066821 63) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp eb1f0641-f81f-4e94-a780-6382b2dbcfd6)
)
(fp_text value "Battery_Cell" (at 0 4.87 63) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ebb4d5b5-d72d-4587-88ee-50db52987d53)
)
(fp_text user "${REFERENCE}" (at 0 1.27 153) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 000318e9-6363-4e4d-8dd8-85ad533fa239)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c5718f50-3b83-4413-818b-c50ca4d5f846))
(fp_line (start -1.33 0) (end -1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c42d1ed7-956b-42da-af61-92321bd4922a))
(fp_line (start -1.33 1.27) (end -1.33 3.87)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 66e25c0b-48f5-492a-9706-08803b8468b4))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cc0e451b-8e49-42ad-aba5-62c1264b4925))
(fp_line (start -1.33 3.87) (end 1.33 3.87)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 61dce537-d105-4316-b3e1-5ff8dfd1c7b7))
(fp_line (start 1.33 1.27) (end 1.33 3.87)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1b48cff7-b612-460f-b77a-e65baafd8838))
(fp_line (start -1.8 -1.8) (end -1.8 4.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ea21b3f4-492d-49a3-9ab5-8ce955588d79))
(fp_line (start -1.8 4.35) (end 1.8 4.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 708fb2cc-5d4c-443a-aa79-21001e8bbee6))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 27f9b9c5-e962-4fec-9a42-9d416829c85e))
(fp_line (start 1.8 4.35) (end 1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d9aa28f3-8e1a-4152-b085-354cb2c0d40e))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 63c30ad0-63bc-4df8-9a00-bcde6ea0f131))
(fp_line (start -1.27 3.81) (end -1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9bd5b848-0c4c-4486-907f-af85f471b82e))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d8507b1c-1e60-478b-9a4c-d2d5146c8d4f))
(fp_line (start 1.27 -1.27) (end 1.27 3.81)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 87eb2463-99e7-4c94-8ff5-116087e96b67))
(fp_line (start 1.27 3.81) (end -1.27 3.81)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7970cb68-2ed2-4fbc-81cc-8f0f94e53b7b))
(pad "1" thru_hole rect (at 0 0 63) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 1 "+BATT") (pinfunction "+") (pintype "passive") (tstamp 16f6c010-e6c3-4cfa-b5a8-ab40cacdadb7))
(pad "2" thru_hole oval (at 0 2.54 63) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "-") (pintype "passive") (tstamp 7f0c869d-3566-49df-94b2-62eca3dc3bbd))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_P2.54mm_Vertical.wrl" hide
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Button_Switch_SMD:SW_SPST_CK_RS282G05A3" (layer "F.Cu")
(tstamp 276e7f20-c01c-4750-9a46-8a2563b3bffa)
(at 168.947 90.297 180)
(descr "https://www.mouser.com/ds/2/60/RS-282G05A-SM_RT-1159762.pdf")
(tags "SPST button tactile switch")
(property "Sheetfile" "ESP32.kicad_sch")
(property "Sheetname" "ESP32")
(property "ki_description" "Push button switch, generic, two pins")
(property "ki_keywords" "switch normally-open pushbutton push-button")
(path "/e52d477a-07ba-4161-9136-a631aed85a9f/01a6e1b1-683a-4f7e-81c3-42144067657b")
(attr smd)
(fp_text reference "SW2" (at -2.249 -2.54) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp e01220b3-3e29-49df-afc7-a495221d7f69)
)
(fp_text value "BOOT" (at 0 3) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 397c9fe1-a860-4288-afae-499a7a035f51)
)
(fp_text user "${REFERENCE}" (at 0 -2.6) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7ce13c7c-d6ff-47f9-9a96-9162fed2925e)
)
(fp_line (start -3.06 -1.85) (end 3.06 -1.85)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b675b7ab-4729-4734-ac7d-3ed6a02591e0))
(fp_line (start -3.06 1.85) (end -3.06 -1.85)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1516334e-5204-4929-b688-7a7c993c574c))
(fp_line (start 3.06 -1.85) (end 3.06 1.85)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c6158ef8-0c19-4876-a26e-1d96d474727d))
(fp_line (start 3.06 1.85) (end -3.06 1.85)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 32351b15-214c-47dc-88cd-6574b1153c24))
(fp_line (start -4.9 -2.05) (end 4.9 -2.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6c3924d9-bed6-4c4d-8ecd-40be34ebf696))
(fp_line (start -4.9 2.05) (end -4.9 -2.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c72a4280-fa1f-414b-9df8-a789dc317fcf))
(fp_line (start 4.9 -2.05) (end 4.9 2.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2db1238b-ee0e-4451-9fa8-aae5f84f138e))
(fp_line (start 4.9 2.05) (end -4.9 2.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e24f03b9-2a2e-4832-9ee5-773dadfb36c4))
(fp_line (start -3 -1.8) (end -3 1.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 883aad58-714f-4337-b442-30f460bf675c))
(fp_line (start -3 -1.8) (end 3 -1.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 452ed338-825f-49f0-96f3-28b5e37cb689))
(fp_line (start -3 1.8) (end 3 1.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a7f2504e-ba3d-463d-872f-c3ad0b1fa712))
(fp_line (start -1.75 -1) (end 1.75 -1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f4255659-59b4-41bd-8f79-85d0ceb91501))
(fp_line (start -1.75 1) (end -1.75 -1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bb72ee4d-923b-4679-ba44-6474fc82d101))
(fp_line (start -1.5 -0.8) (end -1.5 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1cc6f42b-ac46-4cdc-8387-53d669b26fbc))
(fp_line (start -1.5 -0.8) (end 1.5 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b90888db-4298-42ee-aeff-af56c9fe82ab))
(fp_line (start -1.5 0.8) (end 1.5 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ba6674d3-f124-4111-8739-d58c979e24e0))
(fp_line (start 1.5 -0.8) (end 1.5 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 891c7388-ec10-44fa-b421-6eba886d0036))
(fp_line (start 1.75 -1) (end 1.75 1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fe2c633a-e29a-46a3-b70a-681b30eafb7c))
(fp_line (start 1.75 1) (end -1.75 1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cc6e1a12-5a87-4046-a849-93ae592d8b1e))
(fp_line (start 3 -1.8) (end 3 1.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ad7cc2a6-29e7-48af-a1e2-2ea3cc3e767a))
(pad "1" smd rect (at -3.9 0 180) (size 1.5 1.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "1") (pintype "passive") (tstamp c136ba7a-b255-458b-ab65-7da50257d121))
(pad "2" smd rect (at 3.9 0 180) (size 1.5 1.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 25 "Net-(U4-GPIO0{slash}BOOT)") (pinfunction "2") (pintype "passive") (tstamp b52929ad-f2ac-4ca0-97e6-565500c4d936))
(model "${KICAD6_3DMODEL_DIR}/Button_Switch_SMD.3dshapes/SW_SPST_CK_RS282G05A3.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder" (layer "F.Cu")
(tstamp 4bdc09ef-5bc8-4476-b96d-81936e349579)
(at 167.64 101.6 180)
(descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(property "Sheetfile" "Speaker.kicad_sch")
(property "Sheetname" "Speaker")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/8196ddf3-1455-4a17-8346-613907020849/106293ea-eb87-4bab-9736-536bc09be5b9")
(attr smd)
(fp_text reference "C10" (at 2.159 -1.905) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 643ceaa1-07a3-4ae8-9896-1a742f4d7635)
)
(fp_text value "10uF" (at 0 1.85) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp edefd6c7-4c08-4b5d-979e-f41d92793f0f)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 4edd338d-bdc8-4d6c-9f9c-a4004ab89072)
)
(fp_line (start -0.711252 -0.91) (end 0.711252 -0.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4cfbb1b6-4b2e-4213-baaa-d19b7a0ca641))
(fp_line (start -0.711252 0.91) (end 0.711252 0.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 12374b02-d8ca-412e-b2ff-5caefd56a9f3))
(fp_line (start -2.48 -1.15) (end 2.48 -1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e4f71bce-a480-43a3-9153-8e2de23fc876))
(fp_line (start -2.48 1.15) (end -2.48 -1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 664af5fb-0b78-4126-9bd7-328a5cef0cd4))
(fp_line (start 2.48 -1.15) (end 2.48 1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b76b22f3-bcb7-485a-a438-402f16b0c490))
(fp_line (start 2.48 1.15) (end -2.48 1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp dde2be1e-df4f-41d5-a170-888cf0422661))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3f08d614-8621-48fd-a035-2dd33bd617ab))
(fp_line (start -1.6 0.8) (end -1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a0b3a0a5-50cc-486e-b802-06ee7588f5fd))
(fp_line (start 1.6 -0.8) (end 1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp faf0e4d6-7f4c-4433-ac68-9460033f76f2))
(fp_line (start 1.6 0.8) (end -1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8ffaddfc-5188-4e42-bba5-08877c279bdb))
(pad "1" smd roundrect (at -1.5625 0 180) (size 1.325 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1886792453)
(net 2 "GND") (pintype "passive") (tstamp d0be88bf-4b6a-424b-88c7-aa278b5a5114))
(pad "2" smd roundrect (at 1.5625 0 180) (size 1.325 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1886792453)
(net 21 "BATT_AFTER_SWITCH") (pintype "passive") (tstamp fbf866bd-9e2a-42c0-9179-315680dc3c91))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1206_3216Metric.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")
(tstamp 50b58730-27ed-4ed9-b159-c47c8a5bf4be)
(at 171.958 103.886 135)
(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" "Speaker.kicad_sch")
(property "Sheetname" "Speaker")
(property "exclude_from_bom" "")
(property "ki_description" "Speaker")
(property "ki_keywords" "speaker sound")
(path "/8196ddf3-1455-4a17-8346-613907020849/468b0055-25c0-405a-9da9-b206950fa52e")
(attr through_hole exclude_from_bom)
(fp_text reference "LS1" (at 0 -2.33 135) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8944fc5b-c75c-41eb-9861-59e630ba7e2a)
)
(fp_text value "Speaker" (at 0 4.87 135) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e4e48109-4614-4ffc-8ecd-f607a288f884)
)
(fp_text user "${REFERENCE}" (at 0 1.27 45) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b003de4b-2119-4b0f-aa24-a7f2b794b363)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp beeb0334-e19a-47b8-86fa-88ea544ea02b))
(fp_line (start -1.33 0) (end -1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3b862aab-d388-4744-9fcf-d1b412c2f961))
(fp_line (start -1.33 1.27) (end -1.33 3.87)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f38e897d-4e99-4b7e-aa1b-1f07624c7689))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c668dfa9-5795-458a-8821-a1a1df62ca16))
(fp_line (start -1.33 3.87) (end 1.33 3.87)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 73a0567a-fc47-413c-b87d-7eb178006488))
(fp_line (start 1.33 1.27) (end 1.33 3.87)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c1160f58-7823-4dbe-89d3-4b5cc8249172))
(fp_line (start -1.8 -1.8) (end -1.8 4.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp eb2fa15b-2189-4ef0-9de2-5e3f255cea68))
(fp_line (start -1.8 4.35) (end 1.8 4.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 885d9acc-1409-4ac6-89bc-2fff6582c945))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 43a631d2-00b4-4a18-98d1-36df1ea368d8))
(fp_line (start 1.8 4.35) (end 1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1f3f070d-a296-465a-a32a-870fe7deaf2f))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d6505f30-292c-4189-b895-ef01d5e970e8))
(fp_line (start -1.27 3.81) (end -1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 80ce210e-2ba3-4c81-92b4-9bcb2ee2c2f3))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp eaa4b260-40c5-4f0f-87c3-6d970803b13a))
(fp_line (start 1.27 -1.27) (end 1.27 3.81)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cb92339a-75ab-4b37-a1a8-da4f27aba8be))
(fp_line (start 1.27 3.81) (end -1.27 3.81)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fef5a8f4-9801-470c-ae11-d0f0c9184035))
(pad "1" thru_hole rect (at 0 0 135) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 59 "/Speaker/SPK-") (pinfunction "1") (pintype "input") (tstamp ada53655-60c2-40c8-a4e0-008b7d054fdc))
(pad "2" thru_hole oval (at 0 2.54 135) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 60 "/Speaker/SPK+") (pinfunction "2") (pintype "input") (tstamp ce53af3f-3a87-4fff-b5bf-d541c3e3663d))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_P2.54mm_Vertical.wrl" hide
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Espressif:ESP32-S3-WROOM-1" (layer "F.Cu")
(tstamp 576f6ac7-8c60-44eb-9568-8d56423edbc8)
(at 153.167 95.745 90)
(descr "ESP32-S3-WROOM-1 is a powerful, generic Wi-Fi + Bluetooth LE MCU modules that have Dual core CPU , a rich set of peripherals, provides acceleration for neural network computing and signal processing workloads. They are an ideal choice for a wide variety of application scenarios related to AI + Internet of Things (AIoT), such as wake word detection and speech commands recognition , face detection and recognition, smart home, smart appliance, smart control panel, smart speaker etc.")
(tags "esp32-s3")
(property "Sheetfile" "ESP32.kicad_sch")
(property "Sheetname" "ESP32")
(property "ki_description" "2.4 GHz WiFi (802.11 b/g/n) and Bluetooth ® 5 (LE) module Built around ESP32S3 series of SoCs, Xtensa ® dualcore 32bit LX7 microprocessor Flash up to 16 MB, PSRAM up to 8 MB 36 GPIOs, rich set of peripherals Onboard PCB antenna")
(path "/e52d477a-07ba-4161-9136-a631aed85a9f/ac0c831f-7fe6-4980-b15d-7f7d1f80b980")
(attr smd)
(fp_text reference "U4" (at -9.665 10.663 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9ec98818-15ee-482a-bae3-021d80518c61)
)
(fp_text value "ESP32-S3-WROOM-1" (at 0 12 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e1d6e380-d959-4f28-ac9a-cce8a490f055)
)
(fp_text user "Antenna Area" (at 0 -12.75 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4c2c643c-c5b5-42f0-8d2c-7002ef433060)
)
(fp_text user "Antenna Area" (at 0 -12.75 90) (layer "Eco2.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 189deb50-a656-464a-bae2-b1c12415c25b)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1aa99603-b358-484e-b027-3ac7280f0ad7)
)
(fp_line (start -9 9) (end -9 9.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 816ba2ee-971c-4fd8-9ffd-b94d7c76cf42))
(fp_line (start -9 9.75) (end -8 9.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9a907106-156e-4eac-933c-bc39a3d0727a))
(fp_line (start 9 9) (end 9 9.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8f80fb28-5bb0-4ab6-b56b-da65eb1a9257))
(fp_line (start 9 9.75) (end 8 9.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2802fa77-593a-4af8-aa7f-df9522744a7d))
(fp_line (start -9 -15.75) (end 9 -15.75)
(stroke (width 0.12) (type solid)) (layer "Eco2.User") (tstamp 0d52d31d-8d8c-4b7b-ae4e-dac6b745d44a))
(fp_line (start -9 -9.81) (end 9 -9.81)
(stroke (width 0.12) (type solid)) (layer "Eco2.User") (tstamp 6fe98dbf-820e-443d-95c1-9eba0edf10b2))
(fp_line (start -9 9.75) (end -9 -15.75)
(stroke (width 0.12) (type solid)) (layer "Eco2.User") (tstamp d3322839-5dbb-4411-be92-54c4d9c750c6))
(fp_line (start 9 -15.75) (end 9 9.75)
(stroke (width 0.12) (type solid)) (layer "Eco2.User") (tstamp e1f97563-f533-4daa-a241-ba4c7ab0cf10))
(fp_line (start 9 9.75) (end -9 9.75)
(stroke (width 0.12) (type solid)) (layer "Eco2.User") (tstamp eeb98fab-3e4f-44e9-b59a-c52f78bfe90d))
(fp_line (start -9.8 -16.05) (end -9.8 10.55)
(stroke (width 0.12) (type solid)) (layer "F.CrtYd") (tstamp 1e870d38-c659-47af-9168-3d0b016b9031))
(fp_line (start -9.8 10.55) (end 9.8 10.55)
(stroke (width 0.12) (type solid)) (layer "F.CrtYd") (tstamp 0ca2708f-a12b-40a5-b466-6f45dcfecc63))
(fp_line (start 9.8 -16.05) (end -9.8 -16.05)
(stroke (width 0.12) (type solid)) (layer "F.CrtYd") (tstamp ec6ed3ef-6063-47ee-b907-78b7fc872f0a))
(fp_line (start 9.8 -16.05) (end 9.8 10.55)
(stroke (width 0.12) (type solid)) (layer "F.CrtYd") (tstamp 7c1b1f78-f858-4028-ad9d-20d451c2fc92))
(pad "1" smd rect (at -8.75 -8.26 90) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp b108545c-87f8-49a1-b4e9-06f632c2b8e5))
(pad "2" smd rect (at -8.75 -6.99 90) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "+3.3V") (pinfunction "3V3") (pintype "power_in") (tstamp 97001dac-485e-4c38-bb6e-8a849cf4d33c))
(pad "3" smd rect (at -8.75 -5.72 90) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 48 "Net-(U4-EN)") (pinfunction "EN") (pintype "input") (tstamp 4558d234-1e86-4976-a17b-72a4998d8a1b))
(pad "4" smd rect (at -8.75 -4.45 90) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 16 "/ESP32/MIC_BCLK") (pinfunction "GPIO4/TOUCH4/ADC1_CH3") (pintype "bidirectional") (tstamp 4988a47f-8f71-4605-8fe2-7fe74e148c50))
(pad "5" smd rect (at -8.75 -3.18 90) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 27 "unconnected-(U4-GPIO5{slash}TOUCH5{slash}ADC1_CH4-Pad5)") (pinfunction "GPIO5/TOUCH5/ADC1_CH4") (pintype "bidirectional") (tstamp ae94b4b4-8e3b-4951-8d18-1989ad6075ec))
(pad "6" smd rect (at -8.75 -1.91 90) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 28 "unconnected-(U4-GPIO6{slash}TOUCH6{slash}ADC1_CH5-Pad6)") (pinfunction "GPIO6/TOUCH6/ADC1_CH5") (pintype "bidirectional") (tstamp c51d7f04-1bb8-4b95-a445-7b3e117da049))
(pad "7" smd rect (at -8.75 -0.64 90) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 15 "/ESP32/MIC_DATA") (pinfunction "GPIO7/TOUCH7/ADC1_CH6") (pintype "bidirectional") (tstamp c6798ff5-397a-4678-9053-235deea4a25d))
(pad "8" smd rect (at -8.75 0.63 90) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 29 "unconnected-(U4-GPIO15{slash}U0RTS{slash}ADC2_CH4{slash}XTAL_32K_P-Pad8)") (pinfunction "GPIO15/U0RTS/ADC2_CH4/XTAL_32K_P") (pintype "bidirectional") (tstamp 3254848d-0d17-4197-a34e-7a446ee39aee))
(pad "9" smd rect (at -8.75 1.9 90) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 30 "unconnected-(U4-GPIO16{slash}U0CTS{slash}ADC2_CH5{slash}XTAL_32K_N-Pad9)") (pinfunction "GPIO16/U0CTS/ADC2_CH5/XTAL_32K_N") (pintype "bidirectional") (tstamp b0c20902-b652-48bb-8499-acdf2007f1f6))
(pad "10" smd rect (at -8.75 3.17 90) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 13 "/ESP32/MIC_WS") (pinfunction "GPIO17/U1TXD/ADC2_CH6") (pintype "bidirectional") (tstamp 164d011e-64aa-43aa-a82c-9cbab2294834))
(pad "11" smd rect (at -8.75 4.44 90) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 17 "/ESP32/SPK_EN") (pinfunction "GPIO18/U1RXD/ADC2_CH7/CLK_OUT3") (pintype "bidirectional") (tstamp 76a863c5-7aa8-4ab3-900a-14cb68829c36))
(pad "12" smd rect (at -8.75 5.71 90) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "/ESP32/TOUCH1") (pinfunction "GPIO8/TOUCH8/ADC1_CH7/SUBSPICS1") (pintype "bidirectional") (tstamp 6ed206bc-1371-4b1b-a3a5-b373367677c7))
(pad "13" smd rect (at -8.75 6.98 90) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "/ESP32/ESP_USB_D-") (pinfunction "GPIO19/U1RTS/ADC2_CH8/CLK_OUT2/USB_D-") (pintype "bidirectional") (tstamp 7daea356-d29f-4692-a4d2-77e772861930))
(pad "14" smd rect (at -8.75 8.25 90) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 10 "/ESP32/ESP_USB_D+") (pinfunction "GPIO20/U1CTS/ADC2_CH9/CLK_OUT1/USB_D+") (pintype "bidirectional") (tstamp 1eb981ca-5ea2-43de-92d2-eb111a57ee26))
(pad "15" smd rect (at -6.985 9.5 180) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 33 "unconnected-(U4-GPIO3{slash}TOUCH3{slash}ADC1_CH2-Pad15)") (pinfunction "GPIO3/TOUCH3/ADC1_CH2") (pintype "bidirectional") (tstamp 0d0deafd-89ff-4c4a-b6e0-0a95dff9125b))
(pad "16" smd rect (at -5.715 9.5 180) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 34 "unconnected-(U4-GPIO46-Pad16)") (pinfunction "GPIO46") (pintype "bidirectional") (tstamp f1412bb7-f2ed-4528-a7ca-397c5b2e1f5d))
(pad "17" smd rect (at -4.445 9.5 180) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 20 "/ESP32/SPK_WS") (pinfunction "GPIO9/TOUCH9/ADC1_CH8/FSPIHD/SUBSPIHD") (pintype "bidirectional") (tstamp 98900bf7-095e-4557-90f4-f1dfd85d9946))
(pad "18" smd rect (at -3.175 9.5 180) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 19 "/ESP32/SPK_BCLK") (pinfunction "GPIO10/TOUCH10/ADC1_CH9/FSPICS0/FSPIIO4/SUBSPICS0") (pintype "bidirectional") (tstamp 90adf3dc-c5d8-41a2-a158-f6736f0272cb))
(pad "19" smd rect (at -1.905 9.5 180) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 18 "/ESP32/SPK_DATA") (pinfunction "GPIO11/TOUCH11/ADC2_CH0/FSPID/FSPIIO5/SUBSPID") (pintype "bidirectional") (tstamp 542f2413-194e-4a02-af59-d9af27bc8255))
(pad "20" smd rect (at -0.635 9.5 180) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 32 "unconnected-(U4-GPIO12{slash}TOUCH12{slash}ADC2_CH1{slash}FSPICLK{slash}FSPIIO6{slash}SUBSPICLK-Pad20)") (pinfunction "GPIO12/TOUCH12/ADC2_CH1/FSPICLK/FSPIIO6/SUBSPICLK") (pintype "bidirectional") (tstamp cac5242c-2d91-4499-9712-ef4c90a3f142))
(pad "21" smd rect (at 0.635 9.5 180) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 31 "/ESP32/TOUCH2") (pinfunction "GPIO13/TOUCH13/ADC2_CH2/FSPIQ/FSPIIO7/SUBSPIQ") (pintype "bidirectional") (tstamp bc8622ab-d72e-45db-a7fa-567e4ec1799d))
(pad "22" smd rect (at 1.905 9.5 180) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 55 "/ESP32/TOUCH3") (pinfunction "GPIO14/TOUCH14/ADC2_CH3/FSPIWP/FSPIDQS/SUBSPIWP") (pintype "bidirectional") (tstamp 1392b864-221c-4460-87e6-b33c0e22fb16))
(pad "23" smd rect (at 3.175 9.5 180) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 56 "unconnected-(U4-GPIO21-Pad23)") (pinfunction "GPIO21") (pintype "bidirectional") (tstamp a6df776c-ef1f-4df0-a58e-28976b85dee8))
(pad "24" smd rect (at 4.445 9.5 180) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 58 "unconnected-(U4-GPIO47{slash}SPICLK_P{slash}SUBSPICLK_P_DIFF-Pad24)") (pinfunction "GPIO47/SPICLK_P/SUBSPICLK_P_DIFF") (pintype "bidirectional") (tstamp d5f6a4c5-8488-45b8-bdf5-eab8ef78c407))
(pad "25" smd rect (at 5.715 9.5 180) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 35 "unconnected-(U4-GPIO48{slash}SPICLK_N{slash}SUBSPICLK_N_DIFF-Pad25)") (pinfunction "GPIO48/SPICLK_N/SUBSPICLK_N_DIFF") (pintype "bidirectional") (tstamp 675eb803-3c8a-4339-bb89-a8f842030712))
(pad "26" smd rect (at 6.985 9.5 180) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 54 "unconnected-(U4-GPIO45-Pad26)") (pinfunction "GPIO45") (pintype "bidirectional") (tstamp 1690d621-a242-4d34-82a6-427bc2bae5f6))
(pad "27" smd rect (at 8.75 8.25 270) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 25 "Net-(U4-GPIO0{slash}BOOT)") (pinfunction "GPIO0/BOOT") (pintype "bidirectional") (tstamp ad20ca9c-d863-4ad2-b898-64b37f2c2822))
(pad "28" smd rect (at 8.75 6.98 270) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 36 "unconnected-(U4-SPIIO6{slash}GPIO35{slash}FSPID{slash}SUBSPID-Pad28)") (pinfunction "SPIIO6/GPIO35/FSPID/SUBSPID") (pintype "bidirectional") (tstamp b794556d-5684-4179-8f89-0907175dd242))
(pad "29" smd rect (at 8.75 5.71 270) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 37 "unconnected-(U4-SPIIO7{slash}GPIO36{slash}FSPICLK{slash}SUBSPICLK-Pad29)") (pinfunction "SPIIO7/GPIO36/FSPICLK/SUBSPICLK") (pintype "bidirectional") (tstamp 6aa4858f-df3b-4844-86fc-eae2b1b1ff0f))
(pad "30" smd rect (at 8.75 4.44 270) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 38 "unconnected-(U4-SPIDQS{slash}GPIO37{slash}FSPIQ{slash}SUBSPIQ-Pad30)") (pinfunction "SPIDQS/GPIO37/FSPIQ/SUBSPIQ") (pintype "bidirectional") (tstamp 8a59f8ce-f31c-419e-87a1-8bb60e8fed8e))
(pad "31" smd rect (at 8.75 3.17 270) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 53 "unconnected-(U4-GPIO38{slash}FSPIWP{slash}SUBSPIWP-Pad31)") (pinfunction "GPIO38/FSPIWP/SUBSPIWP") (pintype "bidirectional") (tstamp 8183a3bb-8a17-435f-8f69-134b6631f430))
(pad "32" smd rect (at 8.75 1.9 270) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 39 "unconnected-(U4-MTCK{slash}GPIO39{slash}CLK_OUT3{slash}SUBSPICS1-Pad32)") (pinfunction "MTCK/GPIO39/CLK_OUT3/SUBSPICS1") (pintype "bidirectional") (tstamp b8b85f8f-6bce-41ac-af91-df265842ae81))
(pad "33" smd rect (at 8.75 0.63 270) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 40 "unconnected-(U4-MTDO{slash}GPIO40{slash}CLK_OUT2-Pad33)") (pinfunction "MTDO/GPIO40/CLK_OUT2") (pintype "bidirectional") (tstamp f243e670-5171-4410-860b-b395b69e818b))
(pad "34" smd rect (at 8.75 -0.64 270) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 41 "unconnected-(U4-MTDI{slash}GPIO41{slash}CLK_OUT1-Pad34)") (pinfunction "MTDI/GPIO41/CLK_OUT1") (pintype "bidirectional") (tstamp 04727895-c60d-40c3-9daf-dfb72112baf2))
(pad "35" smd rect (at 8.75 -1.91 270) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 42 "unconnected-(U4-MTMS{slash}GPIO42-Pad35)") (pinfunction "MTMS/GPIO42") (pintype "bidirectional") (tstamp a9c69e7a-d3a5-4008-a90f-5b7f8c49e327))
(pad "36" smd rect (at 8.75 -3.18 270) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "/ESP32/ESP_RX") (pinfunction "U0RXD/GPIO44/CLK_OUT2") (pintype "bidirectional") (tstamp 0481b62d-54ef-4190-9ee0-166edfee9b7e))
(pad "37" smd rect (at 8.75 -4.45 270) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "/ESP32/ESP_TX") (pinfunction "U0TXD/GPIO43/CLK_OUT1") (pintype "bidirectional") (tstamp f54470c7-6fd5-446c-986a-ad1d15a44d18))
(pad "38" smd rect (at 8.75 -5.72 270) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 43 "unconnected-(U4-GPIO2{slash}TOUCH2{slash}ADC1_CH1-Pad38)") (pinfunction "GPIO2/TOUCH2/ADC1_CH1") (pintype "bidirectional") (tstamp 0a5491f4-56cd-48bf-8895-8a0f85f6fe0a))
(pad "39" smd rect (at 8.75 -6.99 270) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 57 "Net-(U4-GPIO1{slash}TOUCH1{slash}ADC1_CH0)") (pinfunction "GPIO1/TOUCH1/ADC1_CH0") (pintype "bidirectional") (tstamp e2762196-bbca-4748-b35f-7b8786bf0b26))
(pad "40" smd rect (at 8.75 -8.26 270) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp 45e0b1c0-88b7-4615-b7cd-f09e1441801f))
(pad "41" smd rect (at -2.9 -1.94 270) (size 0.9 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp 43c4822e-ca9d-46b5-a500-5df5c1632bf4))
(pad "41" smd rect (at -2.9 -0.54 270) (size 0.9 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp 5ae92a1d-8061-4329-9ca1-cf6c09caa3b6))
(pad "41" smd rect (at -2.9 0.86 270) (size 0.9 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp f32bfdbd-db31-43c8-ad03-fcfa1fcdebf6))
(pad "41" smd rect (at -1.5 -1.94 270) (size 0.9 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp df56cb88-1250-4ed4-bc62-916e9c23cc8f))
(pad "41" smd rect (at -1.5 -0.54 270) (size 0.9 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp 5b5b3613-806a-4f25-83b9-051b19304fd7))
(pad "41" smd rect (at -1.5 0.86 270) (size 0.9 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp fac0a83d-c055-46bf-bdfd-1c083fb1a200))
(pad "41" smd rect (at -0.1 -1.94 270) (size 0.9 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp 31203227-8ecd-4094-840f-876547eaf2ff))
(pad "41" smd rect (at -0.1 -0.54 270) (size 0.9 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp e2fd9ab3-936c-4137-a911-65a8aff2e863))
(pad "41" smd rect (at -0.1 0.86 270) (size 0.9 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp c7904b8c-750e-45bc-a9b3-4e7285c1dffb))
(model "${KIPRJMOD}/third-party/esp32-kicad/3d/ESP32-S3-WROOM-1.STEP"
(opacity 0.7500) (offset (xyz -9 -9.75 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (layer "F.Cu")
(tstamp 6fd704e7-70cf-4e3e-b6de-00c948c746ad)
(at 155.947 81.534 180)
(descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "LED handsolder")
(property "Sheetfile" "ESP32.kicad_sch")
(property "Sheetname" "ESP32")
(property "ki_description" "Light emitting diode")
(property "ki_keywords" "LED diode")
(path "/e52d477a-07ba-4161-9136-a631aed85a9f/0fb30d9f-9703-456b-83be-1601b22ce691")
(attr smd)
(fp_text reference "D2" (at -3.184 -1.016) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 009137d4-d221-497a-bfb8-d7fee5e43dc5)
)
(fp_text value "LED" (at 0 1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3badcdb5-e856-4219-bf65-ea3d8674f24c)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 60bdffab-a1ea-44cf-9217-6d353ebbe0e5)
)
(fp_line (start -1.86 -0.96) (end -1.86 0.96)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0a3a4283-d9a7-44c8-b986-3f23da574db9))
(fp_line (start -1.86 0.96) (end 1 0.96)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d35fc2a3-53a9-4a54-9082-a5e70ad7d176))
(fp_line (start 1 -0.96) (end -1.86 -0.96)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 539ea88b-de57-49e3-a438-be32fdbd84cd))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3d798e84-7dd2-4bc6-9bfe-9ca5f8dee989))
(fp_line (start -1.85 0.95) (end -1.85 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fa707835-5848-4aff-95e7-eee9d6312918))
(fp_line (start 1.85 -0.95) (end 1.85 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f8afe1ad-2133-49be-97c4-cd5ce41a8c05))
(fp_line (start 1.85 0.95) (end -1.85 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e982926c-e0c6-4a95-9db2-769a81a1c0e0))
(fp_line (start -1 -0.3) (end -1 0.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4dbac207-a7b3-49a0-a734-1d43c48fb17e))
(fp_line (start -1 0.6) (end 1 0.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9d781141-6243-443e-9bcd-9711bcfeb00c))
(fp_line (start -0.7 -0.6) (end -1 -0.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6859d505-77d7-434d-8f4b-f8c595197586))
(fp_line (start 1 -0.6) (end -0.7 -0.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4a83b781-f6c2-4024-ba5e-e667313d8df0))
(fp_line (start 1 0.6) (end 1 -0.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp be31ade9-3da3-4cc6-a99c-663074b69d16))
(pad "1" smd roundrect (at -1.025 0 180) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043)
(net 2 "GND") (pinfunction "K") (pintype "passive") (tstamp 7e059c21-76ca-4af3-a664-cfb303b71b3b))
(pad "2" smd roundrect (at 1.025 0 180) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043)
(net 4 "/ESP32/INDICATOR") (pinfunction "A") (pintype "passive") (tstamp 9dff54fb-b399-415b-b116-bbed27e251f1))
(model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 74a4c619-e04f-46be-821b-2bbde0b0dbaa)
(at 161.798 107.823)
(descr "Through hole straight pin header, 1x01, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x01 2.54mm single row")
(property "Sheetfile" "Combadge.kicad_sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(property "ki_description" "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/5e27c022-8bb5-4723-b155-ba35e6b91285")
(attr through_hole exclude_from_bom)
(fp_text reference "J2" (at 1.27 -1.524) (layer "F.SilkS") hide
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp a8fc3e63-c319-4489-a840-26cd311c60e6)
)
(fp_text value "TOUCH1" (at 0 2.33) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a9363663-5c4b-436d-bdb7-bd4ba1a26b67)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a998c3e4-63f8-4de6-a1b9-c85d84ce4e7f)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 194cd9a7-aa9d-42fa-9c9b-c3c1ad198146))
(fp_line (start -1.33 0) (end -1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b8975d7f-a826-4ec6-aefc-6e455f117905))
(fp_line (start -1.8 -1.8) (end -1.8 1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3335ecba-6bc3-4903-a606-22cfeabfb180))
(fp_line (start -1.8 1.8) (end 1.8 1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 63ba2eab-6aa0-4353-81b7-b35207ce439e))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 38d73785-accf-4644-8f25-7a9f19893c59))
(fp_line (start 1.8 1.8) (end 1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 779b5261-49c6-4b0e-b3bb-35865c0a45bb))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 86d84d3a-4075-49ec-9484-980cb7f08394))
(fp_line (start -1.27 1.27) (end -1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 993811bd-35ca-4fcf-9ec9-08eb21aba6dc))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c078951e-36bd-4c1f-b378-fe74ad8f973f))
(fp_line (start 1.27 -1.27) (end 1.27 1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 61f39e1f-8ade-4456-81bd-8e797d1c2617))
(fp_line (start 1.27 1.27) (end -1.27 1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 842b8113-b2c2-4a4f-ae84-fc19dececa2c))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 9 "/ESP32/TOUCH1") (pinfunction "Pin_1") (pintype "passive") (tstamp c312f484-f7aa-4a73-888c-576c84099f32))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x01_P2.54mm_Vertical.wrl" hide
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder" (layer "F.Cu")
(tstamp 7daae8a7-9cd1-486e-ba09-361f9d5ddf81)
(at 167.64 99.187 180)
(descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(property "Sheetfile" "Speaker.kicad_sch")
(property "Sheetname" "Speaker")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/8196ddf3-1455-4a17-8346-613907020849/dd350869-36e4-44ee-aff8-ce4cc97873c0")
(attr smd)
(fp_text reference "C9" (at -3.556 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9a121df3-74a6-4fa9-9766-567486f2b4f9)
)
(fp_text value "0.1uF" (at 0 1.85) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b6baf10a-68c3-479d-9228-3f8b6c65551b)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 056b2642-64ff-4ecb-8a7e-fe6d90d20816)
)
(fp_line (start -0.711252 -0.91) (end 0.711252 -0.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d4681b97-8e86-476a-900b-513f04f62f12))
(fp_line (start -0.711252 0.91) (end 0.711252 0.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 04e16bce-fd34-4875-9a3e-6d4598dcf4ec))
(fp_line (start -2.48 -1.15) (end 2.48 -1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cca09fcf-ea2d-4985-b2c1-5b3f303c84db))
(fp_line (start -2.48 1.15) (end -2.48 -1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 536c3fc4-4c5f-498c-86c6-8500cca4fdef))
(fp_line (start 2.48 -1.15) (end 2.48 1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4ecafd7c-9c44-46ca-9b85-0ac1ac7b4fa8))
(fp_line (start 2.48 1.15) (end -2.48 1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2195a0e8-e342-4bcd-87c6-62194ad12d4d))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a91c7748-34a0-4516-84e6-063f4aa76e35))
(fp_line (start -1.6 0.8) (end -1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4f130f7e-bff5-4941-8e46-28a4e4ba107a))
(fp_line (start 1.6 -0.8) (end 1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4ddfaeb2-7742-4a6b-a886-06142e28f511))
(fp_line (start 1.6 0.8) (end -1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 32790bbd-6ca7-4a2a-8fa4-f91d19df2f7d))
(pad "1" smd roundrect (at -1.5625 0 180) (size 1.325 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1886792453)
(net 2 "GND") (pintype "passive") (tstamp a8763cbe-99c6-4209-80b2-c52c68086331))
(pad "2" smd roundrect (at 1.5625 0 180) (size 1.325 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1886792453)
(net 21 "BATT_AFTER_SWITCH") (pintype "passive") (tstamp 17645c74-1c19-4b88-8dba-e775d4a6e032))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "TestPoint:TestPoint_Pad_D1.5mm" (layer "F.Cu")
(tstamp 7e1c2466-132c-4c9c-b751-a238795955df)
(at 165.1 93.853)
(descr "SMD pad as test Point, diameter 1.5mm")
(tags "test point SMD pad")
(property "Sheetfile" "Combadge.kicad_sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(property "ki_description" "test point")
(property "ki_keywords" "test point tp")
(path "/76a25915-a52c-4884-920d-26c7311b38e6")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "TP2" (at -0.635 2.032 90) (layer "F.SilkS") hide
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp d12ea4c2-1950-4570-9675-12e29bb41f9b)
)
(fp_text value "TOUCH3" (at 0 1.75) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 60bdd36a-df2a-4581-8d90-417a9040cc54)
)
(fp_text user "${REFERENCE}" (at 0 -1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 20739214-9e9d-494a-9e4e-06e8feca11ab)
)
(fp_circle (center 0 0) (end 0 0.95)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp 77fe75e5-3012-48ee-9674-07bc6cde5d19))
(fp_circle (center 0 0) (end 1.25 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 68669f5b-303b-484e-b6ad-76fb66849699))
(pad "1" smd circle (at 0 0) (size 1.5 1.5) (layers "F.Cu" "F.Mask")
(net 55 "/ESP32/TOUCH3") (pinfunction "1") (pintype "passive") (tstamp 42aba089-e379-4cab-9407-7c2325133989))
)
(footprint "Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder" (layer "F.Cu")
(tstamp a35a8e56-e2b5-499c-9a45-cf513b9470ad)
(at 158.75 108.4965 90)
(descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(property "Sheetfile" "Mic.kicad_sch")
(property "Sheetname" "Mic")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/b5f2b92a-28fa-4563-8213-2672993f7b62/899cb615-6737-437c-ae69-3c9527089ac2")
(attr smd)
(fp_text reference "C7" (at -0.9775 -1.778 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 54326815-3251-48ae-a067-f906ef3a66c3)
)
(fp_text value "1uF" (at 0 1.85 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 19985a58-e374-485e-a1fc-5d07e790c5d8)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp b71e93ca-d635-4ec5-bda5-2489f9d9c511)
)
(fp_line (start -0.711252 -0.91) (end 0.711252 -0.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c32d8849-d232-4946-ad73-05353564ce9c))
(fp_line (start -0.711252 0.91) (end 0.711252 0.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7b1cf232-6e34-41f1-93c4-689c73dfc504))
(fp_line (start -2.48 -1.15) (end 2.48 -1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp abbf37d1-89ab-4422-9349-002b9317b05f))
(fp_line (start -2.48 1.15) (end -2.48 -1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5fc6ffeb-d54b-439c-9f9f-f7053e391644))
(fp_line (start 2.48 -1.15) (end 2.48 1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 543f80de-0b65-475a-9e16-4ebe1ed72e68))
(fp_line (start 2.48 1.15) (end -2.48 1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 980d9351-8011-4c93-8f1d-ba5a9ca721b1))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fedc7a28-d9a0-47ab-aa8e-06a9d485a8bb))
(fp_line (start -1.6 0.8) (end -1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4d968051-2214-4f99-9e92-deb16a59e3f0))
(fp_line (start 1.6 -0.8) (end 1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 56d1350e-3c16-4171-b353-38169cd80aa6))
(fp_line (start 1.6 0.8) (end -1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3b49687f-86f3-4a38-86cb-95d16bbe9d8a))
(pad "1" smd roundrect (at -1.5625 0 90) (size 1.325 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1886792453)
(net 2 "GND") (pintype "passive") (tstamp b4fe31f2-f50f-48c1-9355-081d3976c79d))
(pad "2" smd roundrect (at 1.5625 0 90) (size 1.325 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1886792453)
(net 3 "+3.3V") (pintype "passive") (tstamp dfcb1fc2-6cb1-452d-8ba1-398248c43460))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical" (layer "F.Cu")
(tstamp cc83d6ee-6c63-4def-8a43-e9331974e69c)
(at 162.56 83.82)
(descr "Through hole straight pin header, 1x01, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x01 2.54mm single row")
(property "Sheetfile" "Combadge.kicad_sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(property "ki_description" "Generic connector, single row, 01x01, script generated")
(property "ki_keywords" "connector")
(path "/8f1efb23-d6da-4a38-a465-64f56a05ded7")
(attr through_hole exclude_from_bom)
(fp_text reference "J4" (at 1.27 -1.524) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d3845d17-5a36-48c2-a602-17c8f45cfe06)
)
(fp_text value "GND" (at 0 2.33) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ae1752bc-d33c-4ded-a462-ab620d115cb5)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3f6710c4-ee27-472f-bfd8-348820dd8829)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 032c107d-f12a-4b97-bd8d-0435a11a5fac))
(fp_line (start -1.33 0) (end -1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ba19d019-a9a9-4b6b-ab7b-43afdf19419f))
(fp_line (start -1.8 -1.8) (end -1.8 1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f820fc8c-7815-4270-a08e-32ec9c5f51e0))
(fp_line (start -1.8 1.8) (end 1.8 1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 98c0684d-17cd-4a21-92bb-353540e10946))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bde3feda-fa95-4810-89eb-06a4a9d3721f))
(fp_line (start 1.8 1.8) (end 1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9f0a1681-d691-4b1f-9408-5f921b623cab))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 72f08109-a316-4329-8f8d-7fee4cb87d94))
(fp_line (start -1.27 1.27) (end -1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a10eb457-44c4-4cd8-b0c4-f68a87c64c7e))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e0106f8b-c0cf-4091-b7ea-e9df7a2b6246))
(fp_line (start 1.27 -1.27) (end 1.27 1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8740de54-6bbf-450b-9034-98f0d1ef4fa1))
(fp_line (start 1.27 1.27) (end -1.27 1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp afa4ea48-d29a-4f38-b86c-b5f72d991aba))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp da0cb7a5-0546-4cec-a14a-01022df5bd28))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x01_P2.54mm_Vertical.wrl" hide
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder" (layer "F.Cu")
(tstamp d3185e8e-996f-46d2-83d0-cf696b80c66c)
(at 167.64 96.774 180)
(descr "Resistor SMD 1206 (3216 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" "Speaker.kicad_sch")
(property "Sheetname" "Speaker")
(property "ki_description" "Resistor, US symbol")
(property "ki_keywords" "R res resistor")
(path "/8196ddf3-1455-4a17-8346-613907020849/1b028ede-94a1-4fa8-990e-7c4aaad2287e")
(attr smd)
(fp_text reference "R11" (at -4.064 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dd19ef51-653e-4c3f-9382-83f66672f28d)
)
(fp_text value "100k" (at 0 1.82) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 568261f8-cd21-445d-80c5-a21d01a44703)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp f257ec95-9388-4f7f-8f0b-78ef94ebcbe5)
)
(fp_line (start -0.727064 -0.91) (end 0.727064 -0.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 95659c4b-0f47-4c3d-92da-c0967e6cfd7f))
(fp_line (start -0.727064 0.91) (end 0.727064 0.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b181a974-c54e-4870-b676-58c6e50ed93f))
(fp_line (start -2.45 -1.12) (end 2.45 -1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c3fc36e3-5001-44ae-bf38-ed6bb8b5b19f))
(fp_line (start -2.45 1.12) (end -2.45 -1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 04aab197-6a03-431e-8c7b-f155f182515c))
(fp_line (start 2.45 -1.12) (end 2.45 1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2556347f-15ac-421b-b70e-744160ce7fe7))
(fp_line (start 2.45 1.12) (end -2.45 1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cf410449-80a7-4a70-b42c-1e1820d3326c))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7458a975-3886-402b-a428-9d3c9a434f86))
(fp_line (start -1.6 0.8) (end -1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 57f1fe5b-51ee-4cff-8ec7-e5b440737a37))
(fp_line (start 1.6 -0.8) (end 1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5bf0f41a-670c-4648-bfa3-542eb9cc5761))
(fp_line (start 1.6 0.8) (end -1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d012cc3a-a3fe-4c4c-a561-a140cd2b86ef))
(pad "1" smd roundrect (at -1.55 0 180) (size 1.3 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1923076923)
(net 2 "GND") (pintype "passive") (tstamp 93d94462-25c1-47e6-b318-0ae7901981a2))
(pad "2" smd roundrect (at 1.55 0 180) (size 1.3 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1923076923)
(net 22 "Net-(U5-GAIN_SLOT)") (pintype "passive") (tstamp fb72e7af-5528-4876-b65a-918fdaaa074a))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_1206_3216Metric.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")
(tstamp dd260a4f-a8aa-456b-a898-ca3e4fde28ac)
(at 148.849 83.82 -90)
(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" "Combadge.kicad_sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(property "ki_description" "Generic connector, single row, 01x02, script generated")
(property "ki_keywords" "connector")
(path "/040d0d84-4d65-43be-a851-e35f54e2be64")
(attr through_hole exclude_from_bom)
(fp_text reference "J3" (at 1.6764 0.005) (layer "F.SilkS") hide
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp a9d5d88f-0f8a-4318-b3df-aba072c89b00)
)
(fp_text value "UART" (at 0 4.87 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a6acea16-412b-497f-8de0-cc2bd0395c89)
)
(fp_text user "${REFERENCE}" (at 0 1.27) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 618922af-2573-4ada-8ff2-39abf82a0a34)
)
(fp_line (start -1.8 -1.8) (end -1.8 4.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f4ffff2a-da53-4066-9e41-9e1454eb4ed0))
(fp_line (start -1.8 4.35) (end 1.8 4.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp dc66859c-219c-40e6-ad1a-cd96fb5fc8f8))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp dd905c82-794f-4b79-8d2d-a05caf1597ac))
(fp_line (start 1.8 4.35) (end 1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d922de35-54f2-4ab1-b480-0059bd4f4a52))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7bc6b286-a2e6-41d6-9e97-ac29cce36832))
(fp_line (start -1.27 3.81) (end -1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 062d3e5f-6347-4bd9-92f9-d7b3de098287))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3b3fce20-02ba-4eb9-988b-a7431e333d0e))
(fp_line (start 1.27 -1.27) (end 1.27 3.81)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 266b9cf5-95d1-4a3f-a84a-34d8effc6539))
(fp_line (start 1.27 3.81) (end -1.27 3.81)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1f7b183a-ba28-4986-9228-b65eb49b8220))
(pad "1" thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 5 "/ESP32/ESP_RX") (pinfunction "Pin_1") (pintype "passive") (tstamp 25604e9c-cd7c-45dd-912e-34874b659a9d))
(pad "2" thru_hole oval (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 6 "/ESP32/ESP_TX") (pinfunction "Pin_2") (pintype "passive") (tstamp c906fb86-a382-49f7-999e-5076c20cd2e8))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_P2.54mm_Vertical.wrl" hide
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder" (layer "F.Cu")
(tstamp e2fe6ec7-1b09-4678-b25d-dc319d558306)
(at 155.829 83.947)
(descr "Resistor SMD 1206 (3216 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.kicad_sch")
(property "Sheetname" "ESP32")
(property "ki_description" "Resistor, US symbol")
(property "ki_keywords" "R res resistor")
(path "/e52d477a-07ba-4161-9136-a631aed85a9f/54cc6bfa-008d-4028-b6ae-0c714577200f")
(attr smd)
(fp_text reference "R6" (at 0 1.524) (layer "F.SilkS")