-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_autosave-YakBak-soldering-kit.kicad_pcb
8077 lines (8037 loc) · 302 KB
/
_autosave-YakBak-soldering-kit.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20221018) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
)
(setup
(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.2)
(aux_axis_origin 95.75 114.5)
(pcbplotparams
(layerselection 0x00010f0_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions true)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 4)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk true)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "gerbers/")
)
)
(net 0 "")
(net 1 "Net-(U3-A+)")
(net 2 "GND")
(net 3 "+5V")
(net 4 "/D0")
(net 5 "/D1")
(net 6 "/D2")
(net 7 "/D3")
(net 8 "/D4")
(net 9 "/D5")
(net 10 "/D6")
(net 11 "/D7")
(net 12 "/D8")
(net 13 "/D9")
(net 14 "/D10")
(net 15 "+3.3V")
(footprint "Connector_PinSocket_2.54mm:PinSocket_1x07_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 03f1b12e-a50c-428e-8b3e-657c7011c57a)
(at 122.25 109.66 180)
(descr "Through hole straight socket strip, 1x07, 2.54mm pitch, single row (from Kicad 4.0.7), script generated")
(tags "Through hole socket strip THT 1x07 2.54mm single row")
(property "Sheetfile" "YakBak-soldering-kit.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x07, script generated")
(property "ki_keywords" "connector")
(path "/514713ab-32ae-49a5-b8ee-52957a21486d")
(attr through_hole)
(fp_text reference "J2" (at 0 -2.77) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.153)))
(tstamp 981fd433-d571-4723-9a17-838717864122)
)
(fp_text value "Conn_01x07_Socket" (at 0 18.01) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 052d1b84-b5d4-4668-a68b-82cf068d6f5c)
)
(fp_text user "${REFERENCE}" (at 0 7.62 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 81f41cac-b087-4fac-8724-aec791752f98)
)
(fp_line (start -1.33 1.27) (end -1.33 16.57)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ee6a2727-4682-4e4e-8a73-c5b9b0b6aed1))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b87931fe-f313-421f-a7c3-a69ad0cfab25))
(fp_line (start -1.33 16.57) (end 1.33 16.57)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ec753c3a-b8d8-40ec-acce-222e3d506320))
(fp_line (start 0 -1.33) (end 1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 364e4161-3108-44fe-a455-f4e3d827841f))
(fp_line (start 1.33 -1.33) (end 1.33 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f284e6f9-ba1d-488f-938d-8587d8203e93))
(fp_line (start 1.33 1.27) (end 1.33 16.57)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9386ae3c-4b17-40ea-9044-a70b577707c4))
(fp_line (start -1.8 -1.8) (end 1.75 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3aaf1454-425e-4c87-90e0-51288690ce85))
(fp_line (start -1.8 17) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8f493e8b-e3f7-4912-99ab-e76722c1f531))
(fp_line (start 1.75 -1.8) (end 1.75 17)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e1289c7c-8aa4-4fd5-84a8-5487ec0d4499))
(fp_line (start 1.75 17) (end -1.8 17)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp dfefd362-f71d-4499-b6c2-df991e166830))
(fp_line (start -1.27 -1.27) (end 0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d330546b-4416-491e-899e-63c5600de87d))
(fp_line (start -1.27 16.51) (end -1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 173b62b2-3caf-4d50-9f63-9548e677ac97))
(fp_line (start 0.635 -1.27) (end 1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 66b2201e-e62f-447d-932c-8e4b9c844fe6))
(fp_line (start 1.27 -0.635) (end 1.27 16.51)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c8ed20d4-c08d-4e0c-b8d2-c3da22816ff0))
(fp_line (start 1.27 16.51) (end -1.27 16.51)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ec0d2025-497c-45e7-98ef-ef2975af2ef9))
(pad "1" thru_hole rect (at 0 0 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 4 "/D0") (pinfunction "Pin_1") (pintype "passive") (tstamp b6863ba6-fda4-4aff-aa1a-762502c56fb6))
(pad "2" thru_hole oval (at 0 2.54 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 5 "/D1") (pinfunction "Pin_2") (pintype "passive") (tstamp 74bc816c-fb49-4def-bcea-e5cf29b9f3a1))
(pad "3" thru_hole oval (at 0 5.08 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 6 "/D2") (pinfunction "Pin_3") (pintype "passive") (tstamp 6ce2eac4-bb66-4eb3-96cf-f1e651aec898))
(pad "4" thru_hole oval (at 0 7.62 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 7 "/D3") (pinfunction "Pin_4") (pintype "passive") (tstamp fb20fa15-42e5-4f91-9f82-e05ffe89d42f))
(pad "5" thru_hole oval (at 0 10.16 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 8 "/D4") (pinfunction "Pin_5") (pintype "passive") (tstamp 67a3a7be-6ac5-4b37-abb4-7a2ee3677726))
(pad "6" thru_hole oval (at 0 12.7 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 9 "/D5") (pinfunction "Pin_6") (pintype "passive") (tstamp 4795aa91-5f1a-4b30-a74a-67d823e9d0bb))
(pad "7" thru_hole oval (at 0 15.24 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 10 "/D6") (pinfunction "Pin_7") (pintype "passive") (tstamp 94720235-294c-4338-807a-5f4efda1ea84))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_1x07_P2.54mm_Vertical.wrl" hide
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Button_Switch_THT:SW_PUSH_6mm" (layer "F.Cu")
(tstamp 16d42ca3-0ee2-45d5-819d-56feb765de32)
(at 97 76.5)
(descr "https://www.omron.com/ecb/products/pdf/en-b3f.pdf")
(tags "tact sw push 6mm")
(property "Sheetfile" "YakBak-soldering-kit.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Push button switch, generic, two pins")
(property "ki_keywords" "switch normally-open pushbutton push-button")
(path "/a24abd10-b86c-457f-b6fa-28c91e5147ce")
(attr through_hole)
(fp_text reference "SW1" (at 3.25 -2) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.153)))
(tstamp 0f95c98b-89bf-4549-a05f-4d8a3f7e6f1f)
)
(fp_text value "Say" (at 3.75 6.7) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp aefd66de-a2f6-4598-a5e0-eda96cb6e002)
)
(fp_text user "${REFERENCE}" (at 3.25 2.25) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 95cdde61-98aa-41ed-aa30-af4f83080d4d)
)
(fp_line (start -0.25 1.5) (end -0.25 3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 76598043-c67c-4e88-a4a6-756e134bca3f))
(fp_line (start 1 5.5) (end 5.5 5.5)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a28acbee-5ac9-446f-96af-87e07d00b332))
(fp_line (start 5.5 -1) (end 1 -1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1055b6c7-3056-4251-8bef-1abe21537f59))
(fp_line (start 6.75 3) (end 6.75 1.5)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f3f54bfb-2d6c-42d3-918b-e20364b9c921))
(fp_line (start -1.5 -1.5) (end -1.25 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 93256e12-5b05-44e5-ab12-fe62c1181db3))
(fp_line (start -1.5 -1.25) (end -1.5 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d8aebd0d-945a-4b4e-ac7c-c82cce079d87))
(fp_line (start -1.5 5.75) (end -1.5 -1.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6efec805-67a6-47fe-8da3-6ea64b26abd9))
(fp_line (start -1.5 5.75) (end -1.5 6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 23e55dea-9ae8-4af5-ad61-09676df55c8b))
(fp_line (start -1.5 6) (end -1.25 6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1f7ed59c-a32c-4b29-9ab9-8046699ce9f7))
(fp_line (start -1.25 -1.5) (end 7.75 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp caafbdf1-8014-4616-b0c6-94bb6d99ac48))
(fp_line (start 7.75 -1.5) (end 8 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp aa8efb3a-4180-47d8-af12-34195b6b5d8e))
(fp_line (start 7.75 6) (end -1.25 6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ffcae02b-58d6-46bd-983c-2f0a85be05d1))
(fp_line (start 7.75 6) (end 8 6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7c8dcfb9-971a-47ab-9833-5196bd67f9ac))
(fp_line (start 8 -1.5) (end 8 -1.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8d119d2e-44f8-4f37-8b72-936111e957c7))
(fp_line (start 8 -1.25) (end 8 5.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 89241c7b-fff1-41de-9125-23ae3e095022))
(fp_line (start 8 6) (end 8 5.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 14fb8f67-6c54-4eb0-8f20-3c4c1156be6f))
(fp_line (start 0.25 -0.75) (end 3.25 -0.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6494cdec-3ea9-498d-a2f6-f7a48a11aac6))
(fp_line (start 0.25 5.25) (end 0.25 -0.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9ccbde19-4c10-491e-b64d-e845341af43e))
(fp_line (start 3.25 -0.75) (end 6.25 -0.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1cbd9be7-4150-45da-b23d-bf211da61e1b))
(fp_line (start 6.25 -0.75) (end 6.25 5.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 85b229e4-de97-42fe-bf25-92b73b947b14))
(fp_line (start 6.25 5.25) (end 0.25 5.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e1475a18-82b1-4ec4-b027-39fbb4316e33))
(fp_circle (center 3.25 2.25) (end 1.25 2.5)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 62d9b6af-0caf-4513-9010-e810050a1c6b))
(pad "1" thru_hole circle (at 0 0 90) (size 2 2) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "1") (pintype "passive") (tstamp d1f213e8-8998-4c40-a30a-7e319e2800e8))
(pad "1" thru_hole circle (at 6.5 0 90) (size 2 2) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "1") (pintype "passive") (tstamp b258ac54-18c6-4b7e-a8ab-b7af8af3ef22))
(pad "2" thru_hole circle (at 0 4.5 90) (size 2 2) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 12 "/D8") (pinfunction "2") (pintype "passive") (tstamp 13111250-f473-465a-8acb-871351a6f274))
(pad "2" thru_hole circle (at 6.5 4.5 90) (size 2 2) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 12 "/D8") (pinfunction "2") (pintype "passive") (tstamp dc8b03a3-f60a-45fc-8b52-517090d209a8))
(model "${KICAD6_3DMODEL_DIR}/Button_Switch_THT.3dshapes/SW_PUSH_6mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinSocket_2.54mm:PinSocket_1x07_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 21f23d64-8913-4b6f-955f-f69aedfbd988)
(at 97.5 94.42)
(descr "Through hole straight socket strip, 1x07, 2.54mm pitch, single row (from Kicad 4.0.7), script generated")
(tags "Through hole socket strip THT 1x07 2.54mm single row")
(property "Sheetfile" "YakBak-soldering-kit.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x07, script generated")
(property "ki_keywords" "connector")
(path "/fba5b05a-0026-4c0b-bb6f-2116abbda7fc")
(attr through_hole)
(fp_text reference "J1" (at 0 -2.77) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.16)))
(tstamp d7642d2b-9048-491e-8719-d4a6ee056baa)
)
(fp_text value "Conn_01x07_Socket" (at 0 18.01) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 00a15ae4-6e72-4834-b3fc-0f787da1a2ce)
)
(fp_text user "${REFERENCE}" (at 0 7.62 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d757bd81-fc32-4750-8b58-96c0a24fa8c0)
)
(fp_line (start -1.33 1.27) (end -1.33 16.57)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 066f2b99-e068-40e9-9d51-1f56f93bd989))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 79c4716a-26d1-45d1-bbd5-a43df549a6f0))
(fp_line (start -1.33 16.57) (end 1.33 16.57)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 73a15d22-bb6e-46e6-96ff-0d65cdf6741b))
(fp_line (start 0 -1.33) (end 1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1e4d12a8-a767-4a1e-9815-74ca623123b4))
(fp_line (start 1.33 -1.33) (end 1.33 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ab144747-6473-4e8b-9674-0f3f3d91b50c))
(fp_line (start 1.33 1.27) (end 1.33 16.57)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b288e4bf-8a88-463d-8c0b-e7b6df612145))
(fp_line (start -1.8 -1.8) (end 1.75 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6efa5d4c-19c3-43e1-9ec4-92a0ca3b39f4))
(fp_line (start -1.8 17) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c29830e4-6d59-4c45-8e05-5dda21427eaa))
(fp_line (start 1.75 -1.8) (end 1.75 17)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b1889171-a6f8-4b14-8ea4-a5658670ad5b))
(fp_line (start 1.75 17) (end -1.8 17)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5895651f-d5ff-4194-bbb6-1b078331e596))
(fp_line (start -1.27 -1.27) (end 0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2cd1803c-e518-461e-ab4a-ed4699de9cff))
(fp_line (start -1.27 16.51) (end -1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1f2de7d1-9053-47a6-bd21-dfdebfc308fe))
(fp_line (start 0.635 -1.27) (end 1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3129f9e7-9690-490d-be50-98a184b561dc))
(fp_line (start 1.27 -0.635) (end 1.27 16.51)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b77cf582-e880-4188-b680-1801a8d8f336))
(fp_line (start 1.27 16.51) (end -1.27 16.51)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 437e6466-be59-4198-acdf-44d9ff0e699f))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 11 "/D7") (pinfunction "Pin_1") (pintype "passive") (tstamp 541bb3c3-fd42-4805-968a-5012351783c4))
(pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 12 "/D8") (pinfunction "Pin_2") (pintype "passive") (tstamp 3d28f35f-ddfa-464c-868e-8f64a47bcf98))
(pad "3" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 13 "/D9") (pinfunction "Pin_3") (pintype "passive") (tstamp de2ed572-5ccc-415e-82c0-b3bda4865b7c))
(pad "4" thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 14 "/D10") (pinfunction "Pin_4") (pintype "passive") (tstamp 7b1944ce-77df-44fa-8d5f-913f8ff8b91d))
(pad "5" thru_hole oval (at 0 10.16) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 15 "+3.3V") (pinfunction "Pin_5") (pintype "passive") (tstamp 64305286-4511-46e8-95cc-f67d47ef1920))
(pad "6" thru_hole oval (at 0 12.7) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "Pin_6") (pintype "passive") (tstamp 4034a8a1-4755-45c7-a52f-b91a5d62043a))
(pad "7" thru_hole oval (at 0 15.24) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 3 "+5V") (pinfunction "Pin_7") (pintype "passive") (tstamp 765c0f27-c921-44b5-b0f2-72cde36d4191))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_1x07_P2.54mm_Vertical.wrl" hide
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Button_Switch_THT:SW_PUSH_6mm" (layer "F.Cu")
(tstamp 744129c2-40a9-4221-872e-e19e857c330b)
(at 102.212 84.75)
(descr "https://www.omron.com/ecb/products/pdf/en-b3f.pdf")
(tags "tact sw push 6mm")
(property "Sheetfile" "YakBak-soldering-kit.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Push button switch, generic, two pins")
(property "ki_keywords" "switch normally-open pushbutton push-button")
(path "/bfe07b87-30d4-41c3-bdcd-e0a30509de59")
(attr through_hole)
(fp_text reference "SW2" (at 3.25 -2) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.153)))
(tstamp 7bb274de-8add-4e16-804d-46c5ea286bec)
)
(fp_text value "Play" (at 3.75 6.7) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2f90a179-a375-46c8-8c2a-3bb14e85abeb)
)
(fp_text user "${REFERENCE}" (at 3.25 2.25) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 60ce9874-d962-4ddd-b915-5a5865a3500a)
)
(fp_line (start -0.25 1.5) (end -0.25 3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4feab999-64ca-4e57-b1ad-0dec5ab36a05))
(fp_line (start 1 5.5) (end 5.5 5.5)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 781cd862-9f32-42c5-8f48-be22b42fe5d4))
(fp_line (start 5.5 -1) (end 1 -1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 63454f19-a18b-490d-8636-b1ec1ae547b6))
(fp_line (start 6.75 3) (end 6.75 1.5)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0d04f011-d4e5-4bc0-9372-e22a23582172))
(fp_line (start -1.5 -1.5) (end -1.25 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e9e836d6-fca4-49ec-abeb-0598ea92baa5))
(fp_line (start -1.5 -1.25) (end -1.5 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a3872539-6c98-48e5-8ccf-62e085df080c))
(fp_line (start -1.5 5.75) (end -1.5 -1.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6a56504c-f6f6-4890-a72d-dde4193be3fd))
(fp_line (start -1.5 5.75) (end -1.5 6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 249d2fc0-ed82-4db6-81e1-bae802fbe42d))
(fp_line (start -1.5 6) (end -1.25 6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5591a934-1593-4532-9946-86f6cd558026))
(fp_line (start -1.25 -1.5) (end 7.75 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7978ddee-9449-4efe-9705-59c73af45bf5))
(fp_line (start 7.75 -1.5) (end 8 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3e57d454-86b2-461e-98dd-e040caf79573))
(fp_line (start 7.75 6) (end -1.25 6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e47e48aa-6d3f-4074-96a9-e41f3262d832))
(fp_line (start 7.75 6) (end 8 6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7b3bfe0c-7e65-4a36-af8f-f1a6312b08d5))
(fp_line (start 8 -1.5) (end 8 -1.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9a398dcb-6937-4240-a46d-1bf5f7981ea2))
(fp_line (start 8 -1.25) (end 8 5.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f28a89f0-ddcc-4829-8086-974c0057f353))
(fp_line (start 8 6) (end 8 5.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 286d02ab-1532-4119-b845-dcaf256b3ee5))
(fp_line (start 0.25 -0.75) (end 3.25 -0.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b644c517-2298-4c65-8db3-547a0d3b1280))
(fp_line (start 0.25 5.25) (end 0.25 -0.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 25c08f5c-e9c6-4186-9813-87212f36393d))
(fp_line (start 3.25 -0.75) (end 6.25 -0.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp def2a1d7-e70b-4f70-bb1c-2d36c8603991))
(fp_line (start 6.25 -0.75) (end 6.25 5.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 61cb38a0-17ce-4f30-88ca-84b89fcf2644))
(fp_line (start 6.25 5.25) (end 0.25 5.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b1cd1719-3180-46cb-be24-d7d11d067f06))
(fp_circle (center 3.25 2.25) (end 1.25 2.5)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 56d2ce8e-22c1-47ea-96c5-7b4e3af6d277))
(pad "1" thru_hole circle (at 0 0 90) (size 2 2) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "1") (pintype "passive") (tstamp 04a5b57e-2c62-4e66-8123-7cbdcf9bbd88))
(pad "1" thru_hole circle (at 6.5 0 90) (size 2 2) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "1") (pintype "passive") (tstamp 1f6e4ea4-b2dd-416b-b46e-ce4d16c2924d))
(pad "2" thru_hole circle (at 0 4.5 90) (size 2 2) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 11 "/D7") (pinfunction "2") (pintype "passive") (tstamp 83cf9d40-a8a8-4244-ba39-be8163cd0331))
(pad "2" thru_hole circle (at 6.5 4.5 90) (size 2 2) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 11 "/D7") (pinfunction "2") (pintype "passive") (tstamp 4cc57366-602f-4ef0-838a-3ae2170850a6))
(model "${KICAD6_3DMODEL_DIR}/Button_Switch_THT.3dshapes/SW_PUSH_6mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "xiao ESP32C3_PCB:MOUDLE14P-SMD-2.54-21X17.8MM" (layer "F.Cu")
(tstamp 88c19f66-d9a2-40f2-9baf-f3f22baa2d39)
(at 118.9175 91.6307 180)
(property "Sheetfile" "YakBak-soldering-kit.kicad_sch")
(property "Sheetname" "")
(path "/10d72c2f-a808-4cf3-b491-dd5492c45996")
(attr through_hole)
(fp_text reference "U1" (at 14.9175 -19.61925) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.153) bold))
(tstamp 9dd03286-5b16-468b-8988-caa136a5162a)
)
(fp_text value "MOUDLE-SEEEDUINO-XIAO-ESP32C3" (at 8.89 -10.795) (layer "F.Fab")
(effects (font (size 0.48 0.48) (thickness 0.12)))
(tstamp 81e60b7c-d9f9-459d-9e52-3f707fe8a9a5)
)
(fp_line (start 0 -20.3285) (end 0 0)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp c0945a2c-d74d-4f05-b099-77ada519504a))
(fp_line (start 0 0) (end 17.8 0)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp acbc63a3-6060-4508-8d6a-b93f8cb21a63))
(fp_line (start 0.671541 -21) (end 0 -20.3285)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp 59acee58-8176-4386-aac4-5c1f96b1b6a3))
(fp_line (start 4.396 -15.072) (end 4.396 -22.425)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp a1d04ee1-e80f-40ca-9373-2136cb589d04))
(fp_line (start 4.4 -22.424) (end 13.395 -22.424)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp 828d58a4-0c49-46dd-9017-163b4535e1dc))
(fp_line (start 13.395 -22.424) (end 13.395 -15.072)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp 8ee0b85b-1708-4d66-a803-93c03b3c139f))
(fp_line (start 13.395 -15.072) (end 4.396 -15.072)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp ba2b575e-bea5-464c-a088-51d993accf76))
(fp_line (start 17.8 -21) (end 0.671541 -21)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp 4a3e1389-236b-48a4-b0b1-1b096dc461a1))
(fp_line (start 17.8 0) (end 17.8 -21)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp ecc5889c-f449-4198-a736-04395d012671))
(fp_circle (center -0.889 -18.161) (end -0.635 -18.161)
(stroke (width 0) (type solid)) (fill solid) (layer "Dwgs.User") (tstamp 79d4d8f8-c23b-4fd6-8174-efa01690b4c2))
(fp_poly
(pts
(xy 0 -20.955)
(xy 17.653 -20.955)
(xy 17.653 0)
(xy 0 0)
)
(stroke (width 0.01) (type solid)) (fill solid) (layer "F.CrtYd") (tstamp 775a831e-f48f-47b9-8a29-1e01af6845e7))
(pad "1" smd roundrect (at 0.335 -18.12 180) (size 3.75 2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 4 "/D0") (pinfunction "PA02_A0_D0") (pintype "passive") (tstamp 619abcdb-d69d-44dc-b50b-36058d246d91))
(pad "2" smd roundrect (at 0.335 -15.58 180) (size 3.75 2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 5 "/D1") (pinfunction "PA4_A1_D1") (pintype "passive") (tstamp 62483744-cb9b-41f1-ad34-ce7996e046fa))
(pad "3" smd roundrect (at 0.335 -13.04 180) (size 3.75 2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 6 "/D2") (pinfunction "PA10_A2_D2") (pintype "passive") (tstamp 2d3acdea-ea7f-4e22-b3c1-9f8f97cd9600))
(pad "4" smd roundrect (at 0.335 -10.5 180) (size 3.75 2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 7 "/D3") (pinfunction "PA11_A3_D3") (pintype "passive") (tstamp c6975950-e51f-4ce4-af42-096ab9b7d05b))
(pad "5" smd roundrect (at 0.335 -7.96 180) (size 3.75 2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 8 "/D4") (pinfunction "PA8_A4_D4_SDA") (pintype "passive") (tstamp fdaffb43-0ad1-4ce9-82f4-b16bdaf0c602))
(pad "6" smd roundrect (at 0.335 -5.42 180) (size 3.75 2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 9 "/D5") (pinfunction "PA9_A5_D5_SCL") (pintype "passive") (tstamp 9c87523d-6ff9-4622-a99d-dde03f14deb1))
(pad "7" smd roundrect (at 0.335 -2.88 180) (size 3.75 2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 10 "/D6") (pinfunction "PB08_A6_D6_TX") (pintype "passive") (tstamp c455d40f-5cac-4fc0-b8e6-a255b3fc5c29))
(pad "8" smd roundrect (at 17.5 -2.88 180) (size 3.75 2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 11 "/D7") (pinfunction "PB09_A7_D7_RX") (pintype "passive") (tstamp 01b5dec1-cd9e-4638-bca8-258b5080c391))
(pad "9" smd roundrect (at 17.5 -5.42 180) (size 3.75 2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 12 "/D8") (pinfunction "PA7_A8_D8_SCK") (pintype "passive") (tstamp 4960280e-781d-475f-89b2-979e2e3b0031))
(pad "10" smd roundrect (at 17.5 -7.96 180) (size 3.75 2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 13 "/D9") (pinfunction "PA5_A9_D9_MISO") (pintype "passive") (tstamp b2d7e94c-f5fc-4e6c-a5cd-0a6300ce04f0))
(pad "11" smd roundrect (at 17.5 -10.5 180) (size 3.75 2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 14 "/D10") (pinfunction "PA6_A10_D10_MOSI") (pintype "passive") (tstamp 2b3db20c-10c9-42d9-934a-8fbed9e11b76))
(pad "12" smd roundrect (at 17.5 -13.04 180) (size 3.75 2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 15 "+3.3V") (pinfunction "3V3") (pintype "passive") (tstamp 18f18e78-5008-4065-9570-87fc0e193996))
(pad "13" smd roundrect (at 17.5 -15.58 180) (size 3.75 2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp f9df65e2-10c2-43c5-b8e3-86e64e8b58bb))
(pad "14" smd roundrect (at 17.5 -18.12 180) (size 3.75 2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 3 "+5V") (pinfunction "5V") (pintype "passive") (tstamp 6a8b7801-1ea3-4c63-b681-bc70228a87ff))
(zone (net 0) (net_name "") (layer "F.Cu") (tstamp 2c12a729-26e5-45f4-a5c0-c9e9f6b07b8a) (hatch full 0.508)
(connect_pads (clearance 0))
(min_thickness 0.01) (filled_areas_thickness no)
(keepout (tracks not_allowed) (vias not_allowed) (pads not_allowed) (copperpour not_allowed) (footprints allowed))
(fill (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 106.598501 108.648702)
(xy 104.8205 108.6487)
(xy 104.8205 105.981697)
(xy 106.598499 105.981699)
)
)
)
(zone (net 0) (net_name "") (layer "F.Cu") (tstamp 30f9bcf4-dc7e-43ea-a4cc-5c8ae6336f52) (hatch full 0.508)
(connect_pads (clearance 0))
(min_thickness 0.01) (filled_areas_thickness no)
(keepout (tracks not_allowed) (vias not_allowed) (pads not_allowed) (copperpour not_allowed) (footprints allowed))
(fill (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 106.598502 112.7127)
(xy 104.820503 112.712699)
(xy 104.8205 110.0457)
(xy 106.5985 110.045699)
)
)
)
(zone (net 0) (net_name "") (layer "F.Cu") (tstamp 57f717c3-f10d-4ce0-bb43-3e8c89f126cf) (hatch full 0.508)
(connect_pads (clearance 0))
(min_thickness 0.01) (filled_areas_thickness no)
(keepout (tracks not_allowed) (vias not_allowed) (pads not_allowed) (copperpour not_allowed) (footprints allowed))
(fill (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 109.1385 102.9337)
(xy 106.090499 102.933698)
(xy 106.090501 99.885702)
(xy 109.138501 99.885702)
)
)
)
(zone (net 0) (net_name "") (layer "F.Cu") (tstamp 016eab4f-6cd3-4025-aadb-e1099ed1dd5c) (hatch full 0.508)
(connect_pads (clearance 0))
(min_thickness 0.01) (filled_areas_thickness no)
(keepout (tracks not_allowed) (vias not_allowed) (pads not_allowed) (copperpour not_allowed) (footprints allowed))
(fill (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 112.5675 94.8057)
(xy 106.852499 94.805698)
(xy 106.852498 92.265701)
(xy 112.567498 92.265698)
)
)
)
(zone (net 0) (net_name "") (layer "F.Cu") (tstamp e0e0a0de-5364-4dbf-a658-6e432183e49c) (hatch full 0.508)
(connect_pads (clearance 0))
(min_thickness 0.01) (filled_areas_thickness no)
(keepout (tracks not_allowed) (vias not_allowed) (pads not_allowed) (copperpour not_allowed) (footprints allowed))
(fill (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 112.567502 111.950696)
(xy 107.360503 111.950699)
(xy 107.360499 104.9657)
(xy 112.567498 104.965701)
)
)
)
(zone (net 0) (net_name "") (layer "F.Cu") (tstamp c1ff97ca-db30-4834-b9b8-6dcdccf23a35) (hatch full 0.508)
(connect_pads (clearance 0))
(min_thickness 0.01) (filled_areas_thickness no)
(keepout (tracks not_allowed) (vias not_allowed) (pads not_allowed) (copperpour not_allowed) (footprints allowed))
(fill (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 115.2345 108.648703)
(xy 113.456503 108.648701)
(xy 113.456498 105.981701)
(xy 115.2345 105.9817)
)
)
)
(zone (net 0) (net_name "") (layer "F.Cu") (tstamp 42c827ea-938b-42e0-bf4b-e6dd55beadac) (hatch full 0.508)
(connect_pads (clearance 0))
(min_thickness 0.01) (filled_areas_thickness no)
(keepout (tracks not_allowed) (vias not_allowed) (pads not_allowed) (copperpour not_allowed) (footprints allowed))
(fill (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 115.234503 112.7127)
(xy 113.4565 112.712701)
(xy 113.456501 110.045698)
(xy 115.234502 110.045699)
)
)
)
(zone (net 0) (net_name "") (layer "F.Cu") (tstamp b0602d75-8544-419b-b44b-25ef2103bf13) (hatch full 0.508)
(connect_pads (clearance 0))
(min_thickness 0.01) (filled_areas_thickness no)
(keepout (tracks not_allowed) (vias not_allowed) (pads not_allowed) (copperpour not_allowed) (footprints allowed))
(fill (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 115.933002 104.3942)
(xy 113.011999 104.394202)
(xy 113.011999 102.362201)
(xy 115.933001 102.362197)
)
)
)
(model "${KIPRJMOD}/3d/Seeed Studio XIAO-ESP32-C3.step"
(offset (xyz 15 8.5 0.5))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 -90))
)
)
(footprint "MountingHole:MountingHole_2.5mm" (layer "F.Cu")
(tstamp b16a0d30-37b9-43f7-800c-51fbd7a1d01f)
(at 120 53.25)
(descr "Mounting Hole 2.5mm, no annular")
(tags "mounting hole 2.5mm no annular")
(property "Sheetfile" "YakBak-soldering-kit.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Mounting Hole without connection")
(property "ki_keywords" "mounting hole")
(path "/a9790cd3-48dd-4b93-83f5-3be1c4f0fad8")
(attr exclude_from_pos_files)
(fp_text reference "H4" (at -1.25 -2.5) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.153)))
(tstamp e6665beb-bcfa-4c41-b22c-83149844b974)
)
(fp_text value "MountingHole" (at 0 3.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a17637bd-2d90-491d-962a-7456f07be540)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 16df2062-5c8c-4a04-863b-3e56c3c9e695)
)
(fp_circle (center 0 0) (end 2.5 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp 1afb22c8-6928-4b2e-842d-84fb21b65de8))
(fp_circle (center 0 0) (end 2.75 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 9858df54-ddb9-41d9-a94d-4dab2e99b2d8))
(pad "" np_thru_hole circle (at 0 0) (size 2.5 2.5) (drill 2.5) (layers "*.Cu" "*.Mask") (tstamp 971cb4c0-bc72-4b77-b25d-895d911356bd))
)
(footprint "MountingHole:MountingHole_2.5mm" (layer "F.Cu")
(tstamp d1016adb-59b2-49f5-b3b6-b0d4db6ccb1e)
(at 120.904 89.408)
(descr "Mounting Hole 2.5mm, no annular")
(tags "mounting hole 2.5mm no annular")
(property "Sheetfile" "YakBak-soldering-kit.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Mounting Hole without connection")
(property "ki_keywords" "mounting hole")
(path "/6bf5be7e-febf-49af-a257-3a27ea3c32ec")
(attr exclude_from_pos_files)
(fp_text reference "H1" (at 2 -1.75) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.153)))
(tstamp cb2c5eaf-7803-4a32-8e11-343ef4bb4ba3)
)
(fp_text value "MountingHole" (at 0 3.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 474355cf-79b5-452e-9204-9468cbc81d34)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 46f708d0-420d-4d87-af41-e42df63f187d)
)
(fp_circle (center 0 0) (end 2.5 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp 8d69e237-696f-4ffe-a199-310e172aef5c))
(fp_circle (center 0 0) (end 2.75 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 1925750a-00b6-4dfd-a909-705400822420))
(pad "" np_thru_hole circle (at 0 0) (size 2.5 2.5) (drill 2.5) (layers "*.Cu" "*.Mask") (tstamp d1d40667-11a9-4cb5-805c-51ee5c9836b0))
)
(footprint "Capacitor_THT:C_Disc_D5.1mm_W3.2mm_P5.00mm" (layer "F.Cu")
(tstamp d5f2b264-f7dc-479d-abad-80d29e24a2c3)
(at 119.75 81.75 90)
(descr "C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=5.1*3.2mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf")
(tags "C Disc series Radial pin pitch 5.00mm diameter 5.1mm width 3.2mm Capacitor")
(property "Sheetfile" "YakBak-soldering-kit.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/c40a77b4-74a0-4308-b8a7-60942d56e4b2")
(attr through_hole)
(fp_text reference "C1" (at 2.5 -2.85 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.153)))
(tstamp 1ae59bce-f189-4097-8415-b72e474581da)
)
(fp_text value "100 nF" (at 2.5 2.85 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0eaba7f6-d249-47ad-bf26-1d7b07ee4418)
)
(fp_text user "${REFERENCE}" (at 2.5 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f7ace590-07ec-401e-949c-12ca1d0867a6)
)
(fp_line (start -0.17 -1.721) (end -0.17 -1.055)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 395275d9-72cf-4161-b689-3b289fd4c390))
(fp_line (start -0.17 -1.721) (end 5.17 -1.721)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bd868d98-5aa2-4cd9-aad4-42d8d7bdcdc0))
(fp_line (start -0.17 1.055) (end -0.17 1.721)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 69b67a4c-24fa-412f-b272-1d4d0f46dbbc))
(fp_line (start -0.17 1.721) (end 5.17 1.721)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bbacf608-fd8a-4d9f-ab77-266b7dcf9481))
(fp_line (start 5.17 -1.721) (end 5.17 -1.055)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 43318438-c59b-4cd1-8eaf-cbdae8e04d32))
(fp_line (start 5.17 1.055) (end 5.17 1.721)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 05d4b701-4078-4da0-a2d4-e65c96d9407d))
(fp_line (start -1.05 -1.85) (end -1.05 1.85)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f8021f76-7a87-47df-ad50-e551e8c096fa))
(fp_line (start -1.05 1.85) (end 6.05 1.85)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8ce96212-e7a4-48b5-b3fa-752b19e1950d))
(fp_line (start 6.05 -1.85) (end -1.05 -1.85)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7b49545f-ac8c-42e6-976a-c32357d586a3))
(fp_line (start 6.05 1.85) (end 6.05 -1.85)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 161fb5a1-4504-4a19-9073-47fd6b9638b0))
(fp_line (start -0.05 -1.6) (end -0.05 1.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 94457848-1e39-4c2e-93c1-0afbf3c9c0c5))
(fp_line (start -0.05 1.6) (end 5.05 1.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5b6fa21b-733f-43e3-861e-f95677acb530))
(fp_line (start 5.05 -1.6) (end -0.05 -1.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9e9b1812-4e45-4737-a000-c52f0ed1e961))
(fp_line (start 5.05 1.6) (end 5.05 -1.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7e217f2c-b569-4c23-9465-c0a9c282900a))
(pad "1" thru_hole circle (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 1 "Net-(U3-A+)") (pintype "passive") (tstamp 2b0eaa4e-1b61-4041-863c-d8401fc8be0c))
(pad "2" thru_hole circle (at 5 0 90) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pintype "passive") (tstamp 8dbfdf93-b3a9-4c8d-8c4e-1a2821a06ff4))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/C_Disc_D5.1mm_W3.2mm_P5.00mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_2.5mm" (layer "F.Cu")
(tstamp e9ef5ce6-dc6c-4654-b7dc-2d707ca966b2)
(at 94 66.5)
(descr "Mounting Hole 2.5mm, no annular")
(tags "mounting hole 2.5mm no annular")
(property "Sheetfile" "YakBak-soldering-kit.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Mounting Hole without connection")
(property "ki_keywords" "mounting hole")
(path "/afcd5104-75c1-463a-8a01-1e7ebcf379ef")
(attr exclude_from_pos_files)
(fp_text reference "H2" (at 0 -3.5) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.153)))
(tstamp e7cc2f2b-244a-4a52-8696-a44f7278a5c4)
)
(fp_text value "MountingHole" (at 0 3.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 38d33034-41e1-4312-a899-93c4bedf4fc4)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 58957145-586b-4e71-8393-659d20317405)
)
(fp_circle (center 0 0) (end 2.5 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp 4e26b84c-d7b1-4f15-983e-564b98c9c331))
(fp_circle (center 0 0) (end 2.75 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 21e7c465-63af-4092-8695-1adf7e239bb6))
(pad "" np_thru_hole circle (at 0 0) (size 2.5 2.5) (drill 2.5) (layers "*.Cu" "*.Mask") (tstamp 0a8af100-883b-43f7-958d-ac033f0e2cf1))
)
(footprint "MountingHole:MountingHole_2.5mm" (layer "F.Cu")
(tstamp ecb374f8-632d-4d2c-834a-7a2a79277a12)
(at 97.536 86.106)
(descr "Mounting Hole 2.5mm, no annular")
(tags "mounting hole 2.5mm no annular")
(property "Sheetfile" "YakBak-soldering-kit.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Mounting Hole without connection")
(property "ki_keywords" "mounting hole")
(path "/ad6d3b9b-389c-4d33-a8b8-5c1a3b6ab2eb")
(attr exclude_from_pos_files)
(fp_text reference "H3" (at -0.25 -3.25) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.153)))
(tstamp 02a1e402-6f42-4359-89fd-2f972a0b02be)
)
(fp_text value "MountingHole" (at 0 3.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a430849a-0a2c-4659-bd8d-2258cb8d5076)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 058ca2ba-bffc-4774-bf5e-cbcc80feaac7)
)
(fp_circle (center 0 0) (end 2.5 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp 5befc827-0e1c-415a-9bac-d3e95af0da5b))
(fp_circle (center 0 0) (end 2.75 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp f732dca3-927a-4700-8f62-d8bb369992e3))
(pad "" np_thru_hole circle (at 0 0) (size 2.5 2.5) (drill 2.5) (layers "*.Cu" "*.Mask") (tstamp 24e2a8e8-6ff8-4b28-bbbe-560397b1f076))
)
(footprint "Connector_PinSocket_2.54mm:PinSocket_1x03_P2.54mm_Vertical" (layer "F.Cu")
(tstamp f927ad25-6a75-496f-a80f-1d9cbd333f99)
(at 94.25 54.96)
(descr "Through hole straight socket strip, 1x03, 2.54mm pitch, single row (from Kicad 4.0.7), script generated")
(tags "Through hole socket strip THT 1x03 2.54mm single row")
(property "Sheetfile" "YakBak-soldering-kit.kicad_sch")
(property "Sheetname" "")
(path "/3ab5e0c7-e181-4997-96e1-6a1f91d9b340")
(attr through_hole)
(fp_text reference "U2" (at 1 -2.77) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.153)))
(tstamp f749b5d6-c72a-4e35-88ee-214cdfd89096)
)
(fp_text value "Electret Microphone Amp Module" (at 0 7.85) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp aa645571-c18b-4673-9613-d66a14e9f6f1)
)
(fp_text user "${REFERENCE}" (at 0 2.54 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 55f22241-bede-4713-b8ab-21b762189326)
)
(fp_line (start -1.33 1.27) (end -1.33 6.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 203312bf-51f3-43dd-a04f-7f97ed57ce6d))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 694a4ae9-7100-4230-a246-8eecea473d19))
(fp_line (start -1.33 6.41) (end 1.33 6.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 399e50ff-7ffa-4aa2-b327-4ed315c6b159))
(fp_line (start 0 -1.33) (end 1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fa1085fb-692e-4073-b764-c18c6046c8f3))
(fp_line (start 1.33 -1.33) (end 1.33 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6e49194c-8cc0-4563-b094-54b55c19eb71))
(fp_line (start 1.33 1.27) (end 1.33 6.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d5246bb7-96fe-4630-9945-e6c65d806407))
(fp_line (start -1.8 -1.8) (end 1.75 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 88e40224-e335-4100-98a3-31784035895a))
(fp_line (start -1.8 6.85) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f3419744-3ff7-4c94-8331-48062041f86c))
(fp_line (start 1.75 -1.8) (end 1.75 6.85)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6b0609aa-ff6d-49e6-8648-a8304d697b71))
(fp_line (start 1.75 6.85) (end -1.8 6.85)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7a1e50d4-d72a-40dc-adab-48cdd1f715ff))
(fp_line (start -1.27 -1.27) (end 0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 60cdb597-826f-4957-9f7f-5251dcd60510))
(fp_line (start -1.27 6.35) (end -1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 329ff5d1-1145-4bdd-b3c0-988fe532ca17))
(fp_line (start 0.635 -1.27) (end 1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fd1ce079-3f42-4943-9e9c-719eb0af133a))
(fp_line (start 1.27 -0.635) (end 1.27 6.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 15fa670c-c56d-45c9-a81f-74c572d0148b))
(fp_line (start 1.27 6.35) (end -1.27 6.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e8e9dedc-fd9e-4f19-a9d7-f0cc9d2742fb))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 4 "/D0") (pinfunction "OUT") (pintype "passive") (tstamp 48ad6f71-afe5-4fd7-aa93-79a5ab76dbd2))
(pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp 3fec1c2f-c7b6-4fbb-9ce2-722a40b02375))
(pad "3" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 15 "+3.3V") (pinfunction "VCC") (pintype "passive") (tstamp dbdef341-c18c-4353-927f-dcf8ba83b163))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_1x03_P2.54mm_Vertical.wrl" hide
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model "${KIPRJMOD}/3d/max4466_mic_amp.STEP" hide
(offset (xyz -1.5 4 7.5))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
)
(footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (layer "B.Cu")
(tstamp 0c09581c-70ae-40be-b1af-10cb0bfa07ce)
(at 120.25 71.31 90)
(descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.167W length 3.6mm diameter 1.6mm")
(property "Sheetfile" "YakBak-soldering-kit.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small US symbol")
(property "ki_keywords" "r resistor")
(path "/6f3c40f9-f426-4b37-ac7a-62c862c725cc")
(attr through_hole)
(fp_text reference "R1" (at 6.31 -2 90) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.153)) (justify mirror))
(tstamp 447e0249-9e83-453f-b581-b0d0994e22df)
)
(fp_text value "100 ohms" (at 3.81 -1.92 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 6bc6466a-ff32-48ba-9873-3e9df77b1d44)
)
(fp_text user "${REFERENCE}" (at 3.81 0 90) (layer "B.Fab")
(effects (font (size 0.72 0.72) (thickness 0.108)) (justify mirror))
(tstamp 5355237a-2a8f-445c-93f8-59d2b5bf61dc)
)
(fp_line (start 0.94 0) (end 1.89 0)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp ed6a4f6f-56c0-47f6-b5a7-31a25129a5c0))
(fp_line (start 1.89 -0.92) (end 5.73 -0.92)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 7f0c3a34-23dd-458a-8d26-9ee2b1f76c23))
(fp_line (start 1.89 0.92) (end 1.89 -0.92)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 5bc18206-bcc8-4ff3-93e6-213d0ac62ed8))
(fp_line (start 5.73 -0.92) (end 5.73 0.92)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp b1a91118-82c9-4e96-8051-d40779075de5))
(fp_line (start 5.73 0.92) (end 1.89 0.92)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp e17348f8-ee10-40c8-b213-0f5798f645da))
(fp_line (start 6.68 0) (end 5.73 0)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 3c63eeb1-4d47-4c2f-9d51-2726b7f26eb8))
(fp_line (start -0.95 -1.05) (end 8.57 -1.05)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 09289604-94cd-4282-879a-a67302860e18))
(fp_line (start -0.95 1.05) (end -0.95 -1.05)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 5380a62a-ac71-47dd-9eef-650db0d676e2))
(fp_line (start 8.57 -1.05) (end 8.57 1.05)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 7d24f793-ee2a-4410-89e4-e34194f52b73))
(fp_line (start 8.57 1.05) (end -0.95 1.05)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 04be298f-7e51-44be-aa1b-05320575e5c3))
(fp_line (start 0 0) (end 2.01 0)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 9481ef52-26b3-40d4-91bd-1b936789d782))
(fp_line (start 2.01 -0.8) (end 5.61 -0.8)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 31b31342-8bec-4ace-b721-635af8a5cc2a))
(fp_line (start 2.01 0.8) (end 2.01 -0.8)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp eb8d831e-8045-48b1-9e76-841d94c84c73))
(fp_line (start 5.61 -0.8) (end 5.61 0.8)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 9d488c00-d9b5-40d9-9977-db46b184a4f3))
(fp_line (start 5.61 0.8) (end 2.01 0.8)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp c1f93967-e816-46dc-a812-f060edf79128))
(fp_line (start 7.62 0) (end 5.61 0)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp b309b72c-8bbc-4939-a089-00a5823b6566))
(pad "1" thru_hole circle (at 0 0 90) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 14 "/D10") (pintype "passive") (tstamp 2470f2db-d708-41a7-b2a5-ac43eca44b5c))
(pad "2" thru_hole oval (at 7.62 0 90) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 1 "Net-(U3-A+)") (pintype "passive") (tstamp 29b7866d-5493-409a-bd75-f71da2eb1db0))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x05_P2.54mm_Vertical" (layer "B.Cu")
(tstamp 84bd63d4-47dd-4a2f-a965-078cdf9d978a)
(at 111.76 85.25 -90)
(descr "Through hole straight pin header, 1x05, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x05 2.54mm single row")
(property "Sheetfile" "YakBak-soldering-kit.kicad_sch")
(property "Sheetname" "")
(path "/4f7750f0-133c-42da-abe7-833651255da7")
(attr through_hole)
(fp_text reference "U3" (at -2.5 1.34) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.153)) (justify mirror))
(tstamp 6ef59319-e035-444c-9478-b5ce02083cc9)
)
(fp_text value "Adafruit 2130 - PAM8302" (at 0 -12.49 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 3411875f-b561-4483-8b79-2332b88e585a)
)
(fp_text user "${REFERENCE}" (at 0 -5.08 -360) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 0d078083-ab7f-453a-9cf4-d02376246223)
)
(fp_line (start -1.33 -11.49) (end 1.33 -11.49)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp be444195-c4ff-44fd-857d-01bacca8335f))
(fp_line (start -1.33 -1.27) (end -1.33 -11.49)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp c7b7c03b-47ad-4b74-bfcd-b2160b513a96))
(fp_line (start -1.33 -1.27) (end 1.33 -1.27)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 1f7826d3-3c8b-4a37-a31c-41dd0cbb31a9))
(fp_line (start -1.33 0) (end -1.33 1.33)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 4c55d24b-9c6b-4c73-b55a-1e8af3ed1498))
(fp_line (start -1.33 1.33) (end 0 1.33)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 3c34a43f-1bcf-40e5-8a0b-312825340de7))
(fp_line (start 1.33 -1.27) (end 1.33 -11.49)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 9ed98e5f-395e-4177-ab9b-336cd4c100ea))
(fp_line (start -1.8 -11.95) (end 1.8 -11.95)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 260c64e9-52f8-46f8-8e6b-197c508820fa))
(fp_line (start -1.8 1.8) (end -1.8 -11.95)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp f69d5c00-9597-43cd-b2ad-51e0cd8b8b59))
(fp_line (start 1.8 -11.95) (end 1.8 1.8)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 0745afd2-d180-423e-b75a-133fe2c178f3))
(fp_line (start 1.8 1.8) (end -1.8 1.8)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 8806fd76-07d2-4ab3-85bf-7d8348caef22))
(fp_line (start -1.27 -11.43) (end -1.27 0.635)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp df3d87a2-8d79-4b16-b3a6-8d5d1994f41a))
(fp_line (start -1.27 0.635) (end -0.635 1.27)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 470fa257-11e1-41fc-abd7-74e6beffc6d7))
(fp_line (start -0.635 1.27) (end 1.27 1.27)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 7e3fa335-65f2-4aa8-bd17-1687cac9b84e))
(fp_line (start 1.27 -11.43) (end -1.27 -11.43)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 40e66c5e-9a14-42a3-94fe-5b5ef67ab0a4))
(fp_line (start 1.27 1.27) (end 1.27 -11.43)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 35532937-acd0-4a4a-bf85-0829928c28fd))
(pad "1" thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp dabe1b94-7d3f-4268-b088-084d02d02d5d))
(pad "2" thru_hole oval (at 0 -2.54 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 3 "+5V") (pinfunction "Vin") (pintype "passive") (tstamp 6aa23aea-1285-4bf6-904f-59abe3aea572))
(pad "3" thru_hole oval (at 0 -5.08 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 13 "/D9") (pinfunction "Shutdown") (pintype "passive") (tstamp cc65925a-e790-444b-91c4-347991ce5c03))
(pad "4" thru_hole oval (at 0 -7.62 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "A-") (pintype "passive") (tstamp beb3410e-0d1e-4100-8935-0214f18c932e))
(pad "5" thru_hole oval (at 0 -10.16 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 1 "Net-(U3-A+)") (pinfunction "A+") (pintype "passive") (tstamp 8eb5464d-293d-49ae-8768-34c3563f335f))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x05_P2.54mm_Vertical.wrl" hide
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model "${KIPRJMOD}/3d/adafruit_2130 v1.step" hide
(offset (xyz -44 -35.1 3.5))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
)
(gr_poly
(pts
(xy 104.409833 57.58598)
(xy 104.279616 57.598383)
(xy 104.018824 57.615785)
(xy 103.75765 57.625126)
(xy 103.496209 57.628584)
(xy 102.450068 57.62709)