-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
rgba.net
1347 lines (1347 loc) · 55.5 KB
/
rgba.net
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
(export (version D)
(design
(source H:\Documents\KiCad\rgba\rgba.sch)
(date "03/31/21 05:09:41")
(tool "Eeschema (5.1.9)-1")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title "RGBA - Reasonably Good Bluetooth Audio")
(company "Fusha LLC")
(rev 1.1)
(date 2021-03-01)
(source rgba.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref U1)
(value FSC-BT806)
(footprint rgba:FSC-BT806)
(fields
(field (name Source) https://www.aliexpress.com/i/4000096888920.html))
(libsource (lib rgba) (part FSC-BT806) (description "Qualcomm CSR8675 based bluetooth audio module."))
(sheetpath (names /) (tstamps /))
(tstamp 603E36D4))
(comp (ref U6)
(value OPA1662)
(footprint rgba:VSSOP-8_3.0x3.0mm_P0.65mm)
(datasheet http://www.ti.com/lit/ds/symlink/opa1662.pdf)
(fields
(field (name Source) https://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=0e56c5cecb))
(libsource (lib rgba) (part OPA1662) (description "Dual SoundPlus High Performance, low power, low noise, low distortion, Audio Operational Amplifier, SOIC-8, VSSOP-8"))
(sheetpath (names /) (tstamps /))
(tstamp 60405F1F))
(comp (ref U4)
(value TPS7A3501)
(footprint rgba:WSON-6-1EP_2x2mm_P0.65mm_EP1x1.6mm_ThermalVias)
(fields
(field (name Source) https://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=0e56c5cecb))
(libsource (lib rgba) (part TPS7A3501) (description "High PSRR, Ultra-Low-Noise, 1-A Power Filter, WSON-6"))
(sheetpath (names /) (tstamps /))
(tstamp 6047A916))
(comp (ref C40)
(value 10uF)
(footprint Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder)
(datasheet ~)
(fields
(field (name Source) https://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=0e56c5cecb))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 6047F8BB))
(comp (ref C41)
(value 1uF)
(footprint Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder)
(datasheet ~)
(fields
(field (name Source) https://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=0e56c5cecb))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 60495B32))
(comp (ref C42)
(value 10uF)
(footprint Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder)
(datasheet ~)
(fields
(field (name Source) https://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=0e56c5cecb))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 60496B2D))
(comp (ref R610)
(value 1K)
(footprint Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder)
(datasheet ~)
(fields
(field (name Source) https://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=0e56c5cecb))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 6082707B))
(comp (ref R611)
(value 1K)
(footprint Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder)
(datasheet ~)
(fields
(field (name Source) https://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=0e56c5cecb))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 608288D4))
(comp (ref R612)
(value 4.7K)
(footprint Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder)
(datasheet ~)
(fields
(field (name Source) https://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=0e56c5cecb))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 6082C355))
(comp (ref R613)
(value 4.7K)
(footprint Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder)
(datasheet ~)
(fields
(field (name Source) https://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=0e56c5cecb))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 6082CCD0))
(comp (ref C610)
(value 4.3nF)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder)
(datasheet ~)
(fields
(field (name Source) https://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=0e56c5cecb))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 6082D72E))
(comp (ref R615)
(value 68R)
(footprint Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder)
(datasheet ~)
(fields
(field (name Source) https://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=0e56c5cecb))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 60875597))
(comp (ref C612)
(value 33pF)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder)
(datasheet ~)
(fields
(field (name Source) https://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=0e56c5cecb))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 60875FFF))
(comp (ref C611)
(value 33pF)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder)
(datasheet ~)
(fields
(field (name Source) https://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=0e56c5cecb))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 60896E8F))
(comp (ref R614)
(value 68R)
(footprint Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder)
(datasheet ~)
(fields
(field (name Source) https://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=0e56c5cecb))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 60897CC6))
(comp (ref R620)
(value 1K)
(footprint Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder)
(datasheet ~)
(fields
(field (name Source) https://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=0e56c5cecb))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 608C3EA2))
(comp (ref R621)
(value 1K)
(footprint Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder)
(datasheet ~)
(fields
(field (name Source) https://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=0e56c5cecb))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 608C3EAC))
(comp (ref R622)
(value 4.7K)
(footprint Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder)
(datasheet ~)
(fields
(field (name Source) https://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=0e56c5cecb))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 608C3EB6))
(comp (ref R623)
(value 4.7K)
(footprint Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder)
(datasheet ~)
(fields
(field (name Source) https://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=0e56c5cecb))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 608C3EC0))
(comp (ref C620)
(value 4.3nF)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder)
(datasheet ~)
(fields
(field (name Source) https://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=0e56c5cecb))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 608C3ECA))
(comp (ref R22)
(value 68R)
(footprint Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder)
(datasheet ~)
(fields
(field (name Source) https://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=0e56c5cecb))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 608C3EE0))
(comp (ref C625)
(value 33pF)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder)
(datasheet ~)
(fields
(field (name Source) https://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=0e56c5cecb))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 608C3EEA))
(comp (ref C621)
(value 33pF)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder)
(datasheet ~)
(fields
(field (name Source) https://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=0e56c5cecb))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 608C3F02))
(comp (ref R624)
(value 68R)
(footprint Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder)
(datasheet ~)
(fields
(field (name Source) https://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=0e56c5cecb))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 608C3F0C))
(comp (ref C25)
(value 2.2uF)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder)
(datasheet ~)
(fields
(field (name Source) https://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=0e56c5cecb))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 604E77C6))
(comp (ref U2)
(value PCM5242)
(footprint rgba:QFN-32-1EP_5x5mm_P0.5mm_EP3.45x3.45mm)
(fields
(field (name Source) https://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=0e56c5cecb))
(libsource (lib rgba) (part PCM5242_HW_CTRL) (description "(Hardware Control Mode) 4.2-VRMS DirectPath, 114-dB Audio Stereo DAC 32-bit, 384-kHz, VQFN-32"))
(sheetpath (names /) (tstamps /))
(tstamp 604167CB))
(comp (ref C24)
(value 2.2uF)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder)
(datasheet ~)
(fields
(field (name Source) https://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=0e56c5cecb))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 604DFA71))
(comp (ref C20)
(value 2.2uF)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder)
(datasheet ~)
(fields
(field (name Source) https://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=0e56c5cecb))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 604C7937))
(comp (ref C22)
(value 0.1uF)
(footprint Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder)
(datasheet ~)
(fields
(field (name Source) https://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=0e56c5cecb))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 60A03E8B))
(comp (ref C600)
(value 0.1uF)
(footprint Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder)
(datasheet ~)
(fields
(field (name Source) https://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=0e56c5cecb))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 6050563B))
(comp (ref C602)
(value 0.1uF)
(footprint Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder)
(datasheet ~)
(fields
(field (name Source) https://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=0e56c5cecb))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 605087CB))
(comp (ref C603)
(value 0.1uF)
(footprint Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder)
(datasheet ~)
(fields
(field (name Source) https://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=0e56c5cecb))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 6050A651))
(comp (ref C601)
(value 0.1uF)
(footprint Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder)
(datasheet ~)
(fields
(field (name Source) https://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=0e56c5cecb))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 6050AAB9))
(comp (ref R11)
(value 100K)
(footprint Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder)
(datasheet ~)
(fields
(field (name Source) https://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=0e56c5cecb))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 60435585))
(comp (ref SW1)
(value Switch_RA)
(footprint rgba:TL4110AF160Q)
(datasheet ~)
(fields
(field (name Source) https://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=0e56c5cecb))
(libsource (lib Switch) (part SW_SPST) (description "Single Pole Single Throw (SPST) switch"))
(sheetpath (names /) (tstamps /))
(tstamp 60424C12))
(comp (ref SW2)
(value Switch_RA)
(footprint rgba:TL4110AF160Q)
(datasheet ~)
(fields
(field (name Source) https://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=0e56c5cecb))
(libsource (lib Switch) (part SW_SPST) (description "Single Pole Single Throw (SPST) switch"))
(sheetpath (names /) (tstamps /))
(tstamp 6045231B))
(comp (ref SW3)
(value Switch_RA)
(footprint rgba:TL4110AF160Q)
(datasheet ~)
(fields
(field (name Source) https://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=0e56c5cecb))
(libsource (lib Switch) (part SW_SPST) (description "Single Pole Single Throw (SPST) switch"))
(sheetpath (names /) (tstamps /))
(tstamp 604526B0))
(comp (ref D30)
(value D_Small)
(footprint Diode_SMD:D_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
(datasheet ~)
(fields
(field (name Source) https://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=0e56c5cecb))
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 604DD0C3))
(comp (ref C21)
(value 0.1uF)
(footprint Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder)
(datasheet ~)
(fields
(field (name Source) https://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=0e56c5cecb))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 607B4938))
(comp (ref C10)
(value 1uF)
(footprint Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder)
(datasheet ~)
(fields
(field (name Source) https://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=0e56c5cecb))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 605BD9F7))
(comp (ref R10)
(value 100K)
(footprint Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder)
(datasheet ~)
(fields
(field (name Source) https://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=0e56c5cecb))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 6092375D))
(comp (ref C27)
(value 0.1uF)
(footprint Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder)
(datasheet ~)
(fields
(field (name Source) https://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=0e56c5cecb))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 604B3638))
(comp (ref C23)
(value 1uF)
(footprint Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder)
(datasheet ~)
(fields
(field (name Source) https://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=0e56c5cecb))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 60A51432))
(comp (ref D1)
(value D_Small)
(footprint Diode_SMD:D_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
(datasheet ~)
(fields
(field (name Source) https://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=0e56c5cecb))
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 60B03E85))
(comp (ref D2)
(value D_Small)
(footprint Diode_SMD:D_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
(datasheet ~)
(fields
(field (name Source) https://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=0e56c5cecb))
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 60B04B79))
(comp (ref LED1)
(value ORNG)
(footprint LED_SMD:LED_0603_1608Metric_Castellated)
(datasheet ~)
(fields
(field (name Source) https://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=0e56c5cecb))
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 60B2EB01))
(comp (ref LED2)
(value BLUE)
(footprint LED_SMD:LED_0603_1608Metric_Castellated)
(datasheet ~)
(fields
(field (name Source) https://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=0e56c5cecb))
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 60B3028B))
(comp (ref LED3)
(value WHITE)
(footprint LED_SMD:LED_0603_1608Metric_Castellated)
(datasheet ~)
(fields
(field (name Source) https://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=0e56c5cecb))
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 60B3060E))
(comp (ref R1)
(value 1K)
(footprint Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder)
(datasheet ~)
(fields
(field (name Source) https://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=0e56c5cecb))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 60B30A94))
(comp (ref R2)
(value 1K)
(footprint Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder)
(datasheet ~)
(fields
(field (name Source) https://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=0e56c5cecb))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 60B318D6))
(comp (ref R3)
(value 1K)
(footprint Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder)
(datasheet ~)
(fields
(field (name Source) https://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=0e56c5cecb))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 60B31BFC))
(comp (ref J2)
(value "BATT CONN")
(footprint Connector_JST:JST_ACH_BM02B-ACHSS-GAN-ETF_1x02-1MP_P1.20mm_Vertical)
(datasheet ~)
(fields
(field (name Source) https://www.digikey.com/en/products/detail/jst-sales-america-inc/BM02B-ACHSS-GAN-TF-LF-SN/1647794))
(libsource (lib Connector) (part JST_2Pin) (description "JST Power Input"))
(sheetpath (names /) (tstamps /))
(tstamp 60D88C33))
(comp (ref J4)
(value "R SPK OUT")
(footprint Connector_Wire:SolderWire-0.1sqmm_1x03_P3.6mm_D0.4mm_OD1mm)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x03_Male) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 60E81B03))
(comp (ref J5)
(value "L SPK OUT")
(footprint Connector_Wire:SolderWire-0.1sqmm_1x03_P3.6mm_D0.4mm_OD1mm)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x03_Male) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 60FB5C5B))
(comp (ref R30)
(value 100K)
(footprint Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder)
(datasheet ~)
(fields
(field (name Source) https://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=0e56c5cecb))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 60885B84))
(comp (ref U5)
(value TPS65133DPD)
(footprint rgba:WSON-12-1EP_3x3mm_P0.45mm_EP1.2x2mm)
(datasheet http://www.ti.com/lit/ds/symlink/tps65133.pdf)
(fields
(field (name Source) https://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=0e56c5cecb))
(libsource (lib rgba) (part TPS65133DPD) (description "Split-Rail Converter with Dual, Positive and Negative Outputs, 2.9-5.0V in +/- 5.0V out, 250mA output, WSON-12"))
(sheetpath (names /) (tstamps /))
(tstamp 604192F8))
(comp (ref L51)
(value 4.7uH)
(footprint Inductor_SMD:L_1008_2520Metric_Pad1.43x2.20mm_HandSolder)
(datasheet ~)
(fields
(field (name Source) https://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=0e56c5cecb))
(libsource (lib Device) (part L_Small) (description "Inductor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 606CF78B))
(comp (ref C53)
(value 10uF)
(footprint Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder)
(datasheet ~)
(fields
(field (name Source) https://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=0e56c5cecb))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 6042A7EA))
(comp (ref C50)
(value 10uF)
(footprint Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder)
(datasheet ~)
(fields
(field (name Source) https://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=0e56c5cecb))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 604F1D73))
(comp (ref L50)
(value 4.7uH)
(footprint Inductor_SMD:L_1008_2520Metric_Pad1.43x2.20mm_HandSolder)
(datasheet ~)
(fields
(field (name Source) https://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=0e56c5cecb))
(libsource (lib Device) (part L_Small) (description "Inductor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 60439C67))
(comp (ref C52)
(value 10uF)
(footprint Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder)
(datasheet ~)
(fields
(field (name Source) https://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=0e56c5cecb))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 60429A24))
(comp (ref C51)
(value 0.1uF)
(footprint Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder)
(datasheet ~)
(fields
(field (name Source) https://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=0e56c5cecb))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 60422BD6))
(comp (ref C26)
(value 1uF)
(footprint Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder)
(datasheet ~)
(fields
(field (name Source) https://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=0e56c5cecb))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 604EDC67))
(comp (ref J1)
(value "CHARGE CONN")
(footprint rgba:USB_C_Receptacle_UJC-HP-3-SMT-TR)
(datasheet https://www.usb.org/sites/default/files/documents/usb_type-c.zip)
(fields
(field (name Source) https://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=0e56c5cecb))
(libsource (lib rgba) (part USB_C_Receptacle_PowerOnly) (description "USB 2.0-only Type-C Receptacle connector"))
(sheetpath (names /) (tstamps /))
(tstamp 60F17D1E))
(comp (ref J3)
(value UART_GND)
(footprint TestPoint:TestPoint_THTPad_D1.0mm_Drill0.5mm)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x01_Male) (description "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 6087C91C))
(comp (ref J6)
(value UART_CTS)
(footprint TestPoint:TestPoint_THTPad_D1.0mm_Drill0.5mm)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x01_Male) (description "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 6087D420))
(comp (ref J7)
(value UART_VBUS)
(footprint TestPoint:TestPoint_THTPad_D1.0mm_Drill0.5mm)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x01_Male) (description "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 6087D606))
(comp (ref J8)
(value UART_TX)
(footprint TestPoint:TestPoint_THTPad_D1.0mm_Drill0.5mm)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x01_Male) (description "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 6087D7EB))
(comp (ref J9)
(value UART_RX)
(footprint TestPoint:TestPoint_THTPad_D1.0mm_Drill0.5mm)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x01_Male) (description "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 6087D92E))
(comp (ref J10)
(value UART_RTS)
(footprint TestPoint:TestPoint_THTPad_D1.0mm_Drill0.5mm)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x01_Male) (description "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 6087DAE4))
(comp (ref J11)
(value "Screw 1")
(footprint rgba:MountingHole_1.2mm_M1_Pad)
(datasheet ~)
(fields
(field (name Source) https://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=0e56c5cecb))
(libsource (lib Connector) (part Screw_Terminal_01x01) (description "Generic screw terminal, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 609FC53A))
(comp (ref U3)
(value TPS62849DLCR)
(footprint rgba:VSON-8_1.5x2mm_P0.5mm)
(datasheet https://www.ti.com/lit/ds/symlink/tps62840.pdf)
(fields
(field (name Manufacturer) "Texas Instruments")
(field (name Package) DLC0008B)
(field (name Source) https://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=0e56c5cecb))
(libsource (lib rgba) (part TPS62849DLCR) (description "High efficiency 750mA 3.3V step-down converter, input up to 6.5V"))
(sheetpath (names /) (tstamps /))
(tstamp 60603459))
(comp (ref L30)
(value 4.7uH)
(footprint Inductor_SMD:L_1008_2520Metric_Pad1.43x2.20mm_HandSolder)
(datasheet ~)
(fields
(field (name Source) https://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=0e56c5cecb))
(libsource (lib Device) (part L_Small) (description "Inductor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 6061509E))
(comp (ref C31)
(value 10uF)
(footprint Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder)
(datasheet ~)
(fields
(field (name Source) https://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=0e56c5cecb))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 606150C3))
(comp (ref C30)
(value 10uF)
(footprint Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder)
(datasheet ~)
(fields
(field (name Source) https://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=0e56c5cecb))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 607437FD))
(comp (ref J12)
(value "Screw 1")
(footprint rgba:MountingHole_1.2mm_M1_Pad)
(datasheet ~)
(fields
(field (name Source) https://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=0e56c5cecb))
(libsource (lib Connector) (part Screw_Terminal_01x01) (description "Generic screw terminal, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 60D056FB)))
(libparts
(libpart (lib Connector) (part Conn_01x01_Male)
(description "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x01_Male))
(pins
(pin (num 1) (name Pin_1) (type passive))))
(libpart (lib Connector) (part Conn_01x03_Male)
(description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x03_Male))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))))
(libpart (lib Connector) (part JST_2Pin)
(aliases
(alias Jack-DC_copy))
(description "JST Power Input")
(docs ~)
(footprints
(fp BarrelJack*))
(fields
(field (name Reference) J)
(field (name Value) JST_2Pin))
(pins
(pin (num 1) (name ~) (type power_out))
(pin (num 2) (name ~) (type power_out))))
(libpart (lib Connector) (part Screw_Terminal_01x01)
(description "Generic screw terminal, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp TerminalBlock*:*))
(fields
(field (name Reference) J)
(field (name Value) Screw_Terminal_01x01))
(pins
(pin (num 1) (name Pin_1) (type passive))))
(libpart (lib Device) (part C_Small)
(description "Unpolarized capacitor, small symbol")
(docs ~)
(footprints
(fp C_*))
(fields
(field (name Reference) C)
(field (name Value) C_Small))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Device) (part D_Small)
(description "Diode, small symbol")
(docs ~)
(footprints
(fp TO-???*)
(fp *_Diode_*)
(fp *SingleDiode*)
(fp D_*))
(fields
(field (name Reference) D)
(field (name Value) D_Small))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib Device) (part LED)
(description "Light emitting diode")
(docs ~)
(footprints
(fp LED*)
(fp LED_SMD:*)
(fp LED_THT:*))
(fields
(field (name Reference) D)
(field (name Value) LED))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib Device) (part L_Small)
(description "Inductor, small symbol")
(docs ~)
(footprints
(fp Choke_*)
(fp *Coil*)
(fp Inductor_*)
(fp L_*))
(fields
(field (name Reference) L)
(field (name Value) L_Small))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Device) (part R_Small)
(description "Resistor, small symbol")
(docs ~)
(footprints
(fp R_*))
(fields
(field (name Reference) R)
(field (name Value) R_Small))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Switch) (part SW_SPST)
(description "Single Pole Single Throw (SPST) switch")
(docs ~)
(fields
(field (name Reference) SW)
(field (name Value) SW_SPST))
(pins
(pin (num 1) (name A) (type passive))
(pin (num 2) (name B) (type passive))))
(libpart (lib rgba) (part FSC-BT806)
(description "Qualcomm CSR8675 based bluetooth audio module.")
(fields
(field (name Reference) U)
(field (name Value) FSC-BT806))
(pins
(pin (num 1) (name GND) (type power_in))
(pin (num 2) (name AIO0) (type BiDi))
(pin (num 3) (name ADIO1) (type BiDi))
(pin (num 4) (name I2S_CLK) (type BiDi))
(pin (num 5) (name I2S_IN) (type input))
(pin (num 6) (name I2S_OUT) (type output))
(pin (num 7) (name I2S_SYNC) (type BiDi))
(pin (num 8) (name RESET) (type input))
(pin (num 9) (name SPI_CSB) (type BiDi))
(pin (num 10) (name SPI_MOSI) (type input))
(pin (num 11) (name SPI_MISO) (type output))
(pin (num 12) (name SPI_CLK) (type BiDi))
(pin (num 13) (name BT_TX) (type output))
(pin (num 14) (name BT_RX) (type input))
(pin (num 15) (name BT_CTS) (type passive))
(pin (num 16) (name BT_RTS) (type passive))
(pin (num 17) (name LED0) (type passive))
(pin (num 18) (name LED1) (type passive))
(pin (num 19) (name LED2) (type passive))
(pin (num 20) (name PIO0) (type passive))
(pin (num 21) (name PIO1) (type passive))
(pin (num 22) (name GND) (type power_in))
(pin (num 23) (name PIO2) (type passive))
(pin (num 24) (name PIO3) (type passive))
(pin (num 25) (name PIO4) (type passive))
(pin (num 26) (name PIO5) (type passive))
(pin (num 27) (name PIO6) (type passive))
(pin (num 28) (name PIO7) (type passive))
(pin (num 29) (name PIO14) (type passive))
(pin (num 30) (name PIO15) (type passive))
(pin (num 31) (name VDD_USB) (type passive))
(pin (num 32) (name GND) (type power_in))
(pin (num 33) (name VBAT_IN) (type power_in))
(pin (num 34) (name VREGENABLE) (type input))
(pin (num 35) (name 1V8_OUT) (type power_out))
(pin (num 36) (name VDD_IO) (type power_in))
(pin (num 37) (name USB_D+) (type BiDi))
(pin (num 38) (name USB_D-) (type BiDi))
(pin (num 39) (name VCC_CHG) (type power_in))
(pin (num 40) (name MIC_R+) (type input))
(pin (num 41) (name MIC_R-) (type input))
(pin (num 42) (name MIC_R_BIAS) (type output))
(pin (num 43) (name MIC_L+) (type input))
(pin (num 44) (name MIC_+-) (type input))
(pin (num 45) (name MIC_L_BIAS) (type output))
(pin (num 46) (name SPK_R-) (type output))
(pin (num 47) (name SPK_R+) (type output))
(pin (num 48) (name SPK_L-) (type output))
(pin (num 49) (name SPK_L+) (type output))
(pin (num 50) (name GND) (type power_in))
(pin (num 51) (name EXT_ANT) (type BiDi))
(pin (num 52) (name GND) (type power_in))))
(libpart (lib rgba) (part OPA1662)
(description "Dual SoundPlus High Performance, low power, low noise, low distortion, Audio Operational Amplifier, SOIC-8, VSSOP-8")
(docs http://www.ti.com/lit/ds/symlink/opa1662.pdf)
(footprints
(fp Texas*PVSON*))
(fields
(field (name Reference) U)
(field (name Value) OPA1662)
(field (name Footprint) Package_SO:VSSOP-8_3.0x3.0mm_P0.65mm))
(pins
(pin (num 1) (name ~) (type output))
(pin (num 2) (name -) (type input))
(pin (num 3) (name +) (type input))
(pin (num 4) (name V-) (type power_in))
(pin (num 5) (name +) (type input))
(pin (num 6) (name -) (type input))
(pin (num 7) (name ~) (type output))
(pin (num 8) (name V+) (type power_in))))
(libpart (lib rgba) (part PCM5242_HW_CTRL)
(description "(Hardware Control Mode) 4.2-VRMS DirectPath, 114-dB Audio Stereo DAC 32-bit, 384-kHz, VQFN-32")
(fields
(field (name Reference) U)
(field (name Value) PCM5242_HW_CTRL)
(field (name Footprint) rgba:QFN-32-1EP_5x5mm_P0.5mm_EP3.45x3.45mm))
(pins
(pin (num 1) (name XSMT) (type input))
(pin (num 2) (name LDOO) (type passive))
(pin (num 3) (name DGND) (type passive))
(pin (num 4) (name DVDD) (type power_in))
(pin (num 5) (name CPVDD) (type power_in))
(pin (num 6) (name CAPP) (type output))
(pin (num 7) (name CPGND) (type passive))
(pin (num 8) (name CAPM) (type output))
(pin (num 9) (name VNEG) (type output))
(pin (num 10) (name OUT_L+) (type output))
(pin (num 11) (name OUT_L-) (type output))
(pin (num 12) (name OUT_R-) (type output))
(pin (num 13) (name OUT_R+) (type output))
(pin (num 14) (name AVDD) (type power_in))
(pin (num 15) (name AGND) (type passive))
(pin (num 16) (name VCOM) (type input))
(pin (num 17) (name ATT2) (type input))
(pin (num 18) (name ATT1) (type input))
(pin (num 19) (name ATT0) (type input))
(pin (num 20) (name MAST) (type input))
(pin (num 21) (name AGNS) (type input))
(pin (num 22) (name GPO) (type output))
(pin (num 23) (name MODE1) (type input))
(pin (num 24) (name MODE2) (type input))
(pin (num 25) (name FLT) (type input))
(pin (num 26) (name SCK) (type input))
(pin (num 27) (name BCK) (type BiDi))
(pin (num 28) (name DIN) (type input))
(pin (num 29) (name NC) (type NotConnected))
(pin (num 30) (name NC) (type NotConnected))
(pin (num 31) (name LRCK) (type BiDi))
(pin (num 32) (name FMT) (type input))
(pin (num 33) (name TP) (type power_in))))
(libpart (lib rgba) (part TPS62849DLCR)
(description "High efficiency 750mA 3.3V step-down converter, input up to 6.5V")
(docs https://www.ti.com/lit/ds/symlink/tps62840.pdf)
(fields
(field (name Reference) U)
(field (name Value) TPS62849DLCR)
(field (name Footprint) rgba:VSON-8_1.5x2mm_P0.5mm)
(field (name Manufacturer) "Texas Instruments")
(field (name Package) DLC0008B))
(pins
(pin (num 1) (name GND) (type power_in))
(pin (num 2) (name VIN) (type power_in))
(pin (num 3) (name MODE) (type BiDi))
(pin (num 4) (name EN) (type input))
(pin (num 5) (name VSET) (type input))
(pin (num 6) (name STOP) (type input))
(pin (num 7) (name SW) (type BiDi))
(pin (num 8) (name VOS) (type input))))
(libpart (lib rgba) (part TPS65133DPD)
(description "Split-Rail Converter with Dual, Positive and Negative Outputs, 2.9-5.0V in +/- 5.0V out, 250mA output, WSON-12")
(docs http://www.ti.com/lit/ds/symlink/tps65133.pdf)
(footprints
(fp VQFN*1EP*4x4mm*P0.5mm*))
(fields
(field (name Reference) U)
(field (name Value) TPS65133DPD)
(field (name Footprint) rgba:WSON-12-1EP_3x3mm_P0.45mm_EP1.2x2mm))
(pins
(pin (num 1) (name SWP) (type passive))
(pin (num 2) (name PGND) (type power_in))
(pin (num 3) (name VPOS) (type power_out))
(pin (num 4) (name GND) (type input))
(pin (num 5) (name AGND) (type power_in))
(pin (num 6) (name GND) (type input))
(pin (num 7) (name EN) (type input))
(pin (num 8) (name GND) (type input))
(pin (num 9) (name VNEG) (type power_out))
(pin (num 10) (name SWN) (type input))
(pin (num 11) (name AVIN) (type power_in))
(pin (num 12) (name PVIN) (type power_in))
(pin (num 13) (name TP) (type passive))))
(libpart (lib rgba) (part TPS7A3501)
(description "High PSRR, Ultra-Low-Noise, 1-A Power Filter, WSON-6")
(fields
(field (name Reference) U)
(field (name Value) TPS7A3501)
(field (name Footprint) Package_SON:WSON-6-1EP_2x2mm_P0.65mm_EP1x1.6mm_ThermalVias))
(pins
(pin (num 1) (name IN) (type power_in))
(pin (num 2) (name EN) (type input))
(pin (num 3) (name GND) (type power_in))
(pin (num 4) (name NR) (type output))
(pin (num 5) (name SENSE) (type input))
(pin (num 6) (name OUT) (type power_out))
(pin (num 7) (name TP) (type passive))))
(libpart (lib rgba) (part USB_C_Receptacle_PowerOnly)
(description "USB 2.0-only Type-C Receptacle connector")
(docs https://www.usb.org/sites/default/files/documents/usb_type-c.zip)
(footprints
(fp USB*C*Receptacle*))
(fields
(field (name Reference) J)
(field (name Value) USB_C_Receptacle_PowerOnly)
(field (name Footprint) rgba:USB_C_Receptacle_UJC-HP-3-SMT-TR))
(pins
(pin (num A1) (name GND) (type power_out))
(pin (num A5) (name CC1) (type passive))
(pin (num A9) (name VBUS) (type power_out))
(pin (num B1) (name GND) (type passive))
(pin (num B5) (name CC2) (type passive))
(pin (num B9) (name VBUS) (type passive))
(pin (num S1) (name SHIELD) (type passive)))))
(libraries
(library (logical Connector)
(uri G:\KiCad\share\kicad\library/Connector.lib))
(library (logical Device)
(uri G:\KiCad\share\kicad\library/Device.lib))
(library (logical Switch)
(uri G:\KiCad\share\kicad\library/Switch.lib))
(library (logical rgba)
(uri H:\Documents\KiCad\rgba/rgba.lib)))
(nets