-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathAudioBuffers.kicad_sch
2489 lines (2431 loc) · 87.3 KB
/
AudioBuffers.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 1c350efc-6caf-44bd-8d1b-9aab61883c40)
(paper "A4")
(lib_symbols
(symbol "Amplifier_Operational:TL074" (pin_names (offset 0.127)) (in_bom yes) (on_board yes)
(property "Reference" "U" (at 0 5.08 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "TL074" (at 0 -5.08 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at -1.27 2.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://www.ti.com/lit/ds/symlink/tl071.pdf" (at 1.27 5.08 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_locked" "" (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(property "ki_keywords" "quad opamp" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Quad Low-Noise JFET-Input Operational Amplifiers, DIP-14/SOIC-14" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "SOIC*3.9x8.7mm*P1.27mm* DIP*W7.62mm* TSSOP*4.4x5mm*P0.65mm* SSOP*5.3x6.2mm*P0.65mm* MSOP*3x3mm*P0.5mm*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "TL074_1_1"
(polyline
(pts
(xy -5.08 5.08)
(xy 5.08 0)
(xy -5.08 -5.08)
(xy -5.08 5.08)
)
(stroke (width 0.254) (type default))
(fill (type background))
)
(pin output line (at 7.62 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 -7.62 -2.54 0) (length 2.54)
(name "-" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.62 2.54 0) (length 2.54)
(name "+" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
)
(symbol "TL074_2_1"
(polyline
(pts
(xy -5.08 5.08)
(xy 5.08 0)
(xy -5.08 -5.08)
(xy -5.08 5.08)
)
(stroke (width 0.254) (type default))
(fill (type background))
)
(pin input line (at -7.62 2.54 0) (length 2.54)
(name "+" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.62 -2.54 0) (length 2.54)
(name "-" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin output line (at 7.62 0 180) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
)
(symbol "TL074_3_1"
(polyline
(pts
(xy -5.08 5.08)
(xy 5.08 0)
(xy -5.08 -5.08)
(xy -5.08 5.08)
)
(stroke (width 0.254) (type default))
(fill (type background))
)
(pin input line (at -7.62 2.54 0) (length 2.54)
(name "+" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin output line (at 7.62 0 180) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.62 -2.54 0) (length 2.54)
(name "-" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
(symbol "TL074_4_1"
(polyline
(pts
(xy -5.08 5.08)
(xy 5.08 0)
(xy -5.08 -5.08)
(xy -5.08 5.08)
)
(stroke (width 0.254) (type default))
(fill (type background))
)
(pin input line (at -7.62 2.54 0) (length 2.54)
(name "+" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.62 -2.54 0) (length 2.54)
(name "-" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin output line (at 7.62 0 180) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
)
(symbol "TL074_5_1"
(pin power_in line (at -2.54 -7.62 90) (length 3.81)
(name "V-" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -2.54 7.62 270) (length 3.81)
(name "V+" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Connector_Generic:Conn_01x01" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x01" (at 0 -2.54 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" "connector" (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/)" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_1x??_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_01x01_1_1"
(rectangle (start -1.27 0.127) (end 0 -0.127)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 1.27) (end 1.27 -1.27)
(stroke (width 0.254) (type default))
(fill (type background))
)
(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 "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" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "R" (at 2.032 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R" (at 0 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at -1.778 0 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" (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_0_1"
(rectangle (start -1.016 -2.54) (end 1.016 2.54)
(stroke (width 0.254) (type default))
(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 "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 163.83 60.96) (diameter 0) (color 0 0 0 0)
(uuid 05884168-c22f-4833-9139-886d72938016)
)
(junction (at 90.17 118.11) (diameter 0) (color 0 0 0 0)
(uuid 1fe70502-5b13-4a56-909c-cbbcb1736cdc)
)
(junction (at 93.98 44.45) (diameter 0) (color 0 0 0 0)
(uuid 2c0c8241-a49c-4fb9-9069-e7c532d6bdcf)
)
(junction (at 101.6 118.11) (diameter 0) (color 0 0 0 0)
(uuid 36e31b40-2576-42f0-a37e-29a9c535e9be)
)
(junction (at 179.07 133.35) (diameter 0) (color 0 0 0 0)
(uuid 39d29da4-c72b-4f93-add9-0c6c30fe0d30)
)
(junction (at 237.49 135.89) (diameter 0) (color 0 0 0 0)
(uuid 64dc8a91-c307-4969-9927-f6129c578ae3)
)
(junction (at 200.66 63.5) (diameter 0) (color 0 0 0 0)
(uuid 91ff2d80-7ef2-40f9-8532-5c39ce9fc006)
)
(junction (at 222.25 63.5) (diameter 0) (color 0 0 0 0)
(uuid 92aecd16-9043-4ed8-8189-0de5f6033984)
)
(junction (at 215.9 135.89) (diameter 0) (color 0 0 0 0)
(uuid 9e80454a-bbd4-4955-80e2-f66452216992)
)
(junction (at 121.92 46.99) (diameter 0) (color 0 0 0 0)
(uuid a0551e3c-b4eb-48fa-bbd8-a70cf8a6a4ba)
)
(junction (at 82.55 44.45) (diameter 0) (color 0 0 0 0)
(uuid a2626e46-bd69-41ba-8199-558d4e3abc8a)
)
(junction (at 54.61 44.45) (diameter 0) (color 0 0 0 0)
(uuid be48054e-7dae-44bf-acf1-2d7a343795e2)
)
(junction (at 62.23 118.11) (diameter 0) (color 0 0 0 0)
(uuid c05981f2-7ec8-4379-92b2-232267ab2b1c)
)
(junction (at 179.07 60.96) (diameter 0) (color 0 0 0 0)
(uuid cd6efdc5-ba19-4b5e-8c31-434c01d2f1a2)
)
(junction (at 129.54 120.65) (diameter 0) (color 0 0 0 0)
(uuid d3a1d391-fb2f-4251-9ebe-6930eb858e49)
)
(junction (at 194.31 133.35) (diameter 0) (color 0 0 0 0)
(uuid f313624e-3310-43d9-beb5-6498e6cd7d56)
)
(wire (pts (xy 179.07 54.61) (xy 179.07 60.96))
(stroke (width 0) (type default))
(uuid 00b09028-0f03-4f02-96b0-4dadc3e0c845)
)
(wire (pts (xy 90.17 105.41) (xy 93.98 105.41))
(stroke (width 0) (type default))
(uuid 015b56ff-0c68-4937-8bf4-76030eef4b7e)
)
(wire (pts (xy 77.47 44.45) (xy 82.55 44.45))
(stroke (width 0) (type default))
(uuid 05a7b175-ad85-482b-b574-5ff7eb0dbb71)
)
(wire (pts (xy 153.67 60.96) (xy 154.94 60.96))
(stroke (width 0) (type default))
(uuid 0602dbed-cf70-4f21-be96-3932ce45b2b9)
)
(wire (pts (xy 232.41 135.89) (xy 237.49 135.89))
(stroke (width 0) (type default))
(uuid 10854538-a94d-482f-b142-c1e45ee3020e)
)
(wire (pts (xy 179.07 45.72) (xy 179.07 46.99))
(stroke (width 0) (type default))
(uuid 184f0a1e-6b53-45a4-a3c7-374b2b7977c7)
)
(wire (pts (xy 163.83 68.58) (xy 163.83 71.12))
(stroke (width 0) (type default))
(uuid 1e0bed72-f8ae-4a98-b03c-3548b887834f)
)
(wire (pts (xy 194.31 144.78) (xy 194.31 146.05))
(stroke (width 0) (type default))
(uuid 22c666d2-e3b6-48a5-8c2d-d3df773624cf)
)
(wire (pts (xy 185.42 66.04) (xy 185.42 73.66))
(stroke (width 0) (type default))
(uuid 25552aca-1a80-4550-bba3-b8024f9f2351)
)
(wire (pts (xy 105.41 54.61) (xy 121.92 54.61))
(stroke (width 0) (type default))
(uuid 261779b4-0f66-4f10-8ad1-5dc58131c141)
)
(wire (pts (xy 121.92 54.61) (xy 121.92 46.99))
(stroke (width 0) (type default))
(uuid 261c1496-22ea-4fb1-8e05-01aaf79ed6b8)
)
(wire (pts (xy 168.91 133.35) (xy 170.18 133.35))
(stroke (width 0) (type default))
(uuid 2f1cc8c0-af6b-4026-b23b-0c5e0859ed5f)
)
(wire (pts (xy 93.98 44.45) (xy 105.41 44.45))
(stroke (width 0) (type default))
(uuid 3230d5f0-36c7-499f-8796-b34bd5afed49)
)
(wire (pts (xy 217.17 63.5) (xy 222.25 63.5))
(stroke (width 0) (type default))
(uuid 3dfed9d3-42de-4d80-a339-176d7384689e)
)
(wire (pts (xy 101.6 125.73) (xy 101.6 127))
(stroke (width 0) (type default))
(uuid 43b1de38-2515-467d-928b-ec0125f25044)
)
(wire (pts (xy 82.55 31.75) (xy 86.36 31.75))
(stroke (width 0) (type default))
(uuid 458b79dd-4897-4b51-a4a2-9690aaa5dd49)
)
(wire (pts (xy 237.49 135.89) (xy 241.3 135.89))
(stroke (width 0) (type default))
(uuid 464df0e8-7275-46fc-aad6-f6fc37c4f863)
)
(wire (pts (xy 128.27 120.65) (xy 129.54 120.65))
(stroke (width 0) (type default))
(uuid 4a08d429-ed18-40d1-b0d3-c17922acaf5d)
)
(wire (pts (xy 129.54 120.65) (xy 134.62 120.65))
(stroke (width 0) (type default))
(uuid 4a2423e4-7e04-4608-a30f-eb4f2972aac1)
)
(wire (pts (xy 191.77 133.35) (xy 194.31 133.35))
(stroke (width 0) (type default))
(uuid 4af9ff7f-73e3-46ea-b5fa-b6742ff3db86)
)
(wire (pts (xy 90.17 118.11) (xy 101.6 118.11))
(stroke (width 0) (type default))
(uuid 4be88652-2637-4a7d-8010-9c0037f9a7de)
)
(wire (pts (xy 215.9 135.89) (xy 215.9 146.05))
(stroke (width 0) (type default))
(uuid 4cc7f466-9791-49fe-b3e3-3ac9de0e3d89)
)
(wire (pts (xy 129.54 128.27) (xy 129.54 120.65))
(stroke (width 0) (type default))
(uuid 4d8a981c-cb78-4303-a136-b7a904761eac)
)
(wire (pts (xy 200.66 138.43) (xy 200.66 146.05))
(stroke (width 0) (type default))
(uuid 51ae2147-0204-410c-b4e6-cbea6e88b74a)
)
(wire (pts (xy 179.07 133.35) (xy 184.15 133.35))
(stroke (width 0) (type default))
(uuid 51cbc9ad-dd90-4a9c-9ee6-6c614d493542)
)
(wire (pts (xy 179.07 140.97) (xy 179.07 143.51))
(stroke (width 0) (type default))
(uuid 58c5bfda-4182-4a68-a320-7a23f6b7df7c)
)
(wire (pts (xy 90.17 105.41) (xy 90.17 107.95))
(stroke (width 0) (type default))
(uuid 59899b50-3907-4e1b-8561-76311de8dde4)
)
(wire (pts (xy 101.6 118.11) (xy 113.03 118.11))
(stroke (width 0) (type default))
(uuid 59a5323c-b231-4531-81ac-54a2b7ec1c15)
)
(wire (pts (xy 82.55 40.64) (xy 82.55 44.45))
(stroke (width 0) (type default))
(uuid 60242d6e-2a4c-4763-81e7-d92f5c7c35e4)
)
(wire (pts (xy 222.25 63.5) (xy 226.06 63.5))
(stroke (width 0) (type default))
(uuid 653d03d9-d0e2-4454-b9a5-a8e32f658a54)
)
(wire (pts (xy 179.07 60.96) (xy 179.07 64.77))
(stroke (width 0) (type default))
(uuid 6986ab01-7732-47d2-a4fa-7dbf7854928c)
)
(wire (pts (xy 49.53 44.45) (xy 54.61 44.45))
(stroke (width 0) (type default))
(uuid 6f229b99-0ee8-4e85-af0d-1e0f077c7751)
)
(wire (pts (xy 177.8 133.35) (xy 179.07 133.35))
(stroke (width 0) (type default))
(uuid 783cbcca-63d1-423b-8fcc-3ef23a58b828)
)
(wire (pts (xy 90.17 127) (xy 90.17 128.27))
(stroke (width 0) (type default))
(uuid 793f51bf-c218-48f5-aff2-e3ce88651bb7)
)
(wire (pts (xy 90.17 115.57) (xy 90.17 118.11))
(stroke (width 0) (type default))
(uuid 7fa47f59-8469-4b68-a914-104ee53577ef)
)
(wire (pts (xy 200.66 63.5) (xy 200.66 73.66))
(stroke (width 0) (type default))
(uuid 8108a72f-4780-4b62-ae14-8b359c3a7248)
)
(wire (pts (xy 185.42 73.66) (xy 200.66 73.66))
(stroke (width 0) (type default))
(uuid 8afe71d8-f293-4568-815b-0aef50f9ab28)
)
(wire (pts (xy 113.03 123.19) (xy 113.03 128.27))
(stroke (width 0) (type default))
(uuid 8e82aafe-9c21-43f6-ae78-857da6e0918d)
)
(wire (pts (xy 194.31 133.35) (xy 194.31 137.16))
(stroke (width 0) (type default))
(uuid 8f887655-4074-48e8-a190-0bae15e9ce49)
)
(wire (pts (xy 82.55 53.34) (xy 82.55 54.61))
(stroke (width 0) (type default))
(uuid 955776e6-e5a0-4ef9-a7ac-774a28fcd03a)
)
(wire (pts (xy 208.28 63.5) (xy 209.55 63.5))
(stroke (width 0) (type default))
(uuid 95e67ca7-6e95-461b-a43b-083f6dccb101)
)
(wire (pts (xy 179.07 60.96) (xy 185.42 60.96))
(stroke (width 0) (type default))
(uuid a1af5e7c-4a3d-4323-8710-0c0eff7d707d)
)
(wire (pts (xy 194.31 118.11) (xy 194.31 119.38))
(stroke (width 0) (type default))
(uuid a6c4017d-bce7-45a9-8830-8c1613e41cd5)
)
(wire (pts (xy 85.09 118.11) (xy 90.17 118.11))
(stroke (width 0) (type default))
(uuid aa930c2a-708f-4f52-80c6-e3f18ca5df09)
)
(wire (pts (xy 82.55 44.45) (xy 82.55 45.72))
(stroke (width 0) (type default))
(uuid aca0d0fe-4cb8-4593-82f4-fed5b6eecc9b)
)
(wire (pts (xy 57.15 118.11) (xy 62.23 118.11))
(stroke (width 0) (type default))
(uuid ae39e614-d51a-45dc-8a0a-05bd41ead3df)
)
(wire (pts (xy 74.93 118.11) (xy 77.47 118.11))
(stroke (width 0) (type default))
(uuid b3f81b28-bd8f-4a0b-be33-321c8fc8f175)
)
(wire (pts (xy 105.41 49.53) (xy 105.41 54.61))
(stroke (width 0) (type default))
(uuid b4827dab-9ed6-48b9-932f-5b6dacbd6be5)
)
(wire (pts (xy 162.56 60.96) (xy 163.83 60.96))
(stroke (width 0) (type default))
(uuid b9be7dd5-001a-422f-8359-4d8d767118e3)
)
(wire (pts (xy 121.92 46.99) (xy 127 46.99))
(stroke (width 0) (type default))
(uuid be1c1ace-23e5-44bd-81a8-c0b570e13c8d)
)
(wire (pts (xy 90.17 118.11) (xy 90.17 119.38))
(stroke (width 0) (type default))
(uuid bf1990c2-8c44-44c8-98fb-beb749a847bb)
)
(wire (pts (xy 67.31 44.45) (xy 69.85 44.45))
(stroke (width 0) (type default))
(uuid c15ce204-a506-42bf-a28a-d00f97559940)
)
(wire (pts (xy 163.83 60.96) (xy 168.91 60.96))
(stroke (width 0) (type default))
(uuid c729e16e-935a-47aa-bc73-4017babebcad)
)
(wire (pts (xy 179.07 72.39) (xy 179.07 73.66))
(stroke (width 0) (type default))
(uuid cbf1d10b-4420-4cd0-b0d0-2ece6b7a3437)
)
(wire (pts (xy 200.66 146.05) (xy 215.9 146.05))
(stroke (width 0) (type default))
(uuid cdae843f-218f-4379-82b7-9e8e15805156)
)
(wire (pts (xy 113.03 128.27) (xy 129.54 128.27))
(stroke (width 0) (type default))
(uuid cfddc8fe-85c4-41cf-85b1-67de88c26e37)
)
(wire (pts (xy 120.65 46.99) (xy 121.92 46.99))
(stroke (width 0) (type default))
(uuid dd08ff99-9fbf-4ec9-bbb0-52ce9a4fc1d6)
)
(wire (pts (xy 82.55 31.75) (xy 82.55 33.02))
(stroke (width 0) (type default))
(uuid e825ccdf-805f-4427-ac02-376085cb48b0)
)
(wire (pts (xy 194.31 127) (xy 194.31 133.35))
(stroke (width 0) (type default))
(uuid e9f3e573-b813-4a01-b814-2bde08d1e857)
)
(wire (pts (xy 176.53 60.96) (xy 179.07 60.96))
(stroke (width 0) (type default))
(uuid eaa944bf-ba4f-48ea-91b1-7ce30a703e27)
)
(wire (pts (xy 93.98 52.07) (xy 93.98 53.34))
(stroke (width 0) (type default))
(uuid eb325281-92db-42ce-aa73-0f1d1a8ab152)
)
(wire (pts (xy 179.07 45.72) (xy 182.88 45.72))
(stroke (width 0) (type default))
(uuid ecfd02dc-1990-46bb-b62a-64ed7da35347)
)
(wire (pts (xy 194.31 118.11) (xy 198.12 118.11))
(stroke (width 0) (type default))
(uuid edca56e4-51e1-4703-ae32-0f821d8f76db)
)
(wire (pts (xy 82.55 44.45) (xy 93.98 44.45))
(stroke (width 0) (type default))
(uuid f10825c7-e640-42c4-85da-07bab137818a)
)
(wire (pts (xy 194.31 133.35) (xy 200.66 133.35))
(stroke (width 0) (type default))
(uuid f31ff919-98a3-4360-a4f2-882df0f5082e)
)
(wire (pts (xy 223.52 135.89) (xy 224.79 135.89))
(stroke (width 0) (type default))
(uuid f55ed18f-28ed-4dcd-b57d-d787d143ec6a)
)
(wire (pts (xy 62.23 118.11) (xy 67.31 118.11))
(stroke (width 0) (type default))
(uuid f723dcf1-59b2-4df9-9fbd-c54b863b357d)
)
(wire (pts (xy 54.61 44.45) (xy 59.69 44.45))
(stroke (width 0) (type default))
(uuid fffbeabc-7aed-4483-aa2b-f4faef698734)
)
(global_label "AUDIO_IN_BUFFER_LEFT" (shape output) (at 127 46.99 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 058e8e4d-d86e-490f-93f6-4c7df783579e)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 151.3055 46.9106 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "5V" (shape output) (at 198.12 118.11 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 1d61242d-79a5-40fa-9e3b-e68ab513fcb9)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 203.4033 118.11 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "5V" (shape output) (at 86.36 31.75 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 1f008eb8-76eb-4796-a3cc-3aefc210d500)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 91.6433 31.75 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "5V" (shape output) (at 93.98 105.41 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 246bffb3-ea3c-40a6-a9bc-80e032de9136)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 99.2633 105.41 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "AUDIO_IN_BUFFER_RIGHT" (shape output) (at 134.62 120.65 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 4a139174-c453-4cc6-a13c-cfbf8ac2ae8e)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 160.7073 120.65 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "AUDIO_OUT_BUFFER_RIGHT" (shape output) (at 168.91 133.35 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 5036f388-df41-4038-a26d-57a3f246b313)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 141.1294 133.35 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "5V" (shape output) (at 182.88 45.72 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid e60af50e-c5bf-44ef-bb4b-0aa3d902c836)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 188.1633 45.72 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "AUDIO_OUT_BUFFER_LEFT" (shape output) (at 153.67 60.96 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid fd26da0f-a0c6-4a1f-8656-e353e09d43e3)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 127.099 60.96 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(symbol (lib_id "power:GND") (at 44.45 52.07 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 1e6e935d-b968-423d-9f30-d0ba3ab62d0e)
(property "Reference" "#PWR034" (at 44.45 58.42 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 44.45 57.15 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 44.45 52.07 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 44.45 52.07 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid b841637b-61f0-418e-b376-fb2736b09c5f))
(instances
(project "DaisySeedPedal1590b"
(path "/1d54e6f4-7c7a-4f03-b2db-a136bdff5b99"
(reference "#PWR034") (unit 1)
)
(path "/1d54e6f4-7c7a-4f03-b2db-a136bdff5b99/807948aa-ae34-47ab-a0ef-520926664b1c"
(reference "#PWR020") (unit 1)
)
)
(project "LPB1_Boost"
(path "/754ebfb0-062d-490f-b1bb-1517dd844459"
(reference "#PWR05") (unit 1)
)
)
(project "Controls"
(path "/cee6a0bf-9798-403f-9811-c2787b00e937"
(reference "#PWR034") (unit 1)
)
)
(project "funbox_v3"
(path "/f9870029-b811-40c9-befb-7f2ac1909314"
(reference "#PWR011") (unit 1)
)
(path "/f9870029-b811-40c9-befb-7f2ac1909314/e25d6226-0d20-40ee-9ab0-ac4dc5e34e88"
(reference "#PWR05") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 163.83 64.77 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 22fa2d7a-4a0d-49b3-b165-82f954667922)
(property "Reference" "C9" (at 167.64 63.5 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "2.2nF" (at 167.64 66.04 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_THT:C_Rect_L7.0mm_W2.5mm_P5.00mm" (at 164.7952 68.58 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 163.83 64.77 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid d101a745-4015-479f-a6cc-856d846103c7))
(pin "2" (uuid 2cf415c1-52a3-4cd4-ab81-05aa4d0de81b))
(instances
(project "DaisySeedPedal1590b"
(path "/1d54e6f4-7c7a-4f03-b2db-a136bdff5b99/14233757-3729-4fb7-b53b-1203330efce4"
(reference "C9") (unit 1)
)
)
(project "funbox_v3"
(path "/f9870029-b811-40c9-befb-7f2ac1909314"
(reference "C12") (unit 1)
)
(path "/f9870029-b811-40c9-befb-7f2ac1909314/e25d6226-0d20-40ee-9ab0-ac4dc5e34e88"
(reference "C4") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 222.25 71.12 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 2477ac9a-6339-4860-8fc1-dc4210d22e28)
(property "Reference" "#PWR09" (at 222.25 77.47 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 222.25 76.2 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 222.25 71.12 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 222.25 71.12 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid b881a6a4-1038-4cee-90b0-12c3a91abb4e))
(instances
(project "DaisySeedPedal1590b"
(path "/1d54e6f4-7c7a-4f03-b2db-a136bdff5b99/14233757-3729-4fb7-b53b-1203330efce4"
(reference "#PWR09") (unit 1)
)
)
(project "funbox_v3"
(path "/f9870029-b811-40c9-befb-7f2ac1909314"
(reference "#PWR010") (unit 1)
)
(path "/f9870029-b811-40c9-befb-7f2ac1909314/e25d6226-0d20-40ee-9ab0-ac4dc5e34e88"
(reference "#PWR031") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 63.5 44.45 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 2b3b3386-90f0-4004-82ac-fe439fe24b1a)
(property "Reference" "C9" (at 63.5 36.83 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "1UF" (at 63.5 39.37 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Capacitor_THT:C_Rect_L7.0mm_W6.0mm_P5.00mm" (at 67.31 43.4848 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 63.5 44.45 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid ff7665d5-5339-4f93-9054-63aabaf8c941))
(pin "2" (uuid ccdde685-b4da-4e8b-8c96-832ba3db8e9c))
(instances
(project "DaisySeedPedal1590b"
(path "/1d54e6f4-7c7a-4f03-b2db-a136bdff5b99/14233757-3729-4fb7-b53b-1203330efce4"
(reference "C9") (unit 1)
)
)
(project "funbox_v3"
(path "/f9870029-b811-40c9-befb-7f2ac1909314"
(reference "C1") (unit 1)
)
(path "/f9870029-b811-40c9-befb-7f2ac1909314/e25d6226-0d20-40ee-9ab0-ac4dc5e34e88"
(reference "C11") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 194.31 123.19 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 2f7b1124-6c21-48d8-8140-23fdd95700c8)
(property "Reference" "R1" (at 196.85 121.9199 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "1M" (at 196.85 124.4599 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal" (at 192.532 123.19 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 194.31 123.19 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 26650821-4044-4cbf-968d-d047e6e98967))
(pin "2" (uuid 4ea7d7df-c265-402d-9ff7-ce41a49c6daf))
(instances
(project "DaisySeedPedal1590b"
(path "/1d54e6f4-7c7a-4f03-b2db-a136bdff5b99/14233757-3729-4fb7-b53b-1203330efce4"
(reference "R1") (unit 1)
)
)
(project "funbox_v3"
(path "/f9870029-b811-40c9-befb-7f2ac1909314"
(reference "R13") (unit 1)
)
(path "/f9870029-b811-40c9-befb-7f2ac1909314/e25d6226-0d20-40ee-9ab0-ac4dc5e34e88"
(reference "R5") (unit 1)
)
)
)
)
(symbol (lib_id "Amplifier_Operational:TL074") (at 113.03 46.99 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 31332846-6566-48f4-83d4-0d05d9828908)
(property "Reference" "U1" (at 113.03 36.83 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "TL074" (at 113.03 39.37 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Package_DIP:DIP-14_W7.62mm" (at 111.76 44.45 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://www.ti.com/lit/ds/symlink/tl071.pdf" (at 114.3 41.91 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 5c48b6d5-669f-4246-a8dd-04a79fcce5b6))
(pin "2" (uuid 089acb8c-a515-4aa0-9e1e-399201f60bc0))
(pin "3" (uuid 59ef16fd-3a06-4bf7-8d20-32bf4ebb94b8))
(pin "5" (uuid 01922049-bdeb-4eef-8174-70baa1bc0091))
(pin "6" (uuid 3f63b23b-6446-4c7c-a810-97b02b691dd9))
(pin "7" (uuid c1c1ac66-cdbd-4c07-893f-977441727e2f))
(pin "10" (uuid e069756a-4dc4-4ba1-96cc-332f28b92f85))
(pin "8" (uuid 552b308f-b5af-4f6b-92b6-fdf4c1c4b36a))
(pin "9" (uuid 54558ed7-6a1e-4f13-83d4-ba77488e19c1))
(pin "12" (uuid 2d854c4f-c1a0-492f-a7ba-3ab3a3512aba))
(pin "13" (uuid 812ed8af-505b-4208-8f76-7999e0b7cf08))
(pin "14" (uuid 3c6fea6b-ac67-41e7-80cc-46990086a7ca))
(pin "11" (uuid 34c7ab9a-7903-4ef6-99e3-e7db0a804af7))
(pin "4" (uuid cfca0076-666d-4925-b9f0-be88edad1b02))
(instances
(project "funbox_v3"
(path "/f9870029-b811-40c9-befb-7f2ac1909314"
(reference "U1") (unit 1)
)
(path "/f9870029-b811-40c9-befb-7f2ac1909314/e25d6226-0d20-40ee-9ab0-ac4dc5e34e88"
(reference "U1") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 158.75 60.96 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 32d388ab-66f4-47f8-a5f6-80c32f0ff174)
(property "Reference" "R1" (at 158.75 54.61 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "3K3" (at 158.75 57.15 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal" (at 158.75 62.738 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 158.75 60.96 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid f51d84c4-bf47-4ac5-a02a-7d756df2ee56))
(pin "2" (uuid 912a4d72-53f2-44e9-95a1-9740aa7c90a8))
(instances
(project "DaisySeedPedal1590b"
(path "/1d54e6f4-7c7a-4f03-b2db-a136bdff5b99/14233757-3729-4fb7-b53b-1203330efce4"
(reference "R1") (unit 1)
)
)
(project "funbox_v3"
(path "/f9870029-b811-40c9-befb-7f2ac1909314"
(reference "R11") (unit 1)
)
(path "/f9870029-b811-40c9-befb-7f2ac1909314/e25d6226-0d20-40ee-9ab0-ac4dc5e34e88"
(reference "R2") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 237.49 139.7 180) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 3c8d4fe0-590f-49d0-bc2d-a118511933f4)
(property "Reference" "R1" (at 240.03 138.43 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "100K" (at 240.03 140.97 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal" (at 239.268 139.7 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 237.49 139.7 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 5c8fc3e0-f3c9-4297-8cba-b561f3c37ac6))
(pin "2" (uuid 31215e9d-fd95-4a7b-9b69-4783703cb871))
(instances
(project "DaisySeedPedal1590b"
(path "/1d54e6f4-7c7a-4f03-b2db-a136bdff5b99/14233757-3729-4fb7-b53b-1203330efce4"
(reference "R1") (unit 1)
)
)
(project "funbox_v3"
(path "/f9870029-b811-40c9-befb-7f2ac1909314"
(reference "R18") (unit 1)
)
(path "/f9870029-b811-40c9-befb-7f2ac1909314/e25d6226-0d20-40ee-9ab0-ac4dc5e34e88"
(reference "R17") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 173.99 133.35 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 45558e6e-c8a0-4222-81be-44af106a8b69)
(property "Reference" "R1" (at 173.99 127 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "3K3" (at 173.99 129.54 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal" (at 173.99 135.128 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 173.99 133.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 06aa5990-6ace-4050-973f-979caa7636c8))
(pin "2" (uuid ded3861d-5924-42aa-9083-ba1a31988b84))
(instances
(project "DaisySeedPedal1590b"
(path "/1d54e6f4-7c7a-4f03-b2db-a136bdff5b99/14233757-3729-4fb7-b53b-1203330efce4"
(reference "R1") (unit 1)
)
)