-
Notifications
You must be signed in to change notification settings - Fork 0
/
cuebox.kicad_pcb
9099 lines (9071 loc) · 384 KB
/
cuebox.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20211014) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "./nerd")
)
)
(net 0 "")
(net 1 "/SW0")
(net 2 "GND")
(net 3 "/SW1")
(net 4 "/SW2")
(net 5 "/SW3")
(net 6 "+3V3")
(net 7 "Net-(R2-Pad1)")
(net 8 "Net-(R4-Pad1)")
(net 9 "Net-(R6-Pad1)")
(net 10 "Net-(R16-Pad1)")
(net 11 "unconnected-(U1-Pad1)")
(net 12 "unconnected-(U1-Pad2)")
(net 13 "unconnected-(U1-Pad4)")
(net 14 "unconnected-(U1-Pad6)")
(net 15 "unconnected-(U1-Pad10)")
(net 16 "unconnected-(U1-Pad11)")
(net 17 "unconnected-(U1-Pad12)")
(net 18 "unconnected-(U1-Pad14)")
(net 19 "unconnected-(U1-Pad15)")
(net 20 "unconnected-(U1-Pad16)")
(net 21 "unconnected-(U1-Pad17)")
(net 22 "unconnected-(U1-Pad19)")
(net 23 "unconnected-(U1-Pad20)")
(net 24 "unconnected-(U1-Pad21)")
(net 25 "unconnected-(U1-Pad22)")
(net 26 "unconnected-(U1-Pad24)")
(net 27 "unconnected-(U1-Pad25)")
(net 28 "unconnected-(U1-Pad26)")
(net 29 "unconnected-(U1-Pad27)")
(net 30 "unconnected-(U1-Pad30)")
(net 31 "unconnected-(U1-Pad31)")
(net 32 "unconnected-(U1-Pad32)")
(net 33 "GNDA")
(net 34 "unconnected-(U1-Pad34)")
(net 35 "VDDA")
(net 36 "unconnected-(U1-Pad37)")
(net 37 "+5V")
(net 38 "VBUS")
(net 39 "unconnected-(U1-Pad41)")
(net 40 "unconnected-(U1-Pad43)")
(footprint "Button_Switch_THT:SW_PUSH_6mm_H5mm" (layer "F.Cu")
(tedit 5A02FE31) (tstamp 1443183b-9d7f-42fc-b0f5-1d3d50b752ce)
(at 177.09 109.51)
(descr "tactile push button, 6x6mm e.g. PHAP33xx series, height=5mm")
(tags "tact sw push 6mm")
(property "Sheetfile" "cuebox.kicad_sch")
(property "Sheetname" "")
(path "/99e2e349-d559-46a5-8f02-7028d5a49369")
(attr through_hole)
(fp_text reference "SW4" (at 3.25 -2) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b93c4d13-faac-410d-91d6-05a529903d6a)
)
(fp_text value "SW_Push" (at 3.75 6.7) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a41678e9-e4f2-423b-8cbf-8b4eb99edbf0)
)
(fp_text user "${REFERENCE}" (at 3.25 2.25) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1139b918-ac5c-4259-812f-f5a63e90de72)
)
(fp_line (start 6.75 3) (end 6.75 1.5) (layer "F.SilkS") (width 0.12) (tstamp 1e2dc00f-10e4-4903-8573-d01135f509e6))
(fp_line (start -0.25 1.5) (end -0.25 3) (layer "F.SilkS") (width 0.12) (tstamp 26ddaa05-b9fd-40b0-9fd7-ba820f8cc1a5))
(fp_line (start 5.5 -1) (end 1 -1) (layer "F.SilkS") (width 0.12) (tstamp 888da17c-a137-4a5d-8379-11f001f093a6))
(fp_line (start 1 5.5) (end 5.5 5.5) (layer "F.SilkS") (width 0.12) (tstamp d451d908-3afe-40f8-9e01-43a77a7b023a))
(fp_line (start -1.5 6) (end -1.25 6) (layer "F.CrtYd") (width 0.05) (tstamp 03b6e3ad-4f20-4956-b4bc-2331c3e8301b))
(fp_line (start -1.25 -1.5) (end 7.75 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 1b698737-0f3a-42cd-a516-e9d1cb9e0b04))
(fp_line (start 7.75 -1.5) (end 8 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 42bc9541-2cca-4a81-9ecb-134fb97db45e))
(fp_line (start -1.5 5.75) (end -1.5 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp 5745e8a3-ac16-4fc2-96e2-31731c503525))
(fp_line (start -1.5 -1.25) (end -1.5 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 6b403f20-57cc-41cd-b012-00478a3b1ec7))
(fp_line (start 8 -1.5) (end 8 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp 6c472746-f77e-4b92-b26a-125915875148))
(fp_line (start 7.75 6) (end 8 6) (layer "F.CrtYd") (width 0.05) (tstamp 9647e323-fa7f-43a2-b77e-9571fff13d81))
(fp_line (start 7.75 6) (end -1.25 6) (layer "F.CrtYd") (width 0.05) (tstamp aa6f15d9-980f-4303-aed2-09bcb8e5f5fa))
(fp_line (start -1.5 -1.5) (end -1.25 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp d5af9b78-3279-4da0-8841-c2268ac396ba))
(fp_line (start 8 6) (end 8 5.75) (layer "F.CrtYd") (width 0.05) (tstamp e227933a-e753-4594-9c8c-8241d8a83ad9))
(fp_line (start 8 -1.25) (end 8 5.75) (layer "F.CrtYd") (width 0.05) (tstamp f2444d74-103c-4c9b-b244-7dd827dd573e))
(fp_line (start -1.5 5.75) (end -1.5 6) (layer "F.CrtYd") (width 0.05) (tstamp fca283e7-908f-4b38-b552-20706c96e8b3))
(fp_line (start 3.25 -0.75) (end 6.25 -0.75) (layer "F.Fab") (width 0.1) (tstamp 1aaac046-ce0d-4ee0-8e1c-80f542533a6b))
(fp_line (start 6.25 -0.75) (end 6.25 5.25) (layer "F.Fab") (width 0.1) (tstamp 34e4e3f1-6643-40aa-a952-4eef307f4d0e))
(fp_line (start 0.25 -0.75) (end 3.25 -0.75) (layer "F.Fab") (width 0.1) (tstamp 78ce68ff-a423-4179-8f1d-525082a1170b))
(fp_line (start 0.25 5.25) (end 0.25 -0.75) (layer "F.Fab") (width 0.1) (tstamp 9860e590-7ab5-4d9b-997f-6ece66de5895))
(fp_line (start 6.25 5.25) (end 0.25 5.25) (layer "F.Fab") (width 0.1) (tstamp fde99f0e-bd05-4882-a25a-63d6532f8916))
(fp_circle (center 3.25 2.25) (end 1.25 2.5) (layer "F.Fab") (width 0.1) (fill none) (tstamp 3e501167-800b-4821-a560-680310f20529))
(pad "1" thru_hole circle (at 6.5 0 90) (size 2 2) (drill 1.1) (layers *.Cu *.Mask)
(net 9 "Net-(R6-Pad1)") (pinfunction "1") (pintype "passive") (tstamp 30ed00de-401a-45c5-bcad-04c14166af72))
(pad "1" thru_hole circle (at 0 0 90) (size 2 2) (drill 1.1) (layers *.Cu *.Mask)
(net 9 "Net-(R6-Pad1)") (pinfunction "1") (pintype "passive") (tstamp bccbb697-47e2-4471-baa5-ccf63d1e19fa))
(pad "2" thru_hole circle (at 6.5 4.5 90) (size 2 2) (drill 1.1) (layers *.Cu *.Mask)
(net 5 "/SW3") (pinfunction "2") (pintype "passive") (tstamp acbaf8c3-41fd-42dc-8446-3dfb66c7d23b))
(pad "2" thru_hole circle (at 0 4.5 90) (size 2 2) (drill 1.1) (layers *.Cu *.Mask)
(net 5 "/SW3") (pinfunction "2") (pintype "passive") (tstamp c5c2f87d-d94f-4c6c-a7db-821602744ac0))
(model "${KICAD6_3DMODEL_DIR}/Button_Switch_THT.3dshapes/SW_PUSH_6mm_H5mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Button_Switch_THT:SW_PUSH_6mm_H5mm" (layer "F.Cu")
(tedit 5A02FE31) (tstamp 14d87314-cfd7-41bc-bfab-06b2f327e928)
(at 154.23 71.41)
(descr "tactile push button, 6x6mm e.g. PHAP33xx series, height=5mm")
(tags "tact sw push 6mm")
(property "Sheetfile" "cuebox.kicad_sch")
(property "Sheetname" "")
(path "/c91b5305-071c-44bd-b078-ddec227a27d9")
(attr through_hole)
(fp_text reference "SW1" (at 3.25 -2) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a2a9e9d2-8771-444e-a89f-6b49d6b37581)
)
(fp_text value "SW_Push" (at 3.75 6.7) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 172498ff-5625-45b8-a5e4-ee860a9a60da)
)
(fp_text user "${REFERENCE}" (at 3.25 2.25) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 30396a96-4516-4aaa-b13a-4d32402dd34f)
)
(fp_line (start 1 5.5) (end 5.5 5.5) (layer "F.SilkS") (width 0.12) (tstamp 39c5ecba-f17b-4247-9f9d-c2148a2dd2fb))
(fp_line (start 5.5 -1) (end 1 -1) (layer "F.SilkS") (width 0.12) (tstamp c2eac93d-582b-4766-828e-95deae507a0c))
(fp_line (start -0.25 1.5) (end -0.25 3) (layer "F.SilkS") (width 0.12) (tstamp dbce1059-e2e3-4207-8a0e-e19f0f25e42d))
(fp_line (start 6.75 3) (end 6.75 1.5) (layer "F.SilkS") (width 0.12) (tstamp ef5555e1-f303-42b0-b6d6-899dce5e46ac))
(fp_line (start 8 6) (end 8 5.75) (layer "F.CrtYd") (width 0.05) (tstamp 0b08e9fa-0682-42a5-973f-ddbd45d9c43a))
(fp_line (start 7.75 6) (end -1.25 6) (layer "F.CrtYd") (width 0.05) (tstamp 13becfd1-9740-41ca-a348-85aa27c238b1))
(fp_line (start -1.5 6) (end -1.25 6) (layer "F.CrtYd") (width 0.05) (tstamp 230cb0ab-b7ca-44af-b075-5923246a0746))
(fp_line (start 8 -1.25) (end 8 5.75) (layer "F.CrtYd") (width 0.05) (tstamp 47df6686-4bcb-4285-9e79-6760adca837f))
(fp_line (start -1.5 5.75) (end -1.5 6) (layer "F.CrtYd") (width 0.05) (tstamp 502b6240-b00d-4503-8bbd-4640e16f44c5))
(fp_line (start -1.5 5.75) (end -1.5 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp 5cb47e93-43c5-4bec-86cb-90c88effb79a))
(fp_line (start -1.25 -1.5) (end 7.75 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 6a7d4adb-dc4b-44a0-bbce-c7095221d4bf))
(fp_line (start 7.75 6) (end 8 6) (layer "F.CrtYd") (width 0.05) (tstamp 79ee0703-ee4c-4a5d-9e01-0f7003f890af))
(fp_line (start 8 -1.5) (end 8 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp 7d5a8dbd-fc18-455d-9d0f-dad17efd0df9))
(fp_line (start 7.75 -1.5) (end 8 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp bd3664c8-4072-499a-9700-fcb929baa6c0))
(fp_line (start -1.5 -1.25) (end -1.5 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp bde33ee4-9406-4363-ac46-24fcfd7746c1))
(fp_line (start -1.5 -1.5) (end -1.25 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp f9f765cd-bde8-4f67-be72-0def96b5ab5c))
(fp_line (start 6.25 5.25) (end 0.25 5.25) (layer "F.Fab") (width 0.1) (tstamp 07a3b2fa-0121-4be8-887e-04a1572ce665))
(fp_line (start 0.25 5.25) (end 0.25 -0.75) (layer "F.Fab") (width 0.1) (tstamp 9155e2c5-8e8f-4f24-a1bd-31207b16b33f))
(fp_line (start 3.25 -0.75) (end 6.25 -0.75) (layer "F.Fab") (width 0.1) (tstamp bb9afb38-0689-4860-8880-3f96360bd968))
(fp_line (start 6.25 -0.75) (end 6.25 5.25) (layer "F.Fab") (width 0.1) (tstamp d5fee21c-1d06-4b00-94b0-27607130d5ca))
(fp_line (start 0.25 -0.75) (end 3.25 -0.75) (layer "F.Fab") (width 0.1) (tstamp eda1cdf0-0128-4313-a655-7e624c1d37d7))
(fp_circle (center 3.25 2.25) (end 1.25 2.5) (layer "F.Fab") (width 0.1) (fill none) (tstamp ddbf6a28-701f-45fd-833a-9af996f9b92d))
(pad "1" thru_hole circle (at 0 0 90) (size 2 2) (drill 1.1) (layers *.Cu *.Mask)
(net 10 "Net-(R16-Pad1)") (pinfunction "1") (pintype "passive") (tstamp 671a957a-7095-4e11-be71-b34859138c30))
(pad "1" thru_hole circle (at 6.5 0 90) (size 2 2) (drill 1.1) (layers *.Cu *.Mask)
(net 10 "Net-(R16-Pad1)") (pinfunction "1") (pintype "passive") (tstamp f3235e38-f258-41ed-b196-b599e7ce92f7))
(pad "2" thru_hole circle (at 0 4.5 90) (size 2 2) (drill 1.1) (layers *.Cu *.Mask)
(net 1 "/SW0") (pinfunction "2") (pintype "passive") (tstamp 0f79886c-1680-4008-83ad-0d862b88c401))
(pad "2" thru_hole circle (at 6.5 4.5 90) (size 2 2) (drill 1.1) (layers *.Cu *.Mask)
(net 1 "/SW0") (pinfunction "2") (pintype "passive") (tstamp ec41c491-fa88-442d-9e8a-9667c9b3c24a))
(model "${KICAD6_3DMODEL_DIR}/Button_Switch_THT.3dshapes/SW_PUSH_6mm_H5mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_THT:CP_Radial_D4.0mm_P1.50mm" (layer "F.Cu")
(tedit 5AE50EF0) (tstamp 3f05dc2a-d635-4865-bddd-4f38bd9b91ea)
(at 198.12 111.76)
(descr "CP, Radial series, Radial, pin pitch=1.50mm, , diameter=4mm, Electrolytic Capacitor")
(tags "CP Radial series Radial pin pitch 1.50mm diameter 4mm Electrolytic Capacitor")
(property "Sheetfile" "cuebox.kicad_sch")
(property "Sheetname" "")
(path "/78f0fad8-bc45-4300-a5d1-26b469e2fdee")
(attr through_hole)
(fp_text reference "C3" (at 0.75 -3.25) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 627c941d-fe14-4bea-8469-15c995a5335c)
)
(fp_text value "100nF" (at 0.75 3.25) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ca18ea27-d7b1-4a22-a0b3-bd43a5ce9629)
)
(fp_text user "${REFERENCE}" (at 0.75 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 07f79934-a440-42e0-abbb-97e94b8f4801)
)
(fp_line (start 1.511 -1.94) (end 1.511 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 00401387-11e7-4654-9eee-67ded368d2ea))
(fp_line (start 1.791 0.84) (end 1.791 1.808) (layer "F.SilkS") (width 0.12) (tstamp 0a5172dc-c30f-4991-b2f3-2cdfec2cdd1c))
(fp_line (start 1.671 0.84) (end 1.671 1.87) (layer "F.SilkS") (width 0.12) (tstamp 0bd72885-1106-4afc-9b0d-cf6ea6e40cb5))
(fp_line (start 1.03 -2.062) (end 1.03 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 130a0207-8a5c-497b-b139-7f26b9744365))
(fp_line (start 2.111 0.84) (end 2.111 1.587) (layer "F.SilkS") (width 0.12) (tstamp 1e0d5c5a-776b-445b-8042-50ec2f920f97))
(fp_line (start 1.511 0.84) (end 1.511 1.94) (layer "F.SilkS") (width 0.12) (tstamp 1eca034d-1625-46af-9eaa-62f62a6d3f76))
(fp_line (start 1.31 -2.005) (end 1.31 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 2597a331-360d-4d34-8519-50c8844b7e45))
(fp_line (start 2.071 -1.619) (end 2.071 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 2981c737-9099-447a-b05d-6d94a25f4cd7))
(fp_line (start 2.111 -1.587) (end 2.111 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 2c81f390-f1ae-4154-b8d1-a3d0af270598))
(fp_line (start 1.791 -1.808) (end 1.791 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 3112f7b3-cd9e-4be5-9e15-a49c192770f9))
(fp_line (start 2.031 0.84) (end 2.031 1.65) (layer "F.SilkS") (width 0.12) (tstamp 314597e6-49bd-4c96-88d3-f8e71fa9a32b))
(fp_line (start 1.11 -2.05) (end 1.11 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 31687f52-4294-40df-94df-6865109fe142))
(fp_line (start 2.311 0.84) (end 2.311 1.396) (layer "F.SilkS") (width 0.12) (tstamp 32e36125-8d16-49f1-9f3f-655b7e1f14ed))
(fp_line (start 1.831 0.84) (end 1.831 1.785) (layer "F.SilkS") (width 0.12) (tstamp 34053a52-0c22-479f-a1b7-31c3325f9f8a))
(fp_line (start 1.19 -2.034) (end 1.19 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 342632a0-41f7-4e86-95a0-4b3614ef15d6))
(fp_line (start 0.99 0.84) (end 0.99 2.067) (layer "F.SilkS") (width 0.12) (tstamp 381010b4-3b02-41d7-a524-bee0ea6b9458))
(fp_line (start 1.591 0.84) (end 1.591 1.907) (layer "F.SilkS") (width 0.12) (tstamp 383a60aa-bffc-4e7e-b5df-128464e82808))
(fp_line (start 1.07 -2.056) (end 1.07 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 3888d1ba-d43f-4706-ac49-68d7832b057d))
(fp_line (start 1.671 -1.87) (end 1.671 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 39d9364d-95ad-4886-977e-aa8536bb0f5d))
(fp_line (start 2.671 -0.859) (end 2.671 0.859) (layer "F.SilkS") (width 0.12) (tstamp 3d17deff-96d4-46da-ae2a-b89a98c58078))
(fp_line (start 1.871 0.84) (end 1.871 1.76) (layer "F.SilkS") (width 0.12) (tstamp 3e2650be-3fdc-474b-a5a1-d0bbacf2ab13))
(fp_line (start 2.831 -0.37) (end 2.831 0.37) (layer "F.SilkS") (width 0.12) (tstamp 41572f28-639f-47ee-a448-899373299e86))
(fp_line (start 0.83 0.84) (end 0.83 2.079) (layer "F.SilkS") (width 0.12) (tstamp 490c6d3a-b9f3-474b-ade8-66906c65cf67))
(fp_line (start 1.31 0.84) (end 1.31 2.005) (layer "F.SilkS") (width 0.12) (tstamp 4b5c8f50-e502-4700-bdd7-cb9e820506fc))
(fp_line (start 1.711 0.84) (end 1.711 1.851) (layer "F.SilkS") (width 0.12) (tstamp 4c944d0a-1dcc-4ba4-a5a7-77d686b447d8))
(fp_line (start 1.471 0.84) (end 1.471 1.954) (layer "F.SilkS") (width 0.12) (tstamp 4dfa231f-2571-473b-811c-6565426ac6e8))
(fp_line (start 1.19 0.84) (end 1.19 2.034) (layer "F.SilkS") (width 0.12) (tstamp 50dcd573-fb42-4994-8006-47559bef89e9))
(fp_line (start 1.591 -1.907) (end 1.591 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 54031045-f609-4d71-a1a7-64350b47a7f5))
(fp_line (start 2.231 -1.478) (end 2.231 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 54a35e6e-6b9a-431b-8568-241c6dd356da))
(fp_line (start 2.351 -1.351) (end 2.351 1.351) (layer "F.SilkS") (width 0.12) (tstamp 55080d82-4122-43d7-bafb-3fee77487cee))
(fp_line (start 1.35 0.84) (end 1.35 1.994) (layer "F.SilkS") (width 0.12) (tstamp 5597233d-f411-48e8-9733-2ad248540f2c))
(fp_line (start 1.07 0.84) (end 1.07 2.056) (layer "F.SilkS") (width 0.12) (tstamp 5b5b071d-7b4c-4eff-abdf-2579b7fa476e))
(fp_line (start 0.75 0.84) (end 0.75 2.08) (layer "F.SilkS") (width 0.12) (tstamp 5c76ff11-ff76-4b35-9f3a-f04f29bc65ae))
(fp_line (start 1.43 0.84) (end 1.43 1.968) (layer "F.SilkS") (width 0.12) (tstamp 5ddb0da9-39f7-40c8-9f85-e3ecda204210))
(fp_line (start 1.911 -1.735) (end 1.911 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 5e4826ff-6674-4935-ba9c-a1ab8217392a))
(fp_line (start 1.991 0.84) (end 1.991 1.68) (layer "F.SilkS") (width 0.12) (tstamp 61f98412-ac03-4114-bef8-497352ae3652))
(fp_line (start 0.79 0.84) (end 0.79 2.08) (layer "F.SilkS") (width 0.12) (tstamp 637cc447-e58f-49f6-8b4d-e0a389ab2297))
(fp_line (start 2.071 0.84) (end 2.071 1.619) (layer "F.SilkS") (width 0.12) (tstamp 68b13329-5960-45c1-b65e-e99a683917bd))
(fp_line (start 1.11 0.84) (end 1.11 2.05) (layer "F.SilkS") (width 0.12) (tstamp 6d520c3b-0e36-4763-a2e2-905d6b722ffe))
(fp_line (start 1.831 -1.785) (end 1.831 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 71626c0f-c9db-4415-99dd-ad254591ba7a))
(fp_line (start 1.871 -1.76) (end 1.871 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 72ba399c-402c-4bef-b19b-cf1d7da1a0df))
(fp_line (start 2.151 -1.552) (end 2.151 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 79e6ea5f-d4e1-47cd-9420-2393f8a041fa))
(fp_line (start 2.151 0.84) (end 2.151 1.552) (layer "F.SilkS") (width 0.12) (tstamp 7c9791ff-2c5f-4ca0-8eb8-9f57977851c3))
(fp_line (start 1.711 -1.851) (end 1.711 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 7ca6399b-b894-4de3-a8c6-cc72973ff1a3))
(fp_line (start 1.991 -1.68) (end 1.991 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 7d45a220-4598-420c-8e10-cce24d134c66))
(fp_line (start 2.231 0.84) (end 2.231 1.478) (layer "F.SilkS") (width 0.12) (tstamp 7ecd6fce-8d0f-422d-8fda-7020633c8407))
(fp_line (start 1.23 0.84) (end 1.23 2.025) (layer "F.SilkS") (width 0.12) (tstamp 86aa2767-1d1b-42bd-8be1-65d9b8cd6e7a))
(fp_line (start 1.551 -1.924) (end 1.551 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 8b18d511-27f6-4429-87cc-71a1dfb702a5))
(fp_line (start 0.91 0.84) (end 0.91 2.074) (layer "F.SilkS") (width 0.12) (tstamp 8bea94fb-17c6-422c-88ad-4e56e2dcae41))
(fp_line (start 0.79 -2.08) (end 0.79 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 90bd630e-1481-485d-af24-11b6a0cfda79))
(fp_line (start 1.43 -1.968) (end 1.43 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 9134733d-fea0-4396-8fa4-0f2f66be4f04))
(fp_line (start 1.631 0.84) (end 1.631 1.889) (layer "F.SilkS") (width 0.12) (tstamp 95941891-c0d8-4c61-8452-d649e322c855))
(fp_line (start 0.87 -2.077) (end 0.87 -0.84) (layer "F.SilkS") (width 0.12) (tstamp a3390697-624f-4844-b0d5-0d41875d7842))
(fp_line (start 1.751 0.84) (end 1.751 1.83) (layer "F.SilkS") (width 0.12) (tstamp a5ecdccf-3c41-49c1-967e-d168f52005c7))
(fp_line (start 1.471 -1.954) (end 1.471 -0.84) (layer "F.SilkS") (width 0.12) (tstamp a6b7ba6c-2da6-4a89-9944-8c17a220eb6b))
(fp_line (start 0.95 -2.071) (end 0.95 -0.84) (layer "F.SilkS") (width 0.12) (tstamp a6e3ada3-e9ab-4f46-afba-dc6c2a80e7df))
(fp_line (start 1.39 -1.982) (end 1.39 -0.84) (layer "F.SilkS") (width 0.12) (tstamp a708b1c6-1fb7-4765-a487-138c1d8cc306))
(fp_line (start 2.431 -1.254) (end 2.431 1.254) (layer "F.SilkS") (width 0.12) (tstamp a70e9486-508c-4950-a779-feb8bd7ec12f))
(fp_line (start 1.911 0.84) (end 1.911 1.735) (layer "F.SilkS") (width 0.12) (tstamp a9dedd05-dab1-41a3-94fd-c73730a2d42c))
(fp_line (start 2.471 -1.2) (end 2.471 1.2) (layer "F.SilkS") (width 0.12) (tstamp ac170ab7-a4db-4bb3-b65b-d5957ba1e4f9))
(fp_line (start -1.319801 -1.395) (end -1.319801 -0.995) (layer "F.SilkS") (width 0.12) (tstamp acd209da-8195-4fc3-ab32-48e2d566f100))
(fp_line (start 0.99 -2.067) (end 0.99 -0.84) (layer "F.SilkS") (width 0.12) (tstamp ad7969a1-3f1d-40e4-9b0d-2096e6c19114))
(fp_line (start 2.631 -0.94) (end 2.631 0.94) (layer "F.SilkS") (width 0.12) (tstamp b3897fb0-e631-441c-82be-9abfb95d6a78))
(fp_line (start 1.39 0.84) (end 1.39 1.982) (layer "F.SilkS") (width 0.12) (tstamp b4e2e382-a1ea-4e02-9e39-e948b56f64e7))
(fp_line (start 2.271 -1.438) (end 2.271 -0.84) (layer "F.SilkS") (width 0.12) (tstamp b8a8d06a-b9ae-4a47-a52f-9417ab84ab17))
(fp_line (start 0.87 0.84) (end 0.87 2.077) (layer "F.SilkS") (width 0.12) (tstamp b8b120d8-84bd-4efb-941a-e788868d3b88))
(fp_line (start 1.23 -2.025) (end 1.23 -0.84) (layer "F.SilkS") (width 0.12) (tstamp bd4ccd93-2cdd-4683-8e7d-83a5c31d2fd2))
(fp_line (start 0.83 -2.079) (end 0.83 -0.84) (layer "F.SilkS") (width 0.12) (tstamp c1c1a05d-8c63-4988-a587-ee14d55081c2))
(fp_line (start 1.551 0.84) (end 1.551 1.924) (layer "F.SilkS") (width 0.12) (tstamp c6cb894d-f888-4aeb-ae60-c6cca1f4f1d7))
(fp_line (start 2.591 -1.013) (end 2.591 1.013) (layer "F.SilkS") (width 0.12) (tstamp c745b8d4-6205-47fd-89da-9639876e0fa5))
(fp_line (start 0.91 -2.074) (end 0.91 -0.84) (layer "F.SilkS") (width 0.12) (tstamp c7b940c9-b8fe-478e-a892-9387c688463a))
(fp_line (start 0.75 -2.08) (end 0.75 -0.84) (layer "F.SilkS") (width 0.12) (tstamp c85a57c6-42aa-4f1f-89d7-555db48ddd26))
(fp_line (start 1.27 0.84) (end 1.27 2.016) (layer "F.SilkS") (width 0.12) (tstamp c8a6579d-fb87-443e-8371-ea591defa40f))
(fp_line (start 2.311 -1.396) (end 2.311 -0.84) (layer "F.SilkS") (width 0.12) (tstamp cb1c0431-bd2d-4081-8a53-6a0789ead70d))
(fp_line (start 1.751 -1.83) (end 1.751 -0.84) (layer "F.SilkS") (width 0.12) (tstamp cc249a76-eb56-4b02-974e-ea31905bd095))
(fp_line (start 2.191 0.84) (end 2.191 1.516) (layer "F.SilkS") (width 0.12) (tstamp d0b2e478-92fb-47d5-af71-2595e99e79db))
(fp_line (start 2.271 0.84) (end 2.271 1.438) (layer "F.SilkS") (width 0.12) (tstamp d2653666-2904-4108-9627-7d0f39d02a08))
(fp_line (start 1.951 -1.708) (end 1.951 -0.84) (layer "F.SilkS") (width 0.12) (tstamp d42cc3f4-62f4-434e-b6af-f7f36a038536))
(fp_line (start 1.27 -2.016) (end 1.27 -0.84) (layer "F.SilkS") (width 0.12) (tstamp d6e5cfeb-1adc-4d9d-a4c9-e9dafab226af))
(fp_line (start 2.791 -0.537) (end 2.791 0.537) (layer "F.SilkS") (width 0.12) (tstamp da258db3-0677-428b-9363-b52af0bf4fd0))
(fp_line (start 1.03 0.84) (end 1.03 2.062) (layer "F.SilkS") (width 0.12) (tstamp db8b8c0a-c717-42ff-9638-b6a4187e15d0))
(fp_line (start 1.35 -1.994) (end 1.35 -0.84) (layer "F.SilkS") (width 0.12) (tstamp dcc400ec-7a16-40a1-9f1f-47d6a59790af))
(fp_line (start 1.951 0.84) (end 1.951 1.708) (layer "F.SilkS") (width 0.12) (tstamp e259ea52-898d-4a1d-8c84-246f25b52ac5))
(fp_line (start 1.15 -2.042) (end 1.15 -0.84) (layer "F.SilkS") (width 0.12) (tstamp e3dafc5f-9649-417a-b2af-9d2430d561d5))
(fp_line (start 1.15 0.84) (end 1.15 2.042) (layer "F.SilkS") (width 0.12) (tstamp e672c789-b731-4db5-be51-c4aa045a8f5b))
(fp_line (start 2.711 -0.768) (end 2.711 0.768) (layer "F.SilkS") (width 0.12) (tstamp ebe39ff0-bc16-4618-9065-0904970ea89e))
(fp_line (start 2.031 -1.65) (end 2.031 -0.84) (layer "F.SilkS") (width 0.12) (tstamp ec84db22-5f23-46c6-b4e2-7da88c16a33a))
(fp_line (start 2.511 -1.142) (end 2.511 1.142) (layer "F.SilkS") (width 0.12) (tstamp ef2e2bdb-a85e-4097-9721-ac1060503ef5))
(fp_line (start 2.391 -1.304) (end 2.391 1.304) (layer "F.SilkS") (width 0.12) (tstamp f01a1f6d-c6a3-4bc7-855c-afe6f41a05b8))
(fp_line (start 2.751 -0.664) (end 2.751 0.664) (layer "F.SilkS") (width 0.12) (tstamp f3295270-a776-4608-8fbe-f74d20be8f06))
(fp_line (start 1.631 -1.889) (end 1.631 -0.84) (layer "F.SilkS") (width 0.12) (tstamp f4f4c33c-5ec2-426b-9c01-a1a5bd3bd8b6))
(fp_line (start 2.551 -1.08) (end 2.551 1.08) (layer "F.SilkS") (width 0.12) (tstamp f6c53abf-4ed6-474e-9e2b-a84b491bbb2a))
(fp_line (start 2.191 -1.516) (end 2.191 -0.84) (layer "F.SilkS") (width 0.12) (tstamp f6f183f6-54db-4cfc-bd0f-35e97504bdc3))
(fp_line (start -1.519801 -1.195) (end -1.119801 -1.195) (layer "F.SilkS") (width 0.12) (tstamp f8a1e420-dfce-44ae-accc-2e9bbff11236))
(fp_line (start 0.95 0.84) (end 0.95 2.071) (layer "F.SilkS") (width 0.12) (tstamp fef31a83-57ed-45c8-acf4-6a2ec6f15937))
(fp_circle (center 0.75 0) (end 2.87 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp dcaa9826-5bf6-422a-aca9-f0d5b76b9dec))
(fp_circle (center 0.75 0) (end 3 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 8a13d00e-e268-4b98-8cdf-93b11a31fa1c))
(fp_line (start -0.752554 -1.0675) (end -0.752554 -0.6675) (layer "F.Fab") (width 0.1) (tstamp 808fc688-5aab-44a8-abdd-452ce68ef75f))
(fp_line (start -0.952554 -0.8675) (end -0.552554 -0.8675) (layer "F.Fab") (width 0.1) (tstamp 9cb69a5e-85a6-4a66-8d18-af0d4822b21e))
(fp_circle (center 0.75 0) (end 2.75 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 552fd1b6-413a-4798-b6ff-c64c4bce4976))
(pad "1" thru_hole rect (at 0 0) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 5 "/SW3") (pintype "passive") (tstamp ba26705d-f786-45fe-af63-7474751bd5b8))
(pad "2" thru_hole circle (at 1.5 0) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 2 "GND") (pintype "passive") (tstamp 80097c2c-1753-43ac-9dd1-2e15e640aac3))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/CP_Radial_D4.0mm_P1.50mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_THT:CP_Radial_D4.0mm_P1.50mm" (layer "F.Cu")
(tedit 5AE50EF0) (tstamp 435b1d33-7d6f-4db0-8109-8944452b6b18)
(at 208.28 83.82)
(descr "CP, Radial series, Radial, pin pitch=1.50mm, , diameter=4mm, Electrolytic Capacitor")
(tags "CP Radial series Radial pin pitch 1.50mm diameter 4mm Electrolytic Capacitor")
(property "Sheetfile" "cuebox.kicad_sch")
(property "Sheetname" "")
(path "/b5617271-b1bd-40c9-a347-2847306df6f8")
(attr through_hole)
(fp_text reference "C1" (at 0.75 -3.25) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a9e16e26-43bd-407b-802f-fde26b2a8541)
)
(fp_text value "100nF" (at 0.75 3.25) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4ba21126-bd9b-4c66-9d59-d11365fcaf7e)
)
(fp_text user "${REFERENCE}" (at 0.75 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp dde636ba-5cec-4958-91db-6b6527d01073)
)
(fp_line (start 1.35 -1.994) (end 1.35 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 03da5654-c822-4344-be1c-b482fcfdbd20))
(fp_line (start 1.471 0.84) (end 1.471 1.954) (layer "F.SilkS") (width 0.12) (tstamp 063234c5-d071-4eba-99f0-ea22f650b40d))
(fp_line (start 0.99 0.84) (end 0.99 2.067) (layer "F.SilkS") (width 0.12) (tstamp 08863a6a-61d8-44de-ba8b-fec376f7ee7f))
(fp_line (start 2.591 -1.013) (end 2.591 1.013) (layer "F.SilkS") (width 0.12) (tstamp 0c647164-8465-45bf-ad5e-eb868b560fe2))
(fp_line (start 1.19 0.84) (end 1.19 2.034) (layer "F.SilkS") (width 0.12) (tstamp 0fbc1b13-6ba9-417d-850e-5fc3e3038f93))
(fp_line (start 2.231 -1.478) (end 2.231 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 1153e563-7d6d-4de4-bfef-9896d8f601c6))
(fp_line (start 1.831 -1.785) (end 1.831 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 161329a0-8538-473a-ac32-2e6640d8edc2))
(fp_line (start 0.87 -2.077) (end 0.87 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 1635ea7f-160c-43e4-8bb3-35ed6def4301))
(fp_line (start 1.11 -2.05) (end 1.11 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 17d9af67-a497-42ab-a63a-73feef64adb5))
(fp_line (start 1.791 -1.808) (end 1.791 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 18634779-5f8a-46f2-88c7-1334acf606fc))
(fp_line (start 1.43 0.84) (end 1.43 1.968) (layer "F.SilkS") (width 0.12) (tstamp 1b2aec07-87e6-4a52-a0aa-f2d8cc7a1d5c))
(fp_line (start 1.511 -1.94) (end 1.511 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 1d6688c7-7f53-49f8-9269-ef63c7914d08))
(fp_line (start 0.83 0.84) (end 0.83 2.079) (layer "F.SilkS") (width 0.12) (tstamp 1d71d95c-9071-4154-add2-450ec0e59245))
(fp_line (start 0.79 -2.08) (end 0.79 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 23c5da97-aae8-4475-aa96-5a758bed97a4))
(fp_line (start 2.551 -1.08) (end 2.551 1.08) (layer "F.SilkS") (width 0.12) (tstamp 27a3f122-451b-4de7-8079-5d610bf9111e))
(fp_line (start 1.39 -1.982) (end 1.39 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 27c1553b-0617-4763-9ac4-b6528000f958))
(fp_line (start 1.07 0.84) (end 1.07 2.056) (layer "F.SilkS") (width 0.12) (tstamp 2c0982c5-a53f-4653-88aa-cc12b0da7dbd))
(fp_line (start 0.95 -2.071) (end 0.95 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 3159f2bd-6ad9-418d-adcc-f51f06ab9e35))
(fp_line (start 2.151 0.84) (end 2.151 1.552) (layer "F.SilkS") (width 0.12) (tstamp 32293ea1-f3dd-4cee-b18a-a64e56bd2d71))
(fp_line (start 0.75 -2.08) (end 0.75 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 34329836-015d-4cf9-9613-25f374730927))
(fp_line (start 2.271 0.84) (end 2.271 1.438) (layer "F.SilkS") (width 0.12) (tstamp 35003f60-5a74-48ae-9d78-7f2ffd9fed99))
(fp_line (start 2.351 -1.351) (end 2.351 1.351) (layer "F.SilkS") (width 0.12) (tstamp 3678f0d7-bd50-4ebd-b027-3e601375fbb0))
(fp_line (start 1.871 -1.76) (end 1.871 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 3746c322-674c-423c-9ad1-d6a302501bc6))
(fp_line (start 0.79 0.84) (end 0.79 2.08) (layer "F.SilkS") (width 0.12) (tstamp 3d04547f-cefe-4919-9bbb-4dacdb462cd7))
(fp_line (start 1.751 -1.83) (end 1.751 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 3eb5e0e5-ab1e-47e3-98cc-43129af5bea0))
(fp_line (start 1.711 -1.851) (end 1.711 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 41b2a5de-d12f-4797-a43f-8fe087271a7d))
(fp_line (start 1.631 -1.889) (end 1.631 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 41f6a881-3e08-4ab0-a3af-a720b0065b63))
(fp_line (start 1.951 -1.708) (end 1.951 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 41fdc620-4d20-45fb-91e5-bb808657031f))
(fp_line (start 2.711 -0.768) (end 2.711 0.768) (layer "F.SilkS") (width 0.12) (tstamp 430a1059-8714-4e58-8996-26750bfd21bb))
(fp_line (start 1.671 0.84) (end 1.671 1.87) (layer "F.SilkS") (width 0.12) (tstamp 437020b2-c45e-4a6e-85c3-967c70ef714e))
(fp_line (start 1.671 -1.87) (end 1.671 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 43963167-dfcf-4abc-aa7e-522e14a3930c))
(fp_line (start 1.991 -1.68) (end 1.991 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 44a24e47-da18-49ac-8c13-b4cbb6db50a6))
(fp_line (start 1.23 0.84) (end 1.23 2.025) (layer "F.SilkS") (width 0.12) (tstamp 45a7afcc-ff2a-490c-916a-75af6bb14bcc))
(fp_line (start 1.07 -2.056) (end 1.07 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 46c5e5cc-2560-4cd2-9c73-dccb3c9bd1f8))
(fp_line (start 2.391 -1.304) (end 2.391 1.304) (layer "F.SilkS") (width 0.12) (tstamp 485189a9-af9f-47c7-b86e-b984bc3d8681))
(fp_line (start 1.03 0.84) (end 1.03 2.062) (layer "F.SilkS") (width 0.12) (tstamp 491948e4-7ba9-454f-a6eb-67504863e339))
(fp_line (start 1.591 -1.907) (end 1.591 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 49a64883-8149-4597-bf7f-5f2e2ba895a8))
(fp_line (start 2.111 -1.587) (end 2.111 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 4dd004ff-1306-4ce4-aec2-05cdca303c2d))
(fp_line (start 1.27 0.84) (end 1.27 2.016) (layer "F.SilkS") (width 0.12) (tstamp 5025879a-def2-445f-aa5a-81c13c2bb1f0))
(fp_line (start 1.03 -2.062) (end 1.03 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 528e44df-0fce-47e3-9e3c-0df3ba4d9d97))
(fp_line (start 1.471 -1.954) (end 1.471 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 53f5f65a-c340-4868-9183-d49b5d73bc4a))
(fp_line (start 1.31 0.84) (end 1.31 2.005) (layer "F.SilkS") (width 0.12) (tstamp 53ff30ab-10ec-411c-9f73-eb8d433757d0))
(fp_line (start 1.31 -2.005) (end 1.31 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 543f031a-4bff-406b-bc6c-915f65a483ee))
(fp_line (start 2.431 -1.254) (end 2.431 1.254) (layer "F.SilkS") (width 0.12) (tstamp 58e8c595-6cab-4844-ad70-2beed69fcea1))
(fp_line (start 0.91 0.84) (end 0.91 2.074) (layer "F.SilkS") (width 0.12) (tstamp 5f7623be-14be-4d7d-8dd8-123220c41a34))
(fp_line (start 0.87 0.84) (end 0.87 2.077) (layer "F.SilkS") (width 0.12) (tstamp 5fb064c5-04a7-4892-945a-b886238a6292))
(fp_line (start 2.231 0.84) (end 2.231 1.478) (layer "F.SilkS") (width 0.12) (tstamp 62841c0b-89fa-4998-a29e-9e8afe4d6b63))
(fp_line (start 2.271 -1.438) (end 2.271 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 732acfa8-6f26-4033-9652-12d678ee7322))
(fp_line (start 0.91 -2.074) (end 0.91 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 74682e52-d7eb-4344-85f4-5d6c17ef3b54))
(fp_line (start 2.071 0.84) (end 2.071 1.619) (layer "F.SilkS") (width 0.12) (tstamp 748c8df3-8cd6-4478-925e-69d2772734a4))
(fp_line (start 0.75 0.84) (end 0.75 2.08) (layer "F.SilkS") (width 0.12) (tstamp 7ec98186-4d27-43b2-80c8-eca7f911aad3))
(fp_line (start -1.319801 -1.395) (end -1.319801 -0.995) (layer "F.SilkS") (width 0.12) (tstamp 820d8572-7f0a-423e-8b25-e7d97069c9de))
(fp_line (start 1.11 0.84) (end 1.11 2.05) (layer "F.SilkS") (width 0.12) (tstamp 8513305c-9bf3-45bf-bbd6-bfb7002223bb))
(fp_line (start 1.15 -2.042) (end 1.15 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 8692f473-62c5-47fa-8244-df97ad9f3de7))
(fp_line (start 2.191 0.84) (end 2.191 1.516) (layer "F.SilkS") (width 0.12) (tstamp 882649ba-86e6-444c-845d-f296c55f54c7))
(fp_line (start 2.791 -0.537) (end 2.791 0.537) (layer "F.SilkS") (width 0.12) (tstamp 8a64e2be-642d-4428-9748-085059c91f87))
(fp_line (start 1.27 -2.016) (end 1.27 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 8fcaf73b-5b01-47ca-b1bb-3237b9d4efc3))
(fp_line (start 1.35 0.84) (end 1.35 1.994) (layer "F.SilkS") (width 0.12) (tstamp 925178a3-c26e-41cd-9770-49daa7a3e345))
(fp_line (start 2.471 -1.2) (end 2.471 1.2) (layer "F.SilkS") (width 0.12) (tstamp 92ead3cd-5b6e-4e29-b55b-cfd0c703a0ba))
(fp_line (start 0.99 -2.067) (end 0.99 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 93836c05-5bff-4aaa-aa26-5f49c3c9e86e))
(fp_line (start 2.151 -1.552) (end 2.151 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 94923bbf-a4a1-4e70-9a91-1edcd220126f))
(fp_line (start 1.791 0.84) (end 1.791 1.808) (layer "F.SilkS") (width 0.12) (tstamp 9b5dac03-6ef5-4de9-a1b4-6b962e9c8b55))
(fp_line (start 2.751 -0.664) (end 2.751 0.664) (layer "F.SilkS") (width 0.12) (tstamp 9d80fdeb-9f3c-4255-8742-d71fd63007f1))
(fp_line (start 2.311 0.84) (end 2.311 1.396) (layer "F.SilkS") (width 0.12) (tstamp 9e4f7810-05c1-4b37-802f-c5299750df94))
(fp_line (start 1.831 0.84) (end 1.831 1.785) (layer "F.SilkS") (width 0.12) (tstamp a067876c-6a44-481e-b72c-36261e6bf192))
(fp_line (start 1.911 0.84) (end 1.911 1.735) (layer "F.SilkS") (width 0.12) (tstamp a24bd722-1e31-44d9-b920-5c74a670ff9d))
(fp_line (start 2.831 -0.37) (end 2.831 0.37) (layer "F.SilkS") (width 0.12) (tstamp aa827eee-84ad-42b7-adbf-517b39123d02))
(fp_line (start 1.19 -2.034) (end 1.19 -0.84) (layer "F.SilkS") (width 0.12) (tstamp ac2540c0-ee64-4fec-918c-3d4f3713eaec))
(fp_line (start 1.511 0.84) (end 1.511 1.94) (layer "F.SilkS") (width 0.12) (tstamp b16307d1-60d1-4e86-829b-c12ca90d77ee))
(fp_line (start 2.671 -0.859) (end 2.671 0.859) (layer "F.SilkS") (width 0.12) (tstamp bb467f84-9bae-4bf9-9623-d4b338861e3d))
(fp_line (start 1.751 0.84) (end 1.751 1.83) (layer "F.SilkS") (width 0.12) (tstamp bd6849ee-9bd9-4bab-ac89-8a688d375354))
(fp_line (start 1.711 0.84) (end 1.711 1.851) (layer "F.SilkS") (width 0.12) (tstamp c11dcd53-586d-423c-ae9d-ea91ce70389c))
(fp_line (start 1.631 0.84) (end 1.631 1.889) (layer "F.SilkS") (width 0.12) (tstamp c1fe2693-873d-41eb-b412-33c76d6b8807))
(fp_line (start 1.551 0.84) (end 1.551 1.924) (layer "F.SilkS") (width 0.12) (tstamp c3feecf8-0dc1-4686-a015-4884e44ca5fd))
(fp_line (start 2.511 -1.142) (end 2.511 1.142) (layer "F.SilkS") (width 0.12) (tstamp c4792ba9-da24-4144-bf0f-f287ae9d7e62))
(fp_line (start 2.111 0.84) (end 2.111 1.587) (layer "F.SilkS") (width 0.12) (tstamp c59161d2-b7f2-4fce-b949-83eb306a1444))
(fp_line (start 1.15 0.84) (end 1.15 2.042) (layer "F.SilkS") (width 0.12) (tstamp c5f719d7-fdcc-4f7d-8f82-28667b169405))
(fp_line (start -1.519801 -1.195) (end -1.119801 -1.195) (layer "F.SilkS") (width 0.12) (tstamp c765b666-a8ce-4d20-bed1-20e1cf75d4e0))
(fp_line (start 1.23 -2.025) (end 1.23 -0.84) (layer "F.SilkS") (width 0.12) (tstamp d281f277-beb9-4a20-a5dc-404278d9fd90))
(fp_line (start 2.031 0.84) (end 2.031 1.65) (layer "F.SilkS") (width 0.12) (tstamp d5a761a3-189e-44e0-9c21-ef44a57c0a24))
(fp_line (start 0.95 0.84) (end 0.95 2.071) (layer "F.SilkS") (width 0.12) (tstamp d7b3f968-b9b1-4c9f-ab59-79b33239904d))
(fp_line (start 1.951 0.84) (end 1.951 1.708) (layer "F.SilkS") (width 0.12) (tstamp da92085e-a90a-41a4-b2b0-5411ffb4032e))
(fp_line (start 1.551 -1.924) (end 1.551 -0.84) (layer "F.SilkS") (width 0.12) (tstamp dd6c0522-05ac-45ca-977d-edeabb3a3493))
(fp_line (start 2.311 -1.396) (end 2.311 -0.84) (layer "F.SilkS") (width 0.12) (tstamp e1f2bb93-4f7b-4c51-a48e-5255fccd7fdf))
(fp_line (start 1.591 0.84) (end 1.591 1.907) (layer "F.SilkS") (width 0.12) (tstamp e2f0c221-8040-400b-9e9d-bd07e06dff42))
(fp_line (start 2.031 -1.65) (end 2.031 -0.84) (layer "F.SilkS") (width 0.12) (tstamp e8c39b6c-7a4a-4a86-943c-936caa8b3ff3))
(fp_line (start 1.39 0.84) (end 1.39 1.982) (layer "F.SilkS") (width 0.12) (tstamp ea1f22fd-2762-461b-a449-ade3f93c776f))
(fp_line (start 1.871 0.84) (end 1.871 1.76) (layer "F.SilkS") (width 0.12) (tstamp eab0ab80-480f-4837-8863-663893dd99af))
(fp_line (start 0.83 -2.079) (end 0.83 -0.84) (layer "F.SilkS") (width 0.12) (tstamp ef295a63-9c77-4dda-8dda-18189b973d52))
(fp_line (start 2.191 -1.516) (end 2.191 -0.84) (layer "F.SilkS") (width 0.12) (tstamp ef667ac2-42c6-4321-9d92-f65337412163))
(fp_line (start 1.911 -1.735) (end 1.911 -0.84) (layer "F.SilkS") (width 0.12) (tstamp ef77b2cb-0a22-4c59-bd99-6c2d659de654))
(fp_line (start 2.071 -1.619) (end 2.071 -0.84) (layer "F.SilkS") (width 0.12) (tstamp f3643082-7818-4f98-b5d5-919a15dbea17))
(fp_line (start 1.43 -1.968) (end 1.43 -0.84) (layer "F.SilkS") (width 0.12) (tstamp f4899295-1a47-4650-a81b-869f4e79a903))
(fp_line (start 1.991 0.84) (end 1.991 1.68) (layer "F.SilkS") (width 0.12) (tstamp faf7b473-b69c-40a7-a395-76c46c4c24b1))
(fp_line (start 2.631 -0.94) (end 2.631 0.94) (layer "F.SilkS") (width 0.12) (tstamp fe7c1c8d-f726-4c64-8b61-b9cdc32ec4c9))
(fp_circle (center 0.75 0) (end 2.87 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 70f8aaaa-4fd4-4a8a-ac42-fa224e76acfb))
(fp_circle (center 0.75 0) (end 3 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 3e2f2068-fd20-4f68-aa7d-abc0c62b57b3))
(fp_line (start -0.952554 -0.8675) (end -0.552554 -0.8675) (layer "F.Fab") (width 0.1) (tstamp 472b3519-83ce-433b-b5fd-8da0b8fce0c7))
(fp_line (start -0.752554 -1.0675) (end -0.752554 -0.6675) (layer "F.Fab") (width 0.1) (tstamp 65de6131-40b9-4b28-a0d6-0a1372f11a49))
(fp_circle (center 0.75 0) (end 2.75 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 6bc0b922-cf14-4cad-a51a-7e0bdc2e7178))
(pad "1" thru_hole rect (at 0 0) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 3 "/SW1") (pintype "passive") (tstamp afc8c572-0134-476f-9008-358769a08c68))
(pad "2" thru_hole circle (at 1.5 0) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 2 "GND") (pintype "passive") (tstamp ced5fa3d-3d2f-431b-ae96-fef1b0dc7d62))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/CP_Radial_D4.0mm_P1.50mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_3mm_Pad" (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 6895aaca-29ad-4dbd-81e0-c17d43df8dc9)
(at 208.28 104.14)
(descr "Mounting Hole 3mm")
(tags "mounting hole 3mm")
(property "Sheetfile" "cuebox.kicad_sch")
(property "Sheetname" "")
(path "/d86ac76e-6e88-428f-9cd0-ba59a3e902c7")
(attr exclude_from_pos_files)
(fp_text reference "H1" (at 0 -4) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e9de1274-32a2-487b-853d-48f225698c26)
)
(fp_text value "MountingHole" (at 0 4) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 990bc8a7-4fdf-41a6-959d-0a8ad0f7789b)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cf22037c-ee61-459d-98cd-602d7c6a9ba2)
)
(fp_circle (center 0 0) (end 3 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 910351cb-f37c-4fc9-8679-f90a07df3c16))
(fp_circle (center 0 0) (end 3.25 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp fe1ad036-b746-48ac-b3e4-28ea3f90f5ff))
(pad "1" thru_hole circle (at 0 0) (size 6 6) (drill 3) (layers *.Cu *.Mask) (tstamp 470879e1-62ed-4aca-9ba4-8948d40103a0))
)
(footprint "Button_Switch_THT:SW_PUSH_6mm_H5mm" (layer "F.Cu")
(tedit 5A02FE31) (tstamp 72b417f5-8e32-4f61-9a95-a5c645dfb656)
(at 197.41 71.41)
(descr "tactile push button, 6x6mm e.g. PHAP33xx series, height=5mm")
(tags "tact sw push 6mm")
(property "Sheetfile" "cuebox.kicad_sch")
(property "Sheetname" "")
(path "/a9e05b2d-53ef-49b1-be80-aa004207c7e2")
(attr through_hole)
(fp_text reference "SW2" (at 3.25 -2) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 06cd5b6a-a4bd-42f8-8b2e-00c24479bb9c)
)
(fp_text value "SW_Push" (at 3.75 6.7) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp edf45d1b-3a25-42c3-a21e-7f06476f8ffa)
)
(fp_text user "${REFERENCE}" (at 3.25 2.25) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ba81038a-8b02-441e-baed-f2ef6afd4516)
)
(fp_line (start -0.25 1.5) (end -0.25 3) (layer "F.SilkS") (width 0.12) (tstamp 092710d8-ac5c-4540-acd3-70de765f145c))
(fp_line (start 5.5 -1) (end 1 -1) (layer "F.SilkS") (width 0.12) (tstamp 306ff065-d2ec-425d-b5d6-19a8471ddff8))
(fp_line (start 6.75 3) (end 6.75 1.5) (layer "F.SilkS") (width 0.12) (tstamp 5430d7b5-e94c-481f-a176-44f39c27b5c9))
(fp_line (start 1 5.5) (end 5.5 5.5) (layer "F.SilkS") (width 0.12) (tstamp 88722a9d-63fc-4b70-8aa3-3e180905d5b5))
(fp_line (start -1.5 -1.5) (end -1.25 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 497951c4-9967-49a4-af91-6139da0f77ee))
(fp_line (start 7.75 6) (end -1.25 6) (layer "F.CrtYd") (width 0.05) (tstamp 53d70d6a-aa26-4996-8a8b-5110023d2e5e))
(fp_line (start -1.5 -1.25) (end -1.5 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 568639d3-4333-47bc-9a18-a3f2661da4a5))
(fp_line (start 7.75 6) (end 8 6) (layer "F.CrtYd") (width 0.05) (tstamp 591d9954-a413-4e81-aa7d-2b782d2143a7))
(fp_line (start 8 6) (end 8 5.75) (layer "F.CrtYd") (width 0.05) (tstamp 7d13499d-c6b5-4894-8f50-2c2979a15a27))
(fp_line (start 8 -1.5) (end 8 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp 8b26ca63-2e4e-4891-9993-6cbcb16dea03))
(fp_line (start -1.5 5.75) (end -1.5 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp 9a2a38b5-0447-4c4a-976d-4dd2899945d0))
(fp_line (start 7.75 -1.5) (end 8 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp a7f2da80-6138-48b5-bba7-eaae9b505a6e))
(fp_line (start -1.25 -1.5) (end 7.75 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp d0e6d2bc-28d3-4952-856b-6499296bb1af))
(fp_line (start 8 -1.25) (end 8 5.75) (layer "F.CrtYd") (width 0.05) (tstamp dc476dd1-6391-40e1-a8fb-278dec58eb44))
(fp_line (start -1.5 6) (end -1.25 6) (layer "F.CrtYd") (width 0.05) (tstamp eaf33fcb-82b3-46c0-937a-2d312357b3e7))
(fp_line (start -1.5 5.75) (end -1.5 6) (layer "F.CrtYd") (width 0.05) (tstamp eedb124d-adc6-409d-985e-0a8a0534f110))
(fp_line (start 0.25 -0.75) (end 3.25 -0.75) (layer "F.Fab") (width 0.1) (tstamp 56970daa-9fcc-499b-a4df-88abc42d467e))
(fp_line (start 6.25 5.25) (end 0.25 5.25) (layer "F.Fab") (width 0.1) (tstamp dd710ec3-55e6-4d9a-a78b-2909229fbe8c))
(fp_line (start 3.25 -0.75) (end 6.25 -0.75) (layer "F.Fab") (width 0.1) (tstamp e26c5b66-a1a4-47f1-bf79-5363b187dde1))
(fp_line (start 6.25 -0.75) (end 6.25 5.25) (layer "F.Fab") (width 0.1) (tstamp faa55ee7-74be-460e-858f-d70551cc9caf))
(fp_line (start 0.25 5.25) (end 0.25 -0.75) (layer "F.Fab") (width 0.1) (tstamp fb68c607-597b-461c-b389-5112efa7e116))
(fp_circle (center 3.25 2.25) (end 1.25 2.5) (layer "F.Fab") (width 0.1) (fill none) (tstamp 9c86b2be-7dfa-4f37-b66a-b6bcf3edbd63))
(pad "1" thru_hole circle (at 0 0 90) (size 2 2) (drill 1.1) (layers *.Cu *.Mask)
(net 7 "Net-(R2-Pad1)") (pinfunction "1") (pintype "passive") (tstamp 325a543e-d2df-43a0-927c-ec66cb508482))
(pad "1" thru_hole circle (at 6.5 0 90) (size 2 2) (drill 1.1) (layers *.Cu *.Mask)
(net 7 "Net-(R2-Pad1)") (pinfunction "1") (pintype "passive") (tstamp 68bba9b0-062e-4c85-be2c-572ab409acf4))
(pad "2" thru_hole circle (at 0 4.5 90) (size 2 2) (drill 1.1) (layers *.Cu *.Mask)
(net 3 "/SW1") (pinfunction "2") (pintype "passive") (tstamp 17f73690-cb7f-4167-a1da-217049ed1c8e))
(pad "2" thru_hole circle (at 6.5 4.5 90) (size 2 2) (drill 1.1) (layers *.Cu *.Mask)
(net 3 "/SW1") (pinfunction "2") (pintype "passive") (tstamp b59ae7c2-569c-443d-859a-384145b40cff))
(model "${KICAD6_3DMODEL_DIR}/Button_Switch_THT.3dshapes/SW_PUSH_6mm_H5mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_THT:CP_Radial_D4.0mm_P1.50mm" (layer "F.Cu")
(tedit 5AE50EF0) (tstamp 769731bb-6576-49bb-9c58-1571165ca200)
(at 147.32 73.66)
(descr "CP, Radial series, Radial, pin pitch=1.50mm, , diameter=4mm, Electrolytic Capacitor")
(tags "CP Radial series Radial pin pitch 1.50mm diameter 4mm Electrolytic Capacitor")
(property "Sheetfile" "cuebox.kicad_sch")
(property "Sheetname" "")
(path "/f7b897a7-f95f-4c80-9c27-95a5e60af7e2")
(attr through_hole)
(fp_text reference "C0" (at 0.75 -3.25) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6252e655-b053-4b28-a097-b9746c1af616)
)
(fp_text value "100nF" (at 0.75 3.25) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ff929264-30c4-47e6-af18-654ee22ce2ce)
)
(fp_text user "${REFERENCE}" (at 0.75 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 5174289c-c211-497f-8835-604d756f5bb7)
)
(fp_line (start 1.751 0.84) (end 1.751 1.83) (layer "F.SilkS") (width 0.12) (tstamp 030ca441-10a5-455d-bf0c-f21aa5409389))
(fp_line (start 1.23 0.84) (end 1.23 2.025) (layer "F.SilkS") (width 0.12) (tstamp 05e0e9f9-0ea0-4a7a-ac46-63582b1db3ce))
(fp_line (start 1.991 -1.68) (end 1.991 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 080e4d8e-829e-4013-be87-07ec453e2e04))
(fp_line (start 0.83 0.84) (end 0.83 2.079) (layer "F.SilkS") (width 0.12) (tstamp 08236729-d603-489c-aeed-660544fe3440))
(fp_line (start 2.551 -1.08) (end 2.551 1.08) (layer "F.SilkS") (width 0.12) (tstamp 084f999d-340a-4861-8165-989e8cbad747))
(fp_line (start 2.311 -1.396) (end 2.311 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 0bcb3543-7e94-4590-9acf-37cec36cac50))
(fp_line (start 1.03 0.84) (end 1.03 2.062) (layer "F.SilkS") (width 0.12) (tstamp 0bd5960b-7bc0-4406-a188-8e05a048f356))
(fp_line (start -1.519801 -1.195) (end -1.119801 -1.195) (layer "F.SilkS") (width 0.12) (tstamp 1a3967a0-4795-409b-b356-b8df6c1e5200))
(fp_line (start 1.07 -2.056) (end 1.07 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 1b2a42ed-d175-4c97-bca8-200691bee758))
(fp_line (start 1.07 0.84) (end 1.07 2.056) (layer "F.SilkS") (width 0.12) (tstamp 1cbc970b-10c4-4358-b39b-79f6a8cc53a3))
(fp_line (start 1.11 0.84) (end 1.11 2.05) (layer "F.SilkS") (width 0.12) (tstamp 1d41b967-71e9-4b8e-937f-fa04312aab4c))
(fp_line (start 2.631 -0.94) (end 2.631 0.94) (layer "F.SilkS") (width 0.12) (tstamp 1e205627-b69d-49d6-8fec-6cb5f8f9b9c9))
(fp_line (start 1.03 -2.062) (end 1.03 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 1f446a4f-93ea-4df1-93b6-a327d9320134))
(fp_line (start 2.311 0.84) (end 2.311 1.396) (layer "F.SilkS") (width 0.12) (tstamp 1f83f6da-93c0-4c8e-8493-eebc881f3881))
(fp_line (start 1.591 0.84) (end 1.591 1.907) (layer "F.SilkS") (width 0.12) (tstamp 1fb8bb31-63ff-4b3d-8d2e-d4b9a590a161))
(fp_line (start 1.43 -1.968) (end 1.43 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 202aebd7-c0f7-4be6-9c0d-2bc614f4176f))
(fp_line (start 2.471 -1.2) (end 2.471 1.2) (layer "F.SilkS") (width 0.12) (tstamp 2068ffd0-5d62-4287-8086-21fa21f7046e))
(fp_line (start 1.751 -1.83) (end 1.751 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 21203a01-ca83-4c03-92e6-a780fd899e13))
(fp_line (start 2.831 -0.37) (end 2.831 0.37) (layer "F.SilkS") (width 0.12) (tstamp 220321e3-c22d-446e-b871-e408670865d7))
(fp_line (start 1.671 0.84) (end 1.671 1.87) (layer "F.SilkS") (width 0.12) (tstamp 227b2f71-ed7f-4b94-b2eb-2645ff36ab5a))
(fp_line (start 1.951 0.84) (end 1.951 1.708) (layer "F.SilkS") (width 0.12) (tstamp 2408f764-03c6-46e1-8e2e-54ddb3d04775))
(fp_line (start 1.831 0.84) (end 1.831 1.785) (layer "F.SilkS") (width 0.12) (tstamp 2a9536ae-0436-4af8-b3b4-66ec51e6f8f7))
(fp_line (start 1.991 0.84) (end 1.991 1.68) (layer "F.SilkS") (width 0.12) (tstamp 322b6eea-0a9b-4791-9380-d73071f1a854))
(fp_line (start 1.15 0.84) (end 1.15 2.042) (layer "F.SilkS") (width 0.12) (tstamp 37e7ed85-8c5e-4d59-822c-22e7c1c93921))
(fp_line (start 0.75 -2.08) (end 0.75 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 3978a880-2822-4465-a1d5-8a0d53864d05))
(fp_line (start 1.511 -1.94) (end 1.511 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 3e336587-3674-4a5f-b835-4aec93439340))
(fp_line (start 0.99 -2.067) (end 0.99 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 3e40f8b6-006c-43f2-b646-c182d7eefcd6))
(fp_line (start 1.31 0.84) (end 1.31 2.005) (layer "F.SilkS") (width 0.12) (tstamp 3eaaef6a-367b-47df-9479-d0a274dd0be6))
(fp_line (start 0.83 -2.079) (end 0.83 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 42fccb5a-8b30-4179-9602-663320cb00d4))
(fp_line (start 1.471 0.84) (end 1.471 1.954) (layer "F.SilkS") (width 0.12) (tstamp 49e1f12e-d2cb-4a15-aede-fa7e4c98abc5))
(fp_line (start 1.631 -1.889) (end 1.631 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 4ca06195-befd-4cc0-9207-b0db2b10b0cc))
(fp_line (start 2.031 -1.65) (end 2.031 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 4d45ac3f-01af-498a-96d1-19efae49551b))
(fp_line (start 1.711 -1.851) (end 1.711 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 4f068899-7853-4d15-b593-3571f2d6554d))
(fp_line (start 1.911 -1.735) (end 1.911 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 50145c56-0cfd-4484-ab40-c2d2ee5e65dc))
(fp_line (start 2.711 -0.768) (end 2.711 0.768) (layer "F.SilkS") (width 0.12) (tstamp 527ca93e-53e6-4e61-8092-07c8b1322815))
(fp_line (start 2.151 0.84) (end 2.151 1.552) (layer "F.SilkS") (width 0.12) (tstamp 54e57d82-f2bc-4797-936a-4466d692d748))
(fp_line (start 1.671 -1.87) (end 1.671 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 54fcf0d7-2974-4e3d-87e3-d70f321ebd09))
(fp_line (start 2.191 0.84) (end 2.191 1.516) (layer "F.SilkS") (width 0.12) (tstamp 56a7c395-e0c8-448b-a801-6b7032b9b752))
(fp_line (start 2.791 -0.537) (end 2.791 0.537) (layer "F.SilkS") (width 0.12) (tstamp 5c313fd0-8289-4383-9379-76276f9e793f))
(fp_line (start 2.271 0.84) (end 2.271 1.438) (layer "F.SilkS") (width 0.12) (tstamp 5df43dbb-32b3-497c-9a55-d177fd17ee8e))
(fp_line (start 2.591 -1.013) (end 2.591 1.013) (layer "F.SilkS") (width 0.12) (tstamp 600f65ec-6bd6-429d-9f41-35980f89ff6d))
(fp_line (start 1.551 0.84) (end 1.551 1.924) (layer "F.SilkS") (width 0.12) (tstamp 61fb0aa8-54cb-4692-9eaa-cfa52e47f5b0))
(fp_line (start 1.27 0.84) (end 1.27 2.016) (layer "F.SilkS") (width 0.12) (tstamp 62bda060-a53e-4ac5-b659-75ec8a95e3e7))
(fp_line (start 1.15 -2.042) (end 1.15 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 641e4880-dd10-4b27-aab2-06c417d6b647))
(fp_line (start -1.319801 -1.395) (end -1.319801 -0.995) (layer "F.SilkS") (width 0.12) (tstamp 6c927350-0ca3-4915-8f59-d0531d8fe8fa))
(fp_line (start 1.471 -1.954) (end 1.471 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 6cfd560b-adad-42af-b8bd-e3384c1a59b7))
(fp_line (start 1.35 -1.994) (end 1.35 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 6d088be8-e9b1-4d51-a2dc-48e8645ac441))
(fp_line (start 1.791 -1.808) (end 1.791 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 7203febb-46b6-4da0-be4f-7c6e1ea9dbdb))
(fp_line (start 2.151 -1.552) (end 2.151 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 76ea1ce1-faf6-4381-869d-931a6da56bbc))
(fp_line (start 1.631 0.84) (end 1.631 1.889) (layer "F.SilkS") (width 0.12) (tstamp 76ffca33-49b8-43ae-a6e3-b6fc460338da))
(fp_line (start 0.79 0.84) (end 0.79 2.08) (layer "F.SilkS") (width 0.12) (tstamp 77d06e71-498e-4856-ad88-98ca6e65f78f))
(fp_line (start 2.431 -1.254) (end 2.431 1.254) (layer "F.SilkS") (width 0.12) (tstamp 77d2edec-4dca-487b-a217-3041434334a0))
(fp_line (start 1.711 0.84) (end 1.711 1.851) (layer "F.SilkS") (width 0.12) (tstamp 786cc206-3761-418f-b7fb-ad8f15f329c1))
(fp_line (start 1.19 -2.034) (end 1.19 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 8016f843-70dd-4aff-8ecc-70f94cfbda28))
(fp_line (start 1.871 0.84) (end 1.871 1.76) (layer "F.SilkS") (width 0.12) (tstamp 81f79d21-7b80-4de8-970c-62c26bd4a340))
(fp_line (start 1.551 -1.924) (end 1.551 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 84e587eb-5dcf-4255-859d-d6ef430d4b65))
(fp_line (start 0.87 -2.077) (end 0.87 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 86602cda-fe33-402e-ab61-33e38825c789))
(fp_line (start 2.111 0.84) (end 2.111 1.587) (layer "F.SilkS") (width 0.12) (tstamp 8db72dc6-4f9d-45e3-9706-5e6d05bed764))
(fp_line (start 1.27 -2.016) (end 1.27 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 8dd972a4-7d76-4372-b2eb-c0628d5cc645))
(fp_line (start 2.271 -1.438) (end 2.271 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 959fff1f-994c-42e1-991d-d450f1fe933d))
(fp_line (start 2.511 -1.142) (end 2.511 1.142) (layer "F.SilkS") (width 0.12) (tstamp 97b0cf79-40e6-443c-be41-416b69da1151))
(fp_line (start 2.111 -1.587) (end 2.111 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 9a63cabb-1b6a-40a4-af6c-a261e62fa9c9))
(fp_line (start 0.91 -2.074) (end 0.91 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 9d19ce9f-1f18-40ac-b3b3-5c0c1ee4581f))
(fp_line (start 1.791 0.84) (end 1.791 1.808) (layer "F.SilkS") (width 0.12) (tstamp 9d3018fe-16ea-49c6-be39-bfa9cb23bd80))
(fp_line (start 1.35 0.84) (end 1.35 1.994) (layer "F.SilkS") (width 0.12) (tstamp 9d38f091-a578-454e-9ee1-9e518e3999fe))
(fp_line (start 2.031 0.84) (end 2.031 1.65) (layer "F.SilkS") (width 0.12) (tstamp a0bfb71f-04b8-4312-bd8c-14288c6029ea))
(fp_line (start 1.911 0.84) (end 1.911 1.735) (layer "F.SilkS") (width 0.12) (tstamp a2e8c61f-ea9e-402f-9d95-b02ee039d9b4))
(fp_line (start 1.511 0.84) (end 1.511 1.94) (layer "F.SilkS") (width 0.12) (tstamp a421e4a2-fab7-4cf1-b85c-fc3bbd20276b))
(fp_line (start 0.79 -2.08) (end 0.79 -0.84) (layer "F.SilkS") (width 0.12) (tstamp a939c2fc-8d1d-4b37-9035-a23d55707db8))
(fp_line (start 1.11 -2.05) (end 1.11 -0.84) (layer "F.SilkS") (width 0.12) (tstamp a9df1a40-c1a2-4229-a4b2-fc2f6541d78c))
(fp_line (start 2.391 -1.304) (end 2.391 1.304) (layer "F.SilkS") (width 0.12) (tstamp add33c71-a5a6-4865-be69-5a665b0ec112))
(fp_line (start 1.23 -2.025) (end 1.23 -0.84) (layer "F.SilkS") (width 0.12) (tstamp bbd90832-3878-4ec1-8bde-6dedc2b7374b))
(fp_line (start 1.951 -1.708) (end 1.951 -0.84) (layer "F.SilkS") (width 0.12) (tstamp c2a5a4ff-42a7-40e8-b6cc-d8d6593935b8))
(fp_line (start 0.87 0.84) (end 0.87 2.077) (layer "F.SilkS") (width 0.12) (tstamp c2d720d4-f064-48af-9860-5ef034ebcfb1))
(fp_line (start 1.591 -1.907) (end 1.591 -0.84) (layer "F.SilkS") (width 0.12) (tstamp c3b4e8bf-cfd6-461f-b4e2-3be394a50d41))
(fp_line (start 1.39 -1.982) (end 1.39 -0.84) (layer "F.SilkS") (width 0.12) (tstamp c7815f0a-3413-4ffa-a094-5fd7d0a9739e))
(fp_line (start 1.39 0.84) (end 1.39 1.982) (layer "F.SilkS") (width 0.12) (tstamp cdf9e1e8-9543-40a1-9c50-85cdde790d11))
(fp_line (start 2.231 0.84) (end 2.231 1.478) (layer "F.SilkS") (width 0.12) (tstamp d07ec868-c6b1-4342-a9c8-7bb873702875))
(fp_line (start 2.751 -0.664) (end 2.751 0.664) (layer "F.SilkS") (width 0.12) (tstamp d53c2cf7-7733-4e4c-a93f-eddfe04e77c5))
(fp_line (start 0.91 0.84) (end 0.91 2.074) (layer "F.SilkS") (width 0.12) (tstamp d6314b85-e32b-4042-bce8-fd6da29cfcc3))
(fp_line (start 0.75 0.84) (end 0.75 2.08) (layer "F.SilkS") (width 0.12) (tstamp dccb9968-286f-441b-be24-af0f040dbec9))
(fp_line (start 2.231 -1.478) (end 2.231 -0.84) (layer "F.SilkS") (width 0.12) (tstamp dee263f1-d635-4ac6-9692-d06a613448cd))
(fp_line (start 1.43 0.84) (end 1.43 1.968) (layer "F.SilkS") (width 0.12) (tstamp e0d51f05-b0b8-49c3-b2c1-99857d3da4aa))
(fp_line (start 0.99 0.84) (end 0.99 2.067) (layer "F.SilkS") (width 0.12) (tstamp e3220804-38be-49b2-96b8-65bbd9bc3507))
(fp_line (start 1.871 -1.76) (end 1.871 -0.84) (layer "F.SilkS") (width 0.12) (tstamp e397ec7f-2197-4c4e-8f31-58a021d8619a))
(fp_line (start 0.95 0.84) (end 0.95 2.071) (layer "F.SilkS") (width 0.12) (tstamp e66fd937-042d-4242-ac0c-cc885cc3e610))
(fp_line (start 1.19 0.84) (end 1.19 2.034) (layer "F.SilkS") (width 0.12) (tstamp e8b9f9d6-0c65-419a-ae88-425779e6e0cc))
(fp_line (start 2.351 -1.351) (end 2.351 1.351) (layer "F.SilkS") (width 0.12) (tstamp e902f3ad-918b-4f0b-bed1-477d780046a8))
(fp_line (start 2.191 -1.516) (end 2.191 -0.84) (layer "F.SilkS") (width 0.12) (tstamp ea23ddc6-6104-4aea-a169-b79f2d64d668))
(fp_line (start 1.831 -1.785) (end 1.831 -0.84) (layer "F.SilkS") (width 0.12) (tstamp efa40ab6-7ffb-4a15-9e6b-d355ae28400f))
(fp_line (start 2.071 -1.619) (end 2.071 -0.84) (layer "F.SilkS") (width 0.12) (tstamp f1be6d2c-57f8-4e36-9abf-9f77e15fe7b6))
(fp_line (start 0.95 -2.071) (end 0.95 -0.84) (layer "F.SilkS") (width 0.12) (tstamp fbfb4df8-880e-4a2b-9610-c23875888904))
(fp_line (start 2.671 -0.859) (end 2.671 0.859) (layer "F.SilkS") (width 0.12) (tstamp fcab3a53-b498-467e-8c04-76ed4cb0db6d))
(fp_line (start 1.31 -2.005) (end 1.31 -0.84) (layer "F.SilkS") (width 0.12) (tstamp fe883856-51a0-4d05-a89b-0cb6c0247ce6))
(fp_line (start 2.071 0.84) (end 2.071 1.619) (layer "F.SilkS") (width 0.12) (tstamp ff10cd33-f1c1-4ef5-8263-25efc4cd40ec))
(fp_circle (center 0.75 0) (end 2.87 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 351ef3b5-fd87-4c96-9da4-9d4b78b690a9))
(fp_circle (center 0.75 0) (end 3 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp cd83b834-a1e9-44e7-af07-40d7f0bc226b))
(fp_line (start -0.952554 -0.8675) (end -0.552554 -0.8675) (layer "F.Fab") (width 0.1) (tstamp c9fd16d3-c9b9-419a-ba30-54353bfda080))
(fp_line (start -0.752554 -1.0675) (end -0.752554 -0.6675) (layer "F.Fab") (width 0.1) (tstamp ef2dd1b2-1ae0-416a-b263-47ddc308bb06))
(fp_circle (center 0.75 0) (end 2.75 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 4ef6f8c5-8ac6-4291-99d1-d6d22dc2e591))
(pad "1" thru_hole rect (at 0 0) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 1 "/SW0") (pintype "passive") (tstamp d24dd134-1fa7-425d-a7e1-57471a4a0c17))
(pad "2" thru_hole circle (at 1.5 0) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 2 "GND") (pintype "passive") (tstamp 9a89e76a-58b1-4d84-a48c-ce58ca8aa97a))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/CP_Radial_D4.0mm_P1.50mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_THT:CP_Radial_D4.0mm_P1.50mm" (layer "F.Cu")
(tedit 5AE50EF0) (tstamp a730318b-ae0a-4b51-a286-645884dd3c28)
(at 180.34 30.48)
(descr "CP, Radial series, Radial, pin pitch=1.50mm, , diameter=4mm, Electrolytic Capacitor")
(tags "CP Radial series Radial pin pitch 1.50mm diameter 4mm Electrolytic Capacitor")
(property "Sheetfile" "cuebox.kicad_sch")
(property "Sheetname" "")
(path "/ecd17ce7-558c-483c-bd2a-57ca4cf37582")
(attr through_hole)
(fp_text reference "C2" (at 0.75 -3.25) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7321cefa-57b2-41ba-b735-879331775b08)
)
(fp_text value "100nF" (at 0.75 3.25) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6f60497b-16c4-4926-87c8-81925c958e3a)
)
(fp_text user "${REFERENCE}" (at 0.75 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 1cca2da5-65b1-462f-80d6-83ba97dad1a0)
)
(fp_line (start 2.031 0.84) (end 2.031 1.65) (layer "F.SilkS") (width 0.12) (tstamp 014e7555-f8d8-4efd-80ad-5de13b025ff6))
(fp_line (start 1.39 0.84) (end 1.39 1.982) (layer "F.SilkS") (width 0.12) (tstamp 038a2d7c-32df-4622-adfd-fbbf4d44205e))
(fp_line (start 2.191 0.84) (end 2.191 1.516) (layer "F.SilkS") (width 0.12) (tstamp 0b577667-f509-4dbc-85b3-73815516bd0b))
(fp_line (start 1.871 0.84) (end 1.871 1.76) (layer "F.SilkS") (width 0.12) (tstamp 0b9ad5d2-29c0-4bbc-8372-07d577b2cdee))
(fp_line (start 0.75 -2.08) (end 0.75 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 113be434-d286-4e65-81a0-feaa2ec24d50))
(fp_line (start 1.831 0.84) (end 1.831 1.785) (layer "F.SilkS") (width 0.12) (tstamp 11b92026-737a-4f79-8dd0-8076c1d5787f))
(fp_line (start 1.791 0.84) (end 1.791 1.808) (layer "F.SilkS") (width 0.12) (tstamp 14865a4f-5366-449d-af25-d5da36eebd02))
(fp_line (start 2.271 0.84) (end 2.271 1.438) (layer "F.SilkS") (width 0.12) (tstamp 15ae0258-a332-46d7-9a56-a09fe8233cb1))
(fp_line (start 0.99 -2.067) (end 0.99 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 171a0d8a-6abf-41a9-9153-52a34dee4cce))
(fp_line (start 2.431 -1.254) (end 2.431 1.254) (layer "F.SilkS") (width 0.12) (tstamp 1a359138-d668-48a2-998e-d0f67887e9c8))
(fp_line (start 0.91 0.84) (end 0.91 2.074) (layer "F.SilkS") (width 0.12) (tstamp 1b2bade5-e4d5-4cc7-b348-87cc3ef80d60))
(fp_line (start -1.519801 -1.195) (end -1.119801 -1.195) (layer "F.SilkS") (width 0.12) (tstamp 1d0124bc-a8c1-45c7-9752-e9caf9f3f471))
(fp_line (start 2.511 -1.142) (end 2.511 1.142) (layer "F.SilkS") (width 0.12) (tstamp 24019f11-61b6-4cc0-9b1a-c20787c4fa07))
(fp_line (start 1.27 0.84) (end 1.27 2.016) (layer "F.SilkS") (width 0.12) (tstamp 2638f8ef-58fd-4c0f-b750-d1b91a05a82b))
(fp_line (start 1.07 -2.056) (end 1.07 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 27d92125-a3cf-4584-8bbc-6bcf0c0e6205))
(fp_line (start 0.75 0.84) (end 0.75 2.08) (layer "F.SilkS") (width 0.12) (tstamp 28d81d3a-ce30-4c25-b6bb-bac723adc4c8))
(fp_line (start 1.27 -2.016) (end 1.27 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 2a20ed7e-32b6-4e14-bbf1-8f98d2839b27))
(fp_line (start 1.591 0.84) (end 1.591 1.907) (layer "F.SilkS") (width 0.12) (tstamp 2c95db48-a669-4a96-a11a-c529caaa87d6))
(fp_line (start 1.471 -1.954) (end 1.471 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 2ce6fdcd-04f8-4fb4-8d58-283c8f96dd05))
(fp_line (start 1.31 -2.005) (end 1.31 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 2cefd8f1-5e78-474f-9ded-4a74227859c0))
(fp_line (start 0.99 0.84) (end 0.99 2.067) (layer "F.SilkS") (width 0.12) (tstamp 342f374f-9f15-4580-a4ed-3a277b153bbe))
(fp_line (start 1.871 -1.76) (end 1.871 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 3578b97f-cbb7-47fb-8f4f-e84ab183a6d7))
(fp_line (start 2.151 -1.552) (end 2.151 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 3d6746eb-0e85-4986-a9de-6cee75e2f3fb))
(fp_line (start 1.951 0.84) (end 1.951 1.708) (layer "F.SilkS") (width 0.12) (tstamp 3e355ca3-7062-4df8-bdd4-3b73beb7a9df))
(fp_line (start 1.631 0.84) (end 1.631 1.889) (layer "F.SilkS") (width 0.12) (tstamp 3e553761-05df-4755-9f51-a9c435ff358b))
(fp_line (start 1.711 -1.851) (end 1.711 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 410de6c8-1d4a-4ff0-993e-c5c6a4efe5ff))
(fp_line (start 1.911 -1.735) (end 1.911 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 419b1cab-f3d2-49c0-ac06-8077bb7cbfe5))
(fp_line (start 2.751 -0.664) (end 2.751 0.664) (layer "F.SilkS") (width 0.12) (tstamp 42a96f02-ea72-4498-9ef7-1248ab61db08))
(fp_line (start 2.791 -0.537) (end 2.791 0.537) (layer "F.SilkS") (width 0.12) (tstamp 46c5a334-5330-416e-a8f5-0d4c50f4871c))
(fp_line (start 1.15 -2.042) (end 1.15 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 492296fc-2667-4594-bcf5-a4879abbc1e5))
(fp_line (start 1.911 0.84) (end 1.911 1.735) (layer "F.SilkS") (width 0.12) (tstamp 4e43de94-460d-4640-ab41-a2eac2a70f11))
(fp_line (start 2.551 -1.08) (end 2.551 1.08) (layer "F.SilkS") (width 0.12) (tstamp 4fc746b0-f9e4-425e-babc-ef4da3d724ff))
(fp_line (start 2.111 -1.587) (end 2.111 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 565411eb-2643-468e-a81a-a727a5a0390a))
(fp_line (start 1.551 -1.924) (end 1.551 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 59efecd0-6919-4cbe-a0ef-2821ed2c17ff))
(fp_line (start 1.19 0.84) (end 1.19 2.034) (layer "F.SilkS") (width 0.12) (tstamp 5d2d3444-febe-4bb8-891d-6b5a8389efad))
(fp_line (start -1.319801 -1.395) (end -1.319801 -0.995) (layer "F.SilkS") (width 0.12) (tstamp 5f668610-da21-4026-a418-fa1884be9798))
(fp_line (start 1.511 0.84) (end 1.511 1.94) (layer "F.SilkS") (width 0.12) (tstamp 658dd5cf-2527-48c2-9a9c-6095782a593b))
(fp_line (start 1.831 -1.785) (end 1.831 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 67d15884-cbb5-4dd1-b131-0dda74a49fe4))
(fp_line (start 1.35 0.84) (end 1.35 1.994) (layer "F.SilkS") (width 0.12) (tstamp 6ba9f91f-ef65-4eb5-8016-933bf142f141))
(fp_line (start 1.631 -1.889) (end 1.631 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 709bd791-bebd-4e0a-8aba-5bdb0d8533b7))
(fp_line (start 1.511 -1.94) (end 1.511 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 7248bc43-57be-4977-b2f2-bdd8c14a1325))
(fp_line (start 2.191 -1.516) (end 2.191 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 74e11ca0-4503-4743-82de-fdf29d2c1a73))
(fp_line (start 2.271 -1.438) (end 2.271 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 78da0995-6922-40dc-82f2-5c8e1d99555e))
(fp_line (start 1.751 -1.83) (end 1.751 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 79d35506-a99a-44aa-b414-f6f4f73ca20b))
(fp_line (start 1.43 -1.968) (end 1.43 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 7a959bc3-afb0-4c79-ba6f-64feea5c1229))
(fp_line (start 1.03 -2.062) (end 1.03 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 7e15f544-a558-4946-8680-e47c2db2d92c))
(fp_line (start 2.311 0.84) (end 2.311 1.396) (layer "F.SilkS") (width 0.12) (tstamp 7e1f5b89-4594-4b68-ba6e-b428c9b2e675))
(fp_line (start 0.79 -2.08) (end 0.79 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 88829ee2-0539-49b3-b655-447092e37a79))
(fp_line (start 1.19 -2.034) (end 1.19 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 8f5cfe41-bf7b-4f9c-b263-8580175a614a))
(fp_line (start 2.231 -1.478) (end 2.231 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 9bbc3208-35bf-42b4-8c7e-adcdc754b6ab))
(fp_line (start 2.311 -1.396) (end 2.311 -0.84) (layer "F.SilkS") (width 0.12) (tstamp 9be89ee8-e962-4aec-97b9-cb4d75b71020))
(fp_line (start 1.43 0.84) (end 1.43 1.968) (layer "F.SilkS") (width 0.12) (tstamp a497c6eb-60bc-47be-beaa-83b47a23d84b))
(fp_line (start 2.351 -1.351) (end 2.351 1.351) (layer "F.SilkS") (width 0.12) (tstamp a5e04a19-39cb-4b5a-90d3-e297e1b6dba7))
(fp_line (start 2.631 -0.94) (end 2.631 0.94) (layer "F.SilkS") (width 0.12) (tstamp a60c185f-bb72-49e8-905e-fab2a35d4b0a))
(fp_line (start 0.95 -2.071) (end 0.95 -0.84) (layer "F.SilkS") (width 0.12) (tstamp aeb6f998-0323-448e-b4d3-32a84beb1413))
(fp_line (start 0.79 0.84) (end 0.79 2.08) (layer "F.SilkS") (width 0.12) (tstamp af573332-9884-40f3-9795-190d24da2573))
(fp_line (start 2.151 0.84) (end 2.151 1.552) (layer "F.SilkS") (width 0.12) (tstamp b1aedd67-a437-4f4b-a3d8-0163d76f9b82))
(fp_line (start 0.95 0.84) (end 0.95 2.071) (layer "F.SilkS") (width 0.12) (tstamp b26fecc1-5228-47ae-9b69-5f8521a4ad7d))
(fp_line (start 0.83 0.84) (end 0.83 2.079) (layer "F.SilkS") (width 0.12) (tstamp b2f6f300-6d02-4cf1-aa85-663e4e0bed48))
(fp_line (start 2.231 0.84) (end 2.231 1.478) (layer "F.SilkS") (width 0.12) (tstamp b411234e-800e-451e-8c3a-e7509c665764))
(fp_line (start 2.671 -0.859) (end 2.671 0.859) (layer "F.SilkS") (width 0.12) (tstamp b7080011-c383-445c-b80a-bf324a455bc8))
(fp_line (start 2.111 0.84) (end 2.111 1.587) (layer "F.SilkS") (width 0.12) (tstamp b82cc5a6-d55f-4c70-95c7-f49111e85950))
(fp_line (start 2.071 -1.619) (end 2.071 -0.84) (layer "F.SilkS") (width 0.12) (tstamp b859b3b1-46dd-4020-9eba-75b2e2d41e33))
(fp_line (start 1.15 0.84) (end 1.15 2.042) (layer "F.SilkS") (width 0.12) (tstamp b9327815-50f9-4afe-9ea5-b2549c31c79c))
(fp_line (start 1.471 0.84) (end 1.471 1.954) (layer "F.SilkS") (width 0.12) (tstamp baa93627-0320-4802-83aa-f917600e7f58))
(fp_line (start 0.87 0.84) (end 0.87 2.077) (layer "F.SilkS") (width 0.12) (tstamp bee9df70-0eb1-4ba2-8836-8b257c42b338))
(fp_line (start 1.671 -1.87) (end 1.671 -0.84) (layer "F.SilkS") (width 0.12) (tstamp bf11654f-f889-4450-a0e9-c8c21429a426))
(fp_line (start 2.471 -1.2) (end 2.471 1.2) (layer "F.SilkS") (width 0.12) (tstamp bf42773c-844f-4ac8-9ad8-64e1a5de6932))
(fp_line (start 1.991 0.84) (end 1.991 1.68) (layer "F.SilkS") (width 0.12) (tstamp bf96be60-3ae3-4b36-bbbc-ec0f87446fa2))
(fp_line (start 2.831 -0.37) (end 2.831 0.37) (layer "F.SilkS") (width 0.12) (tstamp c098f9d8-8eb3-4aff-a299-9b153957ebcd))
(fp_line (start 1.551 0.84) (end 1.551 1.924) (layer "F.SilkS") (width 0.12) (tstamp c43252fe-e10b-46a3-9ad6-8284edfe14b7))
(fp_line (start 1.11 -2.05) (end 1.11 -0.84) (layer "F.SilkS") (width 0.12) (tstamp c4997b62-9eea-4d2d-a067-e3754472a922))
(fp_line (start 1.31 0.84) (end 1.31 2.005) (layer "F.SilkS") (width 0.12) (tstamp c8368e05-78d8-4a33-8022-dfff4663a878))
(fp_line (start 1.35 -1.994) (end 1.35 -0.84) (layer "F.SilkS") (width 0.12) (tstamp ca1ebc5c-ae1a-44ee-ae68-73ebf477043c))
(fp_line (start 1.39 -1.982) (end 1.39 -0.84) (layer "F.SilkS") (width 0.12) (tstamp cb867972-22ef-43ee-8c08-fb287b43083f))
(fp_line (start 1.791 -1.808) (end 1.791 -0.84) (layer "F.SilkS") (width 0.12) (tstamp cc658f81-4eeb-48a4-a91a-833cb7efdc13))
(fp_line (start 1.671 0.84) (end 1.671 1.87) (layer "F.SilkS") (width 0.12) (tstamp d0a22852-67ac-489f-8159-684fccabaa93))
(fp_line (start 1.951 -1.708) (end 1.951 -0.84) (layer "F.SilkS") (width 0.12) (tstamp d3c9cef8-2a84-4899-8d80-eadeff646327))
(fp_line (start 2.031 -1.65) (end 2.031 -0.84) (layer "F.SilkS") (width 0.12) (tstamp d48692dd-bcf7-490a-b0d0-07174be6f6d3))
(fp_line (start 1.23 0.84) (end 1.23 2.025) (layer "F.SilkS") (width 0.12) (tstamp dc8cd9cb-3dab-4b67-a631-14df203d42ee))
(fp_line (start 0.83 -2.079) (end 0.83 -0.84) (layer "F.SilkS") (width 0.12) (tstamp e03830aa-62f4-4940-9e4e-cf2e75e692ac))
(fp_line (start 1.03 0.84) (end 1.03 2.062) (layer "F.SilkS") (width 0.12) (tstamp e2e9baae-0327-4856-9cf2-4faa540e9c76))
(fp_line (start 1.07 0.84) (end 1.07 2.056) (layer "F.SilkS") (width 0.12) (tstamp e3721ee6-5bd6-44ba-9154-f94fa8bfb1d1))
(fp_line (start 0.91 -2.074) (end 0.91 -0.84) (layer "F.SilkS") (width 0.12) (tstamp e45c2741-b725-420f-9e50-4261a03576da))
(fp_line (start 1.991 -1.68) (end 1.991 -0.84) (layer "F.SilkS") (width 0.12) (tstamp e55f4f44-d35a-42be-b09f-5e6fed6e6e9c))
(fp_line (start 2.391 -1.304) (end 2.391 1.304) (layer "F.SilkS") (width 0.12) (tstamp e8a304b0-180f-490f-b8a4-4f3b69eccad2))
(fp_line (start 0.87 -2.077) (end 0.87 -0.84) (layer "F.SilkS") (width 0.12) (tstamp ede303ed-a2e5-4aa0-ac4a-83dd683473f3))
(fp_line (start 2.711 -0.768) (end 2.711 0.768) (layer "F.SilkS") (width 0.12) (tstamp f2e82ef5-a671-4a39-8179-37721bf1487e))
(fp_line (start 2.071 0.84) (end 2.071 1.619) (layer "F.SilkS") (width 0.12) (tstamp f435906c-8160-4d55-ac94-2f8bef5be243))
(fp_line (start 1.23 -2.025) (end 1.23 -0.84) (layer "F.SilkS") (width 0.12) (tstamp f4638183-098f-4b45-bdce-385923be3d9d))
(fp_line (start 2.591 -1.013) (end 2.591 1.013) (layer "F.SilkS") (width 0.12) (tstamp f56223df-f96a-4abb-b157-8a0e6d51fd49))
(fp_line (start 1.751 0.84) (end 1.751 1.83) (layer "F.SilkS") (width 0.12) (tstamp fb62eb99-6666-47cb-8c16-aa83728b850d))
(fp_line (start 1.711 0.84) (end 1.711 1.851) (layer "F.SilkS") (width 0.12) (tstamp fd650463-a599-472e-93f3-ea45c2d15e0b))
(fp_line (start 1.11 0.84) (end 1.11 2.05) (layer "F.SilkS") (width 0.12) (tstamp fde988c0-aa14-4c76-9e7c-0569b342fc86))
(fp_line (start 1.591 -1.907) (end 1.591 -0.84) (layer "F.SilkS") (width 0.12) (tstamp fe5625f1-002c-4c5b-beaa-b2eb34b61217))
(fp_circle (center 0.75 0) (end 2.87 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp fe39def4-1ee6-4b06-97ff-820c5776ace9))
(fp_circle (center 0.75 0) (end 3 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 20306709-b872-4854-912b-b95190172161))
(fp_line (start -0.952554 -0.8675) (end -0.552554 -0.8675) (layer "F.Fab") (width 0.1) (tstamp 63c722a5-edb0-47b3-8a81-3401f8afce8f))
(fp_line (start -0.752554 -1.0675) (end -0.752554 -0.6675) (layer "F.Fab") (width 0.1) (tstamp e183ec25-a8bd-4a4b-b72c-c69c1deccddc))
(fp_circle (center 0.75 0) (end 2.75 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 8128fcb0-d2fe-4a5a-9c5a-55cd48a84098))
(pad "1" thru_hole rect (at 0 0) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 4 "/SW2") (pintype "passive") (tstamp 9c9a1fb8-e939-4ce1-b3f9-7de91f63cabf))
(pad "2" thru_hole circle (at 1.5 0) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 2 "GND") (pintype "passive") (tstamp 0a9c76ea-17e0-42e2-8fd8-d3b4cf90636d))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/CP_Radial_D4.0mm_P1.50mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_3mm_Pad" (layer "F.Cu")
(tedit 56D1B4CB) (tstamp c1855c5a-a37b-4786-acbf-c4d73aaec969)
(at 208.28 53.34)
(descr "Mounting Hole 3mm")
(tags "mounting hole 3mm")
(property "Sheetfile" "cuebox.kicad_sch")
(property "Sheetname" "")
(path "/02c5abe3-c3f7-4603-9df0-0d2708ee4429")
(attr exclude_from_pos_files)
(fp_text reference "H2" (at 0 -4) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 433d273f-3b94-42f0-b3d8-de9ad559b9c3)
)
(fp_text value "MountingHole" (at 0 4) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a8e1ee50-0a67-423a-a06e-3cf652e498c4)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 58de67f2-2a77-4a11-a997-8eae750579be)
)
(fp_circle (center 0 0) (end 3 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp ecac1551-8250-4b28-bbf0-08ff084a982d))
(fp_circle (center 0 0) (end 3.25 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 024ccc6b-a3ef-4926-b5b4-10543086c082))
(pad "1" thru_hole circle (at 0 0) (size 6 6) (drill 3) (layers *.Cu *.Mask) (tstamp 21a5a592-d1df-4d81-b14f-59b88a47b332))
)
(footprint "Button_Switch_THT:SW_PUSH_6mm_H5mm" (layer "F.Cu")
(tedit 5A02FE31) (tstamp c6842a97-afb0-4904-8d58-beec60a1cc37)
(at 177.09 35.85)
(descr "tactile push button, 6x6mm e.g. PHAP33xx series, height=5mm")
(tags "tact sw push 6mm")
(property "Sheetfile" "cuebox.kicad_sch")
(property "Sheetname" "")
(path "/bf46efa0-0c45-4fb2-bb5f-90ad2b77aff0")
(attr through_hole)
(fp_text reference "SW3" (at 3.25 -2) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9fcd508b-39c2-498c-854e-8cb41e12074d)
)
(fp_text value "SW_Push" (at 3.75 6.7) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c02652b7-4ee6-458c-a444-ad6d193232c8)
)
(fp_text user "${REFERENCE}" (at 3.25 2.25) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cd066e3c-7dd1-44bb-a117-60aa0e8f2327)
)
(fp_line (start 5.5 -1) (end 1 -1) (layer "F.SilkS") (width 0.12) (tstamp 6409f413-b537-4c1b-b88f-4a49e282e091))
(fp_line (start -0.25 1.5) (end -0.25 3) (layer "F.SilkS") (width 0.12) (tstamp 7128a969-30b8-4a8d-8528-788373529af1))
(fp_line (start 1 5.5) (end 5.5 5.5) (layer "F.SilkS") (width 0.12) (tstamp bcef1f8a-bccd-483d-834f-1b4c91daf837))
(fp_line (start 6.75 3) (end 6.75 1.5) (layer "F.SilkS") (width 0.12) (tstamp e9134f55-3a61-4d25-91ad-f083c85569cd))
(fp_line (start -1.5 -1.25) (end -1.5 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 0f53bdc3-da3b-4bf8-baf5-fe0d32f1457d))
(fp_line (start -1.5 5.75) (end -1.5 6) (layer "F.CrtYd") (width 0.05) (tstamp 59b13412-9454-477e-b9db-321fd1580931))
(fp_line (start 7.75 6) (end 8 6) (layer "F.CrtYd") (width 0.05) (tstamp 5e9aad0e-15ed-4de4-8325-277813fb43bf))
(fp_line (start 8 6) (end 8 5.75) (layer "F.CrtYd") (width 0.05) (tstamp 6b26d5e0-1a4b-4b56-88f5-67ba041a8c90))
(fp_line (start 7.75 -1.5) (end 8 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 710cabe8-e8b3-498b-b7ea-d95be9e7df15))
(fp_line (start 8 -1.5) (end 8 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp 7b28d135-82d1-4b15-b8bb-689d5937d44f))
(fp_line (start -1.5 -1.5) (end -1.25 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 94a9a357-f6ab-46f7-95e6-9f78c51501fc))
(fp_line (start -1.5 5.75) (end -1.5 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp aea3a1f6-715b-4bdd-be47-f96c4f3cfc70))
(fp_line (start 7.75 6) (end -1.25 6) (layer "F.CrtYd") (width 0.05) (tstamp da9e7c57-772d-4000-8cec-eef35792a5ab))
(fp_line (start -1.25 -1.5) (end 7.75 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp e4fc3609-9ef9-4e81-9127-d43f768946fc))
(fp_line (start 8 -1.25) (end 8 5.75) (layer "F.CrtYd") (width 0.05) (tstamp f868b7b9-6a30-4904-ad5d-2a922922f140))
(fp_line (start -1.5 6) (end -1.25 6) (layer "F.CrtYd") (width 0.05) (tstamp fdf6a57d-7529-4503-94fb-4589871bdee7))
(fp_line (start 6.25 -0.75) (end 6.25 5.25) (layer "F.Fab") (width 0.1) (tstamp 0577e77b-cd76-4c3d-afdc-f0c0298da6f9))
(fp_line (start 0.25 -0.75) (end 3.25 -0.75) (layer "F.Fab") (width 0.1) (tstamp 350871ac-db4b-4e49-85ae-df9b9cce07b9))
(fp_line (start 6.25 5.25) (end 0.25 5.25) (layer "F.Fab") (width 0.1) (tstamp 63a51991-0c31-4490-9363-5cba864d8333))
(fp_line (start 0.25 5.25) (end 0.25 -0.75) (layer "F.Fab") (width 0.1) (tstamp 9cb90df3-9b85-425a-a077-79d701b1b106))
(fp_line (start 3.25 -0.75) (end 6.25 -0.75) (layer "F.Fab") (width 0.1) (tstamp b3bda9f3-6cf1-4249-b014-3707e753bb82))
(fp_circle (center 3.25 2.25) (end 1.25 2.5) (layer "F.Fab") (width 0.1) (fill none) (tstamp 5fb6e2cf-54a0-4c58-a368-ffcb342e184a))
(pad "1" thru_hole circle (at 0 0 90) (size 2 2) (drill 1.1) (layers *.Cu *.Mask)
(net 8 "Net-(R4-Pad1)") (pinfunction "1") (pintype "passive") (tstamp 0e0fef28-a9d4-4461-ac14-e6c3e9966b7d))
(pad "1" thru_hole circle (at 6.5 0 90) (size 2 2) (drill 1.1) (layers *.Cu *.Mask)
(net 8 "Net-(R4-Pad1)") (pinfunction "1") (pintype "passive") (tstamp 80aa4c93-68d5-40a0-9bc8-ee67c80b4cdb))
(pad "2" thru_hole circle (at 6.5 4.5 90) (size 2 2) (drill 1.1) (layers *.Cu *.Mask)
(net 4 "/SW2") (pinfunction "2") (pintype "passive") (tstamp 1a1b210d-5630-4ce4-bb86-8c374c9e5bab))
(pad "2" thru_hole circle (at 0 4.5 90) (size 2 2) (drill 1.1) (layers *.Cu *.Mask)
(net 4 "/SW2") (pinfunction "2") (pintype "passive") (tstamp 208ac950-7645-4546-ba7d-aae7b8c871b0))
(model "${KICAD6_3DMODEL_DIR}/Button_Switch_THT.3dshapes/SW_PUSH_6mm_H5mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_3mm_Pad" (layer "F.Cu")
(tedit 56D1B4CB) (tstamp c7add11f-03ed-45af-b2d8-e2c3adb48e51)
(at 154.94 104.14)
(descr "Mounting Hole 3mm")
(tags "mounting hole 3mm")
(property "Sheetfile" "cuebox.kicad_sch")
(property "Sheetname" "")
(path "/e56afb45-658f-446d-bb2c-2c9e68661016")
(attr exclude_from_pos_files)
(fp_text reference "H3" (at 0 -4) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 25e6f029-713a-438f-b615-1c21c0556211)
)
(fp_text value "MountingHole" (at 0 4) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9c581945-7d11-4865-8653-070d7cf96abd)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fc1a6684-a335-4bff-8581-cd31820271bb)
)
(fp_circle (center 0 0) (end 3 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp aec0824c-60ec-43d4-a273-42c98ad8c3f8))
(fp_circle (center 0 0) (end 3.25 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp ea35b297-a0d1-41cc-b83c-92db75a6de94))
(pad "1" thru_hole circle (at 0 0) (size 6 6) (drill 3) (layers *.Cu *.Mask) (tstamp cf7a1191-9621-4ffb-a105-e35687b79be8))
)
(footprint "MountingHole:MountingHole_3mm_Pad" (layer "F.Cu")
(tedit 56D1B4CB) (tstamp dee939b0-2b55-4a2d-abc0-9463a25a5aff)
(at 154.94 53.34)
(descr "Mounting Hole 3mm")
(tags "mounting hole 3mm")
(property "Sheetfile" "cuebox.kicad_sch")
(property "Sheetname" "")
(path "/ebc3acf8-4965-4bb1-ac73-537735e88af1")
(attr exclude_from_pos_files)
(fp_text reference "H4" (at 0 -4) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ccf5e76a-087d-4c63-b463-7625a4a0258a)
)
(fp_text value "MountingHole" (at 0 4) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 200d6228-08a1-4b39-8a22-7600e811fdb4)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b9cc1bf7-c9b9-48e8-9e8f-6131eede46b0)
)
(fp_circle (center 0 0) (end 3 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 3f19319a-bfbd-4ce0-8389-3248f852cc93))
(fp_circle (center 0 0) (end 3.25 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 638b3924-38b0-46a3-8f34-b13ee661d60a))
(pad "1" thru_hole circle (at 0 0) (size 6 6) (drill 3) (layers *.Cu *.Mask) (tstamp d90e7b16-1cd0-4210-bab1-e353b511706f))
)
(footprint "MCU_RaspberryPi_and_Boards:RPi_Pico_SMD_TH" (layer "B.Cu")
(tedit 6224DF39) (tstamp 0350df4d-7d0d-4486-af48-6b7fa64b681c)
(at 180.34 76.2 180)
(descr "Through hole straight pin header, 2x20, 2.54mm pitch, double rows")
(tags "Through hole pin header THT 2x20 2.54mm double row")
(property "Sheetfile" "cuebox.kicad_sch")
(property "Sheetname" "")
(path "/2e9ca8d9-ee8e-4f3a-9176-7689c8f74939")
(attr through_hole)
(fp_text reference "U1" (at 0 0) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 33fb4dfd-453b-4b89-8354-64e525fdeb00)
)
(fp_text value "Pico" (at 0 -2.159) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 66f7ed9f-db56-4347-ad91-33c91d9f997c)
)
(fp_text user "GP12" (at -13.2 -13.97 135) (layer "B.SilkS")