-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCondensor Microphone.kicad_sch
1199 lines (1172 loc) · 41.8 KB
/
Condensor Microphone.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 3e51cb5e-a4b6-4fc8-983c-01b6b2d9d565)
(paper "A4")
(lib_symbols
(symbol "4ms_Connector:Conn_01x02" (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_01x02" (at 0 -5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "4ms_Connector:Pins_1x02_2.54mm_TH" (at -0.635 4.445 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Specifications" "Pins_01x02, Header, Male Pins, 1*2, spacing 2.54mm, straight pin" (at -2.54 -7.874 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Manufacturer" "TAD" (at -2.54 -9.398 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Part Number" "1-0201FBV0T" (at -2.54 -10.922 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "ki_keywords" "Conn_01x02" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "HEADER 1x2 MALE PINS 0.100” 180deg" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_??x*mm* Connector*:*1x??x*mm* Pin?Header?Straight?1X* Pin?Header?Angled?1X* Socket?Strip?Straight?1X* Socket?Strip?Angled?1X*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_01x02_1_1"
(rectangle (start -1.27 -2.413) (end 0 -2.667)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(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 -3.81)
(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))))
)
(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" (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 "dk_Linear-Amplifiers-Audio:MAX4466EXK_T" (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "U" (at -5.08 7.62 0)
(effects (font (size 1.524 1.524)))
)
(property "Value" "MAX4466EXK_T" (at 2.54 -5.08 0)
(effects (font (size 1.524 1.524)) (justify left))
)
(property "Footprint" "digikey-footprints:SOT-353" (at 5.08 5.08 0)
(effects (font (size 1.524 1.524)) (justify left) hide)
)
(property "Datasheet" "https://datasheets.maximintegrated.com/en/ds/MAX4465-MAX4469.pdf" (at 5.08 7.62 0)
(effects (font (size 1.524 1.524)) (justify left) hide)
)
(property "Digi-Key_PN" "MAX4466EXK+CT-ND" (at 5.08 10.16 0)
(effects (font (size 1.524 1.524)) (justify left) hide)
)
(property "MPN" "MAX4466EXK+T" (at 5.08 12.7 0)
(effects (font (size 1.524 1.524)) (justify left) hide)
)
(property "Category" "Integrated Circuits (ICs)" (at 5.08 15.24 0)
(effects (font (size 1.524 1.524)) (justify left) hide)
)
(property "Family" "Linear - Amplifiers - Audio" (at 5.08 17.78 0)
(effects (font (size 1.524 1.524)) (justify left) hide)
)
(property "DK_Datasheet_Link" "https://datasheets.maximintegrated.com/en/ds/MAX4465-MAX4469.pdf" (at 5.08 20.32 0)
(effects (font (size 1.524 1.524)) (justify left) hide)
)
(property "DK_Detail_Page" "/product-detail/en/maxim-integrated/MAX4466EXK-T/MAX4466EXK-CT-ND/5405773" (at 5.08 22.86 0)
(effects (font (size 1.524 1.524)) (justify left) hide)
)
(property "Description" "IC PREAMP AUDIO MONO AB SC70-5" (at 5.08 25.4 0)
(effects (font (size 1.524 1.524)) (justify left) hide)
)
(property "Manufacturer" "Maxim Integrated" (at 5.08 27.94 0)
(effects (font (size 1.524 1.524)) (justify left) hide)
)
(property "Status" "Active" (at 5.08 30.48 0)
(effects (font (size 1.524 1.524)) (justify left) hide)
)
(property "ki_keywords" "MAX4466EXK+CT-ND" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "IC PREAMP AUDIO MONO AB SC70-5" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "MAX4466EXK_T_0_1"
(polyline
(pts
(xy -3.81 -2.54)
(xy -2.54 -2.54)
)
(stroke (width 0) (type solid))
(fill (type none))
)
(polyline
(pts
(xy -3.81 2.54)
(xy -2.54 2.54)
)
(stroke (width 0) (type solid))
(fill (type none))
)
(polyline
(pts
(xy -3.175 -1.905)
(xy -3.175 -3.175)
)
(stroke (width 0) (type solid))
(fill (type none))
)
(polyline
(pts
(xy -5.08 5.08)
(xy -5.08 -5.08)
(xy 5.08 0)
(xy -5.08 5.08)
)
(stroke (width 0) (type solid))
(fill (type background))
)
)
(symbol "MAX4466EXK_T_1_1"
(pin input line (at -7.62 -2.54 0) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -5.08 90) (length 2.54)
(name "GND" (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))))
)
(pin output line (at 7.62 0 180) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 5.08 270) (length 2.54)
(name "VCC" (effects (font (size 1.27 1.27))))
(number "5" (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 123.19 104.14) (diameter 0) (color 0 0 0 0)
(uuid 10a2035a-5680-430b-9f5c-761899ed3129)
)
(junction (at 142.494 80.01) (diameter 0) (color 0 0 0 0)
(uuid 3ab34a82-e39a-4658-ba00-f91576dc2d29)
)
(junction (at 121.92 104.14) (diameter 0) (color 0 0 0 0)
(uuid 6d271269-3a23-46a7-913c-ad17ae3c90c8)
)
(junction (at 100.33 85.09) (diameter 0) (color 0 0 0 0)
(uuid a547fe6e-6a79-4fa8-ab77-a4991dd3dc65)
)
(junction (at 100.33 104.14) (diameter 0) (color 0 0 0 0)
(uuid ab184f88-79e1-40bf-9c66-fab552af822a)
)
(junction (at 149.86 64.77) (diameter 0) (color 0 0 0 0)
(uuid af237b71-ac24-453c-8039-ea20a13ac6d3)
)
(junction (at 152.146 80.01) (diameter 0) (color 0 0 0 0)
(uuid c9ebdf5c-7847-40f7-84a8-f4349431ea1a)
)
(junction (at 162.052 80.01) (diameter 0) (color 0 0 0 0)
(uuid d83c135f-1702-4133-9c34-4911495f8aec)
)
(junction (at 165.862 100.838) (diameter 0) (color 0 0 0 0)
(uuid ed18da02-92c7-4e6d-8b1f-90e0bffb02c0)
)
(wire (pts (xy 152.146 80.01) (xy 152.146 84.074))
(stroke (width 0) (type default))
(uuid 04d02a94-5483-434b-b6b2-f08fab722bef)
)
(wire (pts (xy 165.862 100.838) (xy 157.734 100.838))
(stroke (width 0) (type default))
(uuid 102b8822-8df4-4248-befc-a66a6f147d7d)
)
(wire (pts (xy 150.114 105.918) (xy 150.114 108.712))
(stroke (width 0) (type default))
(uuid 11817a94-b761-49fd-a447-0b37b1a7729d)
)
(wire (pts (xy 135.128 80.518) (xy 135.128 80.01))
(stroke (width 0) (type default))
(uuid 1a162586-12f7-4391-b61e-19db99951792)
)
(wire (pts (xy 100.33 111.506) (xy 100.584 111.506))
(stroke (width 0) (type default))
(uuid 245b7bc2-db86-455d-8126-5924fdbd3caa)
)
(wire (pts (xy 121.92 104.14) (xy 123.19 104.14))
(stroke (width 0) (type default))
(uuid 3351c4df-2d66-4840-9bde-66822e62b714)
)
(wire (pts (xy 100.33 85.09) (xy 100.33 87.63))
(stroke (width 0) (type default))
(uuid 35210244-fa25-46de-9a11-ad791e392272)
)
(wire (pts (xy 142.494 80.01) (xy 142.494 98.298))
(stroke (width 0) (type default))
(uuid 3cb380d7-c99c-4f3d-b35c-033754aeaee5)
)
(wire (pts (xy 105.41 85.09) (xy 100.33 85.09))
(stroke (width 0) (type default))
(uuid 3e591b18-a468-4cf2-9c55-73df532cd5b9)
)
(wire (pts (xy 152.146 80.01) (xy 142.494 80.01))
(stroke (width 0) (type default))
(uuid 4b35cc3d-f09e-495b-82f6-caa554a61640)
)
(wire (pts (xy 147.32 64.77) (xy 149.86 64.77))
(stroke (width 0) (type default))
(uuid 4f1e5dee-1f9b-426c-af6b-7d5958f315e4)
)
(wire (pts (xy 149.86 65.913) (xy 150.114 65.913))
(stroke (width 0) (type default))
(uuid 50554934-615d-458b-8c21-a1180129db9c)
)
(wire (pts (xy 165.862 100.838) (xy 177.292 100.838))
(stroke (width 0) (type default))
(uuid 55a7f609-67c3-405b-8184-6e4b49b41aa7)
)
(wire (pts (xy 149.86 64.77) (xy 149.86 65.913))
(stroke (width 0) (type default))
(uuid 5897c5ac-24c8-4f1a-8a72-121b0db00a6f)
)
(wire (pts (xy 100.33 104.14) (xy 100.33 108.966))
(stroke (width 0) (type default))
(uuid 5d75960d-9246-4d6d-94ec-b9bf3ef336d6)
)
(wire (pts (xy 165.862 80.01) (xy 165.862 100.838))
(stroke (width 0) (type default))
(uuid 6c32e4f0-f539-4a62-af6d-3232aca5f12a)
)
(wire (pts (xy 100.584 111.506) (xy 100.584 114.554))
(stroke (width 0) (type default))
(uuid 6d903941-ab33-4fa4-a4e2-18b16c70c7ab)
)
(wire (pts (xy 115.57 104.14) (xy 121.92 104.14))
(stroke (width 0) (type default))
(uuid 7117f097-cf33-43fe-8d27-eeb218b7756b)
)
(wire (pts (xy 100.33 104.14) (xy 107.95 104.14))
(stroke (width 0) (type default))
(uuid 72b0e52c-44fc-445b-97b4-1ebf3dea099b)
)
(wire (pts (xy 162.052 80.01) (xy 162.052 84.074))
(stroke (width 0) (type default))
(uuid 84b1ba45-1c96-414c-b651-23c96929a865)
)
(wire (pts (xy 121.92 99.06) (xy 121.92 104.14))
(stroke (width 0) (type default))
(uuid 89fdc640-02b2-4824-b6a0-8e1cd9936e4c)
)
(wire (pts (xy 161.036 80.01) (xy 162.052 80.01))
(stroke (width 0) (type default))
(uuid 9a40189c-8f42-4f2e-a38f-4d4be0303e3d)
)
(wire (pts (xy 100.33 95.25) (xy 100.33 104.14))
(stroke (width 0) (type default))
(uuid a293c570-8a68-4488-bc8f-2e562e9cb3ee)
)
(wire (pts (xy 121.92 89.916) (xy 121.92 91.44))
(stroke (width 0) (type default))
(uuid a626f392-e1f1-4d38-94db-be083942bcd4)
)
(wire (pts (xy 135.128 80.01) (xy 142.494 80.01))
(stroke (width 0) (type default))
(uuid a6ce64bf-9643-455e-a3c2-9302ca61675b)
)
(wire (pts (xy 150.114 65.913) (xy 150.114 95.758))
(stroke (width 0) (type default))
(uuid aac74612-13b4-4fc1-a31e-2bcf1476fc64)
)
(wire (pts (xy 160.782 84.074) (xy 162.052 84.074))
(stroke (width 0) (type default))
(uuid b88df8e9-66f5-4330-9b01-a54e9e85e744)
)
(wire (pts (xy 135.128 99.314) (xy 135.128 98.298))
(stroke (width 0) (type default))
(uuid bba6e5bf-1461-4a97-98de-2c88723f4aaf)
)
(wire (pts (xy 100.33 73.66) (xy 100.33 74.93))
(stroke (width 0) (type default))
(uuid caace31f-3b71-4227-87be-15d27c66f750)
)
(wire (pts (xy 135.128 90.678) (xy 135.128 88.138))
(stroke (width 0) (type default))
(uuid cacb893e-f4df-4cab-bdb9-bc4aa56bbbc3)
)
(wire (pts (xy 100.33 82.55) (xy 100.33 85.09))
(stroke (width 0) (type default))
(uuid d346febe-1627-4982-be87-2e4324766af9)
)
(wire (pts (xy 142.494 104.14) (xy 142.494 103.378))
(stroke (width 0) (type default))
(uuid d60f6e95-9340-47d6-ad3b-7c0f465e9bf2)
)
(wire (pts (xy 123.19 104.14) (xy 123.19 105.156))
(stroke (width 0) (type default))
(uuid d6c7e20a-173a-4f7d-90de-eed3e6a7805c)
)
(wire (pts (xy 162.052 80.01) (xy 165.862 80.01))
(stroke (width 0) (type default))
(uuid d8112090-da5b-489e-a8bc-a4120c33165a)
)
(wire (pts (xy 158.75 64.77) (xy 163.83 64.77))
(stroke (width 0) (type default))
(uuid e0c6e26f-d08b-4a9d-a8d0-e09fa097a697)
)
(wire (pts (xy 123.19 115.062) (xy 123.19 112.776))
(stroke (width 0) (type default))
(uuid e34e9e7c-ff59-456f-963d-59d5b8edc2ab)
)
(wire (pts (xy 153.162 84.074) (xy 152.146 84.074))
(stroke (width 0) (type default))
(uuid ee513700-eb2c-41c5-8db9-cac13e1b3c70)
)
(wire (pts (xy 149.86 64.77) (xy 151.13 64.77))
(stroke (width 0) (type default))
(uuid f928a99d-0f3e-40ea-969b-8631d1702939)
)
(wire (pts (xy 153.416 80.01) (xy 152.146 80.01))
(stroke (width 0) (type default))
(uuid f9af58b0-f304-43ce-907b-ab4fea4da6a4)
)
(wire (pts (xy 113.03 85.09) (xy 114.3 85.09))
(stroke (width 0) (type default))
(uuid fd0c6058-6b6e-4077-bf66-b17ddfb0584d)
)
(wire (pts (xy 123.19 104.14) (xy 142.494 104.14))
(stroke (width 0) (type default))
(uuid ffaa3d6c-0152-4774-a33e-2764ff4ef6cd)
)
(text "Electret Microphone\nPlugs in here." (at 92.202 126.492 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 17a4a7ec-610b-4657-9fc7-d2cce0c15c09)
)
(text "Microphone Heirarchical sheet" (at 116.84 30.48 0)
(effects (font (size 2.27 2.27)) (justify left bottom))
(uuid b11de5d5-f14a-41e6-9586-7ccb82e1bbcc)
)
(label "MIC_IN-" (at 143.51 80.01 0) (fields_autoplaced)
(effects (font (size 0.75 0.75)) (justify left bottom))
(uuid 25ed868a-2a09-4819-87cc-779c147732c7)
)
(label "MIC_IN+" (at 127 104.14 0) (fields_autoplaced)
(effects (font (size 0.75 0.75)) (justify left bottom))
(uuid 680cd81a-69a9-47d0-b201-e5270c126ee6)
)
(label "MIC_CONN" (at 101.6 104.14 0) (fields_autoplaced)
(effects (font (size 0.75 0.75)) (justify left bottom))
(uuid 821d8745-3fa8-4a11-95a9-9ae160008e09)
)
(label "MIC_BIAS" (at 100.33 86.36 180) (fields_autoplaced)
(effects (font (size 0.75 0.75)) (justify right bottom))
(uuid dd1796e4-b2b2-468a-9f37-5707d0fc7463)
)
(hierarchical_label "VCC_2V7_to_5V5" (shape input) (at 147.32 64.77 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 67b374f8-a346-473c-8765-c184a0d4ce1d)
)
(hierarchical_label "VCC_2V7_to_5V5" (shape input) (at 100.33 73.66 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid a552ecdc-de50-4343-abfc-b996153aa158)
)
(hierarchical_label "AUDIO_OUT" (shape output) (at 177.292 100.838 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid f37157d1-bc0e-4525-b1e3-aaf80748b062)
)
(hierarchical_label "VCC_2V7_to_5V5" (shape input) (at 121.92 89.916 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid f83aa006-2f72-4bf0-a164-8740cd9d27fd)
)
(symbol (lib_id "Device:C") (at 135.128 94.488 180) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 1fe187b5-89ee-46ef-968c-707b2d12e47c)
(property "Reference" "C16" (at 130.7888 91.6731 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "1uF" (at 130.7875 93.5338 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 134.1628 90.678 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 135.128 94.488 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Voltage" "6V" (at 131.0841 95.4407 0)
(effects (font (size 1.27 1.27)))
)
(property "Type" "X5R" (at 130.3002 97.3263 0)
(effects (font (size 1.27 1.27)))
)
(pin "1" (uuid a1f13476-fffe-48e2-8897-d609d5ded86b))
(pin "2" (uuid a45f7aff-1611-4ae5-a7a0-6e4f868f137b))
(instances
(project "DaisySeedBreakout"
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e"
(reference "C16") (unit 1)
)
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e/33b46824-2cf1-41f4-ab61-a56b9cf41949"
(reference "C28") (unit 1)
)
)
)
)
(symbol (lib_id "4ms_Connector:Conn_01x02") (at 95.25 108.966 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 28790993-89a5-4ae8-a2e9-35a6c67ac5da)
(property "Reference" "J16" (at 95.25 106.426 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x02" (at 95.25 106.426 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Footprint" "1x2FemaleVertical:PinHeader_1x02_P2.54mm_VerticalFemale" (at 95.885 104.521 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 95.25 108.966 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Specifications" "Pins_01x02, Header, Male Pins, 1*2, spacing 2.54mm, straight pin" (at 97.79 116.84 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Manufacturer" "TAD" (at 97.79 118.364 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Part Number" "RS1-02-G" (at 97.79 119.888 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(pin "1" (uuid eebaaa3f-3338-4669-bec0-05c9f998f177))
(pin "2" (uuid 4047242a-0998-4199-92a5-e766771b3b05))
(instances
(project "DaisySeedBreakout"
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e"
(reference "J16") (unit 1)
)
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e/33b46824-2cf1-41f4-ab61-a56b9cf41949"
(reference "J17") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 163.83 64.77 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 29c8a269-8971-484e-bd2d-5d912dff3550)
(property "Reference" "#PWR029" (at 163.83 71.12 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 163.83 69.85 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Footprint" "" (at 163.83 64.77 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 56f05999-2fbf-4844-80a5-7926ed685b8e))
(instances
(project "DaisySeedBreakout"
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e"
(reference "#PWR029") (unit 1)
)
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e/33b46824-2cf1-41f4-ab61-a56b9cf41949"
(reference "#PWR048") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 100.584 114.554 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 2dddec37-8189-4c7a-bdc6-a64eaf3289a0)
(property "Reference" "#PWR02" (at 100.584 120.904 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 100.584 119.634 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Footprint" "" (at 100.584 114.554 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 100.584 114.554 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 6e38ecf9-b34a-4882-82dd-333094926c51))
(instances
(project "DaisySeedBreakout"
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e"
(reference "#PWR02") (unit 1)
)
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e/33b46824-2cf1-41f4-ab61-a56b9cf41949"
(reference "#PWR031") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R_US") (at 123.19 108.966 180) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 3793e969-7ed6-46e9-9e7b-6f587421730f)
(property "Reference" "R5" (at 120.8619 108.9427 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "1M" (at 125.5886 109.0698 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 122.174 108.712 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 123.19 108.966 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid d3031836-fce7-43fa-8e0f-16cbec670f86))
(pin "2" (uuid 24061ce9-355a-4c3e-a83f-5255b3f7c174))
(instances
(project "DaisySeedBreakout"
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e"
(reference "R5") (unit 1)
)
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e/33b46824-2cf1-41f4-ab61-a56b9cf41949"
(reference "R16") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R_US") (at 135.128 84.328 180) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 3823272c-5e41-456a-9847-890feee8ad38)
(property "Reference" "R5" (at 133.096 84.328 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "10k" (at 137.4339 84.4205 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 134.112 84.074 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 135.128 84.328 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid e38aff38-bd62-423a-9ba5-af17956ec300))
(pin "2" (uuid d5e370c2-194e-4e23-978a-ae6ebb30ec67))
(instances
(project "DaisySeedBreakout"
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e"
(reference "R5") (unit 1)
)
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e/33b46824-2cf1-41f4-ab61-a56b9cf41949"
(reference "R20") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R_US") (at 156.972 84.074 270) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 3906b426-cba6-4ed2-ab2b-5c0d26d5c15a)
(property "Reference" "R5" (at 159.4546 86.0507 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "100k" (at 154.432 85.979 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 156.718 85.09 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 156.972 84.074 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid bbc01d09-57c4-4223-8195-1468c948985c))
(pin "2" (uuid 046c048b-a0ff-4482-8b51-9e208f51d2c9))
(instances
(project "DaisySeedBreakout"
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e"
(reference "R5") (unit 1)
)
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e/33b46824-2cf1-41f4-ab61-a56b9cf41949"
(reference "R17") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 111.76 104.14 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 48f34ce7-8f49-4545-9f73-2010d1a9a029)
(property "Reference" "C10" (at 108.4438 101.5352 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "0.1uF" (at 110.9838 101.5352 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 115.57 103.1748 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 111.76 104.14 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Voltage" "6V" (at 113.2247 100.1369 0)
(effects (font (size 1.27 1.27)))
)
(property "Type" "X5R" (at 115.3779 99.2898 0)
(effects (font (size 1.27 1.27)))
)
(pin "1" (uuid fb00fc19-5f20-4192-b573-c2d32a7a7609))
(pin "2" (uuid bd33b20b-23cc-4373-826d-3cca42a1f8c5))
(instances
(project "DaisySeedBreakout"
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e"
(reference "C10") (unit 1)
)
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e/33b46824-2cf1-41f4-ab61-a56b9cf41949"
(reference "C26") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 154.94 64.77 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 60745424-ce09-42f9-8546-17f6641cca22)
(property "Reference" "C10" (at 152.3987 62.1477 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "0.1uF" (at 154.1638 62.1652 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 158.75 63.8048 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 154.94 64.77 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Voltage" "6V" (at 156.0005 60.8552 0)
(effects (font (size 1.27 1.27)))
)
(property "Type" "X5R" (at 157.865 59.9866 0)
(effects (font (size 1.27 1.27)))
)
(pin "1" (uuid 63508081-8e4f-4c30-8548-b06499a9834e))
(pin "2" (uuid 676bf50a-6a22-4e87-9ff0-e56c7e8be583))
(instances
(project "DaisySeedBreakout"
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e"
(reference "C10") (unit 1)
)
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e/33b46824-2cf1-41f4-ab61-a56b9cf41949"
(reference "C23") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R_US") (at 100.33 91.44 180) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 607a088c-07cd-4f9d-b851-7f5d073fc65e)
(property "Reference" "R5" (at 98.1662 91.5937 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "2.2k" (at 102.87 91.44 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 99.314 91.186 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 100.33 91.44 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 4a2c0f2d-3912-48d6-834c-fec47ce09aac))
(pin "2" (uuid 16f117e8-cbc5-4b6a-b0c3-5c8dbf07ef96))
(instances
(project "DaisySeedBreakout"
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e"
(reference "R5") (unit 1)
)
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e/33b46824-2cf1-41f4-ab61-a56b9cf41949"
(reference "R13") (unit 1)
)
)
)
)
(symbol (lib_id "dk_Linear-Amplifiers-Audio:MAX4466EXK_T") (at 150.114 100.838 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 65f24313-4b42-4c5e-a6d5-72856dd5bb9e)
(property "Reference" "U2" (at 149.606 100.838 0)
(effects (font (size 1.524 1.524)))
)
(property "Value" "MAX4466EXK_T" (at 161.036 106.172 0)
(effects (font (size 1.524 1.524)))
)
(property "Footprint" "digikey-footprints:SOT-353" (at 155.194 95.758 0)
(effects (font (size 1.524 1.524)) (justify left) hide)
)
(property "Datasheet" "https://datasheets.maximintegrated.com/en/ds/MAX4465-MAX4469.pdf" (at 155.194 93.218 0)
(effects (font (size 1.524 1.524)) (justify left) hide)
)
(property "Digi-Key_PN" "MAX4466EXK+CT-ND" (at 155.194 90.678 0)
(effects (font (size 1.524 1.524)) (justify left) hide)
)
(property "MPN" "MAX4466EXK+T" (at 155.194 88.138 0)
(effects (font (size 1.524 1.524)) (justify left) hide)
)
(property "Category" "Integrated Circuits (ICs)" (at 155.194 85.598 0)
(effects (font (size 1.524 1.524)) (justify left) hide)
)
(property "Family" "Linear - Amplifiers - Audio" (at 155.194 83.058 0)
(effects (font (size 1.524 1.524)) (justify left) hide)
)
(property "DK_Datasheet_Link" "https://datasheets.maximintegrated.com/en/ds/MAX4465-MAX4469.pdf" (at 155.194 80.518 0)
(effects (font (size 1.524 1.524)) (justify left) hide)
)
(property "DK_Detail_Page" "/product-detail/en/maxim-integrated/MAX4466EXK-T/MAX4466EXK-CT-ND/5405773" (at 155.194 77.978 0)
(effects (font (size 1.524 1.524)) (justify left) hide)
)
(property "Description" "IC PREAMP AUDIO MONO AB SC70-5" (at 155.194 75.438 0)
(effects (font (size 1.524 1.524)) (justify left) hide)
)
(property "Manufacturer" "Maxim Integrated" (at 155.194 72.898 0)
(effects (font (size 1.524 1.524)) (justify left) hide)
)
(property "Status" "Active" (at 155.194 70.358 0)
(effects (font (size 1.524 1.524)) (justify left) hide)
)
(property "MnfNumber" "MAX4466EXK+T" (at 150.114 100.838 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid d1fc08d5-e511-44f7-b19d-1e0eaa48f81b))
(pin "2" (uuid a2a76cb4-a4c5-4cc1-b049-39026ec509d2))
(pin "3" (uuid 0801ecb2-6672-426c-9c23-ecaddcdb964d))
(pin "4" (uuid 7e07d4c9-ccae-4490-80fd-a83bbeaa9253))
(pin "5" (uuid 8f823dda-e45a-473f-8c01-cfb71eee3ff0))
(instances
(project "DaisySeedBreakout"
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e"
(reference "U2") (unit 1)
)
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e/33b46824-2cf1-41f4-ab61-a56b9cf41949"
(reference "U2") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R_US") (at 121.92 95.25 180) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 6cc097da-8514-4cc8-ab81-d93c2aec6268)
(property "Reference" "R5" (at 119.5919 95.5661 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "1M" (at 124.4245 95.7145 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 120.904 94.996 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 121.92 95.25 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid dbed7385-8d48-4e85-bd07-3a026bc71815))
(pin "2" (uuid 644571e8-43ec-4ad8-b199-00c190568085))
(instances
(project "DaisySeedBreakout"
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e"
(reference "R5") (unit 1)
)
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e/33b46824-2cf1-41f4-ab61-a56b9cf41949"
(reference "R15") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 135.128 99.314 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 6f46da8f-4ed2-4ec1-a9ff-39758990aa51)
(property "Reference" "#PWR02" (at 135.128 105.664 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 137.16 99.568 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Footprint" "" (at 135.128 99.314 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 135.128 99.314 0)
(effects (font (size 1.27 1.27)) hide)
)