-
Notifications
You must be signed in to change notification settings - Fork 0
/
pedal.kicad_sch
2956 lines (2872 loc) · 117 KB
/
pedal.kicad_sch
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_sch (version 20211123) (generator eeschema)
(uuid e63e39d7-6ac0-4ffd-8aa3-1841a4541b55)
(paper "A4")
(title_block
(title "Little Angel Chorus ")
(date "2023-05-23")
(company "Author: Vitória Beatriz Bianchin")
(comment 1 "Email: vitoriabbianchin@gmail.com")
(comment 2 "Original schematic by Rick Holt ")
)
(lib_symbols
(symbol "Audio:PT2399" (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at 0 17.78 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "PT2399" (id 1) (at 0 -17.78 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 -10.16 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://sound.westhost.com/pt2399.pdf" (id 3) (at 0 -10.16 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "CMOS ADC DAC 44K Digital processing VCO" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Echo Processor IC" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "DIP-16*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "PT2399_0_1"
(rectangle (start -10.16 15.24) (end 10.16 -15.24)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
)
(symbol "PT2399_1_1"
(pin power_in line (at -12.7 12.7 0) (length 2.54)
(name "VCC" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at 12.7 -10.16 180) (length 2.54)
(name "OP1-IN" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin input line (at 12.7 -5.08 180) (length 2.54)
(name "OP2-IN" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin output line (at 12.7 -2.54 180) (length 2.54)
(name "OP2-OUT" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin input line (at 12.7 2.54 180) (length 2.54)
(name "LPF2-IN" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin output line (at 12.7 5.08 180) (length 2.54)
(name "LPF2-OUT" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin output line (at 12.7 10.16 180) (length 2.54)
(name "LPF1-OUT" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin input line (at 12.7 12.7 180) (length 2.54)
(name "LPF1-IN" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -12.7 10.16 0) (length 2.54)
(name "REF" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -12.7 5.08 0) (length 2.54)
(name "AGND" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -12.7 2.54 0) (length 2.54)
(name "DGND" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -12.7 -2.54 0) (length 2.54)
(name "CLK_O" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -12.7 -5.08 0) (length 2.54)
(name "VCO" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -12.7 -10.16 0) (length 2.54)
(name "CC1" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -12.7 -12.7 0) (length 2.54)
(name "CC0" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin output line (at 12.7 -12.7 180) (length 2.54)
(name "OP1-OUT" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Connector:Conn_01x01_Female" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (id 0) (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x01_Female" (id 1) (at 0 -2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "connector" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_01x01_Female_1_1"
(polyline
(pts
(xy -1.27 0)
(xy -0.508 0)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0 0.508) (mid -0.508 0) (end 0 -0.508)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(pin passive line (at -5.08 0 0) (length 3.81)
(name "Pin_1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Connector:Conn_01x02_Female" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (id 0) (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x02_Female" (id 1) (at 0 -5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "connector" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_01x02_Female_1_1"
(arc (start 0 -2.032) (mid -0.508 -2.54) (end 0 -3.048)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 -2.54)
(xy -0.508 -2.54)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 0)
(xy -0.508 0)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0 0.508) (mid -0.508 0) (end 0 -0.508)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(pin passive line (at -5.08 0 0) (length 3.81)
(name "Pin_1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -2.54 0) (length 3.81)
(name "Pin_2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "C" (id 0) (at 0.635 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C" (id 1) (at 0.635 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 0.9652 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "cap capacitor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_0_1"
(polyline
(pts
(xy -2.032 -0.762)
(xy 2.032 -0.762)
)
(stroke (width 0.508) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -2.032 0.762)
(xy 2.032 0.762)
)
(stroke (width 0.508) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "C_1_1"
(pin passive line (at 0 3.81 270) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:C_Polarized" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "C" (id 0) (at 0.635 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C_Polarized" (id 1) (at 0.635 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 0.9652 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "cap capacitor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Polarized capacitor" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "CP_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_Polarized_0_1"
(rectangle (start -2.286 0.508) (end 2.286 1.016)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.778 2.286)
(xy -0.762 2.286)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 2.794)
(xy -1.27 1.778)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 2.286 -0.508) (end -2.286 -1.016)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
)
(symbol "C_Polarized_1_1"
(pin passive line (at 0 3.81 270) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "R" (id 0) (at 2.032 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R" (id 1) (at 0 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at -1.778 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "R res resistor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_0_1"
(rectangle (start -1.016 -2.54) (end 1.016 2.54)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "R_1_1"
(pin passive line (at 0 3.81 270) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:R_Potentiometer" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "RV" (id 0) (at -4.445 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R_Potentiometer" (id 1) (at -2.54 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "resistor variable" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Potentiometer" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Potentiometer*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_Potentiometer_0_1"
(polyline
(pts
(xy 2.54 0)
(xy 1.524 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.143 0)
(xy 2.286 0.508)
(xy 2.286 -0.508)
(xy 1.143 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
(rectangle (start 1.016 2.54) (end -1.016 -2.54)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "R_Potentiometer_1_1"
(pin passive line (at 0 3.81 270) (length 1.27)
(name "1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 3.81 0 180) (length 1.27)
(name "2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 1.27)
(name "3" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Mechanical:MountingHole_Pad" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "H" (id 0) (at 0 6.35 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "MountingHole_Pad" (id 1) (at 0 4.445 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "mounting hole" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Mounting Hole with connection" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "MountingHole*Pad*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "MountingHole_Pad_0_1"
(circle (center 0 1.27) (radius 1.27)
(stroke (width 1.27) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "MountingHole_Pad_1_1"
(pin input line (at 0 -2.54 90) (length 2.54)
(name "1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Regulator_Linear:L78L05_TO92" (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at -3.81 3.175 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "L78L05_TO92" (id 1) (at 0 3.175 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Package_TO_SOT_THT:TO-92_Inline" (id 2) (at 0 5.715 0)
(effects (font (size 1.27 1.27) italic) hide)
)
(property "Datasheet" "http://www.st.com/content/ccc/resource/technical/document/datasheet/15/55/e5/aa/23/5b/43/fd/CD00000446.pdf/files/CD00000446.pdf/jcr:content/translations/en.CD00000446.pdf" (id 3) (at 0 -1.27 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "Voltage Regulator 100mA Positive" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Positive 100mA 30V Linear Regulator, Fixed Output 5V, TO-92" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "TO?92*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "L78L05_TO92_0_1"
(rectangle (start -5.08 -5.08) (end 5.08 1.905)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
)
(symbol "L78L05_TO92_1_1"
(pin power_out line (at 7.62 0 180) (length 2.54)
(name "VO" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -7.62 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -7.62 0 0) (length 2.54)
(name "VI" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "ne5532:NE5532D8R2G" (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at 20.32 10.16 0)
(effects (font (size 1.524 1.524)))
)
(property "Value" "NE5532D8R2G" (id 1) (at 20.32 7.62 0)
(effects (font (size 1.524 1.524)))
)
(property "Footprint" "SOIC-8_NB_ONS" (id 2) (at 20.32 6.096 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.524 1.524)))
)
(property "ki_fp_filters" "SOIC-8_NB_ONS SOIC-8_NB_ONS-M SOIC-8_NB_ONS-L" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "NE5532D8R2G_1_1"
(polyline
(pts
(xy 7.62 -12.7)
(xy 33.02 -12.7)
)
(stroke (width 0.127) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 7.62 5.08)
(xy 7.62 -12.7)
)
(stroke (width 0.127) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 33.02 -12.7)
(xy 33.02 5.08)
)
(stroke (width 0.127) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 33.02 5.08)
(xy 7.62 5.08)
)
(stroke (width 0.127) (type default) (color 0 0 0 0))
(fill (type none))
)
(pin output line (at 0 0 0) (length 7.62)
(name "OUTA" (effects (font (size 1.4986 1.4986))))
(number "1" (effects (font (size 1.4986 1.4986))))
)
(pin input line (at 0 -2.54 0) (length 7.62)
(name "-INA" (effects (font (size 1.4986 1.4986))))
(number "2" (effects (font (size 1.4986 1.4986))))
)
(pin input line (at 0 -5.08 0) (length 7.62)
(name "+INA" (effects (font (size 1.4986 1.4986))))
(number "3" (effects (font (size 1.4986 1.4986))))
)
(pin power_in line (at 0 -7.62 0) (length 7.62)
(name "V-" (effects (font (size 1.4986 1.4986))))
(number "4" (effects (font (size 1.4986 1.4986))))
)
(pin input line (at 40.64 -7.62 180) (length 7.62)
(name "+INB" (effects (font (size 1.4986 1.4986))))
(number "5" (effects (font (size 1.4986 1.4986))))
)
(pin input line (at 40.64 -5.08 180) (length 7.62)
(name "-INB" (effects (font (size 1.4986 1.4986))))
(number "6" (effects (font (size 1.4986 1.4986))))
)
(pin output line (at 40.64 -2.54 180) (length 7.62)
(name "OUTB" (effects (font (size 1.4986 1.4986))))
(number "7" (effects (font (size 1.4986 1.4986))))
)
(pin power_in line (at 40.64 0 180) (length 7.62)
(name "V+" (effects (font (size 1.4986 1.4986))))
(number "8" (effects (font (size 1.4986 1.4986))))
)
)
)
(symbol "power:Earth" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "Earth" (id 1) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag ground gnd" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"Earth\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Earth_0_1"
(polyline
(pts
(xy -0.635 -1.905)
(xy 0.635 -1.905)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -0.127 -2.54)
(xy 0.127 -2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 -1.27)
(xy 0 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 -1.27)
(xy -1.27 -1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "Earth_1_1"
(pin power_in line (at 0 0 270) (length 0) hide
(name "Earth" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:PWR_FLAG" (power) (pin_numbers hide) (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "#FLG" (id 0) (at 0 1.905 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "PWR_FLAG" (id 1) (at 0 3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Special symbol for telling ERC where power comes from" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "PWR_FLAG_0_0"
(pin power_out line (at 0 0 90) (length 0)
(name "pwr" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
(symbol "PWR_FLAG_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 1.27)
(xy -1.016 1.905)
(xy 0 2.54)
(xy 1.016 1.905)
(xy 0 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
)
(symbol "power:VCC" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "VCC" (id 1) (at 0 3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"VCC\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "VCC_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "VCC_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "VCC" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 139.7 97.79) (diameter 0) (color 0 0 0 0)
(uuid 013919ec-af90-4daa-8eab-86ca4e5ae0a5)
)
(junction (at 139.954 95.504) (diameter 0) (color 0 0 0 0)
(uuid 0d2b3446-b7ad-4e63-aa58-67a54b99f2cd)
)
(junction (at 30.988 136.144) (diameter 0) (color 0 0 0 0)
(uuid 18bd837f-e522-4391-ad5a-f02f4b6969a2)
)
(junction (at 71.882 109.22) (diameter 0) (color 0 0 0 0)
(uuid 1f063535-e14e-45fa-893c-13da30b4430d)
)
(junction (at 99.568 117.094) (diameter 0) (color 0 0 0 0)
(uuid 25763a60-385d-4f9d-9ab3-6bb1b49a61c8)
)
(junction (at 42.672 84.074) (diameter 0) (color 0 0 0 0)
(uuid 2b7357fe-8a6e-400a-a907-d3af51cee918)
)
(junction (at 104.14 42.418) (diameter 0) (color 0 0 0 0)
(uuid 3b3f31d5-b083-4c85-a416-6a9ae4fff194)
)
(junction (at 78.994 109.22) (diameter 0) (color 0 0 0 0)
(uuid 41dc41bf-ea8a-49a5-b13e-d396ac970d64)
)
(junction (at 61.214 46.99) (diameter 0) (color 0 0 0 0)
(uuid 431f5788-2f81-4b69-9e43-b3f502580a3d)
)
(junction (at 139.954 87.884) (diameter 0) (color 0 0 0 0)
(uuid 464d0416-e868-4053-8bf2-edc54e9f2afd)
)
(junction (at 35.052 136.144) (diameter 0) (color 0 0 0 0)
(uuid 4f4a8652-bd78-492b-862f-8b6e337294a2)
)
(junction (at 37.846 119.634) (diameter 0) (color 0 0 0 0)
(uuid 6a26cdc7-779a-4d22-a38a-b2953d4eb632)
)
(junction (at 248.6524 139.192) (diameter 0) (color 0 0 0 0)
(uuid 7467fda8-4753-46e6-95b1-13df7a6ec596)
)
(junction (at 51.816 136.144) (diameter 0) (color 0 0 0 0)
(uuid 74c018ba-61ae-4354-96b9-54ac272ad59f)
)
(junction (at 236.982 39.37) (diameter 0) (color 0 0 0 0)
(uuid 852c96a8-b345-4cc7-b019-80519e6cae59)
)
(junction (at 224.282 142.494) (diameter 0) (color 0 0 0 0)
(uuid 87a367ea-ebd8-491e-b1d9-bc1496485654)
)
(junction (at 177.292 53.34) (diameter 0) (color 0 0 0 0)
(uuid 89b79032-f461-4197-ba4b-be847ddea303)
)
(junction (at 118.872 53.34) (diameter 0) (color 0 0 0 0)
(uuid 8bf359db-a067-46ee-aeeb-de32a4679530)
)
(junction (at 140.462 76.708) (diameter 0) (color 0 0 0 0)
(uuid 8ca8fd44-f1cf-44a0-a795-1303788d986c)
)
(junction (at 161.29 87.884) (diameter 0) (color 0 0 0 0)
(uuid 99d85977-9fd3-4b28-8efa-96c12ddde8e5)
)
(junction (at 140.462 63.246) (diameter 0) (color 0 0 0 0)
(uuid a21a9144-ca77-4587-b98f-c8a40d119fea)
)
(junction (at 140.462 86.614) (diameter 0) (color 0 0 0 0)
(uuid aa5ec14d-3da5-454b-8a06-d8ead7f4c1e9)
)
(junction (at 161.29 53.34) (diameter 0) (color 0 0 0 0)
(uuid aefc482a-b041-4e38-940b-150fb7aeb4fc)
)
(junction (at 72.898 84.074) (diameter 0) (color 0 0 0 0)
(uuid b41c5c2c-d8d1-4d98-adcc-5999ddd12bc1)
)
(junction (at 100.838 92.964) (diameter 0) (color 0 0 0 0)
(uuid c21369e6-16d7-45e6-b303-fca94fc3dc62)
)
(junction (at 185.42 93.726) (diameter 0) (color 0 0 0 0)
(uuid c7ce92fc-4d84-4e6e-afda-2037b34b621c)
)
(junction (at 51.816 128.778) (diameter 0) (color 0 0 0 0)
(uuid d754d467-7daf-4a7c-92c3-629da503c121)
)
(junction (at 97.028 84.074) (diameter 0) (color 0 0 0 0)
(uuid f41f1772-e0f5-4168-a8ad-03c4dbf0d74d)
)
(junction (at 224.282 139.192) (diameter 0) (color 0 0 0 0)
(uuid fb99435d-879b-4815-a19e-5e5b569a7800)
)
(no_connect (at 78.994 143.256) (uuid 1212077a-6991-48e0-9595-ed5569c9c220))
(no_connect (at 72.644 86.614) (uuid 439387e6-7ad8-4b2d-9f7a-ebcd68651437))
(no_connect (at 105.664 99.314) (uuid cc3a93c2-c78c-4aac-88ed-d485015d1114))
(wire (pts (xy 72.644 86.614) (xy 75.184 86.614))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 03d9b410-ad53-49cf-bf07-3b34700d5c89)
)
(wire (pts (xy 49.022 128.778) (xy 51.816 128.778))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 03e662a8-0d4c-4a7e-bd9c-8fb21519bdfc)
)
(wire (pts (xy 78.994 109.22) (xy 78.994 132.334))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 05ab7f02-796e-4bcc-8447-e990ec4d5ec6)
)
(wire (pts (xy 51.562 46.99) (xy 61.214 46.99))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 06edd528-17d7-4450-bb06-a88bbf35def5)
)
(wire (pts (xy 71.882 109.22) (xy 71.882 110.998))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 087ff793-2e56-4fbf-b5f3-a7375b194b23)
)
(wire (pts (xy 100.838 94.234) (xy 100.838 92.964))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0be4eb88-bf59-464d-be22-fc8a04c3b5e8)
)
(wire (pts (xy 131.064 94.234) (xy 131.064 95.504))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0c919da3-9e68-4937-a9ea-d6ea48fbf7aa)
)
(wire (pts (xy 161.29 53.34) (xy 177.292 53.34))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0d4cb4df-ecce-4331-9d3e-10ff358f591c)
)
(wire (pts (xy 161.29 80.772) (xy 161.29 87.884))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1058750f-4d59-4b74-872a-da8d70c47c67)
)
(wire (pts (xy 153.67 63.246) (xy 140.462 63.246))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 10cce557-8ba8-4d87-acec-ee64b7ddf3b9)
)
(wire (pts (xy 97.79 92.964) (xy 100.838 92.964))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 11584155-9cd4-488a-8a99-fcf441c406f3)
)
(wire (pts (xy 99.568 117.094) (xy 99.568 118.616))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 13d932f8-7313-44de-b959-7858c30bd704)
)
(wire (pts (xy 172.72 101.6) (xy 161.798 101.6))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 17ca11aa-8f8b-4a13-80e5-1492832fe337)
)
(wire (pts (xy 71.882 118.618) (xy 71.882 121.158))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 184ac5ad-d287-402f-b65e-c0863e6ca5fd)
)
(wire (pts (xy 118.872 53.34) (xy 134.112 53.34))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 189e7c40-0f59-49d7-b8eb-81cf5d3d7616)
)
(wire (pts (xy 153.416 146.304) (xy 157.734 146.304))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1acc99f0-fd3d-4bc1-a380-102056828207)
)
(wire (pts (xy 108.966 148.844) (xy 112.776 148.844))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1e101ed3-7727-4bed-a1fc-80bd76f50d4a)
)
(wire (pts (xy 96.2906 117.094) (xy 99.568 117.094))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 22dd2bbd-d3a7-45b9-abac-ab54d07f4da7)
)
(wire (pts (xy 30.988 136.144) (xy 30.988 140.208))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2535c004-079a-4b63-882d-cd6233160d1d)
)
(wire (pts (xy 131.064 76.708) (xy 140.462 76.708))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 27c3ce81-c5cf-4ff6-8fad-d52d3bde0566)
)
(wire (pts (xy 37.846 109.22) (xy 52.578 109.22))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2854da72-07e7-492a-8c4f-d0d89e9630bf)
)
(wire (pts (xy 140.462 73.66) (xy 140.462 76.708))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2b558138-af62-4bb1-9f9a-4b88c61e6b7f)
)
(wire (pts (xy 153.416 151.384) (xy 157.226 151.384))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2c996689-6908-4cb7-aeec-2509864c2028)
)
(wire (pts (xy 157.734 141.732) (xy 157.734 146.304))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2dd9fde2-741b-43b7-8127-67902bef3da4)
)
(wire (pts (xy 136.398 109.474) (xy 136.398 114.554))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2f4fdec2-596a-4d36-9105-c6fbcb5063fe)
)
(wire (pts (xy 30.988 119.634) (xy 30.988 124.46))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2f59f39f-5b97-4cbb-9a81-b531eef5e96b)
)
(wire (pts (xy 118.872 53.34) (xy 118.872 55.626))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2f8d85c8-953a-410c-8444-cf41bdeace12)
)
(wire (pts (xy 42.672 95.504) (xy 42.672 101.092))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 30c720a0-2b74-4a53-8627-4081c67d0d7f)
)
(wire (pts (xy 141.732 53.34) (xy 146.05 53.34))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 33521c42-4a14-4b22-a508-c2e43ae1d045)
)
(wire (pts (xy 218.694 142.494) (xy 224.282 142.494))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3759dc5d-8c5f-4c6f-b7f2-34a7aa8fb9f9)
)
(wire (pts (xy 105.664 106.934) (xy 96.2906 106.934))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 38d9ffc5-d805-42cb-b64c-804557c964d0)
)
(wire (pts (xy 68.072 136.144) (xy 75.184 136.144))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3944a7f9-9a6e-4cfd-9a56-846bc146e9b4)
)
(wire (pts (xy 60.198 109.22) (xy 71.882 109.22))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 39b4a4cc-1166-42fe-9ddd-9f43c5c76c5d)
)
(wire (pts (xy 136.398 114.554) (xy 139.7 114.554))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3b9509d9-758e-4daf-aed2-e136a7cd3cfb)
)
(wire (pts (xy 161.798 93.726) (xy 172.466 93.726))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 436a70f7-3270-4a5a-8c44-0e015e246400)
)
(wire (pts (xy 72.898 73.406) (xy 72.898 84.074))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4379c3f5-3b55-476c-80e5-4c53e1bbabf5)
)
(wire (pts (xy 35.052 136.144) (xy 35.052 144.018))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 452d9595-6880-4aa9-af8a-3924e5013f4b)
)
(wire (pts (xy 161.29 66.04) (xy 161.29 73.152))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 47b219dd-6b91-4672-8bc8-7d6e07a64141)
)
(wire (pts (xy 37.846 109.22) (xy 37.846 119.634))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 49420fa1-139d-4750-b447-7b401b61654c)
)
(wire (pts (xy 91.948 101.854) (xy 94.996 101.854))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4e520813-cfda-4df8-bb4b-4d7e5d3a2a86)
)
(wire (pts (xy 78.994 103.378) (xy 78.994 109.22))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4e9f513a-5430-4d10-bf5d-f73500bb4715)
)
(wire (pts (xy 45.466 136.144) (xy 51.816 136.144))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4fcd34f2-1fc2-4dbf-986b-e3ae00daa430)
)
(wire (pts (xy 139.954 87.884) (xy 161.29 87.884))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 50f8d2ca-d912-4fc8-8f62-e995af05e0f5)
)
(wire (pts (xy 134.62 63.246) (xy 140.462 63.246))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 51af6e37-9b3c-403a-a5ef-e326081bf1f5)