-
Notifications
You must be signed in to change notification settings - Fork 0
/
Switchboard.kicad_pcb
6335 lines (6305 loc) · 303 KB
/
Switchboard.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")
(title_block
(title "Switchboard")
(date "2020-12-30")
(rev "r02")
(company "Nuclear Lighthouse Studios")
(comment 1 "CC BY-NC-SA")
)
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(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") (color "Black"))
(layer "F.Mask" (type "Top Solder Mask") (color "White") (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") (color "White") (thickness 0.01))
(layer "B.SilkS" (type "Bottom Silk Screen") (color "Black"))
(copper_finish "ENIG")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(grid_origin 142.875 103.505)
(pcbplotparams
(layerselection 0x00010f0_ffffffff)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(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 "gerbers/")
)
)
(net 0 "")
(net 1 "+9V")
(net 2 "GND")
(net 3 "Net-(D1-Pad1)")
(net 4 "Net-(D1-Pad2)")
(net 5 "Net-(J4-Pad3)")
(net 6 "Net-(J5-PadT)")
(net 7 "+9VA")
(net 8 "Net-(J3-PadT)")
(net 9 "Net-(C101-Pad2)")
(net 10 "-9VA")
(net 11 "Net-(C104-Pad2)")
(net 12 "Net-(C104-Pad1)")
(net 13 "Net-(J4-Pad4)")
(net 14 "unconnected-(SW1-Pad6)")
(net 15 "unconnected-(U101-Pad7)")
(net 16 "unconnected-(U101-Pad6)")
(footprint "LED_THT:LED_D5.0mm" (layer "F.Cu")
(tedit 5995936A) (tstamp 00000000-0000-0000-0000-00005c2713ee)
(at 142.875 90.17 -90)
(descr "LED, diameter 5.0mm, 2 pins, http://cdn-reichelt.de/documents/datenblatt/A500/LL-504BC2E-009.pdf")
(tags "LED diameter 5.0mm 2 pins")
(property "Sheetfile" "Switchboard.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005bfa8c00")
(attr through_hole)
(fp_text reference "D1" (at -2.667 -1.778) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e989f64d-bbd7-400c-ad25-e50c6fbf914c)
)
(fp_text value "LED" (at 3.81 -3.175) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c40f8e11-00e0-4a8c-803f-f2c6064415c7)
)
(fp_text user "${REFERENCE}" (at 1.25 0 -90) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.2)))
(tstamp c31af4f5-601b-46af-823e-28a2cf8310e1)
)
(fp_line (start -1.29 -1.545) (end -1.29 1.545) (layer "F.SilkS") (width 0.12) (tstamp ae77d558-2a7b-432f-92e9-876b902bad51))
(fp_arc (start -1.29 -1.54483) (mid 2.072002 -2.880433) (end 4.26 0.000462) (layer "F.SilkS") (width 0.12) (tstamp 1102eb34-a73f-408a-86f2-9ba5b0e86b92))
(fp_arc (start 4.26 -0.000462) (mid 2.072002 2.880433) (end -1.29 1.54483) (layer "F.SilkS") (width 0.12) (tstamp 490aa6d9-9354-4a86-82fd-404b6337eb74))
(fp_circle (center 1.27 0) (end 3.77 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp f66678b9-f063-4445-97f8-918f9351a063))
(fp_line (start -1.95 -3.25) (end -1.95 3.25) (layer "F.CrtYd") (width 0.05) (tstamp 152750d6-e2d5-4d33-bd4f-bcab3ff67d28))
(fp_line (start 4.5 -3.25) (end -1.95 -3.25) (layer "F.CrtYd") (width 0.05) (tstamp 2dec4ff0-7cfc-4908-b957-416f59cb7368))
(fp_line (start -1.95 3.25) (end 4.5 3.25) (layer "F.CrtYd") (width 0.05) (tstamp a76687b5-9ce2-440a-8c7e-889cd61b3d16))
(fp_line (start 4.5 3.25) (end 4.5 -3.25) (layer "F.CrtYd") (width 0.05) (tstamp ad44dd8a-1e83-482a-b65d-085e07d0aba9))
(fp_line (start -1.23 -1.469694) (end -1.23 1.469694) (layer "F.Fab") (width 0.1) (tstamp 61d09ce6-a7f1-48db-8b9f-cdf443a9c400))
(fp_arc (start -1.23 -1.469694) (mid 4.17 0.000016) (end -1.230016 1.469666) (layer "F.Fab") (width 0.1) (tstamp 6ff190ef-527a-400b-95c4-b0bbc023b7b7))
(fp_circle (center 1.27 0) (end 3.77 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 641faa60-bd0f-4f89-8c2c-978b8f3c23b7))
(pad "1" thru_hole rect (at 0 0 270) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
(net 3 "Net-(D1-Pad1)") (pinfunction "K") (pintype "passive") (tstamp ad08408b-41ed-42b4-b8e0-7ce06015fdae))
(pad "2" thru_hole circle (at 2.54 0 270) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
(net 4 "Net-(D1-Pad2)") (pinfunction "A") (pintype "passive") (tstamp 145c48aa-5310-4d1d-925b-e7b088541df8))
(model "${KICAD6_3DMODEL_DIR}/LED_THT.3dshapes/LED_D5.0mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 00000000-0000-0000-0000-00005c271573)
(at 153.67 71.755)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "Switchboard.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005bfa8c4f")
(attr through_hole)
(fp_text reference "R2" (at 3.81 -2.37) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0cf3cc39-6d7a-4681-a618-26abb25bc316)
)
(fp_text value "10k" (at 3.81 2.37) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 16ba9498-f387-4ce0-a5e9-0c7e85b912dc)
)
(fp_text user "${REFERENCE}" (at 3.81 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4d34f75e-4d37-4530-8591-a7c2ef26d17f)
)
(fp_line (start 0.54 1.37) (end 7.08 1.37) (layer "F.SilkS") (width 0.12) (tstamp 21e60bb7-7b2e-4e51-9392-c75773a2ac68))
(fp_line (start 0.54 -1.37) (end 7.08 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 4453dc38-34a6-4b0d-9e41-b180d5f2fbdd))
(fp_line (start 7.08 -1.37) (end 7.08 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 4a5c54aa-c12e-42e9-9109-ddeda9034eed))
(fp_line (start 7.08 1.37) (end 7.08 1.04) (layer "F.SilkS") (width 0.12) (tstamp 578add04-8881-413a-90d9-9aedb3736864))
(fp_line (start 0.54 -1.04) (end 0.54 -1.37) (layer "F.SilkS") (width 0.12) (tstamp bc466a50-b79f-4ca8-acda-882ba73cb838))
(fp_line (start 0.54 1.04) (end 0.54 1.37) (layer "F.SilkS") (width 0.12) (tstamp e2ceff52-7bb5-4e50-917a-82b57c73c38f))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 1bdc361f-1b19-41ff-a705-64b8333f76cf))
(fp_line (start 8.67 1.5) (end 8.67 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 55a1aa2e-83e2-47ff-b53f-6b703837d514))
(fp_line (start -1.05 1.5) (end 8.67 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 8aed2ec0-8685-428c-8977-2209c470fd4c))
(fp_line (start 8.67 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp ccb32179-5e1c-4e74-8f8d-f2426fe423bf))
(fp_line (start 0.66 1.25) (end 6.96 1.25) (layer "F.Fab") (width 0.1) (tstamp 16d867d9-5c34-4597-a5d1-a6ef36ebf4f3))
(fp_line (start 7.62 0) (end 6.96 0) (layer "F.Fab") (width 0.1) (tstamp 7144a644-ac01-4a09-838f-f01750b5206f))
(fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer "F.Fab") (width 0.1) (tstamp 9f351ec5-aa60-4f30-873e-55a357105d40))
(fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer "F.Fab") (width 0.1) (tstamp e5865b3d-7042-40ef-9006-b031c9979abd))
(fp_line (start 0 0) (end 0.66 0) (layer "F.Fab") (width 0.1) (tstamp eb5b543b-e9fb-4148-bada-b29bd1bc0d38))
(fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer "F.Fab") (width 0.1) (tstamp ffebf986-3fc8-45f7-8024-db4ef3e52001))
(pad "1" thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 3 "Net-(D1-Pad1)") (pintype "passive") (tstamp cbd03e82-c201-4fb8-b146-79ba870fbc6c))
(pad "2" thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "GND") (pintype "passive") (tstamp fb398720-9b57-4525-a5a1-566e21ee6c19))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "NLS:MonoJack_6.35mm_Neutrik_NMJ4HCD2" (layer "F.Cu")
(tedit 5BFA8C77) (tstamp 00000000-0000-0000-0000-00005c2717e6)
(at 167.195 83.915)
(property "Sheetfile" "Switchboard.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005bfa8551")
(attr through_hole)
(fp_text reference "J3" (at 0.445 11) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a67099ed-4d30-4092-8f11-23997f47ac09)
)
(fp_text value "AudioJack2_SwitchT" (at -11.5 -1.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b1f094b1-eb46-4a06-a1f1-8b2e6d72bfeb)
)
(fp_text user "${REFERENCE}" (at -11.5 1.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9194f282-771d-4d2a-a194-36a3f70c5073)
)
(fp_line (start -17.7 -9.6) (end -20.8 -9.6) (layer "F.SilkS") (width 0.15) (tstamp 0639bc7f-278e-49f8-ad70-d16abab6ab5d))
(fp_line (start 0.2 -9.6) (end -3 -9.6) (layer "F.SilkS") (width 0.15) (tstamp 072e837e-f1c9-4dfd-9bd4-de2ef31e685b))
(fp_line (start -23.8 -4.5) (end -23.8 4.5) (layer "F.SilkS") (width 0.15) (tstamp 2c9d607a-cc6b-46ae-b6c5-4e71ed381aaa))
(fp_line (start -20.8 -4.5) (end -20.8 -9.6) (layer "F.SilkS") (width 0.15) (tstamp 4719bb6e-b49d-4009-bcef-619233845eb8))
(fp_line (start -20.8 -4.5) (end -23.8 -4.5) (layer "F.SilkS") (width 0.15) (tstamp 4bb156a0-2516-4a12-bf7b-189bd602c3e3))
(fp_line (start 0.2 9.6) (end 0.2 5.7) (layer "F.SilkS") (width 0.15) (tstamp 5342aa27-272f-494e-a691-0726d03b6019))
(fp_line (start -5 -9.6) (end -15.7 -9.6) (layer "F.SilkS") (width 0.15) (tstamp 5387f996-8cc1-4fc5-80dd-3873e4089c68))
(fp_line (start -5 9.6) (end -15.7 9.6) (layer "F.SilkS") (width 0.15) (tstamp 584f21bf-c18c-407b-aba3-00c2780dc3d6))
(fp_line (start -17.7 9.6) (end -20.8 9.6) (layer "F.SilkS") (width 0.15) (tstamp 701e60f1-7bdc-4a14-ad38-3bbbfb146bc7))
(fp_line (start -23.8 4.5) (end -20.8 4.5) (layer "F.SilkS") (width 0.15) (tstamp 857c5d7b-763b-4ae7-a8fa-f9c57609b572))
(fp_line (start 0.2 9.6) (end -3 9.6) (layer "F.SilkS") (width 0.15) (tstamp 94f60dc8-c79e-4cb8-805a-ffa7c86b492a))
(fp_line (start 0.2 -5.7) (end 0.2 5.7) (layer "F.SilkS") (width 0.15) (tstamp c7966e2c-a4bd-45a7-aeb8-d79a4570982c))
(fp_line (start -20.8 4.5) (end -20.8 9.6) (layer "F.SilkS") (width 0.15) (tstamp c8b46996-b922-42e4-ad0c-82589cd07821))
(fp_line (start 0.2 -5.7) (end 0.2 -9.6) (layer "F.SilkS") (width 0.15) (tstamp e4cedec9-2a3a-4996-938d-352d94d45462))
(fp_line (start -24 9.8) (end 3.5 9.8) (layer "F.CrtYd") (width 0.15) (tstamp 0c50ec8e-dd4f-4067-805c-c401563627b0))
(fp_line (start -24 -9.8) (end -24 9.8) (layer "F.CrtYd") (width 0.15) (tstamp 47682ab2-dd24-49f1-8ce0-2eeb9f6f9d7e))
(fp_line (start 3.5 -9.8) (end -24 -9.8) (layer "F.CrtYd") (width 0.15) (tstamp 75f997df-a00f-4bc3-966e-3ffe00850162))
(fp_line (start 3.5 9.8) (end 3.5 -9.8) (layer "F.CrtYd") (width 0.15) (tstamp bb90227c-a02b-4480-9b89-97c34716fdd4))
(fp_line (start -20.7 -9.5) (end -20.7 -4.4) (layer "F.Fab") (width 0.15) (tstamp 11007703-2d0f-4392-8077-36a8562840d9))
(fp_line (start 0 9.5) (end 0 -9.5) (layer "F.Fab") (width 0.15) (tstamp 185a44ab-9a16-4773-9b6b-8866d687a471))
(fp_line (start 0 -5.5) (end 3 -5.5) (layer "F.Fab") (width 0.15) (tstamp 26a795d1-5a64-4e47-ba52-7114301fffe1))
(fp_line (start 0 -9.5) (end -20.7 -9.5) (layer "F.Fab") (width 0.15) (tstamp 2b6f61d5-3016-4df7-822e-0b0c318da388))
(fp_line (start -20.7 9.5) (end 0 9.5) (layer "F.Fab") (width 0.15) (tstamp 62763953-bf03-4663-ae25-6a3910be46e0))
(fp_line (start -20.7 -4.4) (end -23.7 -4.4) (layer "F.Fab") (width 0.15) (tstamp a6a5290a-c07b-4738-926e-45da6a778ccb))
(fp_line (start -23.7 -4.4) (end -23.7 4.4) (layer "F.Fab") (width 0.15) (tstamp adbad07e-8331-4b44-a4d0-e988debf2d05))
(fp_line (start 3 5.5) (end 0 5.5) (layer "F.Fab") (width 0.15) (tstamp c029511a-b4d2-4f85-9547-53e17ae840ce))
(fp_line (start -23.7 4.4) (end -20.7 4.4) (layer "F.Fab") (width 0.15) (tstamp cc63971a-96c1-4c49-9b8d-d2a58cf5442e))
(fp_line (start 3 -5.5) (end 3 5.5) (layer "F.Fab") (width 0.15) (tstamp d1a9c3e5-046a-4942-b4b9-1706beb087eb))
(fp_line (start -20.7 4.4) (end -20.7 9.5) (layer "F.Fab") (width 0.15) (tstamp dfaa1676-88a6-46d9-8dcb-3ca2b8a2185e))
(pad "S" thru_hole circle locked (at -4 -8.16) (size 2.5 2.5) (drill 1.4) (layers *.Cu *.Mask)
(net 2 "GND") (pintype "passive") (tstamp 20dc1e20-7565-4f6f-9f29-2a1f7a80d248))
(pad "S" thru_hole circle locked (at -4 8.16) (size 2.5 2.5) (drill 1.4) (layers *.Cu *.Mask)
(net 2 "GND") (pintype "passive") (tstamp a6613470-d6f8-473d-9e0a-2ab2c678135e))
(pad "T" thru_hole circle locked (at -16.7 -8.16) (size 2.5 2.5) (drill 1.4) (layers *.Cu *.Mask)
(net 8 "Net-(J3-PadT)") (pintype "passive") (tstamp 8fc99306-b107-40fd-85da-02e5745b717a))
(pad "TN" thru_hole circle locked (at -16.7 8.16) (size 2.5 2.5) (drill 1.4) (layers *.Cu *.Mask)
(net 2 "GND") (pintype "passive") (tstamp 5e4a0133-38f7-4556-9386-1b88e6fc1733))
(model "/home/sly/Creative/Electro/Libs/3D/NMJ4HCD2.stp"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 -90))
)
)
(footprint "Capacitor_THT:CP_Radial_D6.3mm_P2.50mm" (layer "F.Cu")
(tedit 5AE50EF0) (tstamp 00000000-0000-0000-0000-00005c324119)
(at 129.54 99.06 180)
(descr "CP, Radial series, Radial, pin pitch=2.50mm, , diameter=6.3mm, Electrolytic Capacitor")
(tags "CP Radial series Radial pin pitch 2.50mm diameter 6.3mm Electrolytic Capacitor")
(property "Sheetfile" "Switchboard.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005bfacb00")
(attr through_hole)
(fp_text reference "C2" (at -1.905 3.81 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f8357454-a20b-4b47-975d-f729bb4439cd)
)
(fp_text value "100µ" (at 1.25 3.937 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9a631de5-cd36-4e4f-a254-2bf684c37709)
)
(fp_text user "${REFERENCE}" (at 1.25 0 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4d498f86-0bbb-43a9-952a-0b4490441db2)
)
(fp_line (start 2.611 -2.934) (end 2.611 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 03483835-ba7a-473c-b315-ae8f39acc178))
(fp_line (start 1.61 -3.211) (end 1.61 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 03f448a4-4a03-45b7-970b-1fbf3048df3c))
(fp_line (start 2.291 1.04) (end 2.291 3.061) (layer "F.SilkS") (width 0.12) (tstamp 04084cfa-4c67-4577-8da8-49e7a216808a))
(fp_line (start 1.53 -3.218) (end 1.53 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 08bc6ad7-aeba-4b8f-90bb-69ade0a2a935))
(fp_line (start 2.411 1.04) (end 2.411 3.018) (layer "F.SilkS") (width 0.12) (tstamp 0b3e8523-25bc-45eb-8c51-228f39b7864f))
(fp_line (start 1.57 1.04) (end 1.57 3.215) (layer "F.SilkS") (width 0.12) (tstamp 0b564c2e-6be2-485d-91af-9d27da25d157))
(fp_line (start 2.131 -3.11) (end 2.131 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 0cc948d8-472b-4ce1-b1f9-0c81acbea3f4))
(fp_line (start 4.051 -1.65) (end 4.051 1.65) (layer "F.SilkS") (width 0.12) (tstamp 0eb8bed3-470a-4dcf-af26-aab461d4d1c3))
(fp_line (start 3.131 -2.636) (end 3.131 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 0eda32bd-6c6e-49fa-8303-18f87e5dfb6a))
(fp_line (start 3.251 1.04) (end 3.251 2.548) (layer "F.SilkS") (width 0.12) (tstamp 0f13f3e1-d78c-409b-a9e5-21977a51f67f))
(fp_line (start 3.851 -1.944) (end 3.851 1.944) (layer "F.SilkS") (width 0.12) (tstamp 10f4913c-5105-4990-8324-570d4a254848))
(fp_line (start 2.851 1.04) (end 2.851 2.812) (layer "F.SilkS") (width 0.12) (tstamp 134af420-fdc0-4156-8975-606189ddb1b9))
(fp_line (start 1.33 -3.23) (end 1.33 3.23) (layer "F.SilkS") (width 0.12) (tstamp 142544d8-748b-4ce3-9f55-83ba51a57d71))
(fp_line (start 2.451 -3.002) (end 2.451 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 1a3a9210-e379-445d-9efe-3d71559bcdd2))
(fp_line (start 3.011 1.04) (end 3.011 2.716) (layer "F.SilkS") (width 0.12) (tstamp 1f68d621-14d0-46e1-9faa-b44516841ba5))
(fp_line (start 1.85 1.04) (end 1.85 3.175) (layer "F.SilkS") (width 0.12) (tstamp 1fd5e678-04c8-46d1-8a4f-416bf5f9a81c))
(fp_line (start 3.051 1.04) (end 3.051 2.69) (layer "F.SilkS") (width 0.12) (tstamp 241b8e33-5afb-4488-9454-0659ef291f07))
(fp_line (start 2.491 -2.986) (end 2.491 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 24e8c477-9f24-4659-b42b-3c3f0ca98cfe))
(fp_line (start 2.331 1.04) (end 2.331 3.047) (layer "F.SilkS") (width 0.12) (tstamp 24eb20d7-7364-44cf-a507-b0ed3ad49e38))
(fp_line (start 4.371 -0.94) (end 4.371 0.94) (layer "F.SilkS") (width 0.12) (tstamp 25d48592-a8f2-4707-87ee-a52c7fff2b8a))
(fp_line (start 3.451 1.04) (end 3.451 2.38) (layer "F.SilkS") (width 0.12) (tstamp 25f477cf-581f-4038-a7f7-2f83b44b8fc9))
(fp_line (start 4.091 -1.581) (end 4.091 1.581) (layer "F.SilkS") (width 0.12) (tstamp 2706cfd3-40d4-4840-9442-d14f3e8eae5c))
(fp_line (start 1.49 1.04) (end 1.49 3.222) (layer "F.SilkS") (width 0.12) (tstamp 2743ecc2-dc44-4e28-8a44-a778dbf5360c))
(fp_line (start 2.091 -3.121) (end 2.091 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 2df94c1f-8b85-4d3a-8b4b-d94a49b29cd2))
(fp_line (start 3.411 -2.416) (end 3.411 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 2dffae1c-aaa4-4a2c-a4f9-3483b95521be))
(fp_line (start 2.011 -3.141) (end 2.011 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 2f0b9e5a-bc03-43a5-b7cf-58f9b682d78c))
(fp_line (start 2.811 1.04) (end 2.811 2.834) (layer "F.SilkS") (width 0.12) (tstamp 323086c3-9c41-4fb4-ac11-630040a52d6e))
(fp_line (start 2.931 -2.766) (end 2.931 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 347a9839-434d-4978-8c9a-6f0c17e9f40f))
(fp_line (start 2.731 1.04) (end 2.731 2.876) (layer "F.SilkS") (width 0.12) (tstamp 34ac07d6-8ed4-4daa-8cde-b71141407370))
(fp_line (start 1.89 1.04) (end 1.89 3.167) (layer "F.SilkS") (width 0.12) (tstamp 350599c2-77ad-4062-9042-d53baa72418b))
(fp_line (start 3.451 -2.38) (end 3.451 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 358b8cb4-473c-4b22-816b-4ece3da38134))
(fp_line (start 1.93 1.04) (end 1.93 3.159) (layer "F.SilkS") (width 0.12) (tstamp 365fac3e-cacf-4c04-b300-654626809cfe))
(fp_line (start 1.65 1.04) (end 1.65 3.206) (layer "F.SilkS") (width 0.12) (tstamp 366678eb-bd59-4ba4-8ae1-f2ce6dff12f4))
(fp_line (start 1.77 -3.189) (end 1.77 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 3acb762d-22ca-4e03-9180-59f2213e9ec1))
(fp_line (start 1.73 1.04) (end 1.73 3.195) (layer "F.SilkS") (width 0.12) (tstamp 3b686316-f96c-41ac-b206-40915bfb4e93))
(fp_line (start 4.491 -0.402) (end 4.491 0.402) (layer "F.SilkS") (width 0.12) (tstamp 417bd5d6-0710-4bbf-9444-da446b6f0b28))
(fp_line (start 3.971 -1.776) (end 3.971 1.776) (layer "F.SilkS") (width 0.12) (tstamp 4182faa7-9e85-48a2-9286-c07d9b778183))
(fp_line (start 2.571 1.04) (end 2.571 2.952) (layer "F.SilkS") (width 0.12) (tstamp 448a9085-dfd3-48ce-85c6-8df20ef62e7f))
(fp_line (start 2.531 1.04) (end 2.531 2.97) (layer "F.SilkS") (width 0.12) (tstamp 45432ac0-5628-418a-88f0-565aa5986d3f))
(fp_line (start 2.371 -3.033) (end 2.371 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 49373d40-64b5-4462-8243-f5ea2ecf46fd))
(fp_line (start 1.77 1.04) (end 1.77 3.189) (layer "F.SilkS") (width 0.12) (tstamp 4b3d6594-3f31-415e-a074-dceaf8258616))
(fp_line (start 1.37 -3.228) (end 1.37 3.228) (layer "F.SilkS") (width 0.12) (tstamp 4e53bb80-56b6-4d2e-9c12-6b51b737e080))
(fp_line (start 3.371 -2.45) (end 3.371 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 4f86385d-2672-4f73-a9a5-2f3f2f2cae99))
(fp_line (start -1.935241 -2.154) (end -1.935241 -1.524) (layer "F.SilkS") (width 0.12) (tstamp 5141cfe6-5479-4b13-a53b-b3da18dc4d6f))
(fp_line (start 2.371 1.04) (end 2.371 3.033) (layer "F.SilkS") (width 0.12) (tstamp 52876a11-2d70-4cce-8f6c-04f773ec2612))
(fp_line (start 2.051 -3.131) (end 2.051 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 5480a61a-fbbc-48bf-85d4-88855299e13d))
(fp_line (start 3.731 -2.092) (end 3.731 2.092) (layer "F.SilkS") (width 0.12) (tstamp 5598b63f-508e-41f8-8c1c-1a1ce18ab98b))
(fp_line (start 3.331 1.04) (end 3.331 2.484) (layer "F.SilkS") (width 0.12) (tstamp 55e58d6b-22f4-4717-b02c-fc38bdd6c347))
(fp_line (start -2.250241 -1.839) (end -1.620241 -1.839) (layer "F.SilkS") (width 0.12) (tstamp 59948f7b-8b0a-480a-864d-d35fffec4e1d))
(fp_line (start 3.131 1.04) (end 3.131 2.636) (layer "F.SilkS") (width 0.12) (tstamp 5f220546-38e1-4a06-9493-5a0c94020047))
(fp_line (start 2.891 -2.79) (end 2.891 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 5fad599f-bf25-4102-8806-0acf216a4baa))
(fp_line (start 4.211 -1.35) (end 4.211 1.35) (layer "F.SilkS") (width 0.12) (tstamp 62543dff-d48e-4cff-ab43-526c2c0dc69e))
(fp_line (start 3.691 -2.137) (end 3.691 2.137) (layer "F.SilkS") (width 0.12) (tstamp 63f28e52-8792-4f24-8ffc-743106f922dc))
(fp_line (start 2.331 -3.047) (end 2.331 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 66030cd4-9ee9-4be4-b749-0184c37c05d8))
(fp_line (start 2.291 -3.061) (end 2.291 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 665bdfe5-5860-4355-a615-8abc1c4478af))
(fp_line (start 3.891 -1.89) (end 3.891 1.89) (layer "F.SilkS") (width 0.12) (tstamp 668663e3-0ecd-4e3b-b5c9-7eead16a104a))
(fp_line (start 2.211 -3.086) (end 2.211 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 67630f78-ade0-4d3a-9eb3-7fb0ecdb33c5))
(fp_line (start 2.451 1.04) (end 2.451 3.002) (layer "F.SilkS") (width 0.12) (tstamp 677bdecf-e03c-42ce-a98c-304fcad374e3))
(fp_line (start 1.53 1.04) (end 1.53 3.218) (layer "F.SilkS") (width 0.12) (tstamp 69cf77aa-8103-47b1-a11d-55c1171166dd))
(fp_line (start 1.81 -3.182) (end 1.81 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 6d080743-b56f-419e-a0eb-7a7dd922db76))
(fp_line (start 2.691 1.04) (end 2.691 2.896) (layer "F.SilkS") (width 0.12) (tstamp 6f20070a-371b-4f52-82e9-5c2a77a5237c))
(fp_line (start 4.251 -1.262) (end 4.251 1.262) (layer "F.SilkS") (width 0.12) (tstamp 70737090-1022-4337-ab46-bd75dc599f4f))
(fp_line (start 1.85 -3.175) (end 1.85 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 72c557f5-f8ce-4c2a-9fb0-65fe7c97a4d0))
(fp_line (start 1.81 1.04) (end 1.81 3.182) (layer "F.SilkS") (width 0.12) (tstamp 77499506-96ba-4703-a98e-cd9a9b15a662))
(fp_line (start 4.411 -0.802) (end 4.411 0.802) (layer "F.SilkS") (width 0.12) (tstamp 776db4bf-c31f-4a35-8b9d-836c9868777f))
(fp_line (start 2.171 -3.098) (end 2.171 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 799fd910-be67-4f34-8627-4887e7086920))
(fp_line (start 4.451 -0.633) (end 4.451 0.633) (layer "F.SilkS") (width 0.12) (tstamp 79e24522-43e4-4ad6-b374-e790b7aa232b))
(fp_line (start 1.73 -3.195) (end 1.73 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 7b13dc47-1ab5-4fd0-a9d0-b073d27cab96))
(fp_line (start 3.531 -2.305) (end 3.531 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 7de0bec3-2736-41aa-970a-e052414c8462))
(fp_line (start 2.571 -2.952) (end 2.571 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 7e344503-a9e0-4f4a-a9b8-be6053a2aa7f))
(fp_line (start 1.65 -3.206) (end 1.65 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 7eb5aad6-1016-4ab8-9af7-5a627149f5a3))
(fp_line (start 1.41 -3.227) (end 1.41 3.227) (layer "F.SilkS") (width 0.12) (tstamp 7f4d7fdf-77f8-40a7-9a01-4d112eba04b4))
(fp_line (start 3.091 1.04) (end 3.091 2.664) (layer "F.SilkS") (width 0.12) (tstamp 84b8b877-df82-47d0-a5dd-6e16c7df63b6))
(fp_line (start 3.251 -2.548) (end 3.251 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 874c3c6f-0d66-419c-807a-53216a776968))
(fp_line (start 3.491 -2.343) (end 3.491 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 88360143-30d6-410e-a242-a0ba1fa24aa9))
(fp_line (start 1.45 -3.224) (end 1.45 3.224) (layer "F.SilkS") (width 0.12) (tstamp 8a267195-2bcb-4068-9340-2242ac4ccdae))
(fp_line (start 2.171 1.04) (end 2.171 3.098) (layer "F.SilkS") (width 0.12) (tstamp 90feb10b-9d43-465d-bf0c-5a69ca8031d7))
(fp_line (start 2.211 1.04) (end 2.211 3.086) (layer "F.SilkS") (width 0.12) (tstamp 926a582a-c2df-4ef4-b44d-91589a1990ae))
(fp_line (start 2.411 -3.018) (end 2.411 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 945ac49e-c922-40e7-a2af-bbe77cbd4f80))
(fp_line (start 3.051 -2.69) (end 3.051 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 961ca540-4e7c-4f9e-83e0-591fbc8abd4f))
(fp_line (start 2.931 1.04) (end 2.931 2.766) (layer "F.SilkS") (width 0.12) (tstamp 9795f734-2b2c-4c85-b7cb-9b03911a49eb))
(fp_line (start 2.011 1.04) (end 2.011 3.141) (layer "F.SilkS") (width 0.12) (tstamp 9a2c7ab6-db93-44c3-97f7-ef00e2771344))
(fp_line (start 3.171 -2.607) (end 3.171 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 9ac26256-df47-455c-93e6-1f5e5abb0e69))
(fp_line (start 4.131 -1.509) (end 4.131 1.509) (layer "F.SilkS") (width 0.12) (tstamp 9cd1795c-6294-4c85-9471-b7fae88dc17b))
(fp_line (start 1.29 -3.23) (end 1.29 3.23) (layer "F.SilkS") (width 0.12) (tstamp a5f3049a-962d-4580-905f-f05415347959))
(fp_line (start 4.331 -1.059) (end 4.331 1.059) (layer "F.SilkS") (width 0.12) (tstamp a7b6ee3b-2e2b-4e60-98f7-c2b7cdc92a68))
(fp_line (start 2.771 -2.856) (end 2.771 -1.04) (layer "F.SilkS") (width 0.12) (tstamp aae25235-0c11-4bf4-bacd-4e03ae704625))
(fp_line (start 1.971 -3.15) (end 1.971 -1.04) (layer "F.SilkS") (width 0.12) (tstamp ab461c4e-80be-4a68-93ad-388968a2f879))
(fp_line (start 2.811 -2.834) (end 2.811 -1.04) (layer "F.SilkS") (width 0.12) (tstamp b105940f-3d83-490e-bcc9-6e25c2e84c17))
(fp_line (start 3.531 1.04) (end 3.531 2.305) (layer "F.SilkS") (width 0.12) (tstamp b1ab1eba-f413-4fb9-8948-bdcab5034c08))
(fp_line (start 2.971 1.04) (end 2.971 2.742) (layer "F.SilkS") (width 0.12) (tstamp b1fed348-9ff2-4c79-8d32-6f8fc0ad76c8))
(fp_line (start 2.651 1.04) (end 2.651 2.916) (layer "F.SilkS") (width 0.12) (tstamp b22f3bce-f719-44bd-9df4-c22ec754084f))
(fp_line (start 2.851 -2.812) (end 2.851 -1.04) (layer "F.SilkS") (width 0.12) (tstamp b2cea1ae-4fc2-429d-9c7f-2db182eebf5c))
(fp_line (start 3.011 -2.716) (end 3.011 -1.04) (layer "F.SilkS") (width 0.12) (tstamp b6dc6c2f-87e2-4066-a6f1-1fab7243f368))
(fp_line (start 1.93 -3.159) (end 1.93 -1.04) (layer "F.SilkS") (width 0.12) (tstamp b7ab7fd8-7bdc-43a5-8bd8-42efff520dc7))
(fp_line (start 2.651 -2.916) (end 2.651 -1.04) (layer "F.SilkS") (width 0.12) (tstamp bbf0384f-2250-463d-b077-41175c1dc050))
(fp_line (start 4.291 -1.165) (end 4.291 1.165) (layer "F.SilkS") (width 0.12) (tstamp bc468622-86c2-42b3-96ea-390d0b65388b))
(fp_line (start 1.69 1.04) (end 1.69 3.201) (layer "F.SilkS") (width 0.12) (tstamp bcc1f94c-9e5d-44cc-9a99-d8a5a2ef10ba))
(fp_line (start 1.971 1.04) (end 1.971 3.15) (layer "F.SilkS") (width 0.12) (tstamp bcf75a75-bed1-4eb7-a5d0-b5552627d6b8))
(fp_line (start 3.091 -2.664) (end 3.091 -1.04) (layer "F.SilkS") (width 0.12) (tstamp c0526da0-de0a-4826-9d59-11d6f00a1091))
(fp_line (start 3.331 -2.484) (end 3.331 -1.04) (layer "F.SilkS") (width 0.12) (tstamp c19f2951-288b-4a9c-8fc6-eb0d4a2425a6))
(fp_line (start 3.771 -2.044) (end 3.771 2.044) (layer "F.SilkS") (width 0.12) (tstamp c36601fa-3346-4a6f-8f55-a6ce5b4238b4))
(fp_line (start 2.491 1.04) (end 2.491 2.986) (layer "F.SilkS") (width 0.12) (tstamp c36fef1f-8537-4606-ba59-c4d7ed1581ce))
(fp_line (start 2.611 1.04) (end 2.611 2.934) (layer "F.SilkS") (width 0.12) (tstamp c64848d5-9ca7-45b4-b5e3-18aec8e14865))
(fp_line (start 3.571 -2.265) (end 3.571 2.265) (layer "F.SilkS") (width 0.12) (tstamp ca24b0d4-9152-42ec-b375-bc3d4955657a))
(fp_line (start 1.69 -3.201) (end 1.69 -1.04) (layer "F.SilkS") (width 0.12) (tstamp cb650be9-5945-4889-b9be-36453509d023))
(fp_line (start 3.211 -2.578) (end 3.211 -1.04) (layer "F.SilkS") (width 0.12) (tstamp cc9cf69b-ff04-40fc-8a61-a924396e717f))
(fp_line (start 2.251 -3.074) (end 2.251 -1.04) (layer "F.SilkS") (width 0.12) (tstamp d084e83a-82b3-480b-a858-4fbf1aac99dd))
(fp_line (start 1.89 -3.167) (end 1.89 -1.04) (layer "F.SilkS") (width 0.12) (tstamp d5b739ee-003a-4f87-8a1d-1141a9fb779a))
(fp_line (start 4.171 -1.432) (end 4.171 1.432) (layer "F.SilkS") (width 0.12) (tstamp d7e3e63b-32e2-4162-aa7c-857619823ccf))
(fp_line (start 3.171 1.04) (end 3.171 2.607) (layer "F.SilkS") (width 0.12) (tstamp d8ef08b1-6020-4411-8ba2-eaf7d813ed82))
(fp_line (start 2.131 1.04) (end 2.131 3.11) (layer "F.SilkS") (width 0.12) (tstamp d919e3ad-56bc-4e69-bc09-593ad4d48ebc))
(fp_line (start 3.651 -2.182) (end 3.651 2.182) (layer "F.SilkS") (width 0.12) (tstamp d91bce6c-2aeb-46c3-8b45-10f21ee513dc))
(fp_line (start 2.891 1.04) (end 2.891 2.79) (layer "F.SilkS") (width 0.12) (tstamp dad61ae1-1edc-45f7-b7b3-7a1ced8c48a4))
(fp_line (start 1.25 -3.23) (end 1.25 3.23) (layer "F.SilkS") (width 0.12) (tstamp db5ecf51-9cfd-4bb2-b1e9-4a3030f97fc2))
(fp_line (start 3.811 -1.995) (end 3.811 1.995) (layer "F.SilkS") (width 0.12) (tstamp dc205054-6624-4e8b-a858-4b8a3e13d1a9))
(fp_line (start 2.771 1.04) (end 2.771 2.856) (layer "F.SilkS") (width 0.12) (tstamp dc4bbdde-de71-401a-bcbc-d2a82da7c91c))
(fp_line (start 3.491 1.04) (end 3.491 2.343) (layer "F.SilkS") (width 0.12) (tstamp dd3829ec-6049-4c81-bf24-bfaa8e0519a6))
(fp_line (start 2.531 -2.97) (end 2.531 -1.04) (layer "F.SilkS") (width 0.12) (tstamp e5dfb7ea-3195-4850-a3a8-c8127c20b614))
(fp_line (start 2.971 -2.742) (end 2.971 -1.04) (layer "F.SilkS") (width 0.12) (tstamp e5e2e3be-b2f7-461d-8de7-30f94293ade4))
(fp_line (start 2.691 -2.896) (end 2.691 -1.04) (layer "F.SilkS") (width 0.12) (tstamp e735565c-e0a3-4494-b052-7841a659d771))
(fp_line (start 2.251 1.04) (end 2.251 3.074) (layer "F.SilkS") (width 0.12) (tstamp eae17ee2-1a67-4a96-812f-c0e7ea42b09e))
(fp_line (start 1.49 -3.222) (end 1.49 -1.04) (layer "F.SilkS") (width 0.12) (tstamp edef4e58-725a-4395-bb90-4741ca811099))
(fp_line (start 1.57 -3.215) (end 1.57 -1.04) (layer "F.SilkS") (width 0.12) (tstamp ef1df663-5aaf-45e5-a75e-b6df6ca0b507))
(fp_line (start 3.411 1.04) (end 3.411 2.416) (layer "F.SilkS") (width 0.12) (tstamp efdb1554-006e-484f-bcaf-349b00622f47))
(fp_line (start 1.61 1.04) (end 1.61 3.211) (layer "F.SilkS") (width 0.12) (tstamp f03cbed7-3c14-44e5-b161-9c310ee3886b))
(fp_line (start 3.611 -2.224) (end 3.611 2.224) (layer "F.SilkS") (width 0.12) (tstamp f2d2ae03-617b-46fd-9132-ca1791cf2a5c))
(fp_line (start 3.291 1.04) (end 3.291 2.516) (layer "F.SilkS") (width 0.12) (tstamp f532531a-e4d2-480d-bd65-53b5b198cbc5))
(fp_line (start 4.011 -1.714) (end 4.011 1.714) (layer "F.SilkS") (width 0.12) (tstamp f56f42db-7025-4521-bdb9-a44382c3e584))
(fp_line (start 3.931 -1.834) (end 3.931 1.834) (layer "F.SilkS") (width 0.12) (tstamp f65aaf12-1a2d-488a-aa33-d23ef6e02514))
(fp_line (start 2.091 1.04) (end 2.091 3.121) (layer "F.SilkS") (width 0.12) (tstamp f85fb629-7290-4d01-b455-99ff5b0823d4))
(fp_line (start 3.371 1.04) (end 3.371 2.45) (layer "F.SilkS") (width 0.12) (tstamp f8a6f46f-38b1-4c30-94c8-eb10d29ee17b))
(fp_line (start 2.051 1.04) (end 2.051 3.131) (layer "F.SilkS") (width 0.12) (tstamp f8dbeed5-2967-4005-9562-a2a1160b8d7d))
(fp_line (start 3.291 -2.516) (end 3.291 -1.04) (layer "F.SilkS") (width 0.12) (tstamp fdb947ab-b4d3-4db4-a219-ee4e508b8dd1))
(fp_line (start 2.731 -2.876) (end 2.731 -1.04) (layer "F.SilkS") (width 0.12) (tstamp fdefc257-ed6a-45d2-9636-df155791c541))
(fp_line (start 3.211 1.04) (end 3.211 2.578) (layer "F.SilkS") (width 0.12) (tstamp fe592642-dcc1-478b-a2e6-5baa9d8ab33c))
(fp_circle (center 1.25 0) (end 4.52 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp aa56a7a8-6478-46c7-90f9-4516d8a1ae1d))
(fp_circle (center 1.25 0) (end 4.65 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 5d98dea9-1b2b-44db-b226-4051b1c3839a))
(fp_line (start -1.128972 -1.6885) (end -1.128972 -1.0585) (layer "F.Fab") (width 0.1) (tstamp 985edbcb-6f21-4c30-b2a8-da108cbecc3a))
(fp_line (start -1.443972 -1.3735) (end -0.813972 -1.3735) (layer "F.Fab") (width 0.1) (tstamp b8e1f867-e299-4697-8db6-141c717a9eef))
(fp_circle (center 1.25 0) (end 4.4 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 9b5112f7-4291-4c5c-895e-9ca452827520))
(pad "1" thru_hole rect (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 7 "+9VA") (pintype "passive") (tstamp 85d75b5f-864c-458f-8e6c-31305228a086))
(pad "2" thru_hole circle (at 2.5 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "GND") (pintype "passive") (tstamp a1ae0200-fe9d-4881-b178-9c440e3db882))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/CP_Radial_D6.3mm_P2.50mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_THT:C_Disc_D3.0mm_W2.0mm_P2.50mm" (layer "F.Cu")
(tedit 5AE50EF0) (tstamp 00000000-0000-0000-0000-00005c324276)
(at 130.175 104.14 -90)
(descr "C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3*2mm^2, Capacitor")
(tags "C Disc series Radial pin pitch 2.50mm diameter 3mm width 2mm Capacitor")
(property "Sheetfile" "Switchboard.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005bfaca48")
(attr through_hole)
(fp_text reference "C1" (at 1.25 -1.905 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c5898bd9-3387-4e0a-bbde-3e18e306b37e)
)
(fp_text value "100n" (at 3.429 0 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3b01e07e-d3e3-46be-b390-cd3b8c1a6311)
)
(fp_text user "${REFERENCE}" (at 1.25 0 90) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.09)))
(tstamp 0910c4d1-2ff4-475a-a30c-a4cac4821f95)
)
(fp_line (start -0.37 -1.12) (end 2.87 -1.12) (layer "F.SilkS") (width 0.12) (tstamp 00b60c93-7c9d-4080-8adc-34c007f37d57))
(fp_line (start 2.87 -1.12) (end 2.87 -1.055) (layer "F.SilkS") (width 0.12) (tstamp 0eb4e5bf-d612-4428-8c21-eb6ce0d2de7a))
(fp_line (start -0.37 1.12) (end 2.87 1.12) (layer "F.SilkS") (width 0.12) (tstamp 14324d88-8aef-44b3-a1e8-3e53f27081ce))
(fp_line (start -0.37 1.055) (end -0.37 1.12) (layer "F.SilkS") (width 0.12) (tstamp 34513578-bd33-4785-b70c-be75007648bf))
(fp_line (start 2.87 1.055) (end 2.87 1.12) (layer "F.SilkS") (width 0.12) (tstamp 39555bf7-2eb5-4d82-ad68-707f8bdbcbac))
(fp_line (start -0.37 -1.12) (end -0.37 -1.055) (layer "F.SilkS") (width 0.12) (tstamp d11ecc57-12ec-4b0c-bfda-cf9fbc220827))
(fp_line (start -1.05 1.25) (end 3.55 1.25) (layer "F.CrtYd") (width 0.05) (tstamp 25f06dc0-83ab-48ee-9e22-f237879c2702))
(fp_line (start 3.55 1.25) (end 3.55 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp 4a302b81-979f-4994-8bdb-893a7641c5b8))
(fp_line (start 3.55 -1.25) (end -1.05 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp c1fdae51-6f1a-4eb9-b5c6-b39e9baaa948))
(fp_line (start -1.05 -1.25) (end -1.05 1.25) (layer "F.CrtYd") (width 0.05) (tstamp fe496d6e-8ca5-49ad-9d8d-501dbc30d0a6))
(fp_line (start 2.75 1) (end 2.75 -1) (layer "F.Fab") (width 0.1) (tstamp 57635ab9-ed00-41f4-b3a7-d4a5db57646e))
(fp_line (start 2.75 -1) (end -0.25 -1) (layer "F.Fab") (width 0.1) (tstamp 7bd3b50a-a163-4b25-be9c-553c43e9c135))
(fp_line (start -0.25 -1) (end -0.25 1) (layer "F.Fab") (width 0.1) (tstamp ade98c76-d990-4a27-8154-d26596d363d2))
(fp_line (start -0.25 1) (end 2.75 1) (layer "F.Fab") (width 0.1) (tstamp cfc3f0d1-8f38-4a7f-80cc-1831940aa296))
(pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 7 "+9VA") (pintype "passive") (tstamp 4cafc07b-96fd-47f6-ab49-2cea3f94df78))
(pad "2" thru_hole circle (at 2.5 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "GND") (pintype "passive") (tstamp c29b2f25-a95f-4bc6-952c-e8d222de69d2))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/C_Disc_D3.0mm_W2.0mm_P2.50mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 00000000-0000-0000-0000-00005cc47e5d)
(at 121.92 97.79 180)
(descr "Resistor, Axial_DIN0207 series, Axial, Vertical, pin pitch=2.54mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Vertical pin pitch 2.54mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "Switchboard.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005cc4598a")
(attr through_hole)
(fp_text reference "R1" (at 1.27 2.54) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6f1b56f8-5db8-4986-8624-2dd1a23a1e57)
)
(fp_text value "100" (at 1.143 1.905) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8c018109-949a-4b93-89f2-2d9147644a2b)
)
(fp_text user "${REFERENCE}" (at 1.27 -1.905) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4b574291-c856-4c2e-b6e8-d998397fb186)
)
(fp_line (start 1.37 0) (end 1.44 0) (layer "F.SilkS") (width 0.12) (tstamp 61865cf0-87ad-4080-ac29-7a081fc3968d))
(fp_circle (center 0 0) (end 1.37 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 4a2a8f73-99eb-401b-8f84-5084726dc6ab))
(fp_line (start 3.59 -1.5) (end -1.5 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 7ad2f8ca-0e78-472e-bfe8-972516100c07))
(fp_line (start -1.5 1.5) (end 3.59 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 9aa222f3-f479-4ed5-a358-78d6a977ae8c))
(fp_line (start 3.59 1.5) (end 3.59 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp ba144c7f-397e-4588-b24f-9853ea8c2bca))
(fp_line (start -1.5 -1.5) (end -1.5 1.5) (layer "F.CrtYd") (width 0.05) (tstamp efb34c2a-65ad-417e-85dd-47c1415a4ee6))
(fp_line (start 0 0) (end 2.54 0) (layer "F.Fab") (width 0.1) (tstamp 8a9efeb5-cd2c-455f-8536-81669f6881f7))
(fp_circle (center 0 0) (end 1.25 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp c4fe22b6-243e-4b7e-813c-ef4931ac3dd0))
(pad "1" thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 7 "+9VA") (pintype "passive") (tstamp 64d8cee1-3c3a-4fe9-adb0-35e8aa2d4556))
(pad "2" thru_hole oval (at 2.54 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "+9V") (pintype "passive") (tstamp 9504f6a6-597b-4754-8eab-5f19d6e5ac5e))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_Wire:SolderWire-0.5sqmm_1x02_P4.8mm_D0.9mm_OD2.3mm" (layer "F.Cu")
(tedit 5EB70B44) (tstamp 00000000-0000-0000-0000-00005d079ec8)
(at 125.095 71.755)
(descr "Soldered wire connection, for 2 times 0.5 mm² wires, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator")
(tags "connector wire 0.5sqmm")
(property "Sheetfile" "Switchboard.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005bfcadb6")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "J2" (at 2.4 -2.35) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b36f0e36-174c-46ca-a6a1-e2da192bdbc2)
)
(fp_text value "Conn_01x02_Female" (at 2.4 2.35) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7226088d-b4c8-469a-913e-592213123ea5)
)
(fp_text user "${REFERENCE}" (at 2.4 0 90) (layer "F.Fab")
(effects (font (size 0.82 0.82) (thickness 0.12)))
(tstamp c2b8e2e3-f97f-41b6-90cd-3b0625145fa2)
)
(fp_line (start 2.9 -1.65) (end 2.9 1.65) (layer "F.CrtYd") (width 0.05) (tstamp 3aa594a9-51dc-416b-bd48-4d8f4af48dc4))
(fp_line (start -1.9 1.65) (end 1.9 1.65) (layer "F.CrtYd") (width 0.05) (tstamp 64a03f17-69db-4a31-a0db-2ed7a11a1859))
(fp_line (start 1.9 -1.65) (end -1.9 -1.65) (layer "F.CrtYd") (width 0.05) (tstamp 6ce3d175-dab8-490a-ab3f-caa701ba508c))
(fp_line (start 6.7 -1.65) (end 2.9 -1.65) (layer "F.CrtYd") (width 0.05) (tstamp 786517d9-ad1e-4508-a4c3-4368f2b1e3ec))
(fp_line (start 2.9 1.65) (end 6.7 1.65) (layer "F.CrtYd") (width 0.05) (tstamp 8b761418-353b-4d19-8774-3ad2af83ae47))
(fp_line (start 1.9 1.65) (end 1.9 -1.65) (layer "F.CrtYd") (width 0.05) (tstamp 8d08872c-696e-4d20-9526-18d8059aed0c))
(fp_line (start -1.9 -1.65) (end -1.9 1.65) (layer "F.CrtYd") (width 0.05) (tstamp 90a82ce2-1459-4339-8067-88d870531f61))
(fp_line (start 6.7 1.65) (end 6.7 -1.65) (layer "F.CrtYd") (width 0.05) (tstamp c2a1c395-6f0d-4e11-b9dd-7f5096d78032))
(fp_circle (center 4.8 0) (end 5.95 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp ba94a7d9-a46d-4f7d-a2bb-d109c0a31044))
(fp_circle (center 0 0) (end 1.15 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp fffabc1e-15f7-487d-8477-8d0647ef9c1b))
(pad "1" thru_hole roundrect (at 0 0) (size 2.3 2.3) (drill 1.1) (layers *.Cu *.Mask) (roundrect_rratio 0.108696)
(net 1 "+9V") (pinfunction "Pin_1") (pintype "passive") (tstamp 8284ec85-7a02-4307-abf7-f96558070ebe))
(pad "2" thru_hole circle (at 4.8 0) (size 2.3 2.3) (drill 1.1) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp 51b990da-52de-49bc-a10c-97b5fa80c362))
(model "${KICAD6_3DMODEL_DIR}/Connector_Wire.3dshapes/SolderWire-0.5sqmm_1x02_P4.8mm_D0.9mm_OD2.3mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "NLS:MonoJack_6.35mm_Neutrik_NMJ4HCD2" (layer "F.Cu")
(tedit 5BFA8C77) (tstamp 00000000-0000-0000-0000-00005d086b43)
(at 118.555 83.915 180)
(property "Sheetfile" "Switchboard.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005bfa85f5")
(attr through_hole)
(fp_text reference "J5" (at 0.445 -10.7 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 008c4bd0-7a10-4f12-bda0-ddae7ae9e8d4)
)
(fp_text value "AudioJack2_SwitchT" (at -11.5 -1.5 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2529f831-4704-4675-93c1-2c33cadc4d38)
)
(fp_text user "${REFERENCE}" (at -11.5 1.5 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9deb335b-daa4-44d5-996d-8b0ac1d4760d)
)
(fp_line (start 0.2 -5.7) (end 0.2 -9.6) (layer "F.SilkS") (width 0.15) (tstamp 0e45e893-7053-410d-8ede-779d58b9ab05))
(fp_line (start -5 9.6) (end -15.7 9.6) (layer "F.SilkS") (width 0.15) (tstamp 250473e1-2d83-439c-b52d-3a3ec0d127fc))
(fp_line (start -23.8 4.5) (end -20.8 4.5) (layer "F.SilkS") (width 0.15) (tstamp 3452d31a-ca26-44d2-83e7-c845686f921b))
(fp_line (start -20.8 -4.5) (end -20.8 -9.6) (layer "F.SilkS") (width 0.15) (tstamp 61f6ea68-ec89-4f2d-ade7-cbf0151d16d5))
(fp_line (start 0.2 -5.7) (end 0.2 5.7) (layer "F.SilkS") (width 0.15) (tstamp 650e2fc4-412a-421e-bad6-0439662d941d))
(fp_line (start -20.8 -4.5) (end -23.8 -4.5) (layer "F.SilkS") (width 0.15) (tstamp 68e3e6e3-1e8d-4c83-8208-ee1b37bcbce2))
(fp_line (start 0.2 9.6) (end -3 9.6) (layer "F.SilkS") (width 0.15) (tstamp 6902410d-db49-43b4-8087-a6b3a2f2dedc))
(fp_line (start -5 -9.6) (end -15.7 -9.6) (layer "F.SilkS") (width 0.15) (tstamp 6e04749e-58b0-4f96-987b-df25d47d0499))
(fp_line (start 0.2 9.6) (end 0.2 5.7) (layer "F.SilkS") (width 0.15) (tstamp 74018c80-34ad-44cc-92cd-46649f6dd81b))
(fp_line (start -23.8 -4.5) (end -23.8 4.5) (layer "F.SilkS") (width 0.15) (tstamp 831f783d-75ff-4248-8a60-5438914067c3))
(fp_line (start 0.2 -9.6) (end -3 -9.6) (layer "F.SilkS") (width 0.15) (tstamp a8931c61-fe25-4332-854b-ee838dacd743))
(fp_line (start -17.7 9.6) (end -20.8 9.6) (layer "F.SilkS") (width 0.15) (tstamp e7f2f204-e783-497d-ba68-ddb333e4f441))
(fp_line (start -20.8 4.5) (end -20.8 9.6) (layer "F.SilkS") (width 0.15) (tstamp ea33e212-0160-446f-ad9a-905a1beb0e9c))
(fp_line (start -17.7 -9.6) (end -20.8 -9.6) (layer "F.SilkS") (width 0.15) (tstamp f5c70330-f0e9-4516-abb0-ae6084df6ebc))
(fp_line (start 3.5 9.8) (end 3.5 -9.8) (layer "F.CrtYd") (width 0.15) (tstamp 4f0d1c5d-1525-40f0-98ed-c324f2b38bf2))
(fp_line (start -24 9.8) (end 3.5 9.8) (layer "F.CrtYd") (width 0.15) (tstamp 79e30008-7fe1-4186-b2dc-c46031e36f8c))
(fp_line (start -24 -9.8) (end -24 9.8) (layer "F.CrtYd") (width 0.15) (tstamp caa80f94-6bbe-44c9-b4c9-66417636555b))
(fp_line (start 3.5 -9.8) (end -24 -9.8) (layer "F.CrtYd") (width 0.15) (tstamp e5d3fb4a-8b17-4160-bb0d-d30d171fe6e0))
(fp_line (start -20.7 -9.5) (end -20.7 -4.4) (layer "F.Fab") (width 0.15) (tstamp 157ae2e2-eeec-4811-9279-29541f09f6a7))
(fp_line (start 0 -5.5) (end 3 -5.5) (layer "F.Fab") (width 0.15) (tstamp 2b51249d-ffe3-412e-add3-d780d507b4b3))
(fp_line (start -20.7 -4.4) (end -23.7 -4.4) (layer "F.Fab") (width 0.15) (tstamp 361a266c-020f-429a-88c4-5163e1472332))
(fp_line (start 3 -5.5) (end 3 5.5) (layer "F.Fab") (width 0.15) (tstamp 371d8ce5-1b2b-47b6-bc57-42932bc5e51d))
(fp_line (start -23.7 4.4) (end -20.7 4.4) (layer "F.Fab") (width 0.15) (tstamp 37acd9ae-6ef8-4365-9ef3-5ea16ba15165))
(fp_line (start 0 -9.5) (end -20.7 -9.5) (layer "F.Fab") (width 0.15) (tstamp 450328e9-083f-4bf0-991f-c8656fe5d715))
(fp_line (start -23.7 -4.4) (end -23.7 4.4) (layer "F.Fab") (width 0.15) (tstamp 691529b4-992d-4965-b0ff-0bfd16afe9c9))
(fp_line (start -20.7 9.5) (end 0 9.5) (layer "F.Fab") (width 0.15) (tstamp 6e84be0e-4b07-442c-bc26-6147b12efab8))
(fp_line (start 0 9.5) (end 0 -9.5) (layer "F.Fab") (width 0.15) (tstamp a0086969-dc2f-4b78-ba21-b4b8c0f94901))
(fp_line (start 3 5.5) (end 0 5.5) (layer "F.Fab") (width 0.15) (tstamp d359774a-389b-4b77-b6c5-20c58cde7e2e))
(fp_line (start -20.7 4.4) (end -20.7 9.5) (layer "F.Fab") (width 0.15) (tstamp f9827cfc-c143-4a58-94e1-507382361eb0))
(pad "S" thru_hole circle locked (at -4 8.16 180) (size 2.5 2.5) (drill 1.4) (layers *.Cu *.Mask)
(net 2 "GND") (pintype "passive") (tstamp 8a2a6910-32b6-45ea-9861-68ac5d8f966d))
(pad "S" thru_hole circle locked (at -4 -8.16 180) (size 2.5 2.5) (drill 1.4) (layers *.Cu *.Mask)
(net 2 "GND") (pintype "passive") (tstamp f6410b1e-d365-43f0-af0c-9fa802daf963))
(pad "T" thru_hole circle locked (at -16.7 -8.16 180) (size 2.5 2.5) (drill 1.4) (layers *.Cu *.Mask)
(net 6 "Net-(J5-PadT)") (pintype "passive") (tstamp e3c77b0c-4954-4287-bdd5-28e841757af9))
(pad "TN" thru_hole circle locked (at -16.7 8.16 180) (size 2.5 2.5) (drill 1.4) (layers *.Cu *.Mask)
(net 6 "Net-(J5-PadT)") (pintype "passive") (tstamp 937e76b8-c13a-4811-aca0-280e86515a15))
(model "/home/sly/Creative/Electro/Libs/3D/NMJ4HCD2.stp"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 -90))
)
)
(footprint "MountingHole:MountingHole_3.2mm_M3" locked (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 00000000-0000-0000-0000-00005d0a99f7)
(at 167.64 71.12)
(descr "Mounting Hole 3.2mm, no annular, M3")
(tags "mounting hole 3.2mm no annular m3")
(attr board_only exclude_from_pos_files exclude_from_bom)
(fp_text reference "REF**" (at 0 -4.2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 496bbc62-a3c1-4994-8336-f45b84cee8a4)
)
(fp_text value "MountingHole_3.2mm_M3" (at 0 -3.81) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 427e5378-5362-426c-a1cc-e0146aaad3f2)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f7d95860-c5c1-4f39-9be8-f482c05bbb20)
)
(fp_circle (center 0 0) (end 3.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 8ccb27d5-ff39-4e31-a8d1-18bd3d29eea2))
(fp_circle (center 0 0) (end 3.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 7c43a49e-0f20-42b6-8c50-7bea74be67f3))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.2 3.2) (drill 3.2) (layers *.Cu *.Mask) (tstamp 47ba990d-0401-40ed-b59c-cda51eccbc01))
)
(footprint "MountingHole:MountingHole_3.2mm_M3" locked (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 00000000-0000-0000-0000-00005d0a9a60)
(at 118.11 71.12)
(descr "Mounting Hole 3.2mm, no annular, M3")
(tags "mounting hole 3.2mm no annular m3")
(attr board_only exclude_from_pos_files exclude_from_bom)
(fp_text reference "REF**" (at 0 -4.2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d80bb5f6-40a0-43f1-894c-43f191356dec)
)
(fp_text value "MountingHole_3.2mm_M3" (at 0 -3.81) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 588316ce-95b5-451a-bef0-ae8773705e77)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 66327022-9782-4401-bf28-2f355203270e)
)
(fp_circle (center 0 0) (end 3.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp c715c70d-d962-4a26-ae11-c017f7347db8))
(fp_circle (center 0 0) (end 3.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 7d0a4f3d-c2bd-4093-a269-dff715e647f2))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.2 3.2) (drill 3.2) (layers *.Cu *.Mask) (tstamp b9fd382b-a074-48ff-ba35-693abd218181))
)
(footprint "MountingHole:MountingHole_3.2mm_M3" locked (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 00000000-0000-0000-0000-00005d0ab280)
(at 167.005 114.3)
(descr "Mounting Hole 3.2mm, no annular, M3")
(tags "mounting hole 3.2mm no annular m3")
(attr board_only exclude_from_pos_files exclude_from_bom)
(fp_text reference "REF**" (at 0 -4.2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e3729e2f-6927-42f3-924e-ec984837182f)
)
(fp_text value "MountingHole_3.2mm_M3" (at 0 4.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 089596d2-69c7-414f-9340-9cd506919821)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d788f510-deb7-483d-9446-30535e8bd71b)
)
(fp_circle (center 0 0) (end 3.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 34a532f4-1e0a-4d70-9d93-7b694cec8f16))
(fp_circle (center 0 0) (end 3.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 7bc05ff9-b0c4-4f17-9f64-f4801c4fff60))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.2 3.2) (drill 3.2) (layers *.Cu *.Mask) (tstamp 55cfd671-fa87-46de-93e0-54c4d5981a86))
)
(footprint "MountingHole:MountingHole_3.2mm_M3" locked (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 00000000-0000-0000-0000-00005d0ab379)
(at 118.745 114.3)
(descr "Mounting Hole 3.2mm, no annular, M3")
(tags "mounting hole 3.2mm no annular m3")
(attr board_only exclude_from_pos_files exclude_from_bom)
(fp_text reference "REF**" (at 0 -4.2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 59038ed9-0c70-40d8-8860-17cc476d441f)
)
(fp_text value "MountingHole_3.2mm_M3" (at 0 4.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1770c2e7-e99e-43fa-b78e-3393f0995e7c)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 80658ddd-a63c-4395-9146-caa2557c816c)
)
(fp_circle (center 0 0) (end 3.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 00a31659-c4e7-461c-9cc4-e849c817b61c))
(fp_circle (center 0 0) (end 3.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp de2e37e3-0e6a-4978-8c63-a8b8d58cb1be))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.2 3.2) (drill 3.2) (layers *.Cu *.Mask) (tstamp 305324f8-46a2-4991-932d-b77ea03eaf56))
)
(footprint "Capacitor_THT:C_Disc_D3.0mm_W2.0mm_P2.50mm" (layer "F.Cu")
(tedit 5AE50EF0) (tstamp 00000000-0000-0000-0000-00005d2b273a)
(at 126.365 106.64 90)
(descr "C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3*2mm^2, Capacitor")
(tags "C Disc series Radial pin pitch 2.50mm diameter 3mm width 2mm Capacitor")
(property "Sheetfile" "Switchboard.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005d2c1841")
(attr through_hole)
(fp_text reference "C103" (at 1.25 -1.905 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f18a502c-b07e-49cb-a5ff-cc2e53d98c46)
)
(fp_text value "100n" (at -0.929 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 42f85fbf-a494-4d32-aa61-77f32fb5dd0b)
)
(fp_text user "${REFERENCE}" (at 1.25 0 90) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.09)))
(tstamp 418100b8-75bd-44c1-90f7-d2a1acb86eaf)
)
(fp_line (start -0.37 -1.12) (end -0.37 -1.055) (layer "F.SilkS") (width 0.12) (tstamp 42a3b8c9-d922-4222-917c-5dd5310f2d30))
(fp_line (start 2.87 -1.12) (end 2.87 -1.055) (layer "F.SilkS") (width 0.12) (tstamp 69f1792a-c5a6-4fd4-a36d-32dfa4c13327))
(fp_line (start 2.87 1.055) (end 2.87 1.12) (layer "F.SilkS") (width 0.12) (tstamp 736f6a31-fc37-49b7-9b96-f2693e764d8d))
(fp_line (start -0.37 1.12) (end 2.87 1.12) (layer "F.SilkS") (width 0.12) (tstamp 8331a3fe-26b2-45f5-bfc1-59fc2329a297))
(fp_line (start -0.37 -1.12) (end 2.87 -1.12) (layer "F.SilkS") (width 0.12) (tstamp b56446a4-8051-4fb7-80f7-a7fa88844c2a))
(fp_line (start -0.37 1.055) (end -0.37 1.12) (layer "F.SilkS") (width 0.12) (tstamp c5113947-4db0-4576-9397-7d5f939b169b))
(fp_line (start -1.05 -1.25) (end -1.05 1.25) (layer "F.CrtYd") (width 0.05) (tstamp 4cf54f85-2c8e-4dec-9d88-f38b676b59d4))
(fp_line (start 3.55 -1.25) (end -1.05 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp b7264fa2-fe67-4f4e-8220-1ff8d98c0edc))
(fp_line (start -1.05 1.25) (end 3.55 1.25) (layer "F.CrtYd") (width 0.05) (tstamp c3f14eba-2c91-485f-b968-c7eb8b6f2092))
(fp_line (start 3.55 1.25) (end 3.55 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp fa77f987-eb02-445f-8c2c-8fcd7a3f1ccb))
(fp_line (start 2.75 1) (end 2.75 -1) (layer "F.Fab") (width 0.1) (tstamp 3ae4efc5-6cc4-4c73-b503-46b79beb9c03))
(fp_line (start -0.25 -1) (end -0.25 1) (layer "F.Fab") (width 0.1) (tstamp 5e7926c6-51ba-4fbe-9f9f-71f54579f9bf))
(fp_line (start -0.25 1) (end 2.75 1) (layer "F.Fab") (width 0.1) (tstamp c20457b7-cb0e-4c61-97dd-661d11607489))
(fp_line (start 2.75 -1) (end -0.25 -1) (layer "F.Fab") (width 0.1) (tstamp ef0bface-e7e6-41d6-a6f4-9f8b163c369e))
(pad "1" thru_hole circle (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 10 "-9VA") (pintype "passive") (tstamp 634bdb50-5861-433a-9053-e3cb45331536))
(pad "2" thru_hole circle (at 2.5 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "GND") (pintype "passive") (tstamp 4182b97a-cd5a-48a6-bb70-af99b3bc6738))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/C_Disc_D3.0mm_W2.0mm_P2.50mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinSocket_2.54mm:PinSocket_1x06_P2.54mm_Vertical" (layer "F.Cu")
(tedit 5A19A430) (tstamp 00000000-0000-0000-0000-00005d2b2858)
(at 136.525 71.12 90)
(descr "Through hole straight socket strip, 1x06, 2.54mm pitch, single row (from Kicad 4.0.7), script generated")
(tags "Through hole socket strip THT 1x06 2.54mm single row")
(property "Sheetfile" "Switchboard.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005d321120")
(attr through_hole)
(fp_text reference "J4" (at 0 -2.77 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e4282458-a07a-4fc6-9367-ab91489a9331)
)
(fp_text value "Conn_01x06_Female" (at -1.905 6.35 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 74886572-461f-4ecf-82aa-54267d4b538a)
)
(fp_text user "${REFERENCE}" (at 0 6.35) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0613e297-f133-4de3-b08d-66c6eb23b044)
)
(fp_line (start 1.33 -1.33) (end 1.33 0) (layer "F.SilkS") (width 0.12) (tstamp 326e77c6-46a9-41f2-8132-c1fdef05ee09))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 497051b3-a162-4418-9156-b74543ec0fc4))
(fp_line (start -1.33 1.27) (end -1.33 14.03) (layer "F.SilkS") (width 0.12) (tstamp 982f8e16-7dca-4522-aa0d-89ebeb521003))
(fp_line (start 1.33 1.27) (end 1.33 14.03) (layer "F.SilkS") (width 0.12) (tstamp af4653e0-dbad-467d-87f3-b4c0e30b373a))
(fp_line (start -1.33 14.03) (end 1.33 14.03) (layer "F.SilkS") (width 0.12) (tstamp b6c99e20-c238-4079-9a8e-13263c1bd556))
(fp_line (start 0 -1.33) (end 1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp d751a538-3509-4a2b-a682-b3c1f32d3b9b))
(fp_line (start -1.8 -1.8) (end 1.75 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 20df2135-a535-488e-a850-ea6cfafc1ac0))
(fp_line (start 1.75 14.45) (end -1.8 14.45) (layer "F.CrtYd") (width 0.05) (tstamp 6fe79844-fab6-45c9-984d-dc86dc08a943))
(fp_line (start 1.75 -1.8) (end 1.75 14.45) (layer "F.CrtYd") (width 0.05) (tstamp b034be77-7cee-4562-99e7-e841f51c183f))
(fp_line (start -1.8 14.45) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp bf795509-6176-4ba7-842d-31d74277dd2e))
(fp_line (start 1.27 -0.635) (end 1.27 13.97) (layer "F.Fab") (width 0.1) (tstamp 81e088a7-cc71-4895-b954-728fe2e69f69))
(fp_line (start -1.27 -1.27) (end 0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp b14e966d-4645-4b4e-89d2-b493a6ec8236))
(fp_line (start 1.27 13.97) (end -1.27 13.97) (layer "F.Fab") (width 0.1) (tstamp e9bc4c61-8fa4-4c11-b039-c05d6e6769d5))
(fp_line (start -1.27 13.97) (end -1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp ee55b273-66f7-4f92-8d7e-ee6c8ad66455))
(fp_line (start 0.635 -1.27) (end 1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp ef013c40-4230-40e7-9930-5e8c44aea8ea))
(pad "1" thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 7 "+9VA") (pinfunction "Pin_1") (pintype "passive") (tstamp 456ce0b8-77c2-4785-bb73-a2e22580cbdb))
(pad "2" thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 10 "-9VA") (pinfunction "Pin_2") (pintype "passive") (tstamp e16b6371-325a-483e-8c8d-13c15b103cf9))
(pad "3" thru_hole oval (at 0 5.08 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 5 "Net-(J4-Pad3)") (pinfunction "Pin_3") (pintype "passive") (tstamp a65bd6e2-0038-4b82-83fe-95e88a956ef7))
(pad "4" thru_hole oval (at 0 7.62 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 13 "Net-(J4-Pad4)") (pinfunction "Pin_4") (pintype "passive") (tstamp d91e6bc0-eeca-4780-9fef-46dfc82e59c5))
(pad "5" thru_hole oval (at 0 10.16 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "+9V") (pinfunction "Pin_5") (pintype "passive") (tstamp 6482afa0-ae0f-47ef-85d9-02f9b50d3ca8))
(pad "6" thru_hole oval (at 0 12.7 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_6") (pintype "passive") (tstamp 3fa366d2-302f-4aa8-92cb-04d8a0a25eb1))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_1x06_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 00000000-0000-0000-0000-00005d2b28fb)
(at 161.925 106.68)
(descr "Resistor, Axial_DIN0207 series, Axial, Vertical, pin pitch=2.54mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Vertical pin pitch 2.54mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "Switchboard.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005d2c282b")
(attr through_hole)
(fp_text reference "R101" (at 1.27 2.54) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b0c714d0-542e-41a4-b23d-947d027081e3)
)
(fp_text value "100" (at 1.27 2.159) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8b7c81ff-ed95-4836-aa44-97322e46a643)
)
(fp_text user "${REFERENCE}" (at 1.27 -2.159) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4caaed36-6f3c-4879-b8f5-85e92f23a116)
)
(fp_line (start 1.37 0) (end 1.44 0) (layer "F.SilkS") (width 0.12) (tstamp f0005c4b-577e-4d7f-ba8f-89af65de9118))
(fp_circle (center 0 0) (end 1.37 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 2ece64e5-742e-415c-a78c-1ad48b3ba64e))
(fp_line (start -1.5 -1.5) (end -1.5 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 10e174e0-f4c3-46c7-99d7-9d8c595294bd))
(fp_line (start 3.59 1.5) (end 3.59 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 133e1061-8559-4953-a216-338cc8a5c8b4))
(fp_line (start -1.5 1.5) (end 3.59 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 45d8d992-1ac9-4f32-9141-62a423136233))
(fp_line (start 3.59 -1.5) (end -1.5 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 9812a8f3-9d7d-4551-8a69-2400b8d344cf))
(fp_line (start 0 0) (end 2.54 0) (layer "F.Fab") (width 0.1) (tstamp 8f04e261-2d32-4feb-9fae-38f38c1ab47d))
(fp_circle (center 0 0) (end 1.25 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 26a2c89e-0b44-4b95-bfb7-6b32c926a76a))
(pad "1" thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 10 "-9VA") (pintype "passive") (tstamp e1abc177-230d-4824-b1cf-89185db24691))
(pad "2" thru_hole oval (at 2.54 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 9 "Net-(C101-Pad2)") (pintype "passive") (tstamp 75503f67-01f2-4e1d-98a4-7df582383b19))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_DIP:DIP-8_W7.62mm" (layer "F.Cu")
(tedit 5A02E8C5) (tstamp 00000000-0000-0000-0000-00005d2b2c82)
(at 156.845 103.505 90)
(descr "8-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils)")
(tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil")
(property "Sheetfile" "Switchboard.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005d2b7da9")
(attr through_hole)
(fp_text reference "U101" (at 3.81 -2.33 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8a27d187-19f9-477e-9f17-37a37fbf20c3)
)
(fp_text value "LTC1044" (at 3.81 9.95 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6a2cf944-b955-4b26-9d00-f4c1c000ff9a)
)
(fp_text user "${REFERENCE}" (at 3.81 3.81 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 50b181db-5c97-4571-b169-0c7895f4866d)
)
(fp_line (start 6.46 8.95) (end 6.46 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 2d11fbc4-72af-473b-87f1-2d1b0606f73a))
(fp_line (start 2.81 -1.33) (end 1.16 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 307f9063-ca67-46a7-a6f8-8171265b1e44))
(fp_line (start 1.16 8.95) (end 6.46 8.95) (layer "F.SilkS") (width 0.12) (tstamp 4233b08e-a8c8-43ed-9cf1-f0a7252e79a5))
(fp_line (start 1.16 -1.33) (end 1.16 8.95) (layer "F.SilkS") (width 0.12) (tstamp 7133fd43-39a1-41f0-b759-8fea01697fce))
(fp_line (start 6.46 -1.33) (end 4.81 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 7316c2a6-8a8c-4c38-912e-a80b10f7ca1d))
(fp_arc (start 4.81 -1.33) (mid 3.81 -0.33) (end 2.81 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 797980cd-1f92-4892-a94e-dddc03c027c6))
(fp_line (start -1.1 9.15) (end 8.7 9.15) (layer "F.CrtYd") (width 0.05) (tstamp 1d6de3aa-33fa-4dc2-b251-e0d05f12f87c))
(fp_line (start -1.1 -1.55) (end -1.1 9.15) (layer "F.CrtYd") (width 0.05) (tstamp 5e7dfbf8-874a-4813-86fa-cbdd674e80e4))
(fp_line (start 8.7 -1.55) (end -1.1 -1.55) (layer "F.CrtYd") (width 0.05) (tstamp a8ea0173-ba79-4e68-9caa-a39ac44c9155))
(fp_line (start 8.7 9.15) (end 8.7 -1.55) (layer "F.CrtYd") (width 0.05) (tstamp c80cb3ec-0541-4277-b0e4-735b0746e76e))
(fp_line (start 6.985 -1.27) (end 6.985 8.89) (layer "F.Fab") (width 0.1) (tstamp 6038fbde-a9dd-4a57-9673-8366949de929))
(fp_line (start 0.635 8.89) (end 0.635 -0.27) (layer "F.Fab") (width 0.1) (tstamp 6fc4ef86-214f-43d2-b941-85fbd2d33a30))
(fp_line (start 6.985 8.89) (end 0.635 8.89) (layer "F.Fab") (width 0.1) (tstamp cc6d1dc7-c7e6-4e26-9bf2-059a1c26a44c))
(fp_line (start 1.635 -1.27) (end 6.985 -1.27) (layer "F.Fab") (width 0.1) (tstamp de17632b-e85e-4454-ba8a-1bbaa69d766e))
(fp_line (start 0.635 -0.27) (end 1.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp f00ad18a-a9c8-44b7-8095-0c5febc18d43))
(pad "1" thru_hole rect (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "+9V") (pinfunction "BOOST") (pintype "input") (tstamp cd23ce6c-c328-4a04-8e85-4aa9ad8ee496))
(pad "2" thru_hole oval (at 0 2.54 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 12 "Net-(C104-Pad1)") (pinfunction "CAP+") (pintype "input") (tstamp 82df910c-c2bd-4fe8-8244-b46373601d32))
(pad "3" thru_hole oval (at 0 5.08 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp b483d180-e155-42cf-bedf-44b821879036))
(pad "4" thru_hole oval (at 0 7.62 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 11 "Net-(C104-Pad2)") (pinfunction "CAP-") (pintype "input") (tstamp ab1b9830-0070-4650-b781-eba48bff4004))
(pad "5" thru_hole oval (at 7.62 7.62 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 9 "Net-(C101-Pad2)") (pinfunction "VOUT") (pintype "power_out") (tstamp 3878ad2f-d8a6-4a3f-a78f-dd50a87f11ba))
(pad "6" thru_hole oval (at 7.62 5.08 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 16 "unconnected-(U101-Pad6)") (pinfunction "LV") (pintype "input+no_connect") (tstamp cdd60eb7-7d4b-4ec1-b204-92543845d400))
(pad "7" thru_hole oval (at 7.62 2.54 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 15 "unconnected-(U101-Pad7)") (pinfunction "OSC") (pintype "input+no_connect") (tstamp 846dcbdb-013e-4256-9876-7a1f3c340e29))
(pad "8" thru_hole oval (at 7.62 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "+9V") (pinfunction "V+") (pintype "power_in") (tstamp 92d28c06-e24d-4fe5-ae54-8c52c07a369f))
(model "${KICAD6_3DMODEL_DIR}/Package_DIP.3dshapes/DIP-8_W7.62mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "NLS:SW_3PDT_Footswitch" (layer "F.Cu")
(tedit 5BD6300C) (tstamp 00000000-0000-0000-0000-00005d2b60fc)
(at 142.875 103.505)
(property "Sheetfile" "Switchboard.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005bfa8b02")
(attr through_hole)
(fp_text reference "SW1" (at 0 10.16 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d64c6ec4-0af4-4d12-8391-d088a90e7e93)
)
(fp_text value "SW_3PDT_x3" (at 0 -7.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 33e0b256-f95b-4e0d-b174-755fedf739a8)
)
(fp_text user "${REFERENCE}" (at 0 6.985) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 71d467a5-1d5e-4613-a353-8df37440671e)
)
(fp_line (start -9.8 8.6) (end -9.8 0) (layer "F.SilkS") (width 0.1) (tstamp 019a7dfd-50c6-4418-a39d-f0f57c74ea58))
(fp_line (start 9.8 0) (end 9.8 8.6) (layer "F.SilkS") (width 0.1) (tstamp 100ebee3-c59c-41b9-a51c-5db27868b444))
(fp_line (start -8.6 8.6) (end -9.8 8.6) (layer "F.SilkS") (width 0.1) (tstamp 14c36157-339a-4952-9c4e-dcdab8491f5a))
(fp_line (start 9.8 -8.6) (end 9.7 -8.6) (layer "F.SilkS") (width 0.1) (tstamp 1fd1f5c7-6991-4063-a0ae-8a8f862a0cd6))
(fp_line (start 0 -8.6) (end 9.8 -8.6) (layer "F.SilkS") (width 0.1) (tstamp 2a9401eb-f49f-4af5-8693-eafa9d6523c8))
(fp_line (start -9.8 0) (end -9.8 -8.6) (layer "F.SilkS") (width 0.1) (tstamp 2c34d710-f16c-45c4-8267-036538faaf55))
(fp_line (start 9.8 8.6) (end 0 8.6) (layer "F.SilkS") (width 0.1) (tstamp 30492db3-c68b-4929-ab05-5e74998fcb8c))
(fp_line (start -8.6 -8.6) (end 0 -8.6) (layer "F.SilkS") (width 0.1) (tstamp 5b6ab0c3-816e-4573-9fb1-bf6e49193051))
(fp_line (start -9.8 -8.6) (end -8.6 -8.6) (layer "F.SilkS") (width 0.1) (tstamp 66394bf0-88bf-4513-8d04-4e8efde14140))
(fp_line (start 0 8.6) (end -8.6 8.6) (layer "F.SilkS") (width 0.1) (tstamp b9935b17-b889-4a65-8b55-1ba65a1484a1))
(fp_line (start 9.8 -8.6) (end 9.8 0) (layer "F.SilkS") (width 0.1) (tstamp be88690d-9c14-4a70-a84e-c910b2239616))
(fp_line (start -10.16 -8.89) (end -10.16 8.89) (layer "F.CrtYd") (width 0.15) (tstamp 02b79032-8f66-4748-be6c-5e10d3175d8d))
(fp_line (start 10.16 -8.89) (end -10.16 -8.89) (layer "F.CrtYd") (width 0.15) (tstamp 3768d7e7-79c1-4a06-a88f-d7abb2efee8e))
(fp_line (start -10.16 8.89) (end 10.16 8.89) (layer "F.CrtYd") (width 0.15) (tstamp a4f76b38-83a3-47d2-97a9-065ab339a3b8))
(fp_line (start 10.16 8.89) (end 10.16 -8.89) (layer "F.CrtYd") (width 0.15) (tstamp b701f3a7-bd69-44e7-812d-d195e3d4e778))
(fp_line (start -9.652 -8.382) (end -9.652 8.382) (layer "F.Fab") (width 0.15) (tstamp 40caaa49-5212-477d-88b6-d3f6c60c0ac1))
(fp_line (start -9.652 8.382) (end 9.652 8.382) (layer "F.Fab") (width 0.15) (tstamp 60e305c6-62ea-48a2-a50f-396470c7fd5d))
(fp_line (start 9.652 -8.382) (end -9.652 -8.382) (layer "F.Fab") (width 0.15) (tstamp e19a4357-bf8c-4757-a65c-dd949b0b9f60))
(fp_line (start 9.652 8.382) (end 9.652 -8.382) (layer "F.Fab") (width 0.15) (tstamp f603ccff-400d-41e5-871e-b947a86ff407))
(pad "1" thru_hole rect locked (at -5.3 -4.7) (size 3.2 2) (drill oval 2.8 0.9525) (layers *.Cu *.Mask)
(net 5 "Net-(J4-Pad3)") (pinfunction "A") (pintype "passive") (tstamp 4d9817ba-6203-4ac9-abd0-be1d21777fbf))
(pad "2" thru_hole rect locked (at -5.3 0) (size 3.2 2) (drill oval 2.8 0.762) (layers *.Cu *.Mask)
(net 6 "Net-(J5-PadT)") (pinfunction "B") (pintype "passive") (tstamp 1a35b3ff-c266-431a-a844-11fdd40a5468))
(pad "3" thru_hole rect locked (at -5.3 4.7) (size 3.2 2) (drill oval 2.8 0.762) (layers *.Cu *.Mask)
(net 8 "Net-(J3-PadT)") (pinfunction "C") (pintype "passive") (tstamp b0850eb6-2cc1-469b-87c4-fb87fe446e69))
(pad "4" thru_hole rect locked (at 0 -4.7) (size 3.2 2) (drill oval 2.8 0.762) (layers *.Cu *.Mask)
(net 4 "Net-(D1-Pad2)") (pinfunction "A") (pintype "passive") (tstamp 8eb1a61a-3886-4b8e-9385-21581f9d013a))
(pad "5" thru_hole rect locked (at 0 0) (size 3.2 2) (drill oval 2.8 0.762) (layers *.Cu *.Mask)
(net 1 "+9V") (pinfunction "B") (pintype "passive") (tstamp 272f7012-2bf1-4fd4-a692-528d1f5a2480))
(pad "6" thru_hole rect locked (at 0 4.7) (size 3.2 2) (drill oval 2.8 0.762) (layers *.Cu *.Mask)
(net 14 "unconnected-(SW1-Pad6)") (pinfunction "C") (pintype "passive+no_connect") (tstamp 23b350e0-eb30-4948-889b-9e45b732d83d))
(pad "7" thru_hole rect locked (at 5.3 -4.7) (size 3.2 2) (drill oval 2.8 0.762) (layers *.Cu *.Mask)
(net 8 "Net-(J3-PadT)") (pinfunction "A") (pintype "passive") (tstamp 361b9855-0500-4650-8fa4-03f551e19502))
(pad "8" thru_hole rect locked (at 5.3 0) (size 3.2 2) (drill oval 2.8 0.762) (layers *.Cu *.Mask)
(net 13 "Net-(J4-Pad4)") (pinfunction "B") (pintype "passive") (tstamp cde3e0f4-abec-4358-8c94-edb29009e92f))
(pad "9" thru_hole rect locked (at 5.3 4.7) (size 3.2 2) (drill oval 2.8 0.762) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "C") (pintype "passive") (tstamp 51050dc6-1186-4184-a364-beefe6635d2c))
(model "/home/sly/Creative/Electro/Libs/3D/3PDT.stp"
(offset (xyz -9 -6.5 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_THT:CP_Radial_D5.0mm_P2.50mm" (layer "F.Cu")
(tedit 5AE50EF0) (tstamp 00000000-0000-0000-0000-00005d2b8d1f)
(at 155.575 107.95)
(descr "CP, Radial series, Radial, pin pitch=2.50mm, , diameter=5mm, Electrolytic Capacitor")
(tags "CP Radial series Radial pin pitch 2.50mm diameter 5mm Electrolytic Capacitor")
(property "Sheetfile" "Switchboard.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005d2b3c5c")
(attr through_hole)
(fp_text reference "C104" (at 1.27 3.81) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp df1861ef-2304-4d90-b862-9b6e3a5ab341)
)
(fp_text value "10µ" (at 1.27 3.429) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7f68d203-4cc6-4f52-8782-f51a21c243ac)
)
(fp_text user "${REFERENCE}" (at 1.25 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9c07657b-abca-40fb-91b0-ff3b50a813ee)
)
(fp_line (start 3.251 1.04) (end 3.251 1.653) (layer "F.SilkS") (width 0.12) (tstamp 07bf676a-beaa-4b0a-8577-df413c274e93))
(fp_line (start 3.411 1.04) (end 3.411 1.443) (layer "F.SilkS") (width 0.12) (tstamp 0945c8eb-c971-4dd5-807d-d9b68a85bf8c))
(fp_line (start 2.371 -2.329) (end 2.371 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 101b0109-aa9c-4635-bb88-71593817ae4c))
(fp_line (start 3.331 -1.554) (end 3.331 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 10f64ee2-9f14-4fd2-ab1c-3b6705db25b9))
(fp_line (start 2.331 1.04) (end 2.331 2.348) (layer "F.SilkS") (width 0.12) (tstamp 113fbe29-16a1-4186-9168-1beb8001ba9d))
(fp_line (start 3.291 -1.605) (end 3.291 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 12a42b83-3bd3-41e4-b516-60d036d50ff0))
(fp_line (start 3.171 -1.743) (end 3.171 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 13a8b870-4224-4f66-ab72-3045c7819505))
(fp_line (start 2.251 -2.382) (end 2.251 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 15bb153c-1348-46dc-88e3-3b17e11d2319))
(fp_line (start 3.491 -1.319) (end 3.491 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 16e96e5a-867e-4271-bf01-1cd5c58f2a0b))