-
Notifications
You must be signed in to change notification settings - Fork 0
/
DAC.kicad_sch
1762 lines (1706 loc) · 66.2 KB
/
DAC.kicad_sch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_sch (version 20211123) (generator eeschema)
(uuid 4a53fa56-d65b-42a4-a4be-8f49c4c015bb)
(paper "A4")
(lib_symbols
(symbol "Audio:PCM5102" (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at -10.16 13.97 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "PCM5102" (id 1) (at 3.81 13.97 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Package_SO:TSSOP-20_4.4x6.5mm_P0.65mm" (id 2) (at -1.27 19.05 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://www.ti.com/lit/ds/symlink/pcm5102.pdf" (id 3) (at -1.27 19.05 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "audio dac 2ch 32bit 384kHz" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "2VRMS DirectPath, 112dB Audio Stereo DAC with 32-bit, 384kHz PCM Interface, TSSOP-20" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "TSSOP*4.4x6.5mm*P0.65mm*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "PCM5102_0_1"
(rectangle (start -10.16 12.7) (end 10.16 -15.24)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
)
(symbol "PCM5102_1_1"
(pin passive line (at -2.54 15.24 270) (length 2.54)
(name "CPVDD" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 -5.08 0) (length 2.54)
(name "DEMP" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 -2.54 0) (length 2.54)
(name "FLT" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 2.54 0) (length 2.54)
(name "SCK" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 5.08 0) (length 2.54)
(name "BCK" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 7.62 0) (length 2.54)
(name "DIN" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 10.16 0) (length 2.54)
(name "LRCK" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 -10.16 0) (length 2.54)
(name "FMT" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 -7.62 0) (length 2.54)
(name "XSMT" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 12.7 -10.16 180) (length 2.54)
(name "LDOO" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -17.78 90) (length 2.54)
(name "DGND" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 12.7 2.54 180) (length 2.54)
(name "CAPP" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 15.24 270) (length 2.54)
(name "DVDD" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -2.54 -17.78 90) (length 2.54)
(name "CPGND" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 12.7 -5.08 180) (length 2.54)
(name "CAPM" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 12.7 -12.7 180) (length 2.54)
(name "VNEG" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin output line (at 12.7 10.16 180) (length 2.54)
(name "OUTL" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin output line (at 12.7 7.62 180) (length 2.54)
(name "OUTR" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 2.54 15.24 270) (length 2.54)
(name "AVDD" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 2.54 -17.78 90) (length 2.54)
(name "AGND" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "C" (id 0) (at 0.635 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C" (id 1) (at 0.635 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 0.9652 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "cap capacitor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_0_1"
(polyline
(pts
(xy -2.032 -0.762)
(xy 2.032 -0.762)
)
(stroke (width 0.508) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -2.032 0.762)
(xy 2.032 0.762)
)
(stroke (width 0.508) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "C_1_1"
(pin passive line (at 0 3.81 270) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "R" (id 0) (at 2.032 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R" (id 1) (at 0 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at -1.778 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "R res resistor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_0_1"
(rectangle (start -1.016 -2.54) (end 1.016 2.54)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "R_1_1"
(pin passive line (at 0 3.81 270) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Jumper:SolderJumper_3_Bridged12" (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "JP" (id 0) (at -2.54 -2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "SolderJumper_3_Bridged12" (id 1) (at 0 2.794 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "Solder Jumper SPDT" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "3-pole Solder Jumper, pins 1+2 closed/bridged" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "SolderJumper*Bridged12*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "SolderJumper_3_Bridged12_0_1"
(rectangle (start -1.016 0.508) (end -0.508 -0.508)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
(arc (start -1.016 1.016) (mid -2.032 0) (end -1.016 -1.016)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start -1.016 1.016) (mid -2.032 0) (end -1.016 -1.016)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
(rectangle (start -0.508 1.016) (end 0.508 -1.016)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
(polyline
(pts
(xy -2.54 0)
(xy -2.032 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.016 1.016)
(xy -1.016 -1.016)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 -1.27)
(xy 0 -1.016)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.016 1.016)
(xy 1.016 -1.016)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 2.54 0)
(xy 2.032 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 1.016 -1.016) (mid 2.032 0) (end 1.016 1.016)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 1.016 -1.016) (mid 2.032 0) (end 1.016 1.016)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
)
(symbol "SolderJumper_3_Bridged12_1_1"
(pin passive line (at -5.08 0 0) (length 2.54)
(name "A" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at 0 -3.81 90) (length 2.54)
(name "C" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 0 180) (length 2.54)
(name "B" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Regulator_Linear:TLV75533PDBV" (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at -3.81 5.715 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "TLV75533PDBV" (id 1) (at 0 5.715 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Package_TO_SOT_SMD:SOT-23-5" (id 2) (at 0 8.255 0)
(effects (font (size 1.27 1.27) italic) hide)
)
(property "Datasheet" "http://www.ti.com/lit/ds/symlink/tlv755p.pdf" (id 3) (at 0 1.27 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "LDO Regulator Fixed Positive" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "500mA Low Dropout Voltage Regulator, Fixed Output 3.3V, SOT-23-5" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "SOT?23*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "TLV75533PDBV_0_1"
(rectangle (start -5.08 4.445) (end 5.08 -5.08)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
)
(symbol "TLV75533PDBV_1_1"
(pin power_in line (at -7.62 2.54 0) (length 2.54)
(name "IN" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -7.62 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.62 0 0) (length 2.54)
(name "EN" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at 5.08 0 180) (length 2.54) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin power_out line (at 7.62 2.54 180) (length 2.54)
(name "OUT" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:+3.3V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3.3V" (id 1) (at 0 3.556 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"+3.3V\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+3.3V_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "+3.3V_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+3V3" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:+3.3VA" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3.3VA" (id 1) (at 0 3.556 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"+3.3VA\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+3.3VA_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "+3.3VA_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+3.3VA" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (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) (color 0 0 0 0))
(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 194.31 78.74) (diameter 0) (color 0 0 0 0)
(uuid 41c18011-40db-4384-9ba4-c0158d0d9d6a)
)
(junction (at 138.43 114.3) (diameter 0) (color 0 0 0 0)
(uuid 58390862-1833-41dd-9c4e-98073ea0da33)
)
(junction (at 173.99 86.36) (diameter 0) (color 0 0 0 0)
(uuid 5c32b099-dba7-4228-8a5e-c2156f635ce2)
)
(junction (at 81.28 54.61) (diameter 0) (color 0 0 0 0)
(uuid 692d87e9-6b70-46cc-9c78-b75193a484cc)
)
(junction (at 81.28 57.15) (diameter 0) (color 0 0 0 0)
(uuid 70cda344-73be-4466-a097-1fd56f3b19e2)
)
(junction (at 101.6 54.61) (diameter 0) (color 0 0 0 0)
(uuid 883105b0-f6a6-466b-ba58-a2fcc1f18e4b)
)
(junction (at 184.15 86.36) (diameter 0) (color 0 0 0 0)
(uuid 9e2492fd-e074-42db-8129-fe39460dc1e0)
)
(junction (at 81.28 101.6) (diameter 0) (color 0 0 0 0)
(uuid d5f4d798-57d3-493b-b57c-3b6e89508879)
)
(junction (at 204.47 78.74) (diameter 0) (color 0 0 0 0)
(uuid df5c9f6b-a62e-44ba-997f-b2cf3279c7d4)
)
(junction (at 140.97 64.77) (diameter 0) (color 0 0 0 0)
(uuid fc4f0835-889b-4d2e-876e-ca524c79ae62)
)
(wire (pts (xy 157.48 116.84) (xy 157.48 118.11))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 06665bf8-cef1-4e75-8d5b-1537b3c1b090)
)
(wire (pts (xy 93.98 115.57) (xy 93.98 118.11))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0e592cd4-1950-44ef-9727-8e526f4c4e12)
)
(wire (pts (xy 170.18 78.74) (xy 194.31 78.74))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 112371bd-7aa2-4b47-b184-50d12afc2534)
)
(wire (pts (xy 151.13 106.68) (xy 157.48 106.68))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 152cd84e-bbed-4df5-a866-d1ab977b0966)
)
(wire (pts (xy 135.89 111.76) (xy 135.89 114.3))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1855ca44-ab48-4b76-a210-97fc81d916c4)
)
(wire (pts (xy 138.43 114.3) (xy 138.43 118.11))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1bf7d0f9-0dcf-4d7c-b58c-318e3dc42bc9)
)
(wire (pts (xy 81.28 101.6) (xy 81.28 99.06))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1cb64bfe-d819-47e3-be11-515b04f2c451)
)
(wire (pts (xy 204.47 100.33) (xy 204.47 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2028d85e-9e27-4758-8c0b-559fad072813)
)
(wire (pts (xy 120.65 86.36) (xy 125.73 86.36))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 22c28634-55a5-4f76-9217-6b70ddd108b8)
)
(wire (pts (xy 105.41 82.55) (xy 105.41 88.9))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 300aa512-2f66-4c26-a530-50c091b3a099)
)
(wire (pts (xy 99.06 54.61) (xy 101.6 54.61))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 311665d9-0fab-4325-8b46-f3638bf521df)
)
(wire (pts (xy 91.44 64.77) (xy 91.44 68.58))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3198b8ca-7d11-4e0c-89a4-c173f9fcf724)
)
(wire (pts (xy 135.89 114.3) (xy 138.43 114.3))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3457afc5-3e4f-4220-81d1-b079f653a722)
)
(wire (pts (xy 140.97 63.5) (xy 140.97 64.77))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 34a11a07-8b7f-45d2-96e3-89fd43e62756)
)
(wire (pts (xy 173.99 100.33) (xy 173.99 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 386faf3f-2adf-472a-84bf-bd511edf2429)
)
(wire (pts (xy 114.3 93.98) (xy 109.22 93.98))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3b9c5ffd-e59b-402d-8c5e-052f7ca643a4)
)
(wire (pts (xy 247.65 99.06) (xy 247.65 105.41))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3c121a93-b189-409b-a104-2bdd37ff0b51)
)
(wire (pts (xy 135.89 78.74) (xy 135.89 64.77))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3c3e06bd-c8bb-4ec8-84e0-f7f9437909b3)
)
(wire (pts (xy 76.2 63.5) (xy 76.2 59.69))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3f1ab70d-3263-42b5-9c61-0360188ff2b7)
)
(wire (pts (xy 173.99 86.36) (xy 173.99 90.17))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4346fe55-f906-453a-b81a-1c013104a598)
)
(wire (pts (xy 101.6 66.04) (xy 101.6 62.23))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4b471778-f61d-4b9d-a507-3d4f82ec4b7c)
)
(wire (pts (xy 120.65 118.11) (xy 120.65 104.14))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4ce9470f-5633-41bf-89ac-74a810939893)
)
(wire (pts (xy 120.65 83.82) (xy 125.73 83.82))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4d2fd49e-2cb2-44d4-8935-68488970d97b)
)
(wire (pts (xy 114.3 96.52) (xy 114.3 93.98))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4fb2577d-2e1c-480c-9060-124510b35053)
)
(wire (pts (xy 157.48 106.68) (xy 157.48 109.22))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 560d05a7-84e4-403a-80d1-f287a4032b8a)
)
(wire (pts (xy 270.51 99.06) (xy 270.51 105.41))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 59e09498-d26e-4ba7-b47d-fece2ea7c274)
)
(wire (pts (xy 110.49 110.49) (xy 97.79 110.49))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5a33f5a4-a470-4c04-9e2d-532b5f01a5d6)
)
(wire (pts (xy 105.41 99.06) (xy 105.41 118.11))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5bbde4f9-fcdb-4d27-a2d6-3847fcdd87ba)
)
(wire (pts (xy 170.18 86.36) (xy 173.99 86.36))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5e6153e6-2c19-46de-9a8e-b310a2a07861)
)
(wire (pts (xy 138.43 111.76) (xy 138.43 114.3))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5e755161-24a5-4650-a6e3-9836bf074412)
)
(wire (pts (xy 135.89 64.77) (xy 140.97 64.77))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5eedf685-0df3-4da8-aded-0e6ed1cb2507)
)
(wire (pts (xy 110.49 99.06) (xy 110.49 110.49))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6133fb54-5524-482e-9ae2-adbf29aced9e)
)
(wire (pts (xy 156.21 83.82) (xy 156.21 78.74))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 62f15a9a-9893-486e-9ad0-ea43f88fc9e7)
)
(wire (pts (xy 81.28 57.15) (xy 81.28 54.61))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 64d1d0fe-4fd6-4a55-8314-56a651e1ccab)
)
(wire (pts (xy 81.28 101.6) (xy 125.73 101.6))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6b6d35dc-fa1d-46c5-87c0-b0652011059d)
)
(wire (pts (xy 173.99 86.36) (xy 184.15 86.36))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6f1beb86-67e1-46bf-8c2b-6d1e1485d5c0)
)
(wire (pts (xy 80.01 54.61) (xy 81.28 54.61))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6f5a9f10-1b2c-4916-b4e5-cb5bd0f851a0)
)
(wire (pts (xy 226.06 116.84) (xy 226.06 113.03))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 72366acb-6c86-4134-89df-01ed6e4dc8e0)
)
(wire (pts (xy 151.13 83.82) (xy 156.21 83.82))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7273dd21-e834-41d3-b279-d7de727709ca)
)
(wire (pts (xy 247.65 116.84) (xy 247.65 113.03))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7274c82d-0cb9-47de-b093-7d848f491410)
)
(wire (pts (xy 120.65 91.44) (xy 125.73 91.44))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 74012f9c-57f0-452a-9ea1-1e3437e264b8)
)
(wire (pts (xy 168.91 118.11) (xy 168.91 116.84))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 74855e0d-40e4-4940-a544-edae9207b2ea)
)
(wire (pts (xy 226.06 132.08) (xy 226.06 138.43))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7943ed8c-e760-4ace-9c5f-baf5589fae39)
)
(wire (pts (xy 194.31 78.74) (xy 204.47 78.74))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7ca71fec-e7f1-454f-9196-b80d15925fff)
)
(wire (pts (xy 76.2 49.53) (xy 76.2 44.45))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7d2eba81-aa80-4257-a5a7-9a6179da897e)
)
(wire (pts (xy 140.97 64.77) (xy 140.97 78.74))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 90fd611c-300b-48cf-a7c4-0d604953cd00)
)
(wire (pts (xy 138.43 114.3) (xy 140.97 114.3))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9208ea78-8dde-4b3d-91e9-5755ab5efd9a)
)
(wire (pts (xy 81.28 101.6) (xy 81.28 106.68))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9f4abbc0-6ac3-48f0-b823-2c1c19349540)
)
(wire (pts (xy 151.13 91.44) (xy 157.48 91.44))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9f969b13-1795-4747-8326-93bdc304ed56)
)
(wire (pts (xy 93.98 82.55) (xy 93.98 105.41))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a150f0c9-1a23-4200-b489-18791f6d5ce5)
)
(wire (pts (xy 83.82 57.15) (xy 81.28 57.15))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a323243c-4cab-4689-aa04-1e663cf86177)
)
(wire (pts (xy 151.13 86.36) (xy 162.56 86.36))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a3fab380-991d-404b-95d5-1c209b047b6e)
)
(wire (pts (xy 184.15 90.17) (xy 184.15 86.36))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a48f5fff-52e4-4ae8-8faa-7084c7ae8a28)
)
(wire (pts (xy 81.28 54.61) (xy 83.82 54.61))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a6706c54-6a82-42d1-a6c9-48341690e19d)
)
(wire (pts (xy 81.28 91.44) (xy 81.28 57.15))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid aa0466c6-766f-4bb4-abf1-502a6a06f91d)
)
(wire (pts (xy 120.65 104.14) (xy 125.73 104.14))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid aa23bfe3-454b-4a2b-bfe1-101c747eb84e)
)
(wire (pts (xy 156.21 78.74) (xy 162.56 78.74))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b2b363dd-8e47-4a76-a142-e00e28334875)
)
(wire (pts (xy 81.28 118.11) (xy 81.28 114.3))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b44c0167-50fe-4c67-94fb-5ce2e6f52544)
)
(wire (pts (xy 226.06 149.86) (xy 226.06 146.05))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b66b83a0-313f-4b03-b851-c6e9577a6eb7)
)
(wire (pts (xy 151.13 99.06) (xy 157.48 99.06))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b9d4de74-d246-495d-8b63-12ab2133d6d6)
)
(wire (pts (xy 194.31 78.74) (xy 194.31 90.17))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c512fed3-9770-476b-b048-e781b4f3cd72)
)
(wire (pts (xy 120.65 88.9) (xy 125.73 88.9))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cfdef906-c924-4492-999d-4de066c0bce1)
)
(wire (pts (xy 125.73 96.52) (xy 114.3 96.52))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d035bb7a-e806-42f2-ba95-a390d279aef1)
)
(wire (pts (xy 151.13 104.14) (xy 168.91 104.14))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d45d1afe-78e6-4045-862c-b274469da903)
)
(wire (pts (xy 204.47 78.74) (xy 208.28 78.74))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d9cf2d61-3126-40fe-a66d-ae5145f94be8)
)
(wire (pts (xy 226.06 105.41) (xy 226.06 100.33))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid dad2f9a9-292b-4f7e-9524-a263f3c1ba74)
)
(wire (pts (xy 194.31 100.33) (xy 194.31 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid de552ae9-cde6-4643-8cc7-9de2579dadae)
)
(wire (pts (xy 204.47 90.17) (xy 204.47 78.74))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e04b8c10-725b-4bde-8cbf-66bfea5053e6)
)
(wire (pts (xy 184.15 100.33) (xy 184.15 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e0d7c1d9-102e-4758-a8b7-ff248f1ce315)
)
(wire (pts (xy 138.43 78.74) (xy 138.43 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e45aa7d8-0254-4176-afd9-766820762e19)
)
(wire (pts (xy 140.97 114.3) (xy 140.97 111.76))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e86e4fae-9ca7-4857-a93c-bc6a3048f887)
)
(wire (pts (xy 125.73 99.06) (xy 110.49 99.06))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f08895dc-4dcb-4aef-a39b-5a08864cdaaf)
)
(wire (pts (xy 168.91 104.14) (xy 168.91 109.22))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f203116d-f256-4611-a03e-9536bbedaf2f)
)
(wire (pts (xy 270.51 116.84) (xy 270.51 113.03))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f220d6a7-3170-4e04-8de6-2df0c3962fe0)
)
(wire (pts (xy 184.15 86.36) (xy 208.28 86.36))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f4aae365-6c70-41da-9253-52b239e8f5e6)
)
(wire (pts (xy 101.6 54.61) (xy 104.14 54.61))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f8621ac5-1e7e-4e87-8c69-5fd403df9470)
)
(text "minimum VIN 3.3V" (at 59.69 110.49 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 0e0f9829-27a5-43b2-a0ae-121d3ce72ef4)
)
(text "f3=144kHz A=0.5" (at 184.15 74.93 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 0fb27e11-fde6-4a25-adbb-e9684771b369)
)
(text "mute=2V" (at 67.31 102.87 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 18d3014d-7089-41b5-ab03-53cc0a265580)
)
(text "JP1 De-emphasis\n1-2: Off\n2-3: On" (at 86.36 140.97 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 720ec55a-7c69-4064-b792-ef3dbba4eab9)
)
(text "5.5V to 3.3V" (at 66.04 106.68 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 77aa6db5-9b8d-4983-b88e-30fe5af25975)
)
(text "FMT->GND = I2S right" (at 130.81 137.16 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid a9d76dfc-52ba-46de-beb4-dab7b94ee663)
)
(text "JP2 Latency\n1-2: Normal (default)\n2-3: Low\n" (at 105.41 140.97 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid d115a0df-1034-4583-83af-ff1cb8acfa17)
)
(text "22R resistors on data signals?" (at 146.05 29.21 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid dd2d59b3-ddef-491f-bb57-eb3d3820bdeb)
)
(text "f3=(R1+R2)/(2*PI*R1*R2*C1)" (at 184.15 69.85 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid e000728f-e3c5-4fc4-86af-db9ceb3a6542)
)
(label "MUTE" (at 114.3 101.6 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 1de61170-5337-44c5-ba28-bd477db4bff1)
)
(label "LATENCY" (at 114.3 96.52 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 3f96e159-1f3b-4ee7-a46e-e60d78f2137a)
)
(label "DEEMP" (at 110.49 110.49 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 662bafcb-dcfb-4471-a8a9-f5c777fdf249)
)
(global_label "+5.4V" (shape input) (at 76.2 63.5 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid bde3f73b-f869-498d-a8d7-18346cb7179e)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
)
(global_label "VIN" (shape input) (at 76.2 44.45 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid d6040293-95f0-436a-938c-ad69875a4be8)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
)
(hierarchical_label "RIGHT" (shape input) (at 208.28 86.36 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 09bbea88-8bd7-48ec-baae-1b4a9a11a40e)
)
(hierarchical_label "DIN" (shape input) (at 120.65 86.36 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 247ebffd-2cb6-4379-ba6e-21861fea3913)
)
(hierarchical_label "LEFT" (shape input) (at 208.28 78.74 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 56d2bc5d-fd72-4542-ab0f-053a5fd60efa)
)
(hierarchical_label "MCLK" (shape input) (at 120.65 91.44 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 83184391-76ed-44f0-8cd0-01f89f157bdb)
)
(hierarchical_label "LRCLK" (shape input) (at 120.65 83.82 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 94d24676-7ae3-483c-8bd6-88d31adf00b4)
)
(hierarchical_label "BCLK" (shape input) (at 120.65 88.9 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 966ee9ec-860e-45bb-af89-30bda72b2032)
)
(symbol (lib_id "Audio:PCM5102") (at 138.43 93.98 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005d41dc24)
(property "Reference" "U2" (id 0) (at 144.78 76.2 0))
(property "Value" "PCM5102" (id 1) (at 147.32 78.74 0))
(property "Footprint" "Package_SO:TSSOP-20_4.4x6.5mm_P0.65mm" (id 2) (at 137.16 74.93 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://www.ti.com/lit/ds/symlink/pcm5102.pdf" (id 3) (at 137.16 74.93 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 9700420e-de8a-4204-8773-4e55e133d8f3))
(pin "10" (uuid 0136353c-4935-4e25-9dae-8cd9bd5179ec))
(pin "11" (uuid e13535d1-c51e-4a53-b6e9-6afeba5a5a00))
(pin "12" (uuid d16df0c8-8000-4b79-a74a-a847199dc986))
(pin "13" (uuid 3fa4f8a0-238c-4a8a-9c2a-ec3ad6b565c1))
(pin "14" (uuid 7d466749-2f97-46b1-93d5-e8afaea7630c))
(pin "15" (uuid 13567744-77ab-4841-b0c6-039631b27d7f))
(pin "16" (uuid 52ca5ef5-2162-4de9-b6d3-65470e769508))
(pin "17" (uuid 8673ed00-adad-4d42-93ad-105b81a5aab7))
(pin "18" (uuid a6ccf706-44ac-475a-9a4c-8ac0cba980d6))
(pin "19" (uuid 6dc56088-da4f-4066-b350-21fa0f58b2d8))
(pin "2" (uuid 0460669e-1215-450a-a7ab-80d187153cdb))
(pin "20" (uuid 4855be18-01bb-4edd-888e-e52ae8c48a9b))
(pin "3" (uuid 50a06343-0063-4038-a9eb-593feb70a26e))
(pin "4" (uuid b26d624b-45a1-4399-9d1a-24a2bd46765b))
(pin "5" (uuid 5e6ddc98-40b8-4976-8c6a-6dc14bd6ff51))
(pin "6" (uuid b7d37cb2-1eb6-4330-a734-700124fbee2a))
(pin "7" (uuid 1d91a30e-0f9e-40da-84be-bc00136ffc8a))
(pin "8" (uuid c93d298b-ad72-40f3-92c8-fab68242c8d3))
(pin "9" (uuid 001e85f5-b9cc-49af-a2f9-a5dd9fc6dc7e))
)
(symbol (lib_id "power:GND") (at 138.43 118.11 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005d41eb16)
(property "Reference" "#PWR034" (id 0) (at 138.43 124.46 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 138.557 122.5042 0))
(property "Footprint" "" (id 2) (at 138.43 118.11 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 138.43 118.11 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid ec5155db-13e3-460e-b60b-30fb53f5d5ea))
)
(symbol (lib_id "power:+3.3V") (at 138.43 73.66 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005d41f899)
(property "Reference" "#PWR033" (id 0) (at 138.43 77.47 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3.3V" (id 1) (at 138.811 69.2658 0))
(property "Footprint" "" (id 2) (at 138.43 73.66 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 138.43 73.66 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 5b7d1fd7-8e2f-49e4-a6cd-b6d124e872bd))
)
(symbol (lib_id "power:GND") (at 120.65 118.11 0) (unit 1)