-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRC_Engine_Sound_Light_Controller_KiCad6.kicad_pcb
14263 lines (14220 loc) · 588 KB
/
RC_Engine_Sound_Light_Controller_KiCad6.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20211014) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(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)
(disableapertmacros false)
(usegerberextensions true)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile true)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "/tmp/pcbwayOrder")
)
)
(net 0 "")
(net 1 "Net-(J11-Pad1)")
(net 2 "GND")
(net 3 "+5V")
(net 4 "D15")
(net 5 "D2")
(net 6 "D4")
(net 7 "D16")
(net 8 "D17")
(net 9 "D5")
(net 10 "D18")
(net 11 "VDD")
(net 12 "+12V")
(net 13 "unconnected-(U1-Pad1)")
(net 14 "unconnected-(U1-Pad11)")
(net 15 "Net-(C3-Pad1)")
(net 16 "D36")
(net 17 "unconnected-(U1-Pad12)")
(net 18 "unconnected-(U1-Pad13)")
(net 19 "unconnected-(U1-Pad14)")
(net 20 "D32")
(net 21 "D25")
(net 22 "D26")
(net 23 "unconnected-(U1-Pad18)")
(net 24 "unconnected-(U1-Pad20)")
(net 25 "Net-(RV1-Pad2)")
(net 26 "Net-(J1-Pad1)")
(net 27 "HEADLIGHTS")
(net 28 "TAILLIGHTS")
(net 29 "ROOFLIGHTS")
(net 30 "REVERSING")
(net 31 "INDICATOR_L")
(net 32 "INDICATOR_R")
(net 33 "Net-(R1-Pad2)")
(net 34 "Net-(J12-Pad1)")
(net 35 "Net-(J13-Pad1)")
(net 36 "Net-(J14-Pad1)")
(net 37 "Net-(J15-Pad1)")
(net 38 "FOGLIGHTS")
(net 39 "D33")
(net 40 "D13")
(net 41 "D12")
(net 42 "D14")
(net 43 "Net-(J10-Pad1)")
(net 44 "Net-(J16-Pad1)")
(net 45 "D27")
(net 46 "unconnected-(U1-Pad19)")
(net 47 "D23")
(net 48 "unconnected-(U1-Pad10)")
(net 49 "Net-(D1-Pad1)")
(footprint "cf:PAM8403_NOSPEAKER_BreakoutBoard" (layer "F.Cu")
(tedit 0) (tstamp 0af56de4-c740-4275-9637-c7aa0ee186c9)
(at 129.032 62.865 -90)
(property "Sheetfile" "RC_Engine_Sound_Light_Controller_KiCad6.kicad_sch")
(property "Sheetname" "")
(path "/7a8d3841-2676-4cc4-b90f-44741ebab8c3")
(attr through_hole)
(fp_text reference "U3" (at 0.635 5.08 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d32eb47e-3358-4973-a89f-77fe559c7aca)
)
(fp_text value "PAM8403_BreakoutBoard" (at 0 1 -90 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 785fa5cd-5bea-4946-a374-ea5422c5d21a)
)
(fp_text user "G" (at -5.3975 7.7 -90 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 068ad251-a2b0-4500-b941-03d5a098f4f1)
)
(fp_text user "+" (at -5.3975 -7.7 -90 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 328c1004-c7c8-42b3-9018-fcf8fdaef5a7)
)
(fp_text user "L OUT R" (at 0 -9.5 -90 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4154c617-bb23-4af2-9aae-4fa645de386d)
)
(fp_text user "${REFERENCE}" (at 0 2.5 -90 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4826d466-5e18-4838-8ed8-7dd01d18eca8)
)
(fp_text user "+" (at 5.3975 -7.7 -90 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4d296415-043f-4492-bcd2-d0927efcb0f7)
)
(fp_text user "-" (at -7.9375 -7.7 -90 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5e68cfae-3c99-44ba-b12b-44bc3d03e180)
)
(fp_text user "-" (at 7.9375 7.7 -90 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7209871e-9895-4abc-9f30-caf4a8a66cec)
)
(fp_text user "-" (at 7.9375 -7.7 -90 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 77c99260-a75a-4511-b037-1bac8edc705d)
)
(fp_text user "R" (at -2.8575 7.7 -90 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a3342955-ad23-4529-bbd5-db45f7855210)
)
(fp_text user "+" (at 5.3975 7.7 -90 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d4a52c17-a55b-42cf-a5fe-aa0e85648308)
)
(fp_text user "HW-104" (at 0.51 5.42 -90 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp de4fc39c-9e37-475e-8428-aa1f339e05e4)
)
(fp_text user "L" (at -7.9375 7.7 -90 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fe9a5b83-0fd0-4d82-8a34-5269d1fdaa9d)
)
(fp_rect (start -9 -10.7) (end 9 10.7) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 927572c9-83dc-4d65-a6b0-a2e22aa024e7))
(fp_circle (center -7.9375 -9.5) (end -7.0875 -9.5) (layer "F.SilkS") (width 0.12) (fill solid) (tstamp 1623bd07-6817-4697-a71b-d8ef54fcd69e))
(fp_circle (center -5.3975 -9.5) (end -4.5475 -9.5) (layer "F.SilkS") (width 0.12) (fill solid) (tstamp 17426c41-c889-452e-baf5-6315312c550c))
(fp_circle (center 7.8615 -9.5) (end 8.7115 -9.5) (layer "F.SilkS") (width 0.12) (fill solid) (tstamp 79723e76-07c7-4fc7-aeca-d48f9dae8658))
(fp_circle (center 5.3215 -9.5) (end 6.1715 -9.5) (layer "F.SilkS") (width 0.12) (fill solid) (tstamp c8a30571-0158-4e54-9c33-5fbbe924df09))
(fp_rect (start -1.9 3.7) (end 1.9 -6.3) (layer "F.Fab") (width 0.12) (fill none) (tstamp 141411f0-dff0-4f0f-9d1f-dafd7921ec5a))
(pad "1" thru_hole circle (at -7.9375 9.5 270) (size 1.8 1.8) (drill 1) (layers *.Cu *.Mask)
(net 25 "Net-(RV1-Pad2)") (pinfunction "INL") (pintype "input") (tstamp 24034647-6348-43a3-93cc-07f88b532806))
(pad "2" thru_hole rect (at -5.3975 9.5 270) (size 1.8 1.8) (drill 1) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "AGND") (pintype "input") (tstamp cdb1b4a1-9fec-44d1-8f49-d8b83b6b034a))
(pad "3" thru_hole circle (at -2.8575 9.5 270) (size 1.8 1.8) (drill 1) (layers *.Cu *.Mask)
(net 25 "Net-(RV1-Pad2)") (pinfunction "INR") (pintype "input") (tstamp 5e2ad507-4e66-40ab-b6dd-5c80b0e5f0e9))
(pad "4" thru_hole circle (at 5.3975 9.5 270) (size 1.8 1.8) (drill 1) (layers *.Cu *.Mask)
(net 3 "+5V") (pinfunction "VCC") (pintype "power_in") (tstamp 8e45f0a2-a524-40e4-b417-ec1881b70b92))
(pad "5" thru_hole rect (at 7.9375 9.5 270) (size 1.8 1.8) (drill 1) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp aab4f4cd-78c4-4cfc-8b0a-d6fb95303e38))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_P2.54mm_Vertical.step"
(offset (xyz 7.95 -9.5 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.step"
(offset (xyz -2.85 -9.5 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp 14ae2aeb-fdfa-44b7-b2b0-190bc146f8bf)
(at 144.16 62.23 90)
(descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x03 2.54mm single row")
(property "Sheetfile" "RC_Engine_Sound_Light_Controller_KiCad6.kicad_sch")
(property "Sheetname" "")
(path "/6bb7afa6-4660-4afc-a7ab-51c33e0a2b5a")
(attr through_hole)
(fp_text reference "J13" (at 0 -3.19 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cd462df8-aa41-42ea-a1a8-83ef22959b4b)
)
(fp_text value "CH2" (at 0 -2.936 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 23dd308a-2fb1-4163-acf9-bd33d7ee3882)
)
(fp_text user "${REFERENCE}" (at 0 2.54) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f5ce143f-66df-46b0-96be-6a29bb2ab73e)
)
(fp_line (start -1.33 1.27) (end -1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp 0270be50-49d4-42a2-81a3-7448f643f9e2))
(fp_line (start 1.33 1.27) (end 1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp 5d49639f-874d-4678-aac0-f6c418617391))
(fp_line (start -1.33 6.41) (end 1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp 76deb66c-825f-426a-8ed2-c7e90197cd41))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 99593a7b-7272-4f80-8f4b-89f06710022e))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp a5bbbd58-1385-4082-ac39-f569ed379c4f))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp f17de69e-3eca-4030-84c0-3a43504a79a3))
(fp_line (start 1.8 6.85) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 8a2b6d8c-6fb0-4821-94c7-6dd3d3855349))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 9ab5c6e4-95ba-45f0-a97e-b8471cc0276e))
(fp_line (start -1.8 6.85) (end 1.8 6.85) (layer "F.CrtYd") (width 0.05) (tstamp a88fb1e6-728c-4c44-b475-3a32a03913cd))
(fp_line (start -1.8 -1.8) (end -1.8 6.85) (layer "F.CrtYd") (width 0.05) (tstamp f374ab46-dd2d-46ff-a352-035d8463416f))
(fp_line (start 1.27 -1.27) (end 1.27 6.35) (layer "F.Fab") (width 0.1) (tstamp 2018a99c-b89b-4be0-a5d3-cbcd82a8c2e9))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 4dc5ac78-0b4e-44ef-b395-f4a8baa5c59f))
(fp_line (start 1.27 6.35) (end -1.27 6.35) (layer "F.Fab") (width 0.1) (tstamp 70367c80-26a1-454d-a649-79d7479a28ae))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 70c2b8f1-01f1-40ab-a162-fb197a0f8c07))
(fp_line (start -1.27 6.35) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp fb878d7b-0b25-4780-bd8d-74be10d446ec))
(pad "1" thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 35 "Net-(J13-Pad1)") (pinfunction "Pin_1") (pintype "passive") (tstamp 2dd561e6-744e-4c2e-90b0-7aeab2f86e2c))
(pad "2" thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 11 "VDD") (pinfunction "Pin_2") (pintype "passive") (tstamp 22ebd798-0a5c-409f-a4d4-83c762e6dd67))
(pad "3" thru_hole oval (at 0 5.08 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_3") (pintype "passive") (tstamp a6b236eb-9ce3-46b0-a1e3-6b0e24f29691))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp 1ab9c41f-9558-4887-9fe9-fd45164ea63d)
(at 144.145 52.07 90)
(descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x03 2.54mm single row")
(property "Sheetfile" "RC_Engine_Sound_Light_Controller_KiCad6.kicad_sch")
(property "Sheetname" "")
(path "/7d47261b-dc0d-4148-9f0b-cda3b32f51b1")
(attr through_hole)
(fp_text reference "J11" (at 0 -2.54 270) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 556ea909-505e-4e41-8dac-ca8901a3d806)
)
(fp_text value "32" (at 0 -2.413 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b0cb4a51-a497-4ab0-af6d-22b9e2cbe34d)
)
(fp_text user "${REFERENCE}" (at 0 2.54) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 616425af-1fb1-49c2-a3c0-dcba12fc0f21)
)
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 33281dc3-2740-4ffd-b359-1737cdafe2f8))
(fp_line (start 1.33 1.27) (end 1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp 563c0a3b-e7cd-47db-a230-6c4f1303f660))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 573a6d1a-56b1-4f52-99ec-22945056a059))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 60f7d3ed-1517-4747-9b4a-96169e7f7961))
(fp_line (start -1.33 1.27) (end -1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp af0d5dbc-d811-4b5a-8d0c-1e929b6b3c85))
(fp_line (start -1.33 6.41) (end 1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp b867e7fe-24c1-4fe5-ab6e-e4c2c7203ee9))
(fp_line (start -1.8 6.85) (end 1.8 6.85) (layer "F.CrtYd") (width 0.05) (tstamp 37e3ffc3-e55a-43d8-8656-b948cb06e7bc))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 7e3f1120-cfe3-4606-a841-09f8ccb44e46))
(fp_line (start 1.8 6.85) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 7e5f1c91-fe88-4f7c-a134-83dc97b0953d))
(fp_line (start -1.8 -1.8) (end -1.8 6.85) (layer "F.CrtYd") (width 0.05) (tstamp f38eb85c-318c-4c81-a40b-3eef0bc6aed6))
(fp_line (start 1.27 6.35) (end -1.27 6.35) (layer "F.Fab") (width 0.1) (tstamp 2d017e71-4591-41e4-945a-58e63898079d))
(fp_line (start -1.27 6.35) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp bdf3c95b-710a-41aa-9b1d-d4e542f83bb5))
(fp_line (start 1.27 -1.27) (end 1.27 6.35) (layer "F.Fab") (width 0.1) (tstamp be24d9d8-0c78-4ab7-ada3-1e26c42597d1))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp dc57bb23-e0f7-483d-9d8e-be4513f76cd5))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp e2898327-1a1d-4753-9f5b-4ca0f57df89f))
(pad "1" thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "Net-(J11-Pad1)") (pinfunction "Pin_1") (pintype "passive") (tstamp 1bafc577-b78a-46f6-9eff-391953b0bae4))
(pad "2" thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 11 "VDD") (pinfunction "Pin_2") (pintype "passive") (tstamp 60f91f9b-57b1-48c5-801a-980f7d335397))
(pad "3" thru_hole oval (at 0 5.08 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_3") (pintype "passive") (tstamp fe41464d-1c7a-4332-a243-277db541856b))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 1f06bdbb-2a0e-4385-a581-3c9a9c2413b0)
(at 111.49 52.07 180)
(descr "Resistor SMD 0805 (2012 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" "RC_Engine_Sound_Light_Controller_KiCad6.kicad_sch")
(property "Sheetname" "")
(path "/b13367e3-bbbc-4c81-beb3-d8762f1fd4c0")
(attr smd)
(fp_text reference "R1" (at 7.223 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0f8b3199-4e94-4dd2-9189-8d73a9cf4e98)
)
(fp_text value "10kΩ" (at 0 1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9c7dac11-540e-45cd-85e0-18e1619562af)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp f82b4c20-18e0-49fe-88f1-2456ef110757)
)
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer "F.SilkS") (width 0.12) (tstamp 42d85e7f-5e6a-4112-ac89-afe288c0c33f))
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 83a65410-ca0f-4578-a49e-5198fdc1bc91))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 4e812009-015d-401b-9539-c0494128ace8))
(fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 64b947ba-56d6-4845-8dd9-12d198fcdbc0))
(fp_line (start 1.85 0.95) (end -1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp e88de403-cde1-4dec-827e-e90a21dd7b26))
(fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp f3783db1-1470-4148-9079-32fdb445e3c5))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 42237104-84ef-4313-b72a-c1eb4156fc2d))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp 4e4111ba-726c-4921-bcdf-6a66c3174241))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp c4b57791-875f-4670-a2a4-fb4a6d0339ef))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp c9c4a41e-c2f3-43d0-a2eb-88f4875b984a))
(pad "1" smd roundrect (at -1 0 180) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2083333333)
(net 21 "D25") (pintype "passive") (tstamp e67ee73c-adb4-49c7-bba1-d3d377d0b4f9))
(pad "2" smd roundrect (at 1 0 180) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2083333333)
(net 33 "Net-(R1-Pad2)") (pintype "passive") (tstamp 6a796df0-2535-4ca9-9a99-5dae3cc34aa2))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 28f6ac7e-a14a-43ac-ad2e-fc788c0a37b2)
(at 106.95 52.07)
(descr "Resistor SMD 0805 (2012 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" "RC_Engine_Sound_Light_Controller_KiCad6.kicad_sch")
(property "Sheetname" "")
(path "/2f124a0b-95f1-4301-9920-6ac285f8a761")
(attr smd)
(fp_text reference "R2" (at 7.35 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 73d6db89-33a7-4bd1-8b65-d67c08757091)
)
(fp_text value "10kΩ" (at 0 1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 161eb6b7-bde7-4ed6-9801-29d925fe40d8)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 4487dbb2-f78b-460b-8e39-97336d879c74)
)
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer "F.SilkS") (width 0.12) (tstamp 2833da53-e861-4157-beab-2c4aa7b8708d))
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer "F.SilkS") (width 0.12) (tstamp e0fe8323-0a3d-4f7a-829d-515ae412187b))
(fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 530b1122-8b8b-4392-9db0-455a180c2a72))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 534b3f4f-47b9-40be-ae15-ecb4a0eda774))
(fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp a7533209-6ede-4d24-9305-4c1adac4e2dc))
(fp_line (start 1.85 0.95) (end -1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp e7855109-576d-48fc-a919-414c5cac138f))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp 56a27877-c568-4d29-bea0-45e9578fcf90))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp 734a3cf5-e6f3-4262-a6ce-2d0c63fee93c))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 89404490-d956-4702-91e4-b9e26b24f1d4))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 8bb38a47-d697-4567-a7e3-88e3bcbc9700))
(pad "1" smd roundrect (at -1 0) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2083333333)
(net 22 "D26") (pintype "passive") (tstamp 3d19bd48-b134-4fd6-9be8-655e5e7f1568))
(pad "2" smd roundrect (at 1 0) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2083333333)
(net 33 "Net-(R1-Pad2)") (pintype "passive") (tstamp f7d263f6-6bad-4bf1-9e64-4f0dfdc6d9d9))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_JST:JST_XH_B3B-XH-A_1x03_P2.50mm_Vertical" (layer "F.Cu")
(tedit 5C28146C) (tstamp 2a825c95-530b-463d-adea-90bf5b21d375)
(at 92.71 80.01)
(descr "JST XH series connector, B3B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator")
(tags "connector JST XH vertical")
(property "Sheetfile" "RC_Engine_Sound_Light_Controller_KiCad6.kicad_sch")
(property "Sheetname" "")
(path "/39ad57dd-c3e8-409f-993d-c17c8c29728d")
(attr through_hole)
(fp_text reference "J7" (at 5.715 -3.81) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2b61521c-ac78-4362-9b78-70faa1e70f83)
)
(fp_text value "Indic" (at 2.5 4.318) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8f610512-6332-41ce-8f61-97dc6ef32c6b)
)
(fp_text user "${REFERENCE}" (at 2.5 2.7) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cdb43c02-354e-4887-a107-b7d510d9ee9c)
)
(fp_line (start 6.8 2.75) (end 2.5 2.75) (layer "F.SilkS") (width 0.12) (tstamp 0bff2d3d-40b3-4ad4-bb31-3c17c45521b6))
(fp_line (start 4.25 -2.45) (end 0.75 -2.45) (layer "F.SilkS") (width 0.12) (tstamp 216aaa5f-e7b0-4017-85da-1b35bfc5fffa))
(fp_line (start 7.55 -1.7) (end 7.55 -2.45) (layer "F.SilkS") (width 0.12) (tstamp 23547eb8-40be-4a35-8ddc-1eb63a072e98))
(fp_line (start 0.75 -1.7) (end 4.25 -1.7) (layer "F.SilkS") (width 0.12) (tstamp 3c73598f-de2f-4ad3-8328-d2f41a8cf8a6))
(fp_line (start 0.75 -2.45) (end 0.75 -1.7) (layer "F.SilkS") (width 0.12) (tstamp 3cdccde6-fb44-4619-ad6d-990cf4d2bcd8))
(fp_line (start -2.55 -2.45) (end -2.55 -1.7) (layer "F.SilkS") (width 0.12) (tstamp 4679c229-99a6-4392-80e2-1b40df24d1c8))
(fp_line (start -0.75 -2.45) (end -2.55 -2.45) (layer "F.SilkS") (width 0.12) (tstamp 47e7008a-455c-4dbb-8638-388c26b1fa17))
(fp_line (start -1.6 -2.75) (end -2.85 -2.75) (layer "F.SilkS") (width 0.12) (tstamp 499ae8e0-8b7b-40af-8595-de0b2b6b6762))
(fp_line (start 7.55 -2.45) (end 5.75 -2.45) (layer "F.SilkS") (width 0.12) (tstamp 4c0d86bc-be53-4335-a560-4d4d9808fefc))
(fp_line (start -2.56 3.51) (end 7.56 3.51) (layer "F.SilkS") (width 0.12) (tstamp 5d305777-36d4-4bf5-94bd-50c6d8c196af))
(fp_line (start -2.85 -2.75) (end -2.85 -1.5) (layer "F.SilkS") (width 0.12) (tstamp 903baeab-a166-4eee-9703-ef856596efe1))
(fp_line (start 6.8 -0.2) (end 6.8 2.75) (layer "F.SilkS") (width 0.12) (tstamp 9be235a7-7e59-4e8f-8f32-bc3b47715b31))
(fp_line (start 7.56 3.51) (end 7.56 -2.46) (layer "F.SilkS") (width 0.12) (tstamp a25dee67-2bf1-4751-8f39-6bad3a9e00b2))
(fp_line (start 5.75 -1.7) (end 7.55 -1.7) (layer "F.SilkS") (width 0.12) (tstamp a57841bc-2075-400c-8aef-1157806ed4e2))
(fp_line (start -0.75 -1.7) (end -0.75 -2.45) (layer "F.SilkS") (width 0.12) (tstamp a6540fe1-385d-4e13-9b7b-ca8e7b49781b))
(fp_line (start 5.75 -2.45) (end 5.75 -1.7) (layer "F.SilkS") (width 0.12) (tstamp b941ac5f-7bd6-4319-944f-df27b658dc00))
(fp_line (start -1.8 -0.2) (end -1.8 2.75) (layer "F.SilkS") (width 0.12) (tstamp bdf25492-031e-4d9f-abe4-5afff8e781cd))
(fp_line (start -2.55 -0.2) (end -1.8 -0.2) (layer "F.SilkS") (width 0.12) (tstamp be7ef0cd-ba0e-45b9-9442-6093c1ca6e54))
(fp_line (start -1.8 2.75) (end 2.5 2.75) (layer "F.SilkS") (width 0.12) (tstamp c00015bc-d4e9-416a-8a86-92f5229e91a1))
(fp_line (start 7.55 -0.2) (end 6.8 -0.2) (layer "F.SilkS") (width 0.12) (tstamp c87b3275-72b3-4adc-bc57-b44519d205d0))
(fp_line (start 7.56 -2.46) (end -2.56 -2.46) (layer "F.SilkS") (width 0.12) (tstamp dfbcd8d8-857a-405f-9ba5-f104ab256cf4))
(fp_line (start -2.55 -1.7) (end -0.75 -1.7) (layer "F.SilkS") (width 0.12) (tstamp e0c4b1c1-2c5b-4b3e-873c-1c07a1934b04))
(fp_line (start -2.56 -2.46) (end -2.56 3.51) (layer "F.SilkS") (width 0.12) (tstamp f87b6426-5866-40db-be15-7069b728adac))
(fp_line (start 4.25 -1.7) (end 4.25 -2.45) (layer "F.SilkS") (width 0.12) (tstamp fa9f3342-fd5e-400a-b0f6-7771deee61c9))
(fp_line (start 7.95 3.9) (end 7.95 -2.85) (layer "F.CrtYd") (width 0.05) (tstamp 375e21d2-112e-4e53-b5cb-9e2d451090fb))
(fp_line (start -2.95 3.9) (end 7.95 3.9) (layer "F.CrtYd") (width 0.05) (tstamp 46bf9f45-8d83-4bfe-8a21-6d073c56afe9))
(fp_line (start 7.95 -2.85) (end -2.95 -2.85) (layer "F.CrtYd") (width 0.05) (tstamp 556fc807-bee0-49ba-9b7b-4a81ad48695e))
(fp_line (start -2.95 -2.85) (end -2.95 3.9) (layer "F.CrtYd") (width 0.05) (tstamp 988c7466-42e9-4c57-8030-7bd8452e4dc9))
(fp_line (start -2.45 3.4) (end 7.45 3.4) (layer "F.Fab") (width 0.1) (tstamp 0b2554d6-6542-47d5-a183-ed6a9f42c5e6))
(fp_line (start -2.45 -2.35) (end -2.45 3.4) (layer "F.Fab") (width 0.1) (tstamp 0ccedace-f492-45c2-870f-f2a23d063821))
(fp_line (start 7.45 -2.35) (end -2.45 -2.35) (layer "F.Fab") (width 0.1) (tstamp 306e9600-1dd0-422a-a5e2-99e541b3b1fe))
(fp_line (start -0.625 -2.35) (end 0 -1.35) (layer "F.Fab") (width 0.1) (tstamp aab50326-c70c-4c6c-982b-90be40670776))
(fp_line (start 0 -1.35) (end 0.625 -2.35) (layer "F.Fab") (width 0.1) (tstamp d145e10e-5188-4687-99e2-d1fd0fa8039b))
(fp_line (start 7.45 3.4) (end 7.45 -2.35) (layer "F.Fab") (width 0.1) (tstamp f0ba6acf-349e-45c0-b937-507c7e98e4c3))
(pad "1" thru_hole roundrect (at 0 0) (size 1.7 1.95) (drill 0.95) (layers *.Cu *.Mask) (roundrect_rratio 0.1470588235)
(net 31 "INDICATOR_L") (pinfunction "Pin_1") (pintype "passive") (tstamp 7f43cbfe-bd75-4a80-a2f0-6f0e94819e56))
(pad "2" thru_hole oval (at 2.5 0) (size 1.7 1.95) (drill 0.95) (layers *.Cu *.Mask)
(net 3 "+5V") (pinfunction "Pin_2") (pintype "passive") (tstamp b10d282b-9870-48b7-ac94-ef3e0ad9ae2b))
(pad "3" thru_hole oval (at 5 0) (size 1.7 1.95) (drill 0.95) (layers *.Cu *.Mask)
(net 32 "INDICATOR_R") (pinfunction "Pin_3") (pintype "passive") (tstamp 5cc30452-dd04-4aa4-9619-13a6e6beec3d))
(model "${KICAD6_3DMODEL_DIR}/Connector_JST.3dshapes/JST_XH_B3B-XH-A_1x03_P2.50mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 2e2b2b8e-6fac-4e9e-bb9c-18b3ec5f24be)
(at 129.27 59.69)
(descr "Resistor SMD 0805 (2012 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" "RC_Engine_Sound_Light_Controller_KiCad6.kicad_sch")
(property "Sheetname" "")
(path "/68e9def9-e059-4244-bd0b-fb3e1a5acf11")
(attr smd)
(fp_text reference "R7" (at 3.54 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e6969c92-2fbf-46bc-a2a9-b79070c3adea)
)
(fp_text value "330Ω" (at 0 1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 212c7e94-8f2e-4267-b6bf-90091d0ec583)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp a24db8a6-35b5-4e64-8ba2-a86b04847dd0)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 342fc670-153c-46b8-a23a-0ac7af9b4d25))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer "F.SilkS") (width 0.12) (tstamp e49eeb14-e7a8-4d33-a09f-c0d00ea3af83))
(fp_line (start 1.85 0.95) (end -1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 7f62542c-0c58-4100-b2cc-a88e894ca1eb))
(fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 97438a02-7c4d-41b4-a068-adf27d5485b4))
(fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 9a49fa54-df69-432c-8999-4241850d95ca))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp d62d7c50-9783-45d6-8a7d-c5007a0a1ffd))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 00878e5d-8021-47a7-94ed-c5bf7864b69f))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 64daeec0-7b93-46df-96f2-53031c8402f1))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp a7e6eed6-0f59-4494-b935-107104295588))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp ef738f58-ddfb-42b5-9b4b-4d7c08871f7b))
(pad "1" smd roundrect (at -1 0) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2083333333)
(net 42 "D14") (pintype "passive") (tstamp 1de01570-43dd-4e83-8b6c-5af64ea2dc66))
(pad "2" smd roundrect (at 1 0) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2083333333)
(net 36 "Net-(J14-Pad1)") (pintype "passive") (tstamp da621d49-35c0-49c2-9d9d-9759007e838e))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical" (layer "F.Cu")
(tedit 5C28146C) (tstamp 36ebacb2-18eb-4951-9164-53771149103b)
(at 128.27 80.01)
(descr "JST XH series connector, B2B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator")
(tags "connector JST XH vertical")
(property "Sheetfile" "RC_Engine_Sound_Light_Controller_KiCad6.kicad_sch")
(property "Sheetname" "")
(path "/9c037e40-e5fd-490d-bd68-43ad6acea340")
(attr through_hole)
(fp_text reference "J4" (at 1.25 -3.55) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 67689a5d-df00-45ac-87f3-253b94ab6d6a)
)
(fp_text value "RoofL" (at 1.25 4.318) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ba1d9a2d-aca9-4b26-8690-98e17aa242a1)
)
(fp_text user "${REFERENCE}" (at 1.25 2.7) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 26ecf2ea-5a98-451f-bdfd-523e1d0131e4)
)
(fp_line (start -1.8 -0.2) (end -1.8 2.75) (layer "F.SilkS") (width 0.12) (tstamp 08dc6fe9-39ce-4f46-a095-ed6d8810cfeb))
(fp_line (start 4.3 2.75) (end 1.25 2.75) (layer "F.SilkS") (width 0.12) (tstamp 2c387f62-a5bd-42b7-b04a-84eae820e1e5))
(fp_line (start -2.56 -2.46) (end -2.56 3.51) (layer "F.SilkS") (width 0.12) (tstamp 3da5a615-62dd-47c7-8c7d-b59ec6ef0f3f))
(fp_line (start -2.85 -2.75) (end -2.85 -1.5) (layer "F.SilkS") (width 0.12) (tstamp 408cef5b-dd20-4dc3-8d65-086f7699769f))
(fp_line (start 5.06 -2.46) (end -2.56 -2.46) (layer "F.SilkS") (width 0.12) (tstamp 5ee1ab82-6736-441d-ad50-382025b36ae3))
(fp_line (start -1.6 -2.75) (end -2.85 -2.75) (layer "F.SilkS") (width 0.12) (tstamp 6bafa732-f520-48d5-a4d3-694c1f5d9dfa))
(fp_line (start 5.05 -0.2) (end 4.3 -0.2) (layer "F.SilkS") (width 0.12) (tstamp 7343474b-270e-4d11-9d0d-5ccd7d4fcc57))
(fp_line (start 1.75 -1.7) (end 1.75 -2.45) (layer "F.SilkS") (width 0.12) (tstamp 7480b089-8e1f-4a8b-951e-a62039ff4ac4))
(fp_line (start 3.25 -1.7) (end 5.05 -1.7) (layer "F.SilkS") (width 0.12) (tstamp 7edad625-894f-40ea-8b56-4827239ae103))
(fp_line (start 4.3 -0.2) (end 4.3 2.75) (layer "F.SilkS") (width 0.12) (tstamp 7f7f4d48-0673-42ec-a326-0c18dae211c7))
(fp_line (start 0.75 -2.45) (end 0.75 -1.7) (layer "F.SilkS") (width 0.12) (tstamp 86278685-2026-497f-b790-03517bd44298))
(fp_line (start -2.55 -1.7) (end -0.75 -1.7) (layer "F.SilkS") (width 0.12) (tstamp 8b2ac6ce-b9be-4b8a-aeeb-e702a5332174))
(fp_line (start 1.75 -2.45) (end 0.75 -2.45) (layer "F.SilkS") (width 0.12) (tstamp 8ce13227-9cae-4dd7-8246-e54bbd033ee3))
(fp_line (start 0.75 -1.7) (end 1.75 -1.7) (layer "F.SilkS") (width 0.12) (tstamp 9789427b-0faa-4447-add5-2b7fbd585255))
(fp_line (start -0.75 -2.45) (end -2.55 -2.45) (layer "F.SilkS") (width 0.12) (tstamp 9d06ce4d-2c81-431f-9e3b-88989c16357e))
(fp_line (start -1.8 2.75) (end 1.25 2.75) (layer "F.SilkS") (width 0.12) (tstamp 9e90d11d-489e-41ab-a68f-e97b25d94036))
(fp_line (start 5.05 -1.7) (end 5.05 -2.45) (layer "F.SilkS") (width 0.12) (tstamp b8e4ff27-9dd8-4cd7-91fb-760f0a161e1b))
(fp_line (start -0.75 -1.7) (end -0.75 -2.45) (layer "F.SilkS") (width 0.12) (tstamp da63bd13-2333-4d02-b95a-e4faf1f3ab3a))
(fp_line (start -2.56 3.51) (end 5.06 3.51) (layer "F.SilkS") (width 0.12) (tstamp dbd1d676-f3db-4e3d-8693-d6a9d7c8a7fe))
(fp_line (start 5.05 -2.45) (end 3.25 -2.45) (layer "F.SilkS") (width 0.12) (tstamp e4880db3-e77f-4bd5-b34c-1c7de0e6a484))
(fp_line (start -2.55 -2.45) (end -2.55 -1.7) (layer "F.SilkS") (width 0.12) (tstamp e9c32ed4-3ef7-483d-8460-1231f0b73817))
(fp_line (start -2.55 -0.2) (end -1.8 -0.2) (layer "F.SilkS") (width 0.12) (tstamp e9f66628-af94-48e9-b569-1051764643f5))
(fp_line (start 5.06 3.51) (end 5.06 -2.46) (layer "F.SilkS") (width 0.12) (tstamp f14aa3df-e910-45b5-b6a4-8c8a70270836))
(fp_line (start 3.25 -2.45) (end 3.25 -1.7) (layer "F.SilkS") (width 0.12) (tstamp f18091d4-e145-4053-ae76-36990c1b971b))
(fp_line (start -2.95 3.9) (end 5.45 3.9) (layer "F.CrtYd") (width 0.05) (tstamp 35b278f2-d966-49a2-8a32-8f84227b8ae3))
(fp_line (start 5.45 -2.85) (end -2.95 -2.85) (layer "F.CrtYd") (width 0.05) (tstamp 608d4167-cdda-45b2-bf42-47ac86ff19c1))
(fp_line (start -2.95 -2.85) (end -2.95 3.9) (layer "F.CrtYd") (width 0.05) (tstamp a037de8c-37a3-4a92-889c-b1401e5c629f))
(fp_line (start 5.45 3.9) (end 5.45 -2.85) (layer "F.CrtYd") (width 0.05) (tstamp e9c91e82-3d07-4b65-871d-910185af3318))
(fp_line (start 0 -1.35) (end 0.625 -2.35) (layer "F.Fab") (width 0.1) (tstamp 1becbff4-6b68-4088-85c3-1aef204e6f9b))
(fp_line (start -2.45 3.4) (end 4.95 3.4) (layer "F.Fab") (width 0.1) (tstamp 1cde7aca-fe79-4625-b2bc-3fe106a2588f))
(fp_line (start -0.625 -2.35) (end 0 -1.35) (layer "F.Fab") (width 0.1) (tstamp 2498b1c0-b46e-4056-b2bf-ad5ea9320abf))
(fp_line (start 4.95 -2.35) (end -2.45 -2.35) (layer "F.Fab") (width 0.1) (tstamp 303d62f3-a985-4182-abe4-b7af3e3ecd23))
(fp_line (start -2.45 -2.35) (end -2.45 3.4) (layer "F.Fab") (width 0.1) (tstamp 81b9c434-ffc9-4f8b-979f-d8b2c1dffbb8))
(fp_line (start 4.95 3.4) (end 4.95 -2.35) (layer "F.Fab") (width 0.1) (tstamp e5e1e59d-c5e3-45f6-9e61-633cfb26c000))
(pad "1" thru_hole roundrect (at 0 0) (size 1.7 2) (drill 1) (layers *.Cu *.Mask) (roundrect_rratio 0.1470588235)
(net 3 "+5V") (pinfunction "Pin_1") (pintype "passive") (tstamp 57506d81-57f6-4fb2-add3-e5602dcc2095))
(pad "2" thru_hole oval (at 2.5 0) (size 1.7 2) (drill 1) (layers *.Cu *.Mask)
(net 29 "ROOFLIGHTS") (pinfunction "Pin_2") (pintype "passive") (tstamp dc9ee055-12bb-4e1c-9d05-de71c9b75088))
(model "${KICAD6_3DMODEL_DIR}/Connector_JST.3dshapes/JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical" (layer "F.Cu")
(tedit 5C28146C) (tstamp 4b57f99e-9907-4def-a88d-47cfae25950f)
(at 113.03 80.01)
(descr "JST XH series connector, B2B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator")
(tags "connector JST XH vertical")
(property "Sheetfile" "RC_Engine_Sound_Light_Controller_KiCad6.kicad_sch")
(property "Sheetname" "")
(path "/f1712bbe-a7ea-4387-89a0-fffe13c45153")
(attr through_hole)
(fp_text reference "J9" (at 1.25 -3.55) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5d93d607-bee5-4f90-8fa5-5aeb891a027c)
)
(fp_text value "FogL" (at 1.25 4.318) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6000b182-8011-4a6d-9d81-a32011f4e107)
)
(fp_text user "${REFERENCE}" (at 1.25 2.7) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fa584946-dfb7-4fd2-9d31-4f7311544501)
)
(fp_line (start 1.75 -2.45) (end 0.75 -2.45) (layer "F.SilkS") (width 0.12) (tstamp 03fae64a-bdae-4ad3-92bd-e39b907b29ba))
(fp_line (start 5.06 3.51) (end 5.06 -2.46) (layer "F.SilkS") (width 0.12) (tstamp 0769060f-5b1c-406f-a7ad-d5afc7a5b334))
(fp_line (start -1.8 -0.2) (end -1.8 2.75) (layer "F.SilkS") (width 0.12) (tstamp 0f6be641-c128-40e9-b5c9-5d3b23b200bb))
(fp_line (start -2.55 -0.2) (end -1.8 -0.2) (layer "F.SilkS") (width 0.12) (tstamp 1afaa14e-be3d-4507-9bb7-6591c22832ff))
(fp_line (start 0.75 -2.45) (end 0.75 -1.7) (layer "F.SilkS") (width 0.12) (tstamp 2e4f8dad-0ca5-430a-94f7-9ef5a7384e81))
(fp_line (start -1.6 -2.75) (end -2.85 -2.75) (layer "F.SilkS") (width 0.12) (tstamp 2fea754c-03ea-4f4a-abc9-c540912016d2))
(fp_line (start 3.25 -2.45) (end 3.25 -1.7) (layer "F.SilkS") (width 0.12) (tstamp 3e49e87a-37d2-4955-bf5e-bb1c6cf1530f))
(fp_line (start -2.56 3.51) (end 5.06 3.51) (layer "F.SilkS") (width 0.12) (tstamp 3f32ab0b-4222-4cf4-ac0b-896cee8539ef))
(fp_line (start -0.75 -2.45) (end -2.55 -2.45) (layer "F.SilkS") (width 0.12) (tstamp 589aff32-54b1-4b24-8837-bb922966b5cd))
(fp_line (start 0.75 -1.7) (end 1.75 -1.7) (layer "F.SilkS") (width 0.12) (tstamp 65c4d04c-4dae-48f5-85f3-a02cf3a36998))
(fp_line (start -2.55 -1.7) (end -0.75 -1.7) (layer "F.SilkS") (width 0.12) (tstamp 8f061fb0-bd19-4fc9-8e49-48f171de2be1))
(fp_line (start -2.56 -2.46) (end -2.56 3.51) (layer "F.SilkS") (width 0.12) (tstamp a295eebf-4c87-434c-9f96-eec8bd110788))
(fp_line (start -2.55 -2.45) (end -2.55 -1.7) (layer "F.SilkS") (width 0.12) (tstamp a84daa5a-e371-4be6-8703-364106517f32))
(fp_line (start 4.3 -0.2) (end 4.3 2.75) (layer "F.SilkS") (width 0.12) (tstamp b47777b9-8078-4041-beee-6c303ddd7a9e))
(fp_line (start -1.8 2.75) (end 1.25 2.75) (layer "F.SilkS") (width 0.12) (tstamp b4dc93c0-9f15-40d4-af72-8a2726ce4a00))
(fp_line (start -0.75 -1.7) (end -0.75 -2.45) (layer "F.SilkS") (width 0.12) (tstamp b4fd441b-4347-48b8-9335-4e892fb5a1fb))
(fp_line (start -2.85 -2.75) (end -2.85 -1.5) (layer "F.SilkS") (width 0.12) (tstamp b77512d1-302c-40ec-9019-8fff47d30f2b))
(fp_line (start 4.3 2.75) (end 1.25 2.75) (layer "F.SilkS") (width 0.12) (tstamp b968c911-466d-4c9c-a442-bf970f626319))
(fp_line (start 5.05 -0.2) (end 4.3 -0.2) (layer "F.SilkS") (width 0.12) (tstamp c5893a10-790a-45e7-9fa2-01fc23263f9a))
(fp_line (start 1.75 -1.7) (end 1.75 -2.45) (layer "F.SilkS") (width 0.12) (tstamp d596da4c-3040-4042-a218-9402496c6692))
(fp_line (start 5.05 -1.7) (end 5.05 -2.45) (layer "F.SilkS") (width 0.12) (tstamp d7bfa7cb-a970-41e4-aef2-07b370bea4aa))
(fp_line (start 5.05 -2.45) (end 3.25 -2.45) (layer "F.SilkS") (width 0.12) (tstamp dc7311e8-a478-42e7-807c-7b12b26a1024))
(fp_line (start 5.06 -2.46) (end -2.56 -2.46) (layer "F.SilkS") (width 0.12) (tstamp df0223be-d3d8-446d-98ff-70f53df1b27e))
(fp_line (start 3.25 -1.7) (end 5.05 -1.7) (layer "F.SilkS") (width 0.12) (tstamp e109b791-2a9f-4e5d-9671-a4fe6e7a7657))
(fp_line (start -2.95 3.9) (end 5.45 3.9) (layer "F.CrtYd") (width 0.05) (tstamp 66953029-5360-4bfb-97e3-c8804d2e153d))
(fp_line (start -2.95 -2.85) (end -2.95 3.9) (layer "F.CrtYd") (width 0.05) (tstamp ab565713-370c-4ed6-b6dc-33339c8edca0))
(fp_line (start 5.45 -2.85) (end -2.95 -2.85) (layer "F.CrtYd") (width 0.05) (tstamp b2d3b590-3731-49bb-b322-3871e5f768ee))
(fp_line (start 5.45 3.9) (end 5.45 -2.85) (layer "F.CrtYd") (width 0.05) (tstamp c238af65-e5bd-46d1-b205-8fb0beaad89c))
(fp_line (start -2.45 -2.35) (end -2.45 3.4) (layer "F.Fab") (width 0.1) (tstamp 345fa550-595d-48df-9336-4c43d0cfaaa9))
(fp_line (start 4.95 3.4) (end 4.95 -2.35) (layer "F.Fab") (width 0.1) (tstamp 42113b8d-5f6d-4849-92b5-08cc800ec763))
(fp_line (start 0 -1.35) (end 0.625 -2.35) (layer "F.Fab") (width 0.1) (tstamp 7b3bb6ce-d1c9-4b69-b6ce-00d8edb91924))
(fp_line (start -2.45 3.4) (end 4.95 3.4) (layer "F.Fab") (width 0.1) (tstamp 8b2496f8-8d3a-425c-9eb1-6e9351c065b2))
(fp_line (start 4.95 -2.35) (end -2.45 -2.35) (layer "F.Fab") (width 0.1) (tstamp d3874277-041f-4886-8a6a-443e267c7c93))
(fp_line (start -0.625 -2.35) (end 0 -1.35) (layer "F.Fab") (width 0.1) (tstamp f17d7e4d-6ab4-4d6a-b027-004707efa9d2))
(pad "1" thru_hole roundrect (at 0 0) (size 1.7 2) (drill 1) (layers *.Cu *.Mask) (roundrect_rratio 0.1470588235)
(net 3 "+5V") (pinfunction "Pin_1") (pintype "passive") (tstamp 5a4c2a07-ca4a-4d5f-bc2f-05a8fa92fb58))
(pad "2" thru_hole oval (at 2.5 0) (size 1.7 2) (drill 1) (layers *.Cu *.Mask)
(net 38 "FOGLIGHTS") (pinfunction "Pin_2") (pintype "passive") (tstamp feb3cd70-e029-4f3f-b69b-0ff856553a9c))
(model "${KICAD6_3DMODEL_DIR}/Connector_JST.3dshapes/JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical" (layer "F.Cu")
(tedit 5C28146C) (tstamp 4dcb1c86-1622-4fd2-a609-a001553e3dfa)
(at 85.09 79.993)
(descr "JST XH series connector, B2B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator")
(tags "connector JST XH vertical")
(property "Sheetfile" "RC_Engine_Sound_Light_Controller_KiCad6.kicad_sch")
(property "Sheetname" "")
(path "/4bd71a93-f5a4-4b48-82fd-b85be1696892")
(attr through_hole)
(fp_text reference "J3" (at 1.25 -3.55) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 09d39d39-45e9-47c0-bae9-bee446814402)
)
(fp_text value "TailL" (at 1.25 4.335) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 891054d9-49ee-44c2-8249-9b41f31740ed)
)
(fp_text user "${REFERENCE}" (at 1.25 2.7) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2757634b-c2dd-4ce3-b164-f30736ef298e)
)
(fp_line (start 5.05 -0.2) (end 4.3 -0.2) (layer "F.SilkS") (width 0.12) (tstamp 10360f06-a99a-4e83-9d0c-cf6215df599d))
(fp_line (start -1.8 -0.2) (end -1.8 2.75) (layer "F.SilkS") (width 0.12) (tstamp 15fcd1b1-382c-4c2f-82b0-be4b5518e4b9))
(fp_line (start 1.75 -1.7) (end 1.75 -2.45) (layer "F.SilkS") (width 0.12) (tstamp 1a2ec011-14f2-4f9c-9a1c-aaf81a138df4))
(fp_line (start -2.55 -2.45) (end -2.55 -1.7) (layer "F.SilkS") (width 0.12) (tstamp 1bcc0cae-5f63-4eb3-8df1-f58dc96d6fac))
(fp_line (start 5.05 -2.45) (end 3.25 -2.45) (layer "F.SilkS") (width 0.12) (tstamp 1ccd762e-7131-4122-b0ae-46fa7224a942))
(fp_line (start -2.55 -0.2) (end -1.8 -0.2) (layer "F.SilkS") (width 0.12) (tstamp 248ab233-7903-415d-a730-c001e252ba75))
(fp_line (start 3.25 -1.7) (end 5.05 -1.7) (layer "F.SilkS") (width 0.12) (tstamp 289c8b05-05f9-4f17-aba2-6fe0fced04ab))
(fp_line (start 5.06 -2.46) (end -2.56 -2.46) (layer "F.SilkS") (width 0.12) (tstamp 37ef203f-c04d-4cef-86a9-f041b8f71d04))
(fp_line (start -1.6 -2.75) (end -2.85 -2.75) (layer "F.SilkS") (width 0.12) (tstamp 3f9b9aa3-2f53-4195-be6f-90138d326be9))
(fp_line (start -2.55 -1.7) (end -0.75 -1.7) (layer "F.SilkS") (width 0.12) (tstamp 42855fa5-daa9-4ff2-9020-22cde48d9cbb))
(fp_line (start 5.05 -1.7) (end 5.05 -2.45) (layer "F.SilkS") (width 0.12) (tstamp 454ca566-ef6d-4777-93d2-518a7da91358))
(fp_line (start -2.56 -2.46) (end -2.56 3.51) (layer "F.SilkS") (width 0.12) (tstamp 510562a0-0d2c-473a-b6d1-589057bbf093))
(fp_line (start 4.3 -0.2) (end 4.3 2.75) (layer "F.SilkS") (width 0.12) (tstamp 53a781ee-2ddf-499c-a7d6-28cea43ff70d))
(fp_line (start -2.85 -2.75) (end -2.85 -1.5) (layer "F.SilkS") (width 0.12) (tstamp 58227993-5a2e-44a8-a808-609558a01b23))
(fp_line (start -0.75 -1.7) (end -0.75 -2.45) (layer "F.SilkS") (width 0.12) (tstamp 602d6756-c3cf-4724-acb8-8691a7899db1))
(fp_line (start 0.75 -2.45) (end 0.75 -1.7) (layer "F.SilkS") (width 0.12) (tstamp 609eae67-e5ea-4da7-9cce-57ca03c7f163))
(fp_line (start -0.75 -2.45) (end -2.55 -2.45) (layer "F.SilkS") (width 0.12) (tstamp 7317919d-017f-4337-bac8-ca9dcf7fa729))
(fp_line (start 4.3 2.75) (end 1.25 2.75) (layer "F.SilkS") (width 0.12) (tstamp 8ced6e58-176d-4549-bd0f-b86aff8001a7))
(fp_line (start 0.75 -1.7) (end 1.75 -1.7) (layer "F.SilkS") (width 0.12) (tstamp 8e3be517-e11f-472c-9b8f-111c26410840))
(fp_line (start 5.06 3.51) (end 5.06 -2.46) (layer "F.SilkS") (width 0.12) (tstamp a7898f4b-dc36-49fc-82fe-e22d44d260d9))
(fp_line (start 1.75 -2.45) (end 0.75 -2.45) (layer "F.SilkS") (width 0.12) (tstamp b0fe3615-a155-45c4-91b7-61a381eb1218))
(fp_line (start 3.25 -2.45) (end 3.25 -1.7) (layer "F.SilkS") (width 0.12) (tstamp d305bbcf-e16f-4e10-9120-1d9c02503d1e))
(fp_line (start -1.8 2.75) (end 1.25 2.75) (layer "F.SilkS") (width 0.12) (tstamp eba44ca5-a3cf-4fcc-887d-76ff46277be6))
(fp_line (start -2.56 3.51) (end 5.06 3.51) (layer "F.SilkS") (width 0.12) (tstamp f1d5f8fb-d3bf-49e3-8792-a008b4d78c18))
(fp_line (start 5.45 -2.85) (end -2.95 -2.85) (layer "F.CrtYd") (width 0.05) (tstamp 17a22c85-b50a-4be9-86d6-274f10aa94ab))
(fp_line (start 5.45 3.9) (end 5.45 -2.85) (layer "F.CrtYd") (width 0.05) (tstamp a0a822c9-c582-4bc4-9a5b-67b2ef7b7109))
(fp_line (start -2.95 3.9) (end 5.45 3.9) (layer "F.CrtYd") (width 0.05) (tstamp a38c256e-9651-4fd0-ae8d-6c037bf49458))
(fp_line (start -2.95 -2.85) (end -2.95 3.9) (layer "F.CrtYd") (width 0.05) (tstamp c15912d4-6477-442a-8bd6-c5f8c993c9b3))
(fp_line (start -2.45 3.4) (end 4.95 3.4) (layer "F.Fab") (width 0.1) (tstamp 1a64224b-dd3b-40f5-8933-9c158a660408))
(fp_line (start 0 -1.35) (end 0.625 -2.35) (layer "F.Fab") (width 0.1) (tstamp 260c0a4e-7018-4550-b3ba-1da41c678af2))
(fp_line (start 4.95 -2.35) (end -2.45 -2.35) (layer "F.Fab") (width 0.1) (tstamp 3ac43927-3018-407e-9753-4a3aad166bcf))
(fp_line (start -0.625 -2.35) (end 0 -1.35) (layer "F.Fab") (width 0.1) (tstamp a254b66d-9cd9-4cc2-9d2f-417dab982193))
(fp_line (start -2.45 -2.35) (end -2.45 3.4) (layer "F.Fab") (width 0.1) (tstamp d8c8bc15-43f5-44ef-9598-bef7862324dd))
(fp_line (start 4.95 3.4) (end 4.95 -2.35) (layer "F.Fab") (width 0.1) (tstamp e5540abf-8ab6-406a-95db-63033a0d5fed))
(pad "1" thru_hole roundrect (at 0 0) (size 1.7 2) (drill 1) (layers *.Cu *.Mask) (roundrect_rratio 0.1470588235)
(net 3 "+5V") (pinfunction "Pin_1") (pintype "passive") (tstamp 8bde0770-e466-4087-852e-e8adec20873a))
(pad "2" thru_hole oval (at 2.5 0) (size 1.7 2) (drill 1) (layers *.Cu *.Mask)
(net 28 "TAILLIGHTS") (pinfunction "Pin_2") (pintype "passive") (tstamp 7de5a4e4-55ad-4aef-b69d-1d574c1604d8))
(model "${KICAD6_3DMODEL_DIR}/Connector_JST.3dshapes/JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_THT:CP_Radial_D10.0mm_P2.50mm_P5.00mm" (layer "F.Cu")
(tedit 5AE50EF1) (tstamp 5222789b-7e60-4d8a-8613-236482660899)
(at 146.05 72.872677 90)
(descr "CP, Radial series, Radial, pin pitch=2.50mm 5.00mm, , diameter=10mm, Electrolytic Capacitor")
(tags "CP Radial series Radial pin pitch 2.50mm 5.00mm diameter 10mm Electrolytic Capacitor")
(property "Sheetfile" "RC_Engine_Sound_Light_Controller_KiCad6.kicad_sch")
(property "Sheetname" "")
(path "/774cdfe1-0d63-4ebf-b755-ac1cbb67570a")
(attr through_hole)
(fp_text reference "C2" (at 4.731 -5.08 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f36e1918-225b-44e1-bc75-51714a440390)
)
(fp_text value "1mF" (at 1.25 6.25 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5c9b47cf-5149-4d98-894b-0364bde13f75)
)
(fp_text user "${REFERENCE}" (at 1.25 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2298b642-0c17-471f-9712-4033d20aa107)
)
(fp_line (start 2.611 2.64) (end 2.611 4.897) (layer "F.SilkS") (width 0.12) (tstamp 00eba644-f737-45d5-917c-0af806b24265))
(fp_line (start 3.011 -4.768) (end 3.011 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 00fc6ea1-057a-4750-a39f-8eb915a5e387))
(fp_line (start 3.211 -4.69) (end 3.211 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 02b45c24-246a-427c-872f-b95f231545a6))
(fp_line (start 1.61 -5.068) (end 1.61 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 02fc97aa-6bbe-4d4e-abb7-6e7a65024d68))
(fp_line (start 3.291 2.64) (end 3.291 4.657) (layer "F.SilkS") (width 0.12) (tstamp 069c6493-7dae-4dca-99c4-eb3d624258e6))
(fp_line (start 4.611 -3.824) (end 4.611 3.824) (layer "F.SilkS") (width 0.12) (tstamp 09ba1f88-5477-4ee7-a1f1-893eb461e187))
(fp_line (start 3.771 2.64) (end 3.771 4.417) (layer "F.SilkS") (width 0.12) (tstamp 09d66e7f-f004-415e-bbef-64daf01326c6))
(fp_line (start 3.611 2.64) (end 3.611 4.504) (layer "F.SilkS") (width 0.12) (tstamp 0abe1ece-4f19-45f2-a389-309295958851))
(fp_line (start 4.931 -3.52) (end 4.931 3.52) (layer "F.SilkS") (width 0.12) (tstamp 0ae123db-9c51-4067-ace5-471c6025e2ae))
(fp_line (start 2.971 2.64) (end 2.971 4.783) (layer "F.SilkS") (width 0.12) (tstamp 0b1bf669-8c64-4f5d-b21d-30a567b2ad1a))
(fp_line (start 3.811 2.64) (end 3.811 4.395) (layer "F.SilkS") (width 0.12) (tstamp 0b1f806c-4a5d-49e3-bdeb-4a5005948453))
(fp_line (start 2.251 2.64) (end 2.251 4.982) (layer "F.SilkS") (width 0.12) (tstamp 12a458ff-5c7e-4d32-ab17-6cd8759860e1))
(fp_line (start 2.171 -4.997) (end 2.171 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 1390eaed-690d-4c8d-8010-78bfc4c67e1d))
(fp_line (start 1.29 -5.08) (end 1.29 5.08) (layer "F.SilkS") (width 0.12) (tstamp 15693b8c-4a24-49cb-9610-3076e9eeb835))
(fp_line (start 2.011 1.04) (end 2.011 5.024) (layer "F.SilkS") (width 0.12) (tstamp 1654ebe8-9e34-4e9a-b0fa-148574747da8))
(fp_line (start 5.931 -2.037) (end 5.931 2.037) (layer "F.SilkS") (width 0.12) (tstamp 181afff5-bb02-43cc-b1b1-77b154322714))
(fp_line (start 2.851 -4.824) (end 2.851 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 1859290f-4da8-40c6-9293-4dba2ff705dc))
(fp_line (start 2.091 1.04) (end 2.091 5.011) (layer "F.SilkS") (width 0.12) (tstamp 18d118d9-fdf1-4c6a-9fcd-f3a69d3c9a79))
(fp_line (start 4.851 -3.601) (end 4.851 3.601) (layer "F.SilkS") (width 0.12) (tstamp 1a955ee5-2834-41f9-926a-8c263cdc9904))
(fp_line (start 3.571 2.64) (end 3.571 4.525) (layer "F.SilkS") (width 0.12) (tstamp 1af77574-2ab1-469d-9cfc-8671ca8131f2))
(fp_line (start 3.691 2.64) (end 3.691 4.462) (layer "F.SilkS") (width 0.12) (tstamp 1b9dc54c-47c7-4f4f-9064-49e4060e0144))
(fp_line (start 2.051 -5.018) (end 2.051 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 1d47e347-1406-43d2-84e8-72d120d37f65))
(fp_line (start 3.811 -4.395) (end 3.811 0.56) (layer "F.SilkS") (width 0.12) (tstamp 1dd58716-3a09-416a-9ff1-bb5828a8fcda))
(fp_line (start 3.651 2.64) (end 3.651 4.483) (layer "F.SilkS") (width 0.12) (tstamp 1f8a436b-06e2-4abb-8e8a-8d49cd53867f))
(fp_line (start 2.531 -4.918) (end 2.531 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 1fae972c-3ab9-4659-bb11-d050853e4f23))
(fp_line (start 3.611 -4.504) (end 3.611 0.56) (layer "F.SilkS") (width 0.12) (tstamp 21195dbd-c636-42e2-832d-d65c73c2a581))
(fp_line (start 3.931 -4.323) (end 3.931 0.56) (layer "F.SilkS") (width 0.12) (tstamp 2176f398-f13a-4d4b-9efe-74ed7f566ce0))
(fp_line (start 1.69 1.04) (end 1.69 5.062) (layer "F.SilkS") (width 0.12) (tstamp 21e833e3-e54a-49ae-a77e-47d240ba7383))
(fp_line (start 3.971 2.64) (end 3.971 4.298) (layer "F.SilkS") (width 0.12) (tstamp 21efa59f-e0e9-4609-bcf0-691c00dc618d))
(fp_line (start 5.851 -2.209) (end 5.851 2.209) (layer "F.SilkS") (width 0.12) (tstamp 22a1e7f1-1d32-4b34-a286-12ec852e424b))
(fp_line (start 2.411 2.64) (end 2.411 4.947) (layer "F.SilkS") (width 0.12) (tstamp 230e2888-bb51-496a-8d3b-629a1e78fffd))
(fp_line (start 6.171 -1.378) (end 6.171 1.378) (layer "F.SilkS") (width 0.12) (tstamp 23e1086f-f89c-42d0-8a39-79c0c2ccf47f))
(fp_line (start 2.531 2.64) (end 2.531 4.918) (layer "F.SilkS") (width 0.12) (tstamp 23fad9eb-20ff-4b0b-8287-e7017981806d))
(fp_line (start 1.69 -5.062) (end 1.69 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 2455c592-3203-49cc-8142-479570c8c4ca))
(fp_line (start 4.091 -4.221) (end 4.091 0.56) (layer "F.SilkS") (width 0.12) (tstamp 24f0ce2b-d52d-4f7c-88e9-8e0535524168))
(fp_line (start 4.651 -3.789) (end 4.651 3.789) (layer "F.SilkS") (width 0.12) (tstamp 250b8708-a136-435e-ac31-93bdbf8d5dfc))
(fp_line (start 3.731 -4.44) (end 3.731 0.56) (layer "F.SilkS") (width 0.12) (tstamp 266bab22-d3c9-4285-a8da-890b020ac13e))
(fp_line (start 2.571 -4.907) (end 2.571 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 26863b15-bdd2-495f-b4fe-535f11b6eb55))
(fp_line (start 1.65 -5.065) (end 1.65 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 275d9428-902a-4101-85e1-6e029e5e141c))
(fp_line (start 6.251 -1.062) (end 6.251 1.062) (layer "F.SilkS") (width 0.12) (tstamp 279c4f71-5ac6-46ec-84d0-5360acae139f))
(fp_line (start 2.931 -4.797) (end 2.931 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 295f3c5f-1c2a-4f5d-9eb7-f938c73f470a))
(fp_line (start 1.53 1.04) (end 1.53 5.073) (layer "F.SilkS") (width 0.12) (tstamp 2af45c35-f4dd-45db-aad7-3629dfe61427))
(fp_line (start 1.53 -5.073) (end 1.53 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 2b746f3b-7deb-4106-87f0-2ae25bf738f2))
(fp_line (start 2.451 2.64) (end 2.451 4.938) (layer "F.SilkS") (width 0.12) (tstamp 2c8a7839-0226-41e7-8fbd-5e0d1e7188b7))
(fp_line (start 2.291 -4.974) (end 2.291 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 2f328a71-0253-464f-bdd1-6784ec1f5a1e))
(fp_line (start 2.651 2.64) (end 2.651 4.885) (layer "F.SilkS") (width 0.12) (tstamp 3065d16d-ba54-407e-a6a6-47a4ea5285b7))
(fp_line (start 5.651 -2.579) (end 5.651 2.579) (layer "F.SilkS") (width 0.12) (tstamp 340d05db-6305-4738-a8e3-c0f2fde16ca7))
(fp_line (start 3.531 -4.545) (end 3.531 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 356983de-305c-42ce-bb21-e4c59e9b3fba))
(fp_line (start 1.57 -5.07) (end 1.57 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 362a9581-0450-40d7-9783-e8437114ddab))
(fp_line (start 5.331 -3.054) (end 5.331 3.054) (layer "F.SilkS") (width 0.12) (tstamp 36b7ba86-8bf9-4138-acdf-43f998129a97))
(fp_line (start 3.091 -4.738) (end 3.091 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 36bafbac-f970-4942-926d-1f400ca0cbd2))
(fp_line (start 5.211 -3.206) (end 5.211 3.206) (layer "F.SilkS") (width 0.12) (tstamp 393e6bdd-d753-4cf0-a68b-a47584354646))
(fp_line (start 1.61 1.04) (end 1.61 5.068) (layer "F.SilkS") (width 0.12) (tstamp 3d7081e3-ea62-4a5e-acdd-be17f633ca3c))
(fp_line (start 3.411 2.64) (end 3.411 4.603) (layer "F.SilkS") (width 0.12) (tstamp 3d9b56ef-2086-4a7a-8772-22778debea86))
(fp_line (start 1.89 1.04) (end 1.89 5.04) (layer "F.SilkS") (width 0.12) (tstamp 3ededa21-94d8-47d0-b59c-b8f00c35c146))
(fp_line (start 3.171 2.64) (end 3.171 4.707) (layer "F.SilkS") (width 0.12) (tstamp 3ee6f978-e7ed-41f3-a610-bc90f82f56f5))
(fp_line (start 5.891 -2.125) (end 5.891 2.125) (layer "F.SilkS") (width 0.12) (tstamp 407694ec-d1a2-413b-b4a0-ba0dc424567e))
(fp_line (start 3.131 2.64) (end 3.131 4.723) (layer "F.SilkS") (width 0.12) (tstamp 4121f64c-025e-4a1b-a32c-0c0a4708c770))
(fp_line (start 1.49 -5.075) (end 1.49 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 41d863e0-21f1-415f-bd05-f09b72b26d5a))
(fp_line (start 2.771 -4.85) (end 2.771 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 42bd75e2-5a8f-4e50-a9f0-4231f8dbade8))
(fp_line (start 2.131 1.04) (end 2.131 5.004) (layer "F.SilkS") (width 0.12) (tstamp 4357a283-b972-4f16-acd3-77f6be80e314))
(fp_line (start 2.331 2.64) (end 2.331 4.965) (layer "F.SilkS") (width 0.12) (tstamp 4424f491-b9b0-4ada-ac36-df2125eaca21))
(fp_line (start 3.211 2.64) (end 3.211 4.69) (layer "F.SilkS") (width 0.12) (tstamp 48d4a507-93ed-4871-b311-ddedf7faf4b9))
(fp_line (start 6.011 -1.846) (end 6.011 1.846) (layer "F.SilkS") (width 0.12) (tstamp 49006309-9e9e-47ee-9b06-faae7bc50cb3))
(fp_line (start 2.691 -4.874) (end 2.691 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 49da31c5-295d-41c9-9c06-fab5192fe409))
(fp_line (start 2.211 2.64) (end 2.211 4.99) (layer "F.SilkS") (width 0.12) (tstamp 49fd6853-1335-4d80-9199-fa250ae3cc35))
(fp_line (start 2.091 -5.011) (end 2.091 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 4ad1357c-7d59-4e63-980a-2e058c5d888d))
(fp_line (start 1.73 1.04) (end 1.73 5.058) (layer "F.SilkS") (width 0.12) (tstamp 4b6e7145-88f7-4879-b6ef-33fc78d2446c))
(fp_line (start 1.77 -5.054) (end 1.77 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 4d2e09e7-049e-4ec0-8988-35cb017a3524))
(fp_line (start 5.291 -3.106) (end 5.291 3.106) (layer "F.SilkS") (width 0.12) (tstamp 4ea7a3c8-756c-4f11-b1ad-07d301cb2461))
(fp_line (start 4.131 2.64) (end 4.131 4.194) (layer "F.SilkS") (width 0.12) (tstamp 511104f4-223b-4246-8d24-6633c1b195ff))
(fp_line (start 3.251 2.64) (end 3.251 4.674) (layer "F.SilkS") (width 0.12) (tstamp 52c35771-118d-48d5-963d-d3df096f7f47))
(fp_line (start 5.691 -2.51) (end 5.691 2.51) (layer "F.SilkS") (width 0.12) (tstamp 537dbc59-1b30-4266-b0cb-9d62525c33b1))
(fp_line (start 4.171 -4.166) (end 4.171 0.56) (layer "F.SilkS") (width 0.12) (tstamp 54c3006d-f79a-4fea-83af-3f7442554d6c))
(fp_line (start 2.371 -4.956) (end 2.371 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 54cbffab-90d3-4f90-8c5e-5904f4506e0f))
(fp_line (start 5.171 -3.254) (end 5.171 3.254) (layer "F.SilkS") (width 0.12) (tstamp 561b2e22-4556-4ad8-b833-0a48359f3397))
(fp_line (start 2.171 2.64) (end 2.171 4.997) (layer "F.SilkS") (width 0.12) (tstamp 571fac6b-3477-46f7-821e-8273bc1baca6))
(fp_line (start 6.211 -1.23) (end 6.211 1.23) (layer "F.SilkS") (width 0.12) (tstamp 5779aeec-9b2a-44e5-942b-92404f7f6b67))
(fp_line (start 4.171 2.64) (end 4.171 4.166) (layer "F.SilkS") (width 0.12) (tstamp 58ca2b40-cb86-4ec2-8cae-c8a7f7742826))
(fp_line (start 3.971 -4.298) (end 3.971 0.56) (layer "F.SilkS") (width 0.12) (tstamp 58f17da6-d6c1-4c8f-b371-7c8f2c9e9666))
(fp_line (start 5.731 -2.439) (end 5.731 2.439) (layer "F.SilkS") (width 0.12) (tstamp 5aefab7d-c284-4511-a311-10571a770640))
(fp_line (start 4.371 -4.02) (end 4.371 4.02) (layer "F.SilkS") (width 0.12) (tstamp 5be553f5-323c-488b-b6d2-b7a72c7d49dc))
(fp_line (start 1.81 -5.05) (end 1.81 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 5c416e56-545d-4c11-b487-bd3bf4b7faab))
(fp_line (start 2.331 -4.965) (end 2.331 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 5d70d792-e61b-4acb-a84a-bd48ee078818))
(fp_line (start 2.691 2.64) (end 2.691 4.874) (layer "F.SilkS") (width 0.12) (tstamp 5ff618c5-fba3-4c11-aae7-4e81575b9589))
(fp_line (start 4.531 -3.892) (end 4.531 3.892) (layer "F.SilkS") (width 0.12) (tstamp 611d88e1-9bc3-4313-876e-d5c97df6bb08))
(fp_line (start 2.931 2.64) (end 2.931 4.797) (layer "F.SilkS") (width 0.12) (tstamp 62ebb5ef-9766-4df9-8179-436abb5f705c))
(fp_line (start 4.211 -4.138) (end 4.211 0.56) (layer "F.SilkS") (width 0.12) (tstamp 6417cd43-6c66-4e58-864c-a5dbf8c0fe29))
(fp_line (start 2.731 2.64) (end 2.731 4.862) (layer "F.SilkS") (width 0.12) (tstamp 650464c7-a151-4ba4-a5c6-13a20b0a6799))
(fp_line (start 4.891 -3.561) (end 4.891 3.561) (layer "F.SilkS") (width 0.12) (tstamp 655a4084-35e5-47b3-a65f-f262af2d2e73))
(fp_line (start 4.331 -4.05) (end 4.331 4.05) (layer "F.SilkS") (width 0.12) (tstamp 66335789-0666-479c-ace9-70a635559f77))
(fp_line (start 2.451 -4.938) (end 2.451 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 666c539c-c582-4d69-bd1e-02e89c66f420))
(fp_line (start 1.41 -5.078) (end 1.41 5.078) (layer "F.SilkS") (width 0.12) (tstamp 66b96f50-8cd1-42bc-9ed9-5c1eeaef7336))
(fp_line (start 3.491 -4.564) (end 3.491 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 676cc2cd-9057-4aa1-b391-2ffb448470b7))
(fp_line (start 3.371 -4.621) (end 3.371 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 68a405eb-d4f9-44aa-822a-9fa88092e38b))
(fp_line (start 3.891 -4.347) (end 3.891 0.56) (layer "F.SilkS") (width 0.12) (tstamp 69095e32-0cde-4b3e-acc0-9d8ce637687e))
(fp_line (start 4.691 -3.753) (end 4.691 3.753) (layer "F.SilkS") (width 0.12) (tstamp 69c4c524-1a30-4eca-9f6c-be08dfb135fa))
(fp_line (start 3.051 -4.754) (end 3.051 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 6a54a979-9f5c-4c13-a722-d3585890d1a8))
(fp_line (start 3.131 -4.723) (end 3.131 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 716b53d8-7a61-48fd-b52b-2d724888a70f))
(fp_line (start 1.33 -5.08) (end 1.33 5.08) (layer "F.SilkS") (width 0.12) (tstamp 71cb5e4e-087c-459e-913b-fa115f51617e))
(fp_line (start 6.331 -0.599) (end 6.331 0.599) (layer "F.SilkS") (width 0.12) (tstamp 7599a301-64c0-491c-8c47-43d6d8034d9b))
(fp_line (start 2.251 -4.982) (end 2.251 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 75e1e41f-47bd-4fa9-85ed-a65ba30a1335))
(fp_line (start 2.051 1.04) (end 2.051 5.018) (layer "F.SilkS") (width 0.12) (tstamp 776aeda6-89cb-4e62-ae44-541c17055f6b))
(fp_line (start 4.571 -3.858) (end 4.571 3.858) (layer "F.SilkS") (width 0.12) (tstamp 795fe0e0-60d8-431b-938a-97f0ec3111c5))
(fp_line (start 2.131 -5.004) (end 2.131 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 7b039637-dd1b-424a-b965-1f274da9dd64))
(fp_line (start 5.091 -3.347) (end 5.091 3.347) (layer "F.SilkS") (width 0.12) (tstamp 7f3643d4-f433-4db5-8064-9d1f1ce8406b))
(fp_line (start 1.971 1.04) (end 1.971 5.03) (layer "F.SilkS") (width 0.12) (tstamp 84e4db37-3d1e-4b9b-b1cd-e26eecdc192c))
(fp_line (start 2.891 2.64) (end 2.891 4.811) (layer "F.SilkS") (width 0.12) (tstamp 85227d5f-84d4-4413-a55d-8312d253a311))
(fp_line (start 2.491 -4.928) (end 2.491 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 85b5c260-bcfe-4f4b-b84c-b4f49b11b130))
(fp_line (start 5.451 -2.889) (end 5.451 2.889) (layer "F.SilkS") (width 0.12) (tstamp 86d8652e-1513-4cd0-b119-c9a0fe4eb641))
(fp_line (start 4.011 2.64) (end 4.011 4.273) (layer "F.SilkS") (width 0.12) (tstamp 8782aafa-744f-4dc2-9677-c78a2e7476be))
(fp_line (start 3.891 2.64) (end 3.891 4.347) (layer "F.SilkS") (width 0.12) (tstamp 89565079-9060-4d48-a8f2-f3cab68fa732))
(fp_line (start 1.65 1.04) (end 1.65 5.065) (layer "F.SilkS") (width 0.12) (tstamp 8d929896-3391-4535-b4a6-66b50d417d23))
(fp_line (start 2.771 2.64) (end 2.771 4.85) (layer "F.SilkS") (width 0.12) (tstamp 913c7a23-2131-436a-a55a-12e4320e3e57))
(fp_line (start 4.451 -3.957) (end 4.451 3.957) (layer "F.SilkS") (width 0.12) (tstamp 91705f87-513d-4adb-b9b9-1771d723fb68))
(fp_line (start 4.811 -3.64) (end 4.811 3.64) (layer "F.SilkS") (width 0.12) (tstamp 9a8dc307-d08a-48ea-ab94-231a29a4cb32))
(fp_line (start 5.771 -2.365) (end 5.771 2.365) (layer "F.SilkS") (width 0.12) (tstamp 9acc90ce-562d-4365-972f-4a3c81c1a222))
(fp_line (start 2.011 -5.024) (end 2.011 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 9adea23f-4d16-4c8d-87ca-8bdcdea760ad))
(fp_line (start 1.37 -5.079) (end 1.37 5.079) (layer "F.SilkS") (width 0.12) (tstamp 9ae1622c-1948-4b88-923b-8b02f1d1758b))
(fp_line (start 1.45 -5.077) (end 1.45 5.077) (layer "F.SilkS") (width 0.12) (tstamp 9afbcdb1-03e5-441e-900c-d9b88474e1f0))
(fp_line (start 3.771 -4.417) (end 3.771 0.56) (layer "F.SilkS") (width 0.12) (tstamp 9b044d6f-063a-4ca5-8af6-317a2fb13886))
(fp_line (start 3.491 2.64) (end 3.491 4.564) (layer "F.SilkS") (width 0.12) (tstamp 9ba9dd50-eaac-4f74-a6af-4267b1ca4d07))
(fp_line (start 3.011 2.64) (end 3.011 4.768) (layer "F.SilkS") (width 0.12) (tstamp 9bf4bbf8-09b3-4d93-a98a-8334f746d313))
(fp_line (start 3.531 2.64) (end 3.531 4.545) (layer "F.SilkS") (width 0.12) (tstamp 9c6cbf5c-7df7-463e-ad9c-4b5e351eb056))
(fp_line (start 1.73 -5.058) (end 1.73 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 9d7e4147-af0c-47ec-8d2b-252603ef7184))
(fp_line (start 4.051 -4.247) (end 4.051 0.56) (layer "F.SilkS") (width 0.12) (tstamp 9e45e078-964d-4281-8b5b-43a5ef1ba809))
(fp_line (start 1.57 1.04) (end 1.57 5.07) (layer "F.SilkS") (width 0.12) (tstamp 9e7eb3c6-4528-41ab-9e27-0e2e5ea5cee8))
(fp_line (start 3.051 2.64) (end 3.051 4.754) (layer "F.SilkS") (width 0.12) (tstamp 9fd88c11-446b-4af0-b124-431350012756))
(fp_line (start 1.85 1.04) (end 1.85 5.045) (layer "F.SilkS") (width 0.12) (tstamp a1f0b4c3-4f9e-447c-b0c6-a6fd16199106))
(fp_line (start 3.571 -4.525) (end 3.571 0.56) (layer "F.SilkS") (width 0.12) (tstamp a3a471ab-7be7-4a5a-bab0-467e49cc4e20))
(fp_line (start 3.451 2.64) (end 3.451 4.584) (layer "F.SilkS") (width 0.12) (tstamp a457b117-37eb-41d9-a355-f22b9f1e7d9d))
(fp_line (start 2.891 -4.811) (end 2.891 -1.04) (layer "F.SilkS") (width 0.12) (tstamp a5b5a689-93c2-4c97-b19d-c621fab76e54))
(fp_line (start 2.651 -4.885) (end 2.651 -1.04) (layer "F.SilkS") (width 0.12) (tstamp a707e6d0-2775-4b6e-9d8d-488ad2334925))
(fp_line (start 3.331 2.64) (end 3.331 4.639) (layer "F.SilkS") (width 0.12) (tstamp a8cdd724-437a-40db-b15c-efc630d4c453))
(fp_line (start 3.851 2.64) (end 3.851 4.371) (layer "F.SilkS") (width 0.12) (tstamp a90eda7b-2761-43b9-8ec9-76dbede430a8))
(fp_line (start 3.851 -4.371) (end 3.851 0.56) (layer "F.SilkS") (width 0.12) (tstamp a9160099-27c8-4372-9a17-8053aa957033))
(fp_line (start 2.731 -4.862) (end 2.731 -1.04) (layer "F.SilkS") (width 0.12) (tstamp aa527255-93c5-46c4-a2e5-b900c9e24817))
(fp_line (start 4.731 -3.716) (end 4.731 3.716) (layer "F.SilkS") (width 0.12) (tstamp ab24281c-997b-42d2-bec9-796a2ea59784))
(fp_line (start 4.011 -4.273) (end 4.011 0.56) (layer "F.SilkS") (width 0.12) (tstamp af2425cd-45b0-459a-a47b-68ec473559f3))
(fp_line (start 5.011 -3.436) (end 5.011 3.436) (layer "F.SilkS") (width 0.12) (tstamp b205a8f6-8ac8-4ea7-87de-94df90d02678))
(fp_line (start 5.811 -2.289) (end 5.811 2.289) (layer "F.SilkS") (width 0.12) (tstamp b43a530d-f797-46d6-b0cb-4b32e0bd988a))
(fp_line (start 2.811 -4.837) (end 2.811 -1.04) (layer "F.SilkS") (width 0.12) (tstamp b637f473-ffbe-46f1-bb7a-7312409b17b3))
(fp_line (start 4.091 2.64) (end 4.091 4.221) (layer "F.SilkS") (width 0.12) (tstamp b66ccd1a-a881-4b8a-9c77-a2b71fb7c7f9))
(fp_line (start 2.211 -4.99) (end 2.211 -1.04) (layer "F.SilkS") (width 0.12) (tstamp b7a7ccae-dece-481d-99e4-eded7bd83577))
(fp_line (start 3.411 -4.603) (end 3.411 -1.04) (layer "F.SilkS") (width 0.12) (tstamp b9bdcc13-223e-4d47-ac58-a51c88426b00))
(fp_line (start 6.091 -1.63) (end 6.091 1.63) (layer "F.SilkS") (width 0.12) (tstamp ba5c5370-c12b-4a14-b974-59fe56b2e6a2))
(fp_line (start 3.251 -4.674) (end 3.251 -1.04) (layer "F.SilkS") (width 0.12) (tstamp bbd2b071-70b3-42fc-a124-cfc7a4208b7c))
(fp_line (start 2.851 2.64) (end 2.851 4.824) (layer "F.SilkS") (width 0.12) (tstamp bd169863-bb05-448f-9d92-ad582338508a))
(fp_line (start 5.971 -1.944) (end 5.971 1.944) (layer "F.SilkS") (width 0.12) (tstamp bd919209-656e-450a-a893-12c3abfdcf7b))
(fp_line (start 4.211 2.64) (end 4.211 4.138) (layer "F.SilkS") (width 0.12) (tstamp c0accc50-8d63-46bd-b789-300efe958a7f))
(fp_line (start 3.091 2.64) (end 3.091 4.738) (layer "F.SilkS") (width 0.12) (tstamp c2ccd6f7-9d42-43d3-b754-0690a7f66dbf))
(fp_line (start 3.451 -4.584) (end 3.451 -1.04) (layer "F.SilkS") (width 0.12) (tstamp c2fc5b78-6a19-4d67-ad03-d4c3cabdf861))
(fp_line (start 5.611 -2.645) (end 5.611 2.645) (layer "F.SilkS") (width 0.12) (tstamp ca198238-05cd-46be-ae66-ceebc00ab5da))
(fp_line (start 1.89 -5.04) (end 1.89 -1.04) (layer "F.SilkS") (width 0.12) (tstamp cbe441d2-3771-4108-b7be-a7045dc54c6a))
(fp_line (start 1.77 1.04) (end 1.77 5.054) (layer "F.SilkS") (width 0.12) (tstamp ccb90a75-a773-4886-b921-0f308449a366))
(fp_line (start -3.729646 -3.375) (end -3.729646 -2.375) (layer "F.SilkS") (width 0.12) (tstamp ce009f87-50c7-45b2-9aa3-3e98fe00f536))
(fp_line (start 4.491 -3.925) (end 4.491 3.925) (layer "F.SilkS") (width 0.12) (tstamp cff4ff14-949f-4127-a447-eae46a59c796))
(fp_line (start 4.291 -4.08) (end 4.291 4.08) (layer "F.SilkS") (width 0.12) (tstamp d174effb-4143-4293-b9e4-4fb88f7f5436))
(fp_line (start 4.251 -4.11) (end 4.251 4.11) (layer "F.SilkS") (width 0.12) (tstamp d291a596-38d6-4b86-9a0b-41683cb535c7))
(fp_line (start 5.371 -3) (end 5.371 3) (layer "F.SilkS") (width 0.12) (tstamp d3e48062-0a13-4c4c-b838-236e2873a360))
(fp_line (start 4.131 -4.194) (end 4.131 0.56) (layer "F.SilkS") (width 0.12) (tstamp d8699136-e77d-4c88-b5e2-6c2e84271da7))
(fp_line (start 6.051 -1.742) (end 6.051 1.742) (layer "F.SilkS") (width 0.12) (tstamp d947f515-6abf-45c0-9f85-5619a0ec42e8))
(fp_line (start 3.731 2.64) (end 3.731 4.44) (layer "F.SilkS") (width 0.12) (tstamp da348480-aa4a-4dfe-a2a6-500ad1379e5b))
(fp_line (start 5.491 -2.83) (end 5.491 2.83) (layer "F.SilkS") (width 0.12) (tstamp ddbb7140-734c-4a8a-ab66-bb195176cbab))
(fp_line (start 2.491 2.64) (end 2.491 4.928) (layer "F.SilkS") (width 0.12) (tstamp df51dcfa-1792-4e81-bfeb-a5e8f74c353f))
(fp_line (start 2.291 2.64) (end 2.291 4.974) (layer "F.SilkS") (width 0.12) (tstamp e0b6dd43-051e-4938-93ad-c7565eb2d169))
(fp_line (start 4.771 -3.679) (end 4.771 3.679) (layer "F.SilkS") (width 0.12) (tstamp e190657e-b3ff-4bef-a548-d65507f34aa9))
(fp_line (start 3.371 2.64) (end 3.371 4.621) (layer "F.SilkS") (width 0.12) (tstamp e2257055-9773-478a-90ea-95a9cdfb1a93))
(fp_line (start 5.131 -3.301) (end 5.131 3.301) (layer "F.SilkS") (width 0.12) (tstamp e43b7e6e-5697-450a-9b6a-cb7f56d30309))
(fp_line (start 1.25 -5.08) (end 1.25 5.08) (layer "F.SilkS") (width 0.12) (tstamp e4cacc17-6993-485e-a9ae-a6427b863d00))
(fp_line (start 3.931 2.64) (end 3.931 4.323) (layer "F.SilkS") (width 0.12) (tstamp e862b394-aaa8-44c7-be12-c92eded5171e))
(fp_line (start 3.691 -4.462) (end 3.691 0.56) (layer "F.SilkS") (width 0.12) (tstamp e8716543-d0f7-4f8f-b6d0-476542567cce))
(fp_line (start 1.49 1.04) (end 1.49 5.075) (layer "F.SilkS") (width 0.12) (tstamp e883c412-9002-4d45-a47f-cca31e17bb2c))
(fp_line (start 5.531 -2.77) (end 5.531 2.77) (layer "F.SilkS") (width 0.12) (tstamp e897c7ce-2c5c-46f0-8c43-70a49b229f4e))
(fp_line (start 5.051 -3.392) (end 5.051 3.392) (layer "F.SilkS") (width 0.12) (tstamp e89ecfb8-e379-42ce-9b0f-7db471386d63))
(fp_line (start 3.651 -4.483) (end 3.651 0.56) (layer "F.SilkS") (width 0.12) (tstamp e9b983ba-3497-42c0-9ff7-a5ee5d6894f3))
(fp_line (start 3.291 -4.657) (end 3.291 -1.04) (layer "F.SilkS") (width 0.12) (tstamp ea240ca4-279d-434f-bc94-c205b1c6ee50))
(fp_line (start 3.331 -4.639) (end 3.331 -1.04) (layer "F.SilkS") (width 0.12) (tstamp ea4a9be3-f5da-4757-9020-aab5d58855fb))
(fp_line (start 2.411 -4.947) (end 2.411 -1.04) (layer "F.SilkS") (width 0.12) (tstamp ebe39971-ae51-42a0-bb92-4bced9ef990e))
(fp_line (start 1.85 -5.045) (end 1.85 -1.04) (layer "F.SilkS") (width 0.12) (tstamp ed66bda5-effa-428f-b2ab-a675081a639f))
(fp_line (start 1.81 1.04) (end 1.81 5.05) (layer "F.SilkS") (width 0.12) (tstamp ed731b2a-b23f-47ee-8e50-1f1e4a45355b))
(fp_line (start 4.051 2.64) (end 4.051 4.247) (layer "F.SilkS") (width 0.12) (tstamp f00da592-8c1c-4da6-92e1-d7ad6d3e9450))
(fp_line (start -4.229646 -2.875) (end -3.229646 -2.875) (layer "F.SilkS") (width 0.12) (tstamp f0b6d4d8-3324-4ec5-a81a-97494c44e060))
(fp_line (start 1.971 -5.03) (end 1.971 -1.04) (layer "F.SilkS") (width 0.12) (tstamp f0ec6fe4-1724-4a89-a0ca-f24c0b2ad402))
(fp_line (start 1.93 -5.035) (end 1.93 -1.04) (layer "F.SilkS") (width 0.12) (tstamp f0f8968a-4b34-4c11-99bf-01a715df2c49))
(fp_line (start 5.571 -2.709) (end 5.571 2.709) (layer "F.SilkS") (width 0.12) (tstamp f2f99ad3-afcf-4747-84d8-5e7f379a8ffb))
(fp_line (start 2.971 -4.783) (end 2.971 -1.04) (layer "F.SilkS") (width 0.12) (tstamp f3a69b4e-98d5-46df-83f4-55430f60db6e))
(fp_line (start 5.411 -2.945) (end 5.411 2.945) (layer "F.SilkS") (width 0.12) (tstamp f3b3f792-b6b2-4dcc-84af-bbac76a8ae54))
(fp_line (start 2.571 2.64) (end 2.571 4.907) (layer "F.SilkS") (width 0.12) (tstamp f3b8596c-2eb3-4b38-971c-b0b11828f8d3))
(fp_line (start 2.611 -4.897) (end 2.611 -1.04) (layer "F.SilkS") (width 0.12) (tstamp f4006b30-75b1-49e0-afd1-497110f69098))
(fp_line (start 6.291 -0.862) (end 6.291 0.862) (layer "F.SilkS") (width 0.12) (tstamp f40ed945-b6c2-4164-b8c7-a2b4972e4bb7))
(fp_line (start 2.371 2.64) (end 2.371 4.956) (layer "F.SilkS") (width 0.12) (tstamp f8b31b7d-7335-4e9b-927f-c9bb1e91a10d))
(fp_line (start 1.93 1.04) (end 1.93 5.035) (layer "F.SilkS") (width 0.12) (tstamp f9bdbfab-d122-4083-9753-e5a8c148361e))
(fp_line (start 3.171 -4.707) (end 3.171 -1.04) (layer "F.SilkS") (width 0.12) (tstamp fb4eaabe-841a-4f67-981e-c5bc345fa4ee))
(fp_line (start 5.251 -3.156) (end 5.251 3.156) (layer "F.SilkS") (width 0.12) (tstamp fbcdb12d-d5cb-406b-8a51-338193658a22))
(fp_line (start 4.971 -3.478) (end 4.971 3.478) (layer "F.SilkS") (width 0.12) (tstamp fd574b4a-4a9b-44d7-8c67-3fc052895adc))
(fp_line (start 2.811 2.64) (end 2.811 4.837) (layer "F.SilkS") (width 0.12) (tstamp fe727b48-6c6e-49c6-b4c0-5cc6b5083fd6))
(fp_line (start 4.411 -3.989) (end 4.411 3.989) (layer "F.SilkS") (width 0.12) (tstamp fe740fec-03e3-4b1a-af43-21262dd96a71))
(fp_line (start 6.131 -1.51) (end 6.131 1.51) (layer "F.SilkS") (width 0.12) (tstamp fee6bfd5-829f-4beb-8b17-a3e0e9abfba1))
(fp_circle (center 1.25 0) (end 6.37 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp ead919fc-8c7b-4a88-9fde-6b4f47cfe251))
(fp_circle (center 1.25 0) (end 6.5 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 553a0ae1-e295-4ae9-a945-ac3ad484a2fb))
(fp_line (start -2.538861 -2.6875) (end -2.538861 -1.6875) (layer "F.Fab") (width 0.1) (tstamp 848afeaa-5baa-4fec-9bbb-0fb6e2e3f4ec))
(fp_line (start -3.038861 -2.1875) (end -2.038861 -2.1875) (layer "F.Fab") (width 0.1) (tstamp e82e7a6f-bbba-4b64-9ab7-ca4fd977632c))
(fp_circle (center 1.25 0) (end 6.25 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 0ece0d76-7690-47b4-85ad-586284a50356))
(pad "1" thru_hole rect (at -0.670937 -1.6 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "GND") (pintype "passive") (tstamp 2a934a4f-fc54-4ec7-b765-d1aa00aecb24))
(pad "1" thru_hole rect (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "GND") (pintype "passive") (tstamp f6af8602-628c-4986-8465-daf74850d217))
(pad "2" thru_hole circle (at 3.170937 1.6 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 3 "+5V") (pintype "passive") (tstamp ac85a4b0-794e-4c92-be53-462b4a5a8cc2))
(pad "2" thru_hole circle (at 2.5 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 3 "+5V") (pintype "passive") (tstamp f4a8be33-f73e-473c-9820-26b2590cc8e9))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/CP_Radial_D10.0mm_P2.50mm_P5.00mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp 5657f977-3270-44ac-921d-2b8383e83a69)
(at 144.16 59.69 90)
(descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x03 2.54mm single row")
(property "Sheetfile" "RC_Engine_Sound_Light_Controller_KiCad6.kicad_sch")
(property "Sheetname" "")
(path "/bc6cd38b-0870-4b67-b479-25da26cb3aba")
(attr through_hole)
(fp_text reference "J14" (at 0 -3.225 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 14ecef93-2a62-412d-b6a3-dd7b33da709a)
)
(fp_text value "CH3" (at 0 -2.936 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp da8f2c99-dcbd-4a7b-97a6-380d4c84251a)
)
(fp_text user "${REFERENCE}" (at 0 2.54) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 307fbfdf-828c-46ff-8f8c-559007f7adf5)
)
(fp_line (start -1.33 1.27) (end -1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp 44b60dad-cb58-4ece-85fd-8b9721e04904))
(fp_line (start -1.33 6.41) (end 1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp 500d8604-02b4-4dfa-adf0-38745b401efd))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 9260b3d3-3c1f-4582-906f-ee2fd8f4df10))
(fp_line (start 1.33 1.27) (end 1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp ab7d810d-93e1-4fe4-a7ac-c3e3cca49aa8))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp f68eb760-17ff-41bc-a967-3cecb7240b21))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp f91ced96-e26e-47f7-9bd5-a1eabfc94122))
(fp_line (start -1.8 -1.8) (end -1.8 6.85) (layer "F.CrtYd") (width 0.05) (tstamp 6d2afbc0-4e1d-4448-abc1-7c9b99739633))
(fp_line (start 1.8 6.85) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp d92c117b-1b2d-4808-92a0-4241bb2c1714))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp de2d8a8f-7cb7-4648-8ad6-35fb7e142ab8))
(fp_line (start -1.8 6.85) (end 1.8 6.85) (layer "F.CrtYd") (width 0.05) (tstamp fe533192-397f-4d0b-aefb-373fb558343a))
(fp_line (start -1.27 6.35) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 370380bc-5f3e-4bd0-a5cc-2171875b48c7))
(fp_line (start 1.27 6.35) (end -1.27 6.35) (layer "F.Fab") (width 0.1) (tstamp 69de1cab-df87-4e0a-95db-51c2f674fbaf))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp dd9c4a3b-ef01-4399-9948-cf505ec90945))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp ede41ed2-f1b4-41d9-a40b-3e53f82e51e4))
(fp_line (start 1.27 -1.27) (end 1.27 6.35) (layer "F.Fab") (width 0.1) (tstamp f0ba25f7-69cd-4791-aaf6-1a0bef7bd064))
(pad "1" thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 36 "Net-(J14-Pad1)") (pinfunction "Pin_1") (pintype "passive") (tstamp a26f30f6-8b81-4924-bc52-e32bf37a3deb))
(pad "2" thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)