-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpcb-stylophone_v2_to_make.kicad_pcb
17674 lines (17606 loc) · 975 KB
/
pcb-stylophone_v2_to_make.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20221018) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 4)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "gerber_v2/")
)
)
(net 0 "")
(net 1 "VCC")
(net 2 "GND")
(net 3 "Net-(J22-Pin_1)")
(net 4 "Net-(J2-Pin_1)")
(net 5 "Net-(J3-Pin_1)")
(net 6 "Net-(J4-Pin_1)")
(net 7 "Net-(J5-Pin_1)")
(net 8 "Net-(J6-Pin_1)")
(net 9 "Net-(J7-Pin_1)")
(net 10 "Net-(J8-Pin_1)")
(net 11 "Net-(J9-Pin_1)")
(net 12 "Net-(J10-Pin_1)")
(net 13 "Net-(J11-Pin_1)")
(net 14 "Net-(J12-Pin_1)")
(net 15 "Net-(J13-Pin_1)")
(net 16 "Net-(J14-Pin_1)")
(net 17 "Net-(J15-Pin_1)")
(net 18 "Net-(J16-Pin_1)")
(net 19 "Net-(J17-Pin_1)")
(net 20 "Net-(J18-Pin_1)")
(net 21 "Net-(J19-Pin_1)")
(net 22 "Net-(J20-Pin_1)")
(net 23 "Net-(J21-Pin_1)")
(net 24 "Net-(U1-Q)")
(net 25 "Net-(U1-DIS)")
(net 26 "unconnected-(U1-CV-Pad5)")
(footprint "Package_DIP:DIP-8_W7.62mm" (layer "F.Cu")
(tstamp 109f1583-fdb4-498b-a2ff-8138c146e018)
(at 155.8 104.48 -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" "pcb-stylophone.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Precision Timers, 555 compatible, PDIP-8")
(property "ki_keywords" "single timer 555")
(path "/95369174-d969-496d-bcd8-20c1a827addf")
(attr through_hole)
(fp_text reference "U1" (at -2.08 8.1 -180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e1d03b18-0adb-4986-adbe-6d97684320e8)
)
(fp_text value "NE555P" (at 3.81 9.95 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 42ef9b5c-3ef6-456f-be27-87be03ae2161)
)
(fp_text user "${REFERENCE}" (at 3.81 3.81 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 475d6c06-4a3b-4048-8e27-ba54b1418d9c)
)
(fp_line (start 1.16 -1.33) (end 1.16 8.95)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a8b1e59d-6b12-4526-bd76-e6fe5cb704c6))
(fp_line (start 1.16 8.95) (end 6.46 8.95)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 102d6353-ac73-44ba-8e42-10143ee682cb))
(fp_line (start 2.81 -1.33) (end 1.16 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2148df97-dde6-4682-81ed-3f5c7ca7f1ee))
(fp_line (start 6.46 -1.33) (end 4.81 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e598a084-6302-4af6-a61f-583cb7ec0694))
(fp_line (start 6.46 8.95) (end 6.46 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 32634214-88f3-4f5d-a316-8908d1fe8e27))
(fp_arc (start 4.81 -1.33) (mid 3.81 -0.33) (end 2.81 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 81487f46-e4f3-46b9-9779-bb6fa4b6be47))
(fp_line (start -1.1 -1.55) (end -1.1 9.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp eef8f1b3-ddce-4dac-8f2c-2f2caf1547ce))
(fp_line (start -1.1 9.15) (end 8.7 9.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 617f2701-6e2a-4911-813b-94b682e869a3))
(fp_line (start 8.7 -1.55) (end -1.1 -1.55)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 02580663-b156-4223-8aa7-2bae74fe6d2d))
(fp_line (start 8.7 9.15) (end 8.7 -1.55)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c777a060-efa0-4345-92a8-f6cb2383a502))
(fp_line (start 0.635 -0.27) (end 1.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 46373d20-a63c-4d98-9629-aab6590a5165))
(fp_line (start 0.635 8.89) (end 0.635 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b0c596bf-6369-4c94-a2b2-c1c857182124))
(fp_line (start 1.635 -1.27) (end 6.985 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6ce23dfa-a30a-4627-b317-a4cbaa5af361))
(fp_line (start 6.985 -1.27) (end 6.985 8.89)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 54998716-e307-47f8-86bd-b5e7444aa457))
(fp_line (start 6.985 8.89) (end 0.635 8.89)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 79998e3c-c450-4c0c-b3b3-4302a6902cb3))
(pad "1" thru_hole rect (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp cf5944dc-0f8b-4465-a4a4-7136f8095ff1))
(pad "2" thru_hole oval (at 0 2.54 270) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 3 "Net-(J22-Pin_1)") (pinfunction "TR") (pintype "input") (tstamp 8b925b5d-b2ef-4a53-a2ab-aca700feeefd))
(pad "3" thru_hole oval (at 0 5.08 270) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 24 "Net-(U1-Q)") (pinfunction "Q") (pintype "output") (tstamp f5b040d6-5eb1-4ff1-9782-dd1a4331ecd5))
(pad "4" thru_hole oval (at 0 7.62 270) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 1 "VCC") (pinfunction "R") (pintype "input") (tstamp 9dfb5bc6-d5f1-4b0e-a944-2105ff12b06d))
(pad "5" thru_hole oval (at 7.62 7.62 270) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 26 "unconnected-(U1-CV-Pad5)") (pinfunction "CV") (pintype "input+no_connect") (tstamp 54502f00-09fe-4ded-b516-7ad9dbeff401))
(pad "6" thru_hole oval (at 7.62 5.08 270) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 3 "Net-(J22-Pin_1)") (pinfunction "THR") (pintype "input") (tstamp 2f0948c4-1949-4d25-be91-8e8528c738ee))
(pad "7" thru_hole oval (at 7.62 2.54 270) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 25 "Net-(U1-DIS)") (pinfunction "DIS") (pintype "input") (tstamp 94222e19-fb33-4f6c-be30-c1fbb7c0fbdc))
(pad "8" thru_hole oval (at 7.62 0 270) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 1 "VCC") (pinfunction "VCC") (pintype "power_in") (tstamp 3396ab82-62f4-444b-ba6b-33c0789c9a99))
(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 "Library:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal" (layer "F.Cu")
(tstamp 1519886c-67e8-4c3c-a6d2-a2ebc112cb15)
(at 109.5 116.7 -90)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 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 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "pcb-stylophone.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/4df4efa5-8f35-4887-9ae8-a6bf9cf9a268")
(attr through_hole)
(fp_text reference "R16" (at -1.8 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4ab18b9f-1f9a-442b-961e-c9ee07f74b22)
)
(fp_text value "3.48k, 1%" (at 5.08 2.37 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7a790ed3-85c5-487b-8709-79d1b69b7332)
)
(fp_text user "${REFERENCE}" (at 5.08 0 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0c4bf63e-f107-40a9-a6c0-d2cb94171502)
)
(fp_line (start 1.04 0) (end 1.81 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 444cfd05-fa8a-492e-a250-30eb71456421))
(fp_line (start 1.81 -1.37) (end 1.81 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c44777a3-b662-4449-b433-15018dd77e79))
(fp_line (start 1.81 1.37) (end 8.35 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fcbaeb14-0a41-4b35-b54a-8dad2bc3544e))
(fp_line (start 8.35 -1.37) (end 1.81 -1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7701fe6d-b199-4267-beb0-5b3007e3b276))
(fp_line (start 8.35 1.37) (end 8.35 -1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ff25e9b5-96d1-4996-8440-c920bd7f98b7))
(fp_line (start 9.12 0) (end 8.35 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9245f827-4d73-4cc7-8aa3-c5804a68aaab))
(fp_line (start -1.05 -1.5) (end -1.05 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f914d820-50b7-4f06-8530-421b8c1293f3))
(fp_line (start -1.05 1.5) (end 11.21 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9aabcf5e-f075-4189-b927-7e245b0f505b))
(fp_line (start 11.21 -1.5) (end -1.05 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp acc72d14-73c6-41b5-b80d-539fe6ad8988))
(fp_line (start 11.21 1.5) (end 11.21 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9a699370-8ca1-4c03-847f-7d968d5bcde2))
(fp_line (start 0 0) (end 1.93 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 94264934-f5ae-4c84-bc44-b857a19680ae))
(fp_line (start 1.93 -1.25) (end 1.93 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d5702277-53f8-4dd1-ad99-57b88318c339))
(fp_line (start 1.93 1.25) (end 8.23 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9e93ff05-ee8a-48ed-ab48-a2637083e364))
(fp_line (start 8.23 -1.25) (end 1.93 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a65c400d-b80d-4503-aaf1-0f087e50f5f7))
(fp_line (start 8.23 1.25) (end 8.23 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1e0baa73-3acd-43cd-8c8a-a9a4493138ae))
(fp_line (start 10.16 0) (end 8.23 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ec3203df-e981-40f1-b2ff-4c46a080e88c))
(pad "1" thru_hole circle (at 0 0 270) (size 2 2) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 17 "Net-(J15-Pin_1)") (pintype "passive") (tstamp 5e6be74e-82cc-43f5-b92b-96870711181b))
(pad "2" thru_hole circle (at 10.16 0 270) (size 2 2) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 18 "Net-(J16-Pin_1)") (pintype "passive") (tstamp 879f6dbd-6083-43cb-9856-d1bf3109d7b8))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Library:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal" (layer "F.Cu")
(tstamp 275f0e26-813e-4b30-a07d-cff9dcb8399f)
(at 165.5 116.7 -90)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 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 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "pcb-stylophone.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/e208d600-2b78-4892-bdf6-798921ef9a9c")
(attr through_hole)
(fp_text reference "R2" (at -1.8 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8d449f4b-8bf6-4f1d-b808-80a8141940e3)
)
(fp_text value "22.1k, 1%" (at 5.08 2.37 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3beaeddd-0c8c-4994-8027-a33d5baee5bd)
)
(fp_text user "${REFERENCE}" (at 5.08 0 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5b84843d-2395-4db7-b2d5-d3d5bc1f7c91)
)
(fp_line (start 1.04 0) (end 1.81 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3a366013-af02-4b4f-a770-bfc46da87281))
(fp_line (start 1.81 -1.37) (end 1.81 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f4d9bfde-a1ca-4644-a145-e990ba4ec431))
(fp_line (start 1.81 1.37) (end 8.35 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 397ae8f0-46dc-4cb6-9c05-97c7fca0832e))
(fp_line (start 8.35 -1.37) (end 1.81 -1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4d8ef894-f46e-4075-abba-ede3a3d7707e))
(fp_line (start 8.35 1.37) (end 8.35 -1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7a34f1d0-abc0-4e25-a8db-afbcedf362b2))
(fp_line (start 9.12 0) (end 8.35 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bfd22bce-0511-4a1f-9e24-4c8ae1266d70))
(fp_line (start -1.05 -1.5) (end -1.05 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3db782e9-f70b-4b39-9870-143748927bc6))
(fp_line (start -1.05 1.5) (end 11.21 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7ef5bfca-7202-44b5-bd79-789c868347c8))
(fp_line (start 11.21 -1.5) (end -1.05 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a68ceff0-4dd0-4c48-8a56-a51b235f24b8))
(fp_line (start 11.21 1.5) (end 11.21 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ef530811-8a3e-4f8f-b48b-b6c894b46a7b))
(fp_line (start 0 0) (end 1.93 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 32a2bb66-c181-4b57-883f-d1da50f378d7))
(fp_line (start 1.93 -1.25) (end 1.93 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e33ffa37-b898-45a1-b702-69426b9fff9b))
(fp_line (start 1.93 1.25) (end 8.23 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b5f59f2b-4cfd-4a14-b333-021da9cecbcf))
(fp_line (start 8.23 -1.25) (end 1.93 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2cf1f9e3-4a87-4986-9ee3-01b1b7b0c177))
(fp_line (start 8.23 1.25) (end 8.23 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bbf95ee0-a06e-4602-9a7e-820f4b6b9469))
(fp_line (start 10.16 0) (end 8.23 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 05fbc2cd-252b-41a3-9dfa-0d9ea2c84436))
(pad "1" thru_hole circle (at 0 0 270) (size 2 2) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 25 "Net-(U1-DIS)") (pintype "passive") (tstamp 6519a1fc-199a-4fcb-8fd4-c96146747e53))
(pad "2" thru_hole circle (at 10.16 0 270) (size 2 2) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 4 "Net-(J2-Pin_1)") (pintype "passive") (tstamp 3e93fe5d-e593-4d03-8f8f-830a3be485b4))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Buzzer_Beeper:Buzzer_D14mm_H7mm_P10mm" (layer "F.Cu")
(tstamp 2df65277-b299-4d7b-9baf-56de7a67c308)
(at 127 101.5 -90)
(descr "Generic Buzzer, D14mm height 7mm with pitch 10mm")
(tags "buzzer")
(property "Sheetfile" "pcb-stylophone.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Crystal speaker/transducer")
(property "ki_keywords" "crystal speaker ultrasonic transducer")
(path "/976147b6-5513-4719-a7b5-e2189f35bd0a")
(attr through_hole)
(fp_text reference "LS1" (at -1.2 -6.5 -180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 711911b1-48fe-4e9b-a2bc-27274d1ab6e0)
)
(fp_text value "Piezo Sounder" (at 4.69 8.41 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f648742b-b974-4688-b3f0-82bd38cc8067)
)
(fp_text user "+" (at -0.01 -2.54 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b73bd263-ed59-47f3-b098-603485424608)
)
(fp_text user "+" (at -0.01 -2.54 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 176122d0-912c-4a9e-8ac1-1d578b0534f9)
)
(fp_text user "${REFERENCE}" (at 5.32 2.27 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fec6d880-e3db-4ea1-bdf4-3928978a784f)
)
(fp_circle (center 5 0) (end 12.1 0)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp c2047e0e-5fdf-4180-a567-39b470e56069))
(fp_circle (center 5 0) (end 12.25 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 6d78c405-7a54-455c-9a41-03d53c80a4c7))
(fp_circle (center 5 0) (end 6 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 91f5679d-a2fb-4077-a448-48c6de9a6d73))
(fp_circle (center 5 0) (end 12 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp ce4a429b-b72e-4529-9f91-88246ac5f784))
(pad "1" thru_hole rect (at 0 0 270) (size 2 2) (drill 1) (layers "*.Cu" "*.Mask")
(net 24 "Net-(U1-Q)") (pinfunction "1") (pintype "input") (tstamp d550fac0-150b-4501-a40c-d2bd93488ab9))
(pad "2" thru_hole circle (at 10 0 270) (size 2 2) (drill 1) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "2") (pintype "input") (tstamp 5b53bf6f-8308-4788-919b-f36d8d71b385))
(model "${KICAD6_3DMODEL_DIR}/Buzzer_Beeper.3dshapes/Buzzer_D14mm_H7mm_P10mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Library:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal" (layer "F.Cu")
(tstamp 3b53d330-8573-4251-a055-dbd3ffa1c3dc)
(at 101.5 116.7 -90)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 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 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "pcb-stylophone.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/30170909-c2fc-4ed5-936f-e05b5be1626d")
(attr through_hole)
(fp_text reference "R18" (at -1.8 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8ff04e20-ab46-455b-b189-392506515396)
)
(fp_text value "3.83k, 1%" (at 5.08 2.37 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5a511240-e348-4e6d-af67-022dfd2684e3)
)
(fp_text user "${REFERENCE}" (at 5.08 0 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 160f030a-3e9f-491a-a6c1-1d913b974af5)
)
(fp_line (start 1.04 0) (end 1.81 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6c9e379b-1d4d-4acb-ab5e-af2856571db4))
(fp_line (start 1.81 -1.37) (end 1.81 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d41a01d8-e87f-4768-b910-6d51c62cbadd))
(fp_line (start 1.81 1.37) (end 8.35 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b0001434-be3e-4a52-8fc8-ec358fbe626c))
(fp_line (start 8.35 -1.37) (end 1.81 -1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0e6dd754-6441-4683-ad12-76ca8301774d))
(fp_line (start 8.35 1.37) (end 8.35 -1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7d4c6a84-08f4-44d4-924c-c97b1cb84e4c))
(fp_line (start 9.12 0) (end 8.35 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e27f1ec9-26e6-433b-936a-b0932588690b))
(fp_line (start -1.05 -1.5) (end -1.05 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2a96e92d-096d-44fe-934a-40e874cf1838))
(fp_line (start -1.05 1.5) (end 11.21 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7d5407fb-7c9a-4fc0-9b6b-cfa68a73e26f))
(fp_line (start 11.21 -1.5) (end -1.05 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f0d9f054-061b-4e9b-8114-5cba52e0a78d))
(fp_line (start 11.21 1.5) (end 11.21 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cfad1604-4137-45b9-b8b3-35c66c51f036))
(fp_line (start 0 0) (end 1.93 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 78c1bd5b-efbb-45c9-bd38-c82ca3187ab0))
(fp_line (start 1.93 -1.25) (end 1.93 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4677e88e-d5a0-4afe-a349-f1f2506f8e36))
(fp_line (start 1.93 1.25) (end 8.23 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp af1800aa-a346-44e9-b6e5-63f215b02945))
(fp_line (start 8.23 -1.25) (end 1.93 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4ff9e48f-d0d6-4973-9486-d545ed69cb20))
(fp_line (start 8.23 1.25) (end 8.23 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 73f5411b-9efa-469b-a0df-521c812bbfab))
(fp_line (start 10.16 0) (end 8.23 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8765d0d0-078f-48f4-ba71-6cdea95d8d30))
(pad "1" thru_hole circle (at 0 0 270) (size 2 2) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 19 "Net-(J17-Pin_1)") (pintype "passive") (tstamp bd760209-cee5-41e1-8e27-7254a94eaed4))
(pad "2" thru_hole circle (at 10.16 0 270) (size 2 2) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 20 "Net-(J18-Pin_1)") (pintype "passive") (tstamp cbe3c4e4-e7d2-490f-8eaa-b4f318fed548))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Library:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal" (layer "F.Cu")
(tstamp 413c4f63-4a3b-4bd0-8480-88807835e4ec)
(at 105.5 116.7 -90)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 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 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "pcb-stylophone.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/a071941d-1492-4864-bd84-63dc28e2e454")
(attr through_hole)
(fp_text reference "R17" (at -1.8 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5d1fd440-e54e-4c5a-a90c-ea491fc709f9)
)
(fp_text value "3.65k, 1%" (at 5.08 2.37 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 25ccef10-2dd7-4313-95da-48534e9ee2fa)
)
(fp_text user "${REFERENCE}" (at 5.08 0 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1da0a26e-7fd5-4547-81ad-d18bd69e120e)
)
(fp_line (start 1.04 0) (end 1.81 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6142fbf3-2b47-4054-9150-2143e00ae36e))
(fp_line (start 1.81 -1.37) (end 1.81 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0dd0f5f9-78ca-4176-a0d3-391e166942b8))
(fp_line (start 1.81 1.37) (end 8.35 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5971816c-10d6-4693-bfd4-45d14a429a9c))
(fp_line (start 8.35 -1.37) (end 1.81 -1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0482160d-8245-4459-9c77-c5cf38edd32e))
(fp_line (start 8.35 1.37) (end 8.35 -1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 081d54f0-6745-40e1-b350-6c1c3efaa5ab))
(fp_line (start 9.12 0) (end 8.35 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 696c8ea7-67f6-44fa-a11b-6e5ecec984d0))
(fp_line (start -1.05 -1.5) (end -1.05 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1f7f15c1-6e8a-4093-959f-fabf4a2896bd))
(fp_line (start -1.05 1.5) (end 11.21 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fc09b4e2-14ae-48c1-a285-2aa14f425552))
(fp_line (start 11.21 -1.5) (end -1.05 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2ac491f7-2e01-4383-8589-024bac082966))
(fp_line (start 11.21 1.5) (end 11.21 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 89d284e6-5969-48c0-b033-a8dab3ecf27f))
(fp_line (start 0 0) (end 1.93 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp aaf09e6f-b265-4bd8-89fd-08f7de812f22))
(fp_line (start 1.93 -1.25) (end 1.93 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f08cd8b4-848f-49c8-9d7a-2db4f20eb4ab))
(fp_line (start 1.93 1.25) (end 8.23 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 48195968-40ba-4988-acff-c845f3012aba))
(fp_line (start 8.23 -1.25) (end 1.93 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2d59c2a0-661a-4187-92ba-8e1150f17220))
(fp_line (start 8.23 1.25) (end 8.23 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a4ed0061-a407-4226-ac5b-79ee9e37a3d2))
(fp_line (start 10.16 0) (end 8.23 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8742d6be-edbc-45b7-b992-64f26b0d576a))
(pad "1" thru_hole circle (at 0 0 270) (size 2 2) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 18 "Net-(J16-Pin_1)") (pintype "passive") (tstamp 82768bb1-9c70-4ad8-b2b5-46e19e79662b))
(pad "2" thru_hole circle (at 10.16 0 270) (size 2 2) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 19 "Net-(J17-Pin_1)") (pintype "passive") (tstamp 479cba0f-1de8-4e7c-bcb3-58dcd4c395d2))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Library:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal" (layer "F.Cu")
(tstamp 41c08876-ee36-4a86-ab89-c4727946195c)
(at 93.5 116.7 -90)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 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 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "pcb-stylophone.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/d0a213d6-dc0f-4a73-a2b9-a085e7d1cf0a")
(attr through_hole)
(fp_text reference "R20" (at -1.8 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f3e64ec2-01db-4684-8c6c-eb5a1a9a850c)
)
(fp_text value "4.32k, 1%" (at 5.08 2.37 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3e128208-4f3e-44a6-b0fc-6c2023bbb6e2)
)
(fp_text user "${REFERENCE}" (at 5.08 0 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d693c55d-b8e3-4231-b31e-58e46ad1792a)
)
(fp_line (start 1.04 0) (end 1.81 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a30127fa-a0e9-41ab-a46b-32a4a77bdb4c))
(fp_line (start 1.81 -1.37) (end 1.81 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d5290bf1-9f7d-4ccb-b3cd-af18e51f7f6e))
(fp_line (start 1.81 1.37) (end 8.35 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 546f48de-5b49-4288-9dcc-7bf168761a23))
(fp_line (start 8.35 -1.37) (end 1.81 -1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9370cbff-3bd5-4f49-ba45-fc4cfcb20314))
(fp_line (start 8.35 1.37) (end 8.35 -1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 110a62e1-2b27-4cf1-8399-ca29268014be))
(fp_line (start 9.12 0) (end 8.35 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 78949068-86d5-4105-9e00-328849b5ef07))
(fp_line (start -1.05 -1.5) (end -1.05 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 27cd517b-f5dc-4b90-b208-cb5f5e50d11a))
(fp_line (start -1.05 1.5) (end 11.21 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b92a1a0d-c1d4-4596-b1be-1ec7cbdf5918))
(fp_line (start 11.21 -1.5) (end -1.05 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 687930ff-4d46-4783-b8b3-84ada4f62041))
(fp_line (start 11.21 1.5) (end 11.21 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 47663579-e443-48af-8985-f3864e1adb43))
(fp_line (start 0 0) (end 1.93 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7f5133c1-0e19-4588-afa9-60c1b4b574a4))
(fp_line (start 1.93 -1.25) (end 1.93 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cc75c927-bf54-4a14-9d14-04b2ac9942a5))
(fp_line (start 1.93 1.25) (end 8.23 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7800dfeb-cd5d-457c-910a-28cca6e8c0ac))
(fp_line (start 8.23 -1.25) (end 1.93 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7dce282d-15fb-4b09-8561-87784f299488))
(fp_line (start 8.23 1.25) (end 8.23 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b3c30e77-a9c3-4635-b5ee-fdbf3dbb5d30))
(fp_line (start 10.16 0) (end 8.23 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b2db33b6-523b-4da8-bad9-0ddda6d62d90))
(pad "1" thru_hole circle (at 0 0 270) (size 2 2) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 21 "Net-(J19-Pin_1)") (pintype "passive") (tstamp cde66184-7eb7-4cde-ab4d-e751a8920685))
(pad "2" thru_hole circle (at 10.16 0 270) (size 2 2) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 22 "Net-(J20-Pin_1)") (pintype "passive") (tstamp a8e7cebd-be77-4cdc-bf4f-dc8e45817233))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Library:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal" (layer "F.Cu")
(tstamp 54c97f0b-8666-4db2-9769-23704bf67c1a)
(at 121.5 116.7 -90)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 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 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "pcb-stylophone.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/aa63090d-764f-4dc4-920c-ad3659225f28")
(attr through_hole)
(fp_text reference "R13" (at -1.8 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d40ca015-5c91-47da-8b10-afde3881cf5b)
)
(fp_text value "2.87k, 1%" (at 5.08 2.37 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6936e6b7-2d0d-49d6-bc33-26d09a0f885a)
)
(fp_text user "${REFERENCE}" (at 5.08 0 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fcb34ae1-1c25-43a9-8554-d49b79bae11f)
)
(fp_line (start 1.04 0) (end 1.81 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d2b35e95-5dde-4472-97f6-80b4426f54b3))
(fp_line (start 1.81 -1.37) (end 1.81 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 08c4cab9-768d-4a5c-bf53-b5d5111d498c))
(fp_line (start 1.81 1.37) (end 8.35 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6857ef91-e1a3-43d0-b466-2e64359bcfce))
(fp_line (start 8.35 -1.37) (end 1.81 -1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5f2a2f51-6b4a-42df-aabb-9ee5cb8c398f))
(fp_line (start 8.35 1.37) (end 8.35 -1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 49cb23f5-6daa-4115-b616-8c60b740b9ce))
(fp_line (start 9.12 0) (end 8.35 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a2c0b302-afab-46b4-8ff8-dea73f0e2815))
(fp_line (start -1.05 -1.5) (end -1.05 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 43b4e33c-64d3-4fff-b318-017a2a3f8daf))
(fp_line (start -1.05 1.5) (end 11.21 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1ad1a464-b180-4267-b917-8841eddf73f3))
(fp_line (start 11.21 -1.5) (end -1.05 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b4cf9fb2-6fe0-4323-b529-a4fd0afb4abe))
(fp_line (start 11.21 1.5) (end 11.21 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 56541b51-a949-4475-a72f-e832deaa7eb4))
(fp_line (start 0 0) (end 1.93 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8765a934-e909-4baf-8070-c9a455232eca))
(fp_line (start 1.93 -1.25) (end 1.93 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 93476063-82f2-4245-906b-63753db47c73))
(fp_line (start 1.93 1.25) (end 8.23 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a9a9ffd3-0c8e-4686-ad0d-35fcd4a77f7e))
(fp_line (start 8.23 -1.25) (end 1.93 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0a0e66a1-76dd-4aa4-b808-c29fc4d7f41e))
(fp_line (start 8.23 1.25) (end 8.23 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6aac1d1f-a905-435b-bcb2-c9dcba78542b))
(fp_line (start 10.16 0) (end 8.23 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2bdc48a1-23b8-4a22-8bf0-114966ff4b1d))
(pad "1" thru_hole circle (at 0 0 270) (size 2 2) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 14 "Net-(J12-Pin_1)") (pintype "passive") (tstamp d11af1bd-9b51-4388-994f-6ce38d96ff5b))
(pad "2" thru_hole circle (at 10.16 0 270) (size 2 2) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 15 "Net-(J13-Pin_1)") (pintype "passive") (tstamp 674db75c-d637-42bf-8288-14c18dfa34b9))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "TestPoint:TestPoint_THTPad_D2.5mm_Drill1.2mm" (layer "F.Cu")
(tstamp 63eb9880-c4d3-4036-b33f-ea112462702d)
(at 164 110.1)
(descr "THT pad as test Point, diameter 2.5mm, hole diameter 1.2mm ")
(tags "test point THT pad")
(property "Sheetfile" "pcb-stylophone.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/397b35e8-02b3-4a2e-86da-dafe9f154919")
(attr exclude_from_pos_files)
(fp_text reference "J22" (at 0 2.5) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7c7d82bf-92b7-42e2-9aad-c3246ade115a)
)
(fp_text value "Stylus" (at 0 2.25) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp be4b7cd2-d8b5-4720-b454-73e834256294)
)
(fp_text user "${REFERENCE}" (at 0 -2.15) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bdca6c21-5882-4aa2-aece-89e1180f1c0f)
)
(fp_circle (center 0 0) (end 0 1.45)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp b0a2403f-3b8d-4eb3-a365-51772c26e26c))
(fp_circle (center 0 0) (end 1.75 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 67e31b89-cbcb-4112-9741-12974cae0bb7))
(pad "1" thru_hole circle (at 0 0) (size 2.5 2.5) (drill 1.2) (layers "*.Cu" "*.Mask")
(net 3 "Net-(J22-Pin_1)") (pinfunction "Pin_1") (pintype "passive") (tstamp 97ddea23-525d-46cd-9236-44d7cb412494))
)
(footprint "Capacitor_THT:C_Disc_D4.3mm_W1.9mm_P5.00mm" (layer "F.Cu")
(tstamp 77cb891e-6365-4f05-adbc-2d4e5df7581d)
(at 153.5 100)
(descr "C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=4.3*1.9mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf")
(tags "C Disc series Radial pin pitch 5.00mm diameter 4.3mm width 1.9mm Capacitor")
(property "Sheetfile" "pcb-stylophone.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/740872e8-048f-45c9-b472-23f030f10218")
(attr through_hole)
(fp_text reference "C2" (at -2.1 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4e5e358e-768f-4027-baed-aae0bd423078)
)
(fp_text value "10n" (at 2.5 2.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d89b9583-d8cd-47ac-83de-0dd6fffb455e)
)
(fp_text user "${REFERENCE}" (at 2.5 0) (layer "F.Fab")
(effects (font (size 0.86 0.86) (thickness 0.129)))
(tstamp 4fbd1025-d193-47ca-b741-bd6f7da624b7)
)
(fp_line (start 0.23 -1.07) (end 0.23 -1.055)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ea09666c-c65e-49d7-9fd1-45079c967a86))
(fp_line (start 0.23 -1.07) (end 4.77 -1.07)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4eac092e-1b18-442c-bb67-1f898765ff78))
(fp_line (start 0.23 1.055) (end 0.23 1.07)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a348735e-1231-46ed-ab4c-07616952b4c1))
(fp_line (start 0.23 1.07) (end 4.77 1.07)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4201876b-8932-46bc-9d5d-3fab65ff9513))
(fp_line (start 4.77 -1.07) (end 4.77 -1.055)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6c3996bd-4b0d-4e21-97a5-64e80ae10f77))
(fp_line (start 4.77 1.055) (end 4.77 1.07)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5c959f4c-9547-4ec2-b46a-61c6cad42ae1))
(fp_line (start -1.05 -1.2) (end -1.05 1.2)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9307d373-22b1-4ea8-a8d5-5d072e9481ae))
(fp_line (start -1.05 1.2) (end 6.05 1.2)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 25548aa4-196d-4d4d-a7f8-ac7aa92236ff))
(fp_line (start 6.05 -1.2) (end -1.05 -1.2)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 385236f8-7803-47d2-8bb1-1ab280954007))
(fp_line (start 6.05 1.2) (end 6.05 -1.2)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 57bbfe18-98a5-4f32-8b4b-8e105af3dd9d))
(fp_line (start 0.35 -0.95) (end 0.35 0.95)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp aa0878a6-6d62-46a3-ae8d-d0ad7bb37d00))
(fp_line (start 0.35 0.95) (end 4.65 0.95)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5bd1372c-b5d7-4e9b-9127-8582771a31c4))
(fp_line (start 4.65 -0.95) (end 0.35 -0.95)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fb04b3ab-cce8-4b7d-abf8-8ed1d1419932))
(fp_line (start 4.65 0.95) (end 4.65 -0.95)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 89fce273-3676-42d2-94f8-b5ed55387660))
(pad "1" thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 3 "Net-(J22-Pin_1)") (pintype "passive") (tstamp 70e5f8ab-53ef-4e81-965c-9bf37bbe6fba))
(pad "2" thru_hole circle (at 5 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pintype "passive") (tstamp 119246c7-dfa6-4d8d-adfd-8133f60dd250))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/C_Disc_D4.3mm_W1.9mm_P5.00mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Library:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal" (layer "F.Cu")
(tstamp 780feec7-c6aa-4afe-8d26-2e5f2b4c4a32)
(at 129.5 116.7 -90)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 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 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "pcb-stylophone.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/c2f370a0-e0bd-461f-ab6d-e76b11479447")
(attr through_hole)
(fp_text reference "R11" (at -1.8 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9eef74be-67c2-40be-95cc-f0522b8b5f4c)
)
(fp_text value "2.61k, 1%" (at 5.08 2.37 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f63a7787-502f-4490-ba29-14f9da622775)
)
(fp_text user "${REFERENCE}" (at 5.08 0 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp afc1d3f2-74cd-49fd-921f-83224e6ef4bb)
)
(fp_line (start 1.04 0) (end 1.81 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 27ea07da-609f-4ba0-b5ca-aa794a1cac76))
(fp_line (start 1.81 -1.37) (end 1.81 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c5c8cdaf-dfec-4f2e-8139-1b937719a072))
(fp_line (start 1.81 1.37) (end 8.35 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8023f9a3-6034-4405-85a4-0b88f90b1328))
(fp_line (start 8.35 -1.37) (end 1.81 -1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e67db7eb-b971-439a-9406-21b5f5835a08))
(fp_line (start 8.35 1.37) (end 8.35 -1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2fae1ef5-8747-48e8-bb28-754fe97578e2))
(fp_line (start 9.12 0) (end 8.35 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3e9ddab8-40f0-47b0-928f-ab0fd2efc103))
(fp_line (start -1.05 -1.5) (end -1.05 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 458d84c8-3d4d-4d1d-92ab-25746e2e4dc2))
(fp_line (start -1.05 1.5) (end 11.21 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 62b6c025-ca1c-4ef9-afcb-93c0129debb9))
(fp_line (start 11.21 -1.5) (end -1.05 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 99a787b7-64ab-4c75-a260-692d8915b5b0))
(fp_line (start 11.21 1.5) (end 11.21 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp dc59a4d5-690a-47cc-baa4-71cb86989b81))
(fp_line (start 0 0) (end 1.93 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5729ee35-d68e-4d07-bfc5-34aa5adb4dbf))
(fp_line (start 1.93 -1.25) (end 1.93 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1785434b-6b9d-4729-b92c-16ee208eb82c))
(fp_line (start 1.93 1.25) (end 8.23 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4f6e49bf-0c3d-49f4-b7d6-ab7328e32479))
(fp_line (start 8.23 -1.25) (end 1.93 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 48467027-1513-46b9-bdba-f8a8745c148a))
(fp_line (start 8.23 1.25) (end 8.23 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp abc38210-2713-4694-8411-7b9598f65959))
(fp_line (start 10.16 0) (end 8.23 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 462b9fca-b4ac-4cec-9161-0f51789ab201))
(pad "1" thru_hole circle (at 0 0 270) (size 2 2) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 12 "Net-(J10-Pin_1)") (pintype "passive") (tstamp 214b1c6b-0793-496f-bba5-de8fb4eb329b))
(pad "2" thru_hole circle (at 10.16 0 270) (size 2 2) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 13 "Net-(J11-Pin_1)") (pintype "passive") (tstamp da7d6b7e-95e2-4875-9368-0649ce43b5db))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 7aa86ff7-a48e-472c-8c41-b7a9fbab607e)
(at 164 104.375 180)
(descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x02 2.54mm single row")
(property "Sheetfile" "pcb-stylophone.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x02, script generated")
(property "ki_keywords" "connector")
(path "/2abbe134-7d04-4d6d-928c-a87115af38ea")
(attr through_hole)
(fp_text reference "J1" (at 0 4.875) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5e615579-e445-4cf2-8c82-ede7477f95c2)
)
(fp_text value "Batt" (at 0 4.87) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1a63ff3e-a882-4fa1-89fe-242d2df96d75)
)
(fp_text user "${REFERENCE}" (at 0 1.27 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9656782b-3bd0-45e1-a736-1a8158ec6f20)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a3b3cf78-0599-409d-b9fe-b81ac0ad9d31))
(fp_line (start -1.33 0) (end -1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b9049fdc-3f29-4d19-b307-7326fb7a80e6))
(fp_line (start -1.33 1.27) (end -1.33 3.87)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0732baf5-951a-4ae7-b975-6dcb75d04345))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 567b2b5f-4e82-47e5-8494-de669c40c436))
(fp_line (start -1.33 3.87) (end 1.33 3.87)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0c14991f-b23a-468e-9786-f9f860ec1231))
(fp_line (start 1.33 1.27) (end 1.33 3.87)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2feeb8b2-fe17-4a8d-b247-ea28419351d7))
(fp_line (start -1.8 -1.8) (end -1.8 4.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 22882dfb-9f80-4a9e-b6a5-b05f1631bc31))
(fp_line (start -1.8 4.35) (end 1.8 4.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bb4182c4-87b0-4baa-8adb-5d6047463d48))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7fa071f1-d3d5-4353-b83c-4697b18def01))
(fp_line (start 1.8 4.35) (end 1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4ec1b80b-e1bc-445b-9964-233eab1c742d))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f50a6c4a-5ad5-45e9-b3b3-238d653f1f52))
(fp_line (start -1.27 3.81) (end -1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e607fdf6-531e-4f9c-8895-95727922a0be))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cb1ecb73-9e3d-4ae7-abd0-85dc1f377a8c))
(fp_line (start 1.27 -1.27) (end 1.27 3.81)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7ca55593-3a5e-46c5-a9c9-67fb34eb3e88))
(fp_line (start 1.27 3.81) (end -1.27 3.81)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ce334cb3-89fe-456c-b508-0c526463c3f7))
(pad "1" thru_hole rect (at 0 0 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 1 "VCC") (pinfunction "Pin_1") (pintype "passive") (tstamp 7ccd02d5-eba1-48d7-a33b-8686576c7ff8))
(pad "2" thru_hole oval (at 0 2.54 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp 0c3a327b-e4a7-43fd-a669-ed3176d6bad8))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Library:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal" (layer "F.Cu")
(tstamp 8b8959a2-7886-4ec0-917f-b478d7d13e7f)
(at 133.5 116.7 -90)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 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 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "pcb-stylophone.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/a648f1bd-3444-4e5f-8062-a24445aec8ac")
(attr through_hole)
(fp_text reference "R10" (at -1.8 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4fd2772e-f33f-41b1-8c32-75b92a64e4f4)
)
(fp_text value "2.43k, 1%" (at 5.08 2.37 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7a4b1290-1b32-4923-8bc3-6f4ee5cb44cc)
)
(fp_text user "${REFERENCE}" (at 5.08 0 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0d286238-5738-4999-a696-b9bdd5a6b1fb)
)
(fp_line (start 1.04 0) (end 1.81 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3bbe31b4-4908-4c3c-ba72-add6acd13ab3))
(fp_line (start 1.81 -1.37) (end 1.81 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7bcae04a-15d4-45a3-b05f-87eeea180ec2))
(fp_line (start 1.81 1.37) (end 8.35 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c7cb91b7-0e9b-4ce0-80c8-e1b0e2719650))
(fp_line (start 8.35 -1.37) (end 1.81 -1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e465bbed-b7fa-43bb-b160-7095a8372fd7))
(fp_line (start 8.35 1.37) (end 8.35 -1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b25aa82e-bcff-4ded-a542-4cd7a26275c4))
(fp_line (start 9.12 0) (end 8.35 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 40243647-9a3e-49bb-b9c7-519559427064))
(fp_line (start -1.05 -1.5) (end -1.05 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ef9aca3e-db9a-4561-a9e4-7f86b1197295))
(fp_line (start -1.05 1.5) (end 11.21 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 45cf8c94-4851-4221-8781-b8634166d766))
(fp_line (start 11.21 -1.5) (end -1.05 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3eaa57cc-be9a-445e-b597-6e79b6b0cc0c))
(fp_line (start 11.21 1.5) (end 11.21 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2ca2a1f1-b9d3-40b5-9f37-aa8b0d022636))
(fp_line (start 0 0) (end 1.93 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f001ac25-74e8-41b6-8b52-c9c9318c188f))
(fp_line (start 1.93 -1.25) (end 1.93 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b1e785a4-86c5-4f1d-9aa0-00fa5154e289))
(fp_line (start 1.93 1.25) (end 8.23 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 812d4eb7-043b-473b-8dbe-0bdaf677c6a2))
(fp_line (start 8.23 -1.25) (end 1.93 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp eedb5e5c-8eb6-4bc6-8827-053a1bf252d7))
(fp_line (start 8.23 1.25) (end 8.23 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 86dbf24e-3158-4088-8e5e-e98abe524118))
(fp_line (start 10.16 0) (end 8.23 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1f2b157a-439c-40d9-9bb4-e7ea5d7e339c))
(pad "1" thru_hole circle (at 0 0 270) (size 2 2) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 11 "Net-(J9-Pin_1)") (pintype "passive") (tstamp 128bcf57-1a2a-419b-8e23-a30aa7e6792f))
(pad "2" thru_hole circle (at 10.16 0 270) (size 2 2) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 12 "Net-(J10-Pin_1)") (pintype "passive") (tstamp afbad7ed-cb71-437f-a179-29ef5f6d2a35))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Library:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal" (layer "F.Cu")
(tstamp a0e42673-6f13-4d67-afdd-e9fc6af70bcc)
(at 141.5 116.7 -90)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 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 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "pcb-stylophone.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/5a899602-6029-4b3c-bde7-f3269628fac7")
(attr through_hole)
(fp_text reference "R8" (at -1.8 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c6b93410-f807-4a29-9383-4fa410e9631c)
)
(fp_text value "2.15k, 1%" (at 5.08 2.37 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 45e19552-1b66-418c-a6e8-8cc38418f394)
)
(fp_text user "${REFERENCE}" (at 5.08 0 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 39daa9fd-a1cb-46be-81f5-25a3820056be)
)
(fp_line (start 1.04 0) (end 1.81 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b57b91e6-6811-4f8a-bf6c-8c10edea7f7a))
(fp_line (start 1.81 -1.37) (end 1.81 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cc9ddb33-71a4-4f99-93ab-5c75bbb018ec))
(fp_line (start 1.81 1.37) (end 8.35 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp aea20811-be76-45c5-bad8-d8c60c5a78db))
(fp_line (start 8.35 -1.37) (end 1.81 -1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bb91d0b9-4e70-4a12-8338-f083fc6cd6d3))
(fp_line (start 8.35 1.37) (end 8.35 -1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a1113deb-9ca6-4c00-bcf9-4071d5e76d73))
(fp_line (start 9.12 0) (end 8.35 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8d840ff3-f44e-4b65-9dac-174ce2f4dfc8))
(fp_line (start -1.05 -1.5) (end -1.05 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e49e390b-bdf6-4f6b-baaa-1c6a3dd0ebe9))
(fp_line (start -1.05 1.5) (end 11.21 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6ebfc54c-ab80-48c9-8eb8-017b98c937f8))
(fp_line (start 11.21 -1.5) (end -1.05 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9bd3b58d-5331-409e-a245-62846fe7f733))
(fp_line (start 11.21 1.5) (end 11.21 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f3fb887a-1005-4e06-8da7-2172fe7bb8cc))
(fp_line (start 0 0) (end 1.93 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e9f02df0-0d96-4bfb-974a-abcd3d67badc))
(fp_line (start 1.93 -1.25) (end 1.93 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a1d004c3-9bf7-4825-898f-af0a625f723e))
(fp_line (start 1.93 1.25) (end 8.23 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 72d97088-665b-498b-ab57-1b0249dd4a81))
(fp_line (start 8.23 -1.25) (end 1.93 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp eb87e5d3-b459-4254-877a-463570485f7e))
(fp_line (start 8.23 1.25) (end 8.23 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b0671048-327d-494a-9ad3-faa0d8134f85))
(fp_line (start 10.16 0) (end 8.23 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fdeac9a6-5edb-407a-b00b-9ed00cbb10a0))
(pad "1" thru_hole circle (at 0 0 270) (size 2 2) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 9 "Net-(J7-Pin_1)") (pintype "passive") (tstamp 72361ce0-197d-44ae-965f-81b7de8279cb))
(pad "2" thru_hole circle (at 10.16 0 270) (size 2 2) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 10 "Net-(J8-Pin_1)") (pintype "passive") (tstamp 4bc4ef79-ea1b-4679-bd19-5018d0a5e6b7))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Library:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal" (layer "F.Cu")
(tstamp a2961c52-da34-4288-be37-537ee4efc34d)
(at 125.5 116.7 -90)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 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 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")