-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathClassD_20W_Amp.kicad_sch
1718 lines (1683 loc) · 60.1 KB
/
ClassD_20W_Amp.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 d5fd1db2-ded3-4701-b7de-ee0eb2f0205f)
(paper "A4")
(lib_symbols
(symbol "2023-10-01_02-32-05:PAM8320RDR" (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "U2" (at 22.86 10.16 0)
(effects (font (size 1.524 1.524)))
)
(property "Value" "PAM8320RDR" (at 22.86 7.62 0)
(effects (font (size 1.524 1.524)))
)
(property "Footprint" "SO-16EP_3P9X9P9_DIO" (at 0 0 0)
(effects (font (size 1.27 1.27) italic) hide)
)
(property "Datasheet" "PAM8320RDR" (at 0 0 0)
(effects (font (size 1.27 1.27) italic) hide)
)
(property "ki_locked" "" (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(property "ki_keywords" "PAM8320RDR" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "SO-16EP_3P9X9P9_DIO SO-16EP_3P9X9P9_DIO-M SO-16EP_3P9X9P9_DIO-L" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "PAM8320RDR_0_1"
(polyline
(pts
(xy 7.62 -25.4)
(xy 38.1 -25.4)
)
(stroke (width 0.127) (type default))
(fill (type none))
)
(polyline
(pts
(xy 7.62 5.08)
(xy 7.62 -25.4)
)
(stroke (width 0.127) (type default))
(fill (type none))
)
(polyline
(pts
(xy 38.1 -25.4)
(xy 38.1 5.08)
)
(stroke (width 0.127) (type default))
(fill (type none))
)
(polyline
(pts
(xy 38.1 5.08)
(xy 7.62 5.08)
)
(stroke (width 0.127) (type default))
(fill (type none))
)
(pin unspecified line (at 0 0 0) (length 7.62)
(name "PVCCN" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin output line (at 45.72 -17.78 180) (length 7.62)
(name "OUTP" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 45.72 -15.24 180) (length 7.62)
(name "BSP" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 45.72 -12.7 180) (length 7.62)
(name "MUTE" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 45.72 -10.16 180) (length 7.62)
(name "AVCC" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 45.72 -7.62 180) (length 7.62)
(name "BSN" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin output line (at 45.72 -5.08 180) (length 7.62)
(name "OUTN" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin power_out line (at 45.72 -2.54 180) (length 7.62)
(name "PGNDN" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 45.72 0 180) (length 7.62)
(name "EPAD" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 0 -2.54 0) (length 7.62)
(name "SDN" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 0 -5.08 0) (length 7.62)
(name "IN" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 0 -7.62 0) (length 7.62)
(name "VCM" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin power_out line (at 0 -10.16 0) (length 7.62)
(name "AGND" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin power_out line (at 0 -12.7 0) (length 7.62)
(name "AGND" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 0 -15.24 0) (length 7.62)
(name "VCLAMP" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 0 -17.78 0) (length 7.62)
(name "PVCCP" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin power_out line (at 45.72 -20.32 180) (length 7.62)
(name "PGNDP" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "2023-10-01_19-18-23:860020474014" (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "C" (at 3.81 3.81 0)
(effects (font (size 1.524 1.524)))
)
(property "Value" "860020474014" (at 3.81 -3.81 0)
(effects (font (size 1.524 1.524)))
)
(property "Footprint" "CAP_WCAP-ATG5_8x11.5_WRE" (at 0 0 0)
(effects (font (size 1.27 1.27) italic) hide)
)
(property "Datasheet" "860020474014" (at 0 0 0)
(effects (font (size 1.27 1.27) italic) hide)
)
(property "ki_locked" "" (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(property "ki_keywords" "860020474014" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "CAP_WCAP-ATG5_8x11.5_WRE" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "860020474014_1_1"
(polyline
(pts
(xy 2.54 0)
(xy 3.4798 0)
)
(stroke (width 0.2032) (type default))
(fill (type none))
)
(polyline
(pts
(xy 3.4798 -1.905)
(xy 3.4798 1.905)
)
(stroke (width 0.2032) (type default))
(fill (type none))
)
(polyline
(pts
(xy 4.1148 -1.905)
(xy 4.1148 1.905)
)
(stroke (width 0.2032) (type default))
(fill (type none))
)
(polyline
(pts
(xy 4.1148 0)
(xy 5.08 0)
)
(stroke (width 0.2032) (type default))
(fill (type none))
)
(pin unspecified line (at 0 0 0) (length 2.54)
(name "" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 7.62 0 180) (length 2.54)
(name "" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
(symbol "860020474014_1_2"
(polyline
(pts
(xy -1.905 -4.1148)
(xy 1.905 -4.1148)
)
(stroke (width 0.2032) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.905 -3.4798)
(xy 1.905 -3.4798)
)
(stroke (width 0.2032) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 -4.1148)
(xy 0 -5.08)
)
(stroke (width 0.2032) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 -2.54)
(xy 0 -3.4798)
)
(stroke (width 0.2032) (type default))
(fill (type none))
)
(pin unspecified line (at 0 0 270) (length 2.54)
(name "" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 0 -7.62 90) (length 2.54)
(name "" (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_Ferrite-Beads-and-Chips:MPZ1608S221ATA00" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "FB" (at -2.54 3.81 0)
(effects (font (size 1.524 1.524)))
)
(property "Value" "MPZ1608S221ATA00" (at 0 -3.81 0)
(effects (font (size 1.524 1.524)) (justify left))
)
(property "Footprint" "digikey-footprints:0603" (at 5.08 5.08 0)
(effects (font (size 1.524 1.524)) (justify left) hide)
)
(property "Datasheet" "https://product.tdk.com/info/en/catalog/datasheets/beads_commercial_power_mpz1608_en.pdf" (at 5.08 7.62 0)
(effects (font (size 1.524 1.524)) (justify left) hide)
)
(property "Digi-Key_PN" "445-1565-1-ND" (at 5.08 10.16 0)
(effects (font (size 1.524 1.524)) (justify left) hide)
)
(property "MPN" "MPZ1608S221ATA00" (at 5.08 12.7 0)
(effects (font (size 1.524 1.524)) (justify left) hide)
)
(property "Category" "Filters" (at 5.08 15.24 0)
(effects (font (size 1.524 1.524)) (justify left) hide)
)
(property "Family" "Ferrite Beads and Chips" (at 5.08 17.78 0)
(effects (font (size 1.524 1.524)) (justify left) hide)
)
(property "DK_Datasheet_Link" "https://product.tdk.com/info/en/catalog/datasheets/beads_commercial_power_mpz1608_en.pdf" (at 5.08 20.32 0)
(effects (font (size 1.524 1.524)) (justify left) hide)
)
(property "DK_Detail_Page" "/product-detail/en/tdk-corporation/MPZ1608S221ATA00/445-1565-1-ND/571895" (at 5.08 22.86 0)
(effects (font (size 1.524 1.524)) (justify left) hide)
)
(property "Description" "FERRITE BEAD 220 OHM 0603 1LN" (at 5.08 25.4 0)
(effects (font (size 1.524 1.524)) (justify left) hide)
)
(property "Manufacturer" "TDK Corporation" (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" "445-1565-1-ND MPZ" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "FERRITE BEAD 220 OHM 0603 1LN" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "MPZ1608S221ATA00_0_1"
(polyline
(pts
(xy -1.27 0)
(xy -2.54 0)
)
(stroke (width 0) (type solid))
(fill (type none))
)
(polyline
(pts
(xy 1.27 0)
(xy 2.54 0)
)
(stroke (width 0) (type solid))
(fill (type none))
)
(polyline
(pts
(xy -1.27 2.54)
(xy -2.54 1.27)
(xy 1.27 -2.54)
(xy 2.54 -1.27)
(xy -1.27 2.54)
)
(stroke (width 0) (type solid))
(fill (type background))
)
)
(symbol "MPZ1608S221ATA00_1_1"
(pin passive line (at -5.08 0 0) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 0 180) (length 2.54)
(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 81.28 72.39) (diameter 0) (color 0 0 0 0)
(uuid 5448e62e-bb23-42f4-9cfe-9aaac2c0a45e)
)
(junction (at 63.5 88.9) (diameter 0) (color 0 0 0 0)
(uuid 6630feaf-3348-4e70-80be-7b75d5a3756e)
)
(junction (at 182.88 77.47) (diameter 0) (color 0 0 0 0)
(uuid 73a041e5-2114-4399-a593-9b31c7247c2d)
)
(junction (at 196.85 77.47) (diameter 0) (color 0 0 0 0)
(uuid 88f197d7-8403-4656-8043-b676cd4cbd4a)
)
(junction (at 132.08 85.09) (diameter 0) (color 0 0 0 0)
(uuid 957394d0-cb53-46d6-92a4-0320f57e1459)
)
(junction (at 83.82 85.09) (diameter 0) (color 0 0 0 0)
(uuid 9c9ef653-dc53-4a7a-96bd-e6e1ab07f643)
)
(junction (at 196.85 90.17) (diameter 0) (color 0 0 0 0)
(uuid ae2dae20-5b17-4dc1-ab14-84f55fdd2c7b)
)
(junction (at 149.86 77.47) (diameter 0) (color 0 0 0 0)
(uuid c2111667-bf33-48d8-9a3e-54bd6aa02231)
)
(junction (at 132.08 92.71) (diameter 0) (color 0 0 0 0)
(uuid dd6f66fe-4e03-46dd-b004-80d50e386044)
)
(junction (at 182.88 90.17) (diameter 0) (color 0 0 0 0)
(uuid f47c9a01-01fa-4178-a4f5-7c21665e8b45)
)
(junction (at 149.86 90.17) (diameter 0) (color 0 0 0 0)
(uuid f724136a-ca21-4564-8feb-30f07dd14cad)
)
(no_connect (at 130.81 72.39) (uuid 11e6bc4c-de50-4f94-aa5b-cb0d5f1184a0))
(wire (pts (xy 86.36 121.92) (xy 86.36 119.38))
(stroke (width 0) (type default))
(uuid 0059abcc-acc3-4308-b159-1fa21ad0e880)
)
(wire (pts (xy 132.08 92.71) (xy 132.08 85.09))
(stroke (width 0) (type default))
(uuid 0781d658-e761-45f5-bba7-6aaa06e20c3b)
)
(wire (pts (xy 166.37 77.47) (xy 182.88 77.47))
(stroke (width 0) (type default))
(uuid 09b1d734-c457-4293-bee2-8ab020687d24)
)
(wire (pts (xy 71.12 85.09) (xy 71.12 88.9))
(stroke (width 0) (type default))
(uuid 1177f9f1-92ec-4c80-b139-65a78085d589)
)
(wire (pts (xy 149.86 77.47) (xy 156.21 77.47))
(stroke (width 0) (type default))
(uuid 164929b0-c7a4-467c-9885-3676e131f812)
)
(wire (pts (xy 182.88 77.47) (xy 196.85 77.47))
(stroke (width 0) (type default))
(uuid 1b83893f-1f24-48bf-8040-6eb8a3118225)
)
(wire (pts (xy 167.64 90.17) (xy 182.88 90.17))
(stroke (width 0) (type default))
(uuid 1eb357af-a519-457b-8142-8863b8d5ce04)
)
(wire (pts (xy 132.08 97.79) (xy 132.08 92.71))
(stroke (width 0) (type default))
(uuid 220d9553-beb0-446d-ab76-3f64e3cc857d)
)
(wire (pts (xy 81.28 72.39) (xy 85.09 72.39))
(stroke (width 0) (type default))
(uuid 22b1c6aa-2238-497d-9d86-95a5b3cb5619)
)
(wire (pts (xy 130.81 77.47) (xy 149.86 77.47))
(stroke (width 0) (type default))
(uuid 2359031b-69c7-4346-947f-6adde622b499)
)
(wire (pts (xy 73.66 109.22) (xy 73.66 111.76))
(stroke (width 0) (type default))
(uuid 26bf82b9-6c70-4c3a-bc25-7e7feec06666)
)
(wire (pts (xy 149.86 90.17) (xy 157.48 90.17))
(stroke (width 0) (type default))
(uuid 2c8a41ef-93ff-4bbd-8492-74ec4a25a521)
)
(wire (pts (xy 76.2 87.63) (xy 76.2 92.71))
(stroke (width 0) (type default))
(uuid 2cbedaa0-dab8-4c92-a270-1dc7a99226be)
)
(wire (pts (xy 63.5 87.63) (xy 63.5 88.9))
(stroke (width 0) (type default))
(uuid 2f432ebd-6fa3-43e6-a327-313255914b95)
)
(wire (pts (xy 85.09 85.09) (xy 83.82 85.09))
(stroke (width 0) (type default))
(uuid 36b23c0a-0835-42ae-bdfe-ee14b3acdb17)
)
(wire (pts (xy 196.85 77.47) (xy 196.85 78.74))
(stroke (width 0) (type default))
(uuid 3949dfcc-128e-489e-b848-f58890c8af31)
)
(wire (pts (xy 74.93 77.47) (xy 85.09 77.47))
(stroke (width 0) (type default))
(uuid 3cc560f1-d037-4775-88c6-f8ca27b84c14)
)
(wire (pts (xy 147.32 87.63) (xy 149.86 87.63))
(stroke (width 0) (type default))
(uuid 3d408038-3ceb-458f-9134-163453026538)
)
(wire (pts (xy 132.08 74.93) (xy 130.81 74.93))
(stroke (width 0) (type default))
(uuid 3edc2f8d-dfc2-480c-8558-ada64bfde45c)
)
(wire (pts (xy 182.88 106.68) (xy 182.88 104.14))
(stroke (width 0) (type default))
(uuid 410cb999-ad4e-4cca-8246-e834cd0b2d36)
)
(wire (pts (xy 100.33 109.22) (xy 100.33 111.76))
(stroke (width 0) (type default))
(uuid 42c648f1-3574-47b6-b398-9fcd090df70a)
)
(wire (pts (xy 182.88 77.47) (xy 182.88 78.74))
(stroke (width 0) (type default))
(uuid 457df743-67c9-43fd-895e-ff0c524e1548)
)
(wire (pts (xy 100.33 120.65) (xy 100.33 119.38))
(stroke (width 0) (type default))
(uuid 4cd0059d-3623-405f-8a03-d556eb0393c8)
)
(wire (pts (xy 81.28 72.39) (xy 81.28 90.17))
(stroke (width 0) (type default))
(uuid 58c934ef-663e-421e-b8dc-d5c09bb39dd2)
)
(wire (pts (xy 62.23 123.19) (xy 62.23 119.38))
(stroke (width 0) (type default))
(uuid 5a3a3d90-bfc1-4957-9abb-593ac75e82ac)
)
(wire (pts (xy 134.62 82.55) (xy 134.62 68.58))
(stroke (width 0) (type default))
(uuid 5ddfee5a-705e-432f-aab3-2df02cfba8f1)
)
(wire (pts (xy 196.85 106.68) (xy 196.85 104.14))
(stroke (width 0) (type default))
(uuid 60006c2d-8ec5-42f2-a8c0-470b879f4c0f)
)
(wire (pts (xy 73.66 123.19) (xy 73.66 119.38))
(stroke (width 0) (type default))
(uuid 60acd02d-5507-475f-ab4e-13e38aaf2510)
)
(wire (pts (xy 147.32 80.01) (xy 149.86 80.01))
(stroke (width 0) (type default))
(uuid 7011763d-fff1-4153-a3fa-57bcee73b1a4)
)
(wire (pts (xy 149.86 80.01) (xy 149.86 77.47))
(stroke (width 0) (type default))
(uuid 7e40a8b1-306a-4117-98d1-eadc15e6cbb8)
)
(wire (pts (xy 196.85 90.17) (xy 207.01 90.17))
(stroke (width 0) (type default))
(uuid 7f5c7f6d-b848-4793-9bc2-415fe7b8f1f2)
)
(wire (pts (xy 86.36 109.22) (xy 86.36 111.76))
(stroke (width 0) (type default))
(uuid 81669d54-623a-4edd-bd0d-7c2845902fcf)
)
(wire (pts (xy 130.81 87.63) (xy 139.7 87.63))
(stroke (width 0) (type default))
(uuid 8fc9ddd9-e36f-4d1b-a3ff-9255251dbd47)
)
(wire (pts (xy 66.04 77.47) (xy 67.31 77.47))
(stroke (width 0) (type default))
(uuid 8fdb6a85-35cd-4ed1-a979-8aa278a9ea09)
)
(wire (pts (xy 54.61 77.47) (xy 58.42 77.47))
(stroke (width 0) (type default))
(uuid 8ff619d5-3054-42bb-a633-727374baed3a)
)
(wire (pts (xy 132.08 85.09) (xy 132.08 74.93))
(stroke (width 0) (type default))
(uuid 95bb19b1-de55-4318-8e18-6cc16a860673)
)
(wire (pts (xy 130.81 92.71) (xy 132.08 92.71))
(stroke (width 0) (type default))
(uuid 96dde7d7-0b08-482d-9cdd-0eff5517e174)
)
(wire (pts (xy 85.09 82.55) (xy 83.82 82.55))
(stroke (width 0) (type default))
(uuid 97da21bb-51b0-4215-a6ae-8ee155ec2088)
)
(wire (pts (xy 81.28 90.17) (xy 85.09 90.17))
(stroke (width 0) (type default))
(uuid a456492e-54cb-4425-98d4-dd002c18c540)
)
(wire (pts (xy 71.12 88.9) (xy 63.5 88.9))
(stroke (width 0) (type default))
(uuid a522d54d-f2ff-4953-a5b2-97d2fe2fc021)
)
(wire (pts (xy 130.81 85.09) (xy 132.08 85.09))
(stroke (width 0) (type default))
(uuid ac36d16b-599d-4905-b868-2b197f365466)
)
(wire (pts (xy 182.88 90.17) (xy 196.85 90.17))
(stroke (width 0) (type default))
(uuid b3c6fdf5-d74f-4a59-9583-fb6e3c48d686)
)
(wire (pts (xy 130.81 90.17) (xy 149.86 90.17))
(stroke (width 0) (type default))
(uuid b56bc555-6a9c-44c0-ba97-77fee5aa646a)
)
(wire (pts (xy 63.5 88.9) (xy 63.5 90.17))
(stroke (width 0) (type default))
(uuid bc96bc15-c0c0-4ae6-bc6e-f370a9f5610c)
)
(wire (pts (xy 81.28 67.31) (xy 81.28 72.39))
(stroke (width 0) (type default))
(uuid bf345d86-687d-420e-aa1a-e62012c9ea91)
)
(wire (pts (xy 54.61 74.93) (xy 85.09 74.93))
(stroke (width 0) (type default))
(uuid c1f2fce8-64cc-4b43-a781-f25ed0139c8f)
)
(wire (pts (xy 182.88 90.17) (xy 182.88 96.52))
(stroke (width 0) (type default))
(uuid c5cabf85-9dfa-4c40-8563-2681e9d56f8a)
)
(wire (pts (xy 83.82 85.09) (xy 71.12 85.09))
(stroke (width 0) (type default))
(uuid ce1dcff1-89e0-4c89-b75e-8e6ed0978360)
)
(wire (pts (xy 196.85 77.47) (xy 207.01 77.47))
(stroke (width 0) (type default))
(uuid d466f946-f2cd-464d-b63b-478ff8a2664d)
)
(wire (pts (xy 83.82 82.55) (xy 83.82 85.09))
(stroke (width 0) (type default))
(uuid dedc3306-8560-47c8-ba71-37bdbd8fd609)
)
(wire (pts (xy 196.85 90.17) (xy 196.85 96.52))
(stroke (width 0) (type default))
(uuid dfca951d-f860-4b86-b750-cffd90c0eec2)
)
(wire (pts (xy 63.5 80.01) (xy 85.09 80.01))
(stroke (width 0) (type default))
(uuid e229b6bd-775a-47f6-82ff-823a9c185b18)
)
(wire (pts (xy 149.86 87.63) (xy 149.86 90.17))
(stroke (width 0) (type default))
(uuid e45eb257-08d6-48b1-95f6-2b031408c489)
)
(wire (pts (xy 130.81 80.01) (xy 139.7 80.01))
(stroke (width 0) (type default))
(uuid ec80eb52-2880-4e8e-9036-7f9f276f2753)
)
(wire (pts (xy 85.09 87.63) (xy 76.2 87.63))
(stroke (width 0) (type default))
(uuid f46f1039-a6c9-4c07-8c21-70ae528d1762)
)
(wire (pts (xy 130.81 82.55) (xy 134.62 82.55))
(stroke (width 0) (type default))
(uuid f57d6cbb-5aca-42ec-abaf-35a484f987ca)
)
(wire (pts (xy 62.23 109.22) (xy 62.23 111.76))
(stroke (width 0) (type default))
(uuid f94709e1-f8cc-44b8-b8f2-a6aec5372c8a)
)
(wire (pts (xy 76.2 101.6) (xy 76.2 100.33))
(stroke (width 0) (type default))
(uuid f9b62fc6-2490-4fb5-bf12-7d015d2493ab)
)
(hierarchical_label "IN" (shape input) (at 54.61 77.47 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 0581cc82-a077-4559-bbc2-a2873c9bdfad)
)
(hierarchical_label "VCC" (shape input) (at 62.23 109.22 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 10b0fb73-a82b-40f2-aad6-76799f99d4d4)
)
(hierarchical_label "OUT_N" (shape output) (at 207.01 77.47 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 28339c7a-32f0-46fc-9a2d-5bd34b571c6e)
)
(hierarchical_label "VCC" (shape input) (at 86.36 109.22 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 6301daf9-00f3-42b6-8253-5cf4244be23d)
)
(hierarchical_label "SHUTDOWN" (shape input) (at 54.61 74.93 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 886a57a0-5bf2-4652-b9f5-17c2fff085c3)
)
(hierarchical_label "VCC" (shape input) (at 73.66 109.22 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 8c72b541-2ed6-40c1-831e-a52ec7dd17e9)
)
(hierarchical_label "VCC" (shape input) (at 100.33 109.22 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid bca46beb-8f49-4ff1-a18c-6b4377f748fa)
)
(hierarchical_label "OUT_P" (shape output) (at 207.01 90.17 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid d76d344a-b166-405a-9b50-a30b7e86836c)
)
(hierarchical_label "VCC" (shape input) (at 81.28 67.31 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid f6bd87d1-850a-4771-a182-0c8ec6521231)
)
(hierarchical_label "VCC" (shape input) (at 134.62 68.58 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid ffe3919d-aeb0-4af2-9083-f217dee72712)
)
(symbol (lib_id "power:GND") (at 182.88 106.68 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 0b459bf7-0ac2-4602-ac6c-68a7a8626061)
(property "Reference" "#PWR021" (at 182.88 113.03 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 186.69 106.68 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 182.88 106.68 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 182.88 106.68 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid a1020af1-af00-4e4a-8346-5b10a265c22b))
(instances
(project "DaisySeedBreakout"
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e"
(reference "#PWR021") (unit 1)
)
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e/b269dd26-915f-458b-a2d7-e1fbc9f1daa5"
(reference "#PWR023") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 196.85 106.68 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 25b22155-dc97-414b-98e5-eb72764e8130)
(property "Reference" "#PWR021" (at 196.85 113.03 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 200.66 106.68 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 196.85 106.68 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 196.85 106.68 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid f9990d38-bdfb-4967-a080-50f5a2fa8d72))
(instances
(project "DaisySeedBreakout"
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e"
(reference "#PWR021") (unit 1)
)
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e/b269dd26-915f-458b-a2d7-e1fbc9f1daa5"
(reference "#PWR0154") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R_US") (at 196.85 100.33 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 360107eb-82fa-47b4-9f3a-c13d8af8d544)
(property "Reference" "R8" (at 199.39 99.06 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "4.7k" (at 199.39 101.6 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 197.866 100.584 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 196.85 100.33 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 663929b1-e3d5-4054-9e45-83e67ecb701e))
(pin "2" (uuid 93c6fb86-e25f-4d19-970d-3ad070a75ea0))
(instances
(project "DaisySeedBreakout"
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e"
(reference "R8") (unit 1)
)
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e/a0f8a1fd-6189-4b02-8cf7-e8d7538f4e50"
(reference "R23") (unit 1)
)
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e/b269dd26-915f-458b-a2d7-e1fbc9f1daa5"
(reference "R58") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 63.5 83.82 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 378d7825-450c-40c0-bd36-cb6b9059f831)
(property "Reference" "C25" (at 67.31 82.55 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "1u" (at 67.31 85.09 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 64.4652 87.63 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 63.5 83.82 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 82e8f99c-b63e-4c5b-b88f-90ea837b9685))
(pin "2" (uuid 29da536b-5751-41e0-bf7b-2e7be61980b4))
(instances
(project "DaisySeedBreakout"
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e"
(reference "C25") (unit 1)
)
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e/d5f93f74-350a-43ef-bdfb-299723239788"
(reference "C24") (unit 1)
)
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e/b269dd26-915f-458b-a2d7-e1fbc9f1daa5"
(reference "C26") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 182.88 100.33 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 4c3938b2-8605-4e90-8c4f-79570e3f0896)
(property "Reference" "C25" (at 186.69 99.06 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "220pF" (at 186.69 101.6 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (at 183.8452 104.14 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 182.88 100.33 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 0b297d09-2ef6-4a52-944e-ce57a07baf1a))
(pin "2" (uuid a481ea40-c527-4a4c-9aea-4ca8e0f668b1))
(instances
(project "DaisySeedBreakout"
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e"
(reference "C25") (unit 1)
)
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e/d5f93f74-350a-43ef-bdfb-299723239788"
(reference "C24") (unit 1)
)
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e/b269dd26-915f-458b-a2d7-e1fbc9f1daa5"
(reference "C25") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 143.51 87.63 90) (mirror x) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 4d9c2f98-c520-41d3-81c1-e8251bb5e020)
(property "Reference" "C25" (at 143.51 91.44 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "1u" (at 147.32 91.44 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 147.32 88.5952 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 143.51 87.63 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid d1298bd5-2ddf-4f28-9ce7-1c0baba66b7d))
(pin "2" (uuid dbdc448c-0245-4673-bc65-bae93fdb76db))
(instances
(project "DaisySeedBreakout"
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e"
(reference "C25") (unit 1)
)
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e/d5f93f74-350a-43ef-bdfb-299723239788"
(reference "C24") (unit 1)
)
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e/b269dd26-915f-458b-a2d7-e1fbc9f1daa5"
(reference "C29") (unit 1)
)
)
)
)
(symbol (lib_id "2023-10-01_19-18-23:860020474014") (at 100.33 119.38 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 4e966393-2c5d-4116-ba58-85b2ab264b17)
(property "Reference" "C32" (at 104.14 114.3 90)