-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAudio Out.kicad_sch
1704 lines (1667 loc) · 58.2 KB
/
Audio Out.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 20230121) (generator eeschema)
(uuid f0532b83-16e9-4d4e-a546-58815be9debf)
(paper "A4")
(lib_symbols
(symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "C" (at 0.635 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C" (at 0.635 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 0.9652 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "cap capacitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (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))
(fill (type none))
)
(polyline
(pts
(xy -2.032 0.762)
(xy 2.032 0.762)
)
(stroke (width 0.508) (type default))
(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:R_US" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "R" (at 2.54 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R_US" (at -2.54 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 1.016 -0.254 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "R res resistor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor, US symbol" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_US_0_1"
(polyline
(pts
(xy 0 -2.286)
(xy 0 -2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 2.286)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 -0.762)
(xy 1.016 -1.143)
(xy 0 -1.524)
(xy -1.016 -1.905)
(xy 0 -2.286)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 0.762)
(xy 1.016 0.381)
(xy 0 0)
(xy -1.016 -0.381)
(xy 0 -0.762)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 2.286)
(xy 1.016 1.905)
(xy 0 1.524)
(xy -1.016 1.143)
(xy 0 0.762)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "R_US_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 "OPA1688_SOIC8_1" (in_bom yes) (on_board yes)
(property "Reference" "U" (at 2.54 0 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "" (at 2.54 0 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 2.54 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 2.54 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_locked" "" (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(symbol "OPA1688_SOIC8_1_1_1"
(polyline
(pts
(xy 0 6.35)
(xy 0 -6.35)
(xy 11.43 0)
(xy 0 6.35)
(xy 0 6.35)
)
(stroke (width 0) (type default))
(fill (type none))
)
(pin output line (at 13.97 0 180) (length 2.54)
(name "" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at -2.54 3.81 0) (length 2.54)
(name "-A" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at -2.54 -2.54 0) (length 2.54)
(name "+IN_A" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
)
(symbol "OPA1688_SOIC8_1_2_1"
(polyline
(pts
(xy 0 6.35)
(xy 0 -6.35)
(xy 12.7 0)
(xy 0 6.35)
(xy 0 6.35)
)
(stroke (width 0) (type default))
(fill (type none))
)
(pin input line (at -2.54 -2.54 0) (length 2.54)
(name "+IN_B" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin input line (at -2.54 3.81 0) (length 2.54)
(name "-B" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin output line (at 15.24 0 180) (length 2.54)
(name "" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
)
(symbol "OPA1688_SOIC8_1_3_1"
(pin power_in line (at 0 -6.35 90) (length 2.54)
(name "V-" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 8.89 270) (length 2.54)
(name "V+" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "OPA1688_SOIC8_2" (in_bom yes) (on_board yes)
(property "Reference" "U" (at 2.54 0 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "" (at 2.54 0 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 2.54 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 2.54 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_locked" "" (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(symbol "OPA1688_SOIC8_2_1_1"
(polyline
(pts
(xy 0 6.35)
(xy 0 -6.35)
(xy 11.43 0)
(xy 0 6.35)
(xy 0 6.35)
)
(stroke (width 0) (type default))
(fill (type none))
)
(pin output line (at 13.97 0 180) (length 2.54)
(name "" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at -2.54 3.81 0) (length 2.54)
(name "-A" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at -2.54 -2.54 0) (length 2.54)
(name "+IN_A" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
)
(symbol "OPA1688_SOIC8_2_2_1"
(polyline
(pts
(xy 0 6.35)
(xy 0 -6.35)
(xy 12.7 0)
(xy 0 6.35)
(xy 0 6.35)
)
(stroke (width 0) (type default))
(fill (type none))
)
(pin input line (at -2.54 -2.54 0) (length 2.54)
(name "+IN_B" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin input line (at -2.54 3.81 0) (length 2.54)
(name "-B" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin output line (at 15.24 0 180) (length 2.54)
(name "" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
)
(symbol "OPA1688_SOIC8_2_3_1"
(pin power_in line (at 0 -6.35 90) (length 2.54)
(name "V-" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 8.89 270) (length 2.54)
(name "V+" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Ultralibrarian_modified_symbols:OPA1688_SOIC8" (in_bom yes) (on_board yes)
(property "Reference" "U" (at 2.54 0 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "" (at 2.54 0 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 2.54 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 2.54 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_locked" "" (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(symbol "OPA1688_SOIC8_1_1"
(polyline
(pts
(xy 0 6.35)
(xy 0 -8.89)
(xy 17.78 0)
(xy 0 10.16)
(xy 0 6.35)
)
(stroke (width 0) (type default))
(fill (type none))
)
(pin output line (at 20.32 0 180) (length 2.54)
(name "OUT_A" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at -2.54 3.81 0) (length 2.54)
(name "-A" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at -2.54 -2.54 0) (length 2.54)
(name "+IN_A" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
)
(symbol "OPA1688_SOIC8_2_1"
(polyline
(pts
(xy 0 6.35)
(xy 0 -8.89)
(xy 17.78 0)
(xy 0 10.16)
(xy 0 6.35)
)
(stroke (width 0) (type default))
(fill (type none))
)
(pin input line (at -2.54 -2.54 0) (length 2.54)
(name "+IN_B" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin input line (at -2.54 3.81 0) (length 2.54)
(name "-B" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin output line (at 20.32 0 180) (length 2.54)
(name "OUT_B" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
)
(symbol "OPA1688_SOIC8_3_1"
(pin power_in line (at 0 -6.35 90) (length 2.54)
(name "V-" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 8.89 270) (length 2.54)
(name "V+" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "global power" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "GND_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 -1.27)
(xy 1.27 -1.27)
(xy 0 -2.54)
(xy -1.27 -1.27)
(xy 0 -1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "GND_1_1"
(pin power_in line (at 0 0 270) (length 0) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 91.44 130.81) (diameter 0) (color 0 0 0 0)
(uuid 2c8f42ca-268e-419b-999e-bbcf9a84eba2)
)
(junction (at 146.05 133.35) (diameter 0) (color 0 0 0 0)
(uuid 315e98af-4b8f-4d79-9a1c-2446ccb1bef0)
)
(junction (at 179.07 133.35) (diameter 0) (color 0 0 0 0)
(uuid 33ac5ea3-462f-4125-9485-a9b3ecfa4109)
)
(junction (at 116.84 130.81) (diameter 0) (color 0 0 0 0)
(uuid 3be1e48b-3ecf-4f52-862f-c0f1ebc21a5d)
)
(junction (at 81.28 50.8) (diameter 0) (color 0 0 0 0)
(uuid 3c788892-086a-4479-ab3f-2fdff35988b2)
)
(junction (at 54.61 85.09) (diameter 0) (color 0 0 0 0)
(uuid 3e9cfc2d-0724-479b-b75a-f319d8bf3d8f)
)
(junction (at 179.07 53.34) (diameter 0) (color 0 0 0 0)
(uuid 4712e4e3-b66f-4d8f-82f1-7c1387239f9f)
)
(junction (at 171.45 133.35) (diameter 0) (color 0 0 0 0)
(uuid 4b66237d-bfe5-47d0-9a5d-33d933e3d58a)
)
(junction (at 115.57 130.81) (diameter 0) (color 0 0 0 0)
(uuid 6aaac5c2-873b-4497-bb8e-e1bd402ddde5)
)
(junction (at 172.72 53.34) (diameter 0) (color 0 0 0 0)
(uuid 922756e5-b818-4bbc-81ad-deaa6991818f)
)
(junction (at 125.73 146.05) (diameter 0) (color 0 0 0 0)
(uuid a94f8794-49a5-420b-b110-a18d76091505)
)
(junction (at 107.95 50.8) (diameter 0) (color 0 0 0 0)
(uuid be323db7-6d4d-44c8-9e11-a0c83782403e)
)
(junction (at 121.92 68.58) (diameter 0) (color 0 0 0 0)
(uuid ca81a458-8132-4ffd-9474-09f1c0de02d6)
)
(junction (at 147.32 53.34) (diameter 0) (color 0 0 0 0)
(uuid cd6c9080-13be-47d1-9e20-c9ca2ba5bdae)
)
(junction (at 105.41 50.8) (diameter 0) (color 0 0 0 0)
(uuid de8874db-722d-4e64-86fa-877f5420d872)
)
(junction (at 54.61 107.95) (diameter 0) (color 0 0 0 0)
(uuid fff54376-65cd-4447-8c37-da09cf02c660)
)
(wire (pts (xy 144.78 133.35) (xy 146.05 133.35))
(stroke (width 0) (type default))
(uuid 05c0d426-128d-4f32-90f0-e1d043864706)
)
(wire (pts (xy 121.92 85.09) (xy 121.92 82.55))
(stroke (width 0) (type default))
(uuid 08272d63-a0a7-483a-a016-b84266945198)
)
(wire (pts (xy 81.28 50.8) (xy 91.44 50.8))
(stroke (width 0) (type default))
(uuid 1105c8c9-7758-4595-9c3b-b3df6d059257)
)
(wire (pts (xy 54.61 107.95) (xy 54.61 104.14))
(stroke (width 0) (type default))
(uuid 11b30c1d-4726-4fde-9ea5-a9f4951f8d4b)
)
(wire (pts (xy 121.92 68.58) (xy 121.92 74.93))
(stroke (width 0) (type default))
(uuid 1403dcd9-b417-4977-b3e2-f4692aba5e92)
)
(wire (pts (xy 116.84 130.81) (xy 128.27 130.81))
(stroke (width 0) (type default))
(uuid 164c8b1b-17a8-4507-bfa7-55d8f2a3aa29)
)
(wire (pts (xy 179.07 129.54) (xy 179.07 133.35))
(stroke (width 0) (type default))
(uuid 180bea2b-df5d-4d47-84d1-ddfae12f69bb)
)
(wire (pts (xy 97.79 35.56) (xy 105.41 35.56))
(stroke (width 0) (type default))
(uuid 19fe4c15-f431-42d6-a805-fdd86345338c)
)
(wire (pts (xy 105.41 46.99) (xy 105.41 50.8))
(stroke (width 0) (type default))
(uuid 1c19023e-7d13-4c03-a498-4b416ded6950)
)
(wire (pts (xy 68.58 100.33) (xy 68.58 107.95))
(stroke (width 0) (type default))
(uuid 20ec67af-f602-4a6b-b022-07f9e3635ef9)
)
(wire (pts (xy 129.54 68.58) (xy 121.92 68.58))
(stroke (width 0) (type default))
(uuid 244b658b-8025-428a-b711-0f5941437405)
)
(wire (pts (xy 91.44 130.81) (xy 100.33 130.81))
(stroke (width 0) (type default))
(uuid 26b45ad4-a1ab-476a-ba01-b41e6b575626)
)
(wire (pts (xy 125.73 162.56) (xy 125.73 160.02))
(stroke (width 0) (type default))
(uuid 2a2b5e05-8d56-4e41-b946-94dfe1e8b35e)
)
(wire (pts (xy 116.84 142.24) (xy 116.84 139.7))
(stroke (width 0) (type default))
(uuid 2bd3f2e7-8595-420d-8e48-6c94afb1e6d6)
)
(wire (pts (xy 66.04 130.81) (xy 91.44 130.81))
(stroke (width 0) (type default))
(uuid 2c7972b4-de19-4758-a37e-529b35285d49)
)
(wire (pts (xy 162.56 133.35) (xy 160.02 133.35))
(stroke (width 0) (type default))
(uuid 2df93148-2a9b-4718-b9d0-6b0afd7331b0)
)
(wire (pts (xy 62.23 50.8) (xy 81.28 50.8))
(stroke (width 0) (type default))
(uuid 2e8c10c5-400d-4ef6-a2cf-59980023f2ef)
)
(wire (pts (xy 143.51 53.34) (xy 147.32 53.34))
(stroke (width 0) (type default))
(uuid 30fb65e2-70cb-4f09-9ba5-27ea9038099b)
)
(wire (pts (xy 125.73 137.16) (xy 128.27 137.16))
(stroke (width 0) (type default))
(uuid 34d8fe05-9e21-436f-bc7a-c287bf58273f)
)
(wire (pts (xy 162.56 53.34) (xy 158.75 53.34))
(stroke (width 0) (type default))
(uuid 350b6df8-d970-445b-9a24-17b2ae28191e)
)
(wire (pts (xy 68.58 107.95) (xy 54.61 107.95))
(stroke (width 0) (type default))
(uuid 3a3531c3-160f-4a6b-b551-f870ebdec49d)
)
(wire (pts (xy 146.05 133.35) (xy 146.05 146.05))
(stroke (width 0) (type default))
(uuid 413eac24-610e-4800-9078-b6e78162b3aa)
)
(wire (pts (xy 133.35 146.05) (xy 125.73 146.05))
(stroke (width 0) (type default))
(uuid 451a5aa9-afe0-4ff4-b30a-93703c1c2f8b)
)
(wire (pts (xy 121.92 57.15) (xy 121.92 68.58))
(stroke (width 0) (type default))
(uuid 4e2ebe48-9fdd-40e9-81b5-24c9f439f77f)
)
(wire (pts (xy 107.95 50.8) (xy 125.73 50.8))
(stroke (width 0) (type default))
(uuid 4efa1403-7580-4fbe-9e50-74bf244fbf3b)
)
(wire (pts (xy 121.92 57.15) (xy 125.73 57.15))
(stroke (width 0) (type default))
(uuid 500f7b06-7b20-470c-846f-b5d17e2b4e56)
)
(wire (pts (xy 107.95 115.57) (xy 115.57 115.57))
(stroke (width 0) (type default))
(uuid 5bcb6700-d019-4ec3-8907-9b5c83324052)
)
(wire (pts (xy 171.45 146.05) (xy 171.45 143.51))
(stroke (width 0) (type default))
(uuid 5c0c80ee-7d0c-49b9-a42a-8b161f71b17f)
)
(wire (pts (xy 107.95 63.5) (xy 107.95 60.96))
(stroke (width 0) (type default))
(uuid 5c1233a4-0e3f-4e73-8423-1b032575d50a)
)
(wire (pts (xy 137.16 68.58) (xy 147.32 68.58))
(stroke (width 0) (type default))
(uuid 5d09cedd-3e1f-4a0d-92e8-389298f7750c)
)
(wire (pts (xy 115.57 115.57) (xy 115.57 119.38))
(stroke (width 0) (type default))
(uuid 5e9c223f-bc22-4031-8d92-440bddb9dd0e)
)
(wire (pts (xy 140.97 146.05) (xy 146.05 146.05))
(stroke (width 0) (type default))
(uuid 606f8abe-4e06-4871-ab52-ffe9a0f9d6db)
)
(wire (pts (xy 171.45 133.35) (xy 179.07 133.35))
(stroke (width 0) (type default))
(uuid 60de59e6-f524-48f3-8e31-a8669fae2441)
)
(wire (pts (xy 171.45 133.35) (xy 171.45 135.89))
(stroke (width 0) (type default))
(uuid 6cc07c96-a603-4ba2-a9ee-a5e057cf5000)
)
(wire (pts (xy 184.15 133.35) (xy 179.07 133.35))
(stroke (width 0) (type default))
(uuid 771873b9-a528-4fa7-a2c3-a0cb9a4eb25c)
)
(wire (pts (xy 184.15 53.34) (xy 179.07 53.34))
(stroke (width 0) (type default))
(uuid 78cece65-d73d-4eb5-93f1-4d4ffd6e87b2)
)
(wire (pts (xy 54.61 85.09) (xy 54.61 88.9))
(stroke (width 0) (type default))
(uuid 79965d95-6e23-454e-86ac-bd54f92f2e65)
)
(wire (pts (xy 146.05 133.35) (xy 152.4 133.35))
(stroke (width 0) (type default))
(uuid 7aacccfe-c4f1-44f7-a8af-3a7e3311f46c)
)
(wire (pts (xy 91.44 113.03) (xy 91.44 130.81))
(stroke (width 0) (type default))
(uuid 7d77713b-fd02-4737-8e80-12618b450eb7)
)
(wire (pts (xy 171.45 133.35) (xy 170.18 133.35))
(stroke (width 0) (type default))
(uuid 7fdd375c-9ad4-4c2f-947a-178c82183582)
)
(wire (pts (xy 179.07 43.18) (xy 179.07 31.75))
(stroke (width 0) (type default))
(uuid 81ab9931-9028-465e-92ef-d5747e0b3c26)
)
(wire (pts (xy 116.84 130.81) (xy 116.84 132.08))
(stroke (width 0) (type default))
(uuid 86adc18f-959e-459a-bc38-55281634f7e4)
)
(wire (pts (xy 179.07 50.8) (xy 179.07 53.34))
(stroke (width 0) (type default))
(uuid 8af4f687-7a7e-41ae-a17c-59d2a15926f5)
)
(wire (pts (xy 179.07 121.92) (xy 179.07 113.03))
(stroke (width 0) (type default))
(uuid a121d095-ec5d-4ee4-97c9-6a36fa9adcb0)
)
(wire (pts (xy 115.57 130.81) (xy 116.84 130.81))
(stroke (width 0) (type default))
(uuid a446316b-e679-4afc-9c8b-cee080e0054e)
)
(wire (pts (xy 68.58 92.71) (xy 68.58 85.09))
(stroke (width 0) (type default))
(uuid a72eb403-54d1-4652-9d46-76d9a3b12c3b)
)
(wire (pts (xy 172.72 53.34) (xy 170.18 53.34))
(stroke (width 0) (type default))
(uuid a9c6d0a4-4d21-48a2-a652-d927c11b19ad)
)
(wire (pts (xy 99.06 50.8) (xy 105.41 50.8))
(stroke (width 0) (type default))
(uuid aac09b7e-35df-4171-be48-3c2f6983fbcd)
)
(wire (pts (xy 107.95 50.8) (xy 107.95 53.34))
(stroke (width 0) (type default))
(uuid b0e2afce-1962-4015-b1a2-673463c34f65)
)
(wire (pts (xy 179.07 31.75) (xy 81.28 31.75))
(stroke (width 0) (type default))
(uuid b2823099-3918-43fc-9698-edb2514aab45)
)
(wire (pts (xy 68.58 85.09) (xy 54.61 85.09))
(stroke (width 0) (type default))
(uuid b3fe7b71-f275-40f9-80f7-ce81a44f68fb)
)
(wire (pts (xy 115.57 127) (xy 115.57 130.81))
(stroke (width 0) (type default))
(uuid b51f114a-71a5-4a62-a337-19de8d73343b)
)
(wire (pts (xy 147.32 68.58) (xy 147.32 53.34))
(stroke (width 0) (type default))
(uuid b62e3500-be8d-4fe9-a69d-5c1fed376415)
)
(wire (pts (xy 54.61 82.55) (xy 54.61 85.09))
(stroke (width 0) (type default))
(uuid b8a64f23-937b-4328-9ec7-0ede6807f5a0)
)
(wire (pts (xy 105.41 35.56) (xy 105.41 39.37))
(stroke (width 0) (type default))
(uuid bb410a83-dba7-4035-b4a1-8c2eab964b5c)
)
(wire (pts (xy 107.95 130.81) (xy 115.57 130.81))
(stroke (width 0) (type default))
(uuid bbde4b32-81a8-4902-a63b-c471eee945ff)
)
(wire (pts (xy 172.72 64.77) (xy 172.72 62.23))
(stroke (width 0) (type default))
(uuid c43eb8ca-5dcd-495e-818f-96b34cc81c0b)
)
(wire (pts (xy 172.72 53.34) (xy 172.72 54.61))
(stroke (width 0) (type default))
(uuid cf7c4ce3-bfb7-426a-be88-214dec87f0a5)
)
(wire (pts (xy 172.72 53.34) (xy 179.07 53.34))
(stroke (width 0) (type default))
(uuid d1d2b238-d8b0-4fe0-b1a7-3f264ed0583a)
)
(wire (pts (xy 125.73 152.4) (xy 125.73 146.05))
(stroke (width 0) (type default))
(uuid d91298e5-a5cb-4c52-8b33-248016406cf4)
)
(wire (pts (xy 147.32 53.34) (xy 151.13 53.34))
(stroke (width 0) (type default))
(uuid dd2ab875-5a2e-424c-8dd3-a99250c4ea7f)
)
(wire (pts (xy 81.28 31.75) (xy 81.28 50.8))
(stroke (width 0) (type default))
(uuid e39d7ea4-9a6a-451b-805c-99f1847c767a)
)
(wire (pts (xy 125.73 137.16) (xy 125.73 146.05))
(stroke (width 0) (type default))
(uuid e9185e32-00c5-4f84-b536-b184420fd443)
)
(wire (pts (xy 54.61 111.76) (xy 54.61 107.95))
(stroke (width 0) (type default))
(uuid f549a8d3-1e0e-4e0c-9c97-6e3e2c0e7c8d)
)
(wire (pts (xy 179.07 113.03) (xy 91.44 113.03))
(stroke (width 0) (type default))
(uuid f679bf87-bc30-4788-a4ac-185b1b49d977)
)
(wire (pts (xy 105.41 50.8) (xy 107.95 50.8))
(stroke (width 0) (type default))
(uuid f955c353-7b33-4be6-ba9c-87ed04d3f30d)
)
(text "Audio Out = 1V peak to peak\nGain x1 = 1V peak to peak"
(at 99.06 29.21 0)
(effects (font (size 2.27 2.27)) (justify left bottom))
(uuid 01de20f5-25d1-4dad-a468-0af36a99b115)
)
(text "Option BW\nlimiter" (at 101.6 82.55 0)
(effects (font (size 2.27 2.27)) (justify left bottom))
(uuid 4decc9a3-25b1-4515-9fe4-d9dbc249c667)
)
(text "Audio Out Heirarchical sheet" (at 105.41 16.51 0)
(effects (font (size 2.27 2.27)) (justify left bottom))
(uuid 648adace-03f3-4b38-bf28-7ef552200d72)
)
(text "Option BW\nlimiter" (at 105.41 160.02 0)
(effects (font (size 2.27 2.27)) (justify left bottom))
(uuid e10e2a01-2de3-4922-b24d-46b21f297c77)
)
(label "L_in-" (at 125.73 137.16 180) (fields_autoplaced)
(effects (font (size 0.75 0.75)) (justify right bottom))
(uuid 11bb2385-d6ab-40cb-b52f-f23f627db510)
)
(label "R_in+" (at 118.11 50.8 0) (fields_autoplaced)
(effects (font (size 0.75 0.75)) (justify left bottom))
(uuid 3ce4c8c9-1729-418e-a011-316bac3f6e34)
)
(label "R_in-" (at 121.92 57.15 180) (fields_autoplaced)
(effects (font (size 0.75 0.75)) (justify right bottom))
(uuid 7138463c-edf8-4519-8282-be9353adba3d)
)
(label "L_in+" (at 124.46 130.81 180) (fields_autoplaced)
(effects (font (size 0.75 0.75)) (justify right bottom))
(uuid a76e40e9-f6cc-4ea7-90e2-2cbc45b99688)
)
(label "L_out" (at 151.13 133.35 180) (fields_autoplaced)
(effects (font (size 0.75 0.75)) (justify right bottom))
(uuid b25ed4b4-dea3-416d-a723-258db5945bfb)
)
(label "R_out" (at 143.51 53.34 0) (fields_autoplaced)
(effects (font (size 0.75 0.75)) (justify left bottom))
(uuid f0719ea0-d4b3-4316-b9b3-a38de066fd0b)
)
(hierarchical_label "AUDIO_OUT_L" (shape input) (at 66.04 130.81 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 2238be32-1393-409c-aeb0-2716d6978411)
)
(hierarchical_label "VCC" (shape input) (at 54.61 82.55 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 9b0e6af1-6400-4da7-95fc-b3310ef0f029)
)
(hierarchical_label "AUDIO_OUT_L_EXT" (shape output) (at 184.15 133.35 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 9cd12c66-b527-4733-9a69-1ea2e080e2b1)
)
(hierarchical_label "AUDIO_OUT_R_EXT" (shape output) (at 184.15 53.34 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid c87021d2-8ec6-4992-bbca-949d56b1ff38)
)
(hierarchical_label "VCC" (shape input) (at 97.79 35.56 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid c93014ef-5839-4853-b180-ad5bd65079e3)
)
(hierarchical_label "AUDIO_OUT_R" (shape input) (at 62.23 50.8 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid cce722ed-f39c-48a7-a9d1-36f6b95a6ae6)
)
(hierarchical_label "VCC" (shape input) (at 107.95 115.57 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid e1d35243-64d0-44a1-97e8-c0b8a97053ca)
)
(symbol (lib_id "Device:R_US") (at 107.95 57.15 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 00878f69-dd9d-4376-8c5e-0c2519e041da)
(property "Reference" "R3" (at 110.49 55.88 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "1M" (at 110.49 58.42 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 108.966 57.404 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 107.95 57.15 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid cd373436-f1cb-4b11-89c7-7177be2d7344))
(pin "2" (uuid 98646cc2-f47b-479f-bd6a-6168796b058c))
(instances
(project "DaisySeedBreakout"
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e"
(reference "R3") (unit 1)
)
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e/d5f93f74-350a-43ef-bdfb-299723239788"
(reference "R67") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 125.73 162.56 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 02de49d2-143c-4128-9e4d-f51d6c8c12e4)
(property "Reference" "#PWR05" (at 125.73 168.91 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 128.27 161.925 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Footprint" "" (at 125.73 162.56 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 125.73 162.56 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 20d2a312-7cfd-49e5-862e-9fdb97151b5c))
(instances
(project "DaisySeedBreakout"
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e"
(reference "#PWR05") (unit 1)
)
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e/d5f93f74-350a-43ef-bdfb-299723239788"
(reference "#PWR09") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 171.45 146.05 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 09a20f05-9f41-4c23-b508-89140ac96662)
(property "Reference" "#PWR06" (at 171.45 152.4 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 171.45 151.13 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Footprint" "" (at 171.45 146.05 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 171.45 146.05 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid e1fe6177-309a-4966-b5a2-0223f61d1197))
(instances
(project "DaisySeedBreakout"
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e"
(reference "#PWR06") (unit 1)
)
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e/d5f93f74-350a-43ef-bdfb-299723239788"
(reference "#PWR011") (unit 1)
)
)
)
)
(symbol (lib_name "OPA1688_SOIC8_2") (lib_id "Ultralibrarian_modified_symbols:OPA1688_SOIC8") (at 128.27 53.34 0) (mirror x) (unit 2)
(in_bom yes) (on_board yes) (dnp no)
(uuid 10455267-3275-4e69-b5d4-8bd0ec31c178)
(property "Reference" "U9" (at 132.715 54.61 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "~" (at 132.08 44.45 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Ultralibrarian:D8_TEX" (at 130.81 53.34 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 130.81 53.34 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "MnfNumber" "OPA1688IDR" (at 128.27 53.34 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid b278f209-190d-4310-8a2e-0cc8e4a28b2d))
(pin "2" (uuid c7f8f5d6-b5e1-4d15-984a-e9ea3015916f))
(pin "3" (uuid f6dc6efc-8ccc-4972-b306-1a2840bf0299))
(pin "5" (uuid be544ca2-122c-482f-91f1-74f7449025f8))
(pin "6" (uuid 84801494-a6a4-457c-8996-a0d3400d2b91))
(pin "7" (uuid 0583bd20-c4d0-433f-b70f-d62fdba75206))
(pin "4" (uuid 9c4d8307-52c2-46bd-b144-d81261536175))
(pin "8" (uuid 8283268f-1b95-463f-a9ad-d165e7b94307))
(instances
(project "DaisySeedBreakout"
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e/a0f8a1fd-6189-4b02-8cf7-e8d7538f4e50"
(reference "U9") (unit 2)
)
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e/d5f93f74-350a-43ef-bdfb-299723239788"
(reference "U3") (unit 2)
)
)
)
)
(symbol (lib_id "power:GND") (at 172.72 64.77 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 2d3eaee8-ae90-420b-a648-0ce1a7a6feff)
(property "Reference" "#PWR05" (at 172.72 71.12 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 175.26 64.135 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Footprint" "" (at 172.72 64.77 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 172.72 64.77 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 192515b5-c354-44c2-81f3-08d26bbca502))
(instances
(project "DaisySeedBreakout"
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e"
(reference "#PWR05") (unit 1)
)
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e/d5f93f74-350a-43ef-bdfb-299723239788"
(reference "#PWR012") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R_US") (at 137.16 146.05 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 3be02bc2-7755-40c4-a876-b1e0bf54b05d)
(property "Reference" "R3" (at 132.08 143.51 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "0" (at 137.16 143.51 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 137.414 145.034 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 137.16 146.05 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid b95d8d19-7287-47ab-92fe-5dedf53e8671))
(pin "2" (uuid 8fea0fee-53b0-4fd8-99bf-60214aa375f0))
(instances
(project "DaisySeedBreakout"
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e"
(reference "R3") (unit 1)
)
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e/d5f93f74-350a-43ef-bdfb-299723239788"
(reference "R8") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 121.92 85.09 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 3de1ffe0-2f8e-483f-a124-aa6b6e29d022)
(property "Reference" "#PWR05" (at 121.92 91.44 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 124.46 84.455 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Footprint" "" (at 121.92 85.09 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 121.92 85.09 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 89cab9f6-155c-468b-b331-a0f9985ca4d6))
(instances
(project "DaisySeedBreakout"
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e"