-
Notifications
You must be signed in to change notification settings - Fork 1
/
power_supply.net
1689 lines (1689 loc) · 56.8 KB
/
power_supply.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 S:\kicad\soldering_cert\power_supply.sch)
(date "8/4/2014 7:53:58 PM")
(tool "eeschema (2013-07-07 BZR 4022)-stable"))
(components
(comp (ref J1)
(value USB-IN)
(footprint "A108263CT(uUSB)")
(datasheet http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=2040002&DocType=Customer+Drawing&DocLang=English)
(fields
(field (name "Product Number") A108263CT-ND)
(field (name Vendor) Digikey))
(libsource (lib power_supply) (part USB-MICRO))
(sheetpath (names /) (tstamps /))
(tstamp 539E2DDA))
(comp (ref U3)
(value MIC2185)
(footprint so-16)
(datasheet http://www.micrel.com/_PDF/mic2185.pdf)
(fields
(field (name "Product Number") 576-2162-ND)
(field (name Vendor) Digikey))
(libsource (lib power_supply) (part MIC2185))
(sheetpath (names /) (tstamps /))
(tstamp 539F4C11))
(comp (ref R3)
(value 100k)
(footprint r_1206)
(datasheet http://www.vishay.com/doc?20035)
(fields
(field (name "Product Number") 541-100KFCT-ND)
(field (name Vendor) Digikey))
(libsource (lib power_supply) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 539F5127))
(comp (ref R5)
(value 10k)
(footprint r_pth_2.5x6.5mm)
(datasheet http://www.vishay.com/doc?28724)
(fields
(field (name "Product Number") PPC10.0KZCT-ND)
(field (name Vendor) Digikey))
(libsource (lib power_supply) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 539F6BF7))
(comp (ref C4)
(value 103)
(footprint cp_2.54mm)
(datasheet http://capacitoredge.kemet.com/capedge2/DataSheet?pn=C315C103K5R5TA7303)
(fields
(field (name "Product Number") 399-9858-1-ND)
(field (name Vendor) Digikey))
(libsource (lib power_supply) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 539F6BFD))
(comp (ref C8)
(value 104)
(footprint cp_2.54mm)
(datasheet http://www.kemet.com/docfinder?Partnumber=C315C102K1R5TA)
(fields
(field (name "Product Number") 399-4144-ND)
(field (name Vendor) Digikey))
(libsource (lib power_supply) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 539F82E5))
(comp (ref C10)
(value 105)
(footprint cp_2.54mm)
(datasheet http://capacitoredge.kemet.com/capedge2/DataSheet?pn=C315C105K3R5TA)
(fields
(field (name "Product Number") 399-9714-ND)
(field (name Vendor) Digikey))
(libsource (lib power_supply) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 539F8A85))
(comp (ref Q1)
(value SI4174DY)
(footprint si4174dy)
(datasheet http://www.vishay.com/docs/68998/si4174dy.pdf)
(fields
(field (name "Product Number") SI4174DY-T1-GE3CT-ND)
(field (name Vendor) "Digikey "))
(libsource (lib power_supply) (part SI4174DY))
(sheetpath (names /) (tstamps /))
(tstamp 539F91DD))
(comp (ref R10)
(value 0.03)
(footprint r_1206)
(datasheet http://www.vishay.com/doc?30122)
(fields
(field (name "Product Number") WSLP-.01CT-ND)
(field (name Vendor) Digikey))
(libsource (lib power_supply) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 539F9501))
(comp (ref Q2)
(value SI4463CDY)
(footprint si4463cdy)
(datasheet http://www.vishay.com/docs/67335/si4463cd.pdf)
(fields
(field (name "Product Number") 78-SI4463CDY-T1-GE3)
(field (name Vendor) Mouser))
(libsource (lib power_supply) (part SI4463CDY))
(sheetpath (names /) (tstamps /))
(tstamp 539FABA4))
(comp (ref D14)
(value B130)
(footprint diode_do41)
(datasheet http://www.vishay.com/docs/88946/b120.pdf)
(fields
(field (name "Product Number") B130-E3/5ATGICT-ND)
(field (name Vendor) Digikey))
(libsource (lib power_supply) (part SCHOTTKY))
(sheetpath (names /) (tstamps /))
(tstamp 539FB40C))
(comp (ref L1)
(value 4.7uH)
(footprint ind_12.5mm)
(datasheet http://www.bourns.com/data/global/pdfs/SRR1240.pdf)
(fields
(field (name "Product Number") SRR1240-4R7MCT-ND)
(field (name Vendor) Digikey))
(libsource (lib power_supply) (part INDUCTOR))
(sheetpath (names /) (tstamps /))
(tstamp 539FBFC4))
(comp (ref R14)
(value 31k6)
(footprint r_1206)
(datasheet http://www.vishay.com/doc?20035)
(fields
(field (name "Product Number") 541-31.6KFCT-ND)
(field (name Vendor) Digikey))
(libsource (lib power_supply) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 539FC6F3))
(comp (ref U1)
(value LM3914)
(footprint PDIP-18)
(datasheet http://www.ti.com/lit/ds/symlink/lm3914.pdf)
(fields
(field (name "Product Number") LM3914N-1/NOPB-ND)
(field (name Vendor) "Digikey "))
(libsource (lib power_supply) (part LM3914))
(sheetpath (names /) (tstamps /))
(tstamp 539FF5B6))
(comp (ref U9)
(value MAX9938)
(footprint sot23-5)
(datasheet http://datasheets.maximintegrated.com/en/ds/MAX9938.pdf)
(fields
(field (name "Product Number") MAX9938TEUK+TCT-ND)
(field (name Vendor) "Digikey "))
(libsource (lib power_supply) (part MAX9938))
(sheetpath (names /) (tstamps /))
(tstamp 539FF79F))
(comp (ref D8)
(value 1.20A)
(footprint led_1206)
(datasheet http://www.kingbrightusa.com/images/catalog/SPEC/APT3216SECK.pdf)
(fields
(field (name "Product Number") 754-1140-1-ND)
(field (name Vendor) "Digikey "))
(libsource (lib power_supply) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 53A007BC))
(comp (ref D10)
(value 1.50A)
(footprint led_1206)
(datasheet http://www.kingbrightusa.com/images/catalog/SPEC/APT3216SURCK.pdf)
(fields
(field (name "Product Number") 754-1143-1-ND)
(field (name Vendor) "Digikey "))
(libsource (lib power_supply) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 53A0095C))
(comp (ref D1)
(value 0.15A)
(footprint led_1206)
(datasheet http://www.kingbrightusa.com/images/catalog/SPEC/APT3216QBC-D.pdf)
(fields
(field (name "Product Number") 754-1439-1-ND)
(field (name Vendor) "Digikey "))
(libsource (lib power_supply) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 53A0074A))
(comp (ref J2)
(value "USB OUT")
(footprint "A107360(USB-A)")
(datasheet http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=1903814&DocType=Customer+Drawing&DocLang=English)
(fields
(field (name "Product Number") A107360-ND)
(field (name Vendor) Digikey))
(libsource (lib power_supply) (part USB))
(sheetpath (names /) (tstamps /))
(tstamp 53A02AE3))
(comp (ref R2)
(value 130k)
(footprint r_pth_2.5x6.5mm)
(datasheet http://www.vishay.com/doc?31018)
(fields
(field (name "Product Number") CMF130KHFCT-ND)
(field (name Vendor) Digikey))
(libsource (lib power_supply) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 53A04B7A))
(comp (ref R1)
(value 4k87)
(footprint r_pth_2.5x6.5mm)
(datasheet http://www.vishay.com/doc?31018)
(fields
(field (name "Product Number") CMF4.87KHFCT-ND)
(field (name Vendor) Digikey))
(libsource (lib power_supply) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 53A04B80))
(comp (ref U4)
(value MCP73833)
(footprint msop-10)
(datasheet http://www.microchip.com/mymicrochip/filehandler.aspx?ddocname=en027983)
(fields
(field (name "Product Number") MCP73833-FCI/UN-ND)
(field (name Vendor) "Digikey "))
(libsource (lib power_supply) (part MCP73833))
(sheetpath (names /) (tstamps /))
(tstamp 53A080EC))
(comp (ref C7)
(value 106)
(footprint c_1206)
(datasheet http://www.kemet.com/docfinder?Partnumber=C1206C106M3RACTU)
(fields
(field (name "Product Number") 399-7443-1-ND)
(field (name Vendor) Digikey))
(libsource (lib power_supply) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 53A080F3))
(comp (ref R12)
(value 1K)
(footprint r_1206)
(datasheet http://www.vishay.com/doc?20035)
(fields
(field (name "Product Number") 541-1.00KFCT-ND)
(field (name Vendor) Digikey))
(libsource (lib power_supply) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 53A08100))
(comp (ref RT1)
(value "10K THERMISTOR")
(footprint r_1206)
(datasheet http://www.vishay.com/doc?33008)
(fields
(field (name "Product Number") 541-1144-1-ND)
(field (name Vendor) Digikey))
(libsource (lib power_supply) (part THERMISTOR))
(sheetpath (names /) (tstamps /))
(tstamp 53A08106))
(comp (ref U7)
(value BATT)
(footprint BAT-18650-cylinder)
(datasheet http://www.batteryspace.com/prod-specs/5702_5.pdf)
(fields
(field (name "Product Number") 5702)
(field (name Vendor) batteryspace))
(libsource (lib power_supply) (part BATT))
(sheetpath (names /) (tstamps /))
(tstamp 53A0810C))
(comp (ref U10)
(value FDC6392S)
(footprint sot23-6)
(datasheet http://www.fairchildsemi.com/ds/FD/FDC6392S.pdf)
(fields
(field (name "Product Number") FDC6392SCT-ND)
(field (name Vendor) Digikey))
(libsource (lib power_supply) (part FDC6392S))
(sheetpath (names /) (tstamps /))
(tstamp 53A08115))
(comp (ref D12)
(value CHARGING)
(footprint led_1206)
(datasheet http://www.kingbrightusa.com/images/catalog/SPEC/APT3216CGCK.pdf)
(fields
(field (name "Product Number") 754-1136-1-ND)
(field (name Vendor) "Digikey "))
(libsource (lib power_supply) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 53A0812B))
(comp (ref D11)
(value CHARGED)
(footprint led_1206)
(datasheet http://www.kingbrightusa.com/images/catalog/SPEC/APT3216QBC-D.pdf)
(fields
(field (name "Product Number") 754-1439-1-ND)
(field (name Vendor) "Digikey "))
(libsource (lib power_supply) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 53A08131))
(comp (ref D13)
(value "PWR IN OK")
(footprint led_1206)
(datasheet http://www.kingbrightusa.com/images/catalog/SPEC/APT3216QBC-D.pdf)
(fields
(field (name "Product Number") 754-1439-1-ND)
(field (name Vendor) "Digikey "))
(libsource (lib power_supply) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 53A08137))
(comp (ref R6)
(value 4k3)
(footprint r_pth_2.5x6.5mm)
(datasheet http://www.yageo.com/documents/recent/General%20Type_CFR.pdf)
(fields
(field (name "Product Number") 4.3KQBK-ND)
(field (name Vendor) Digikey))
(libsource (lib power_supply) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 53A08143))
(comp (ref F2)
(value 1.5A)
(footprint ptc_1812)
(datasheet http://www.littelfuse.com/~/media/electronics/datasheets/resettable_ptcs/littelfuse_ptc_1812l_datasheet.pdf.pdf)
(fields
(field (name "Product Number") F2154CT-ND)
(field (name Vendor) "Digikey "))
(libsource (lib power_supply) (part PTC))
(sheetpath (names /) (tstamps /))
(tstamp 53A0B4AA))
(comp (ref C6)
(value 104)
(footprint c_1206)
(datasheet http://www.kemet.com/docfinder?Partnumber=C1206C104K5RACTU)
(fields
(field (name "Product Number") 399-1249-1-ND)
(field (name Vendor) Digikey))
(libsource (lib power_supply) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 539FA04F))
(comp (ref R17)
(value 0.05)
(footprint 1206-Kelvin)
(datasheet http://www.ohmite.com/cat/res_lvk.pdf)
(fields
(field (name "Product Number") LVK12R050DERCT-ND)
(field (name Vendor) "Digikey "))
(libsource (lib power_supply) (part R-4TERM))
(sheetpath (names /) (tstamps /))
(tstamp 53A0DF2D))
(comp (ref F1)
(value 3.0A)
(footprint ptc_1812)
(datasheet http://www.littelfuse.com/~/media/electronics/datasheets/resettable_ptcs/littelfuse_ptc_1812l_datasheet.pdf.pdf)
(fields
(field (name "Product Number") F4162CT-ND)
(field (name Vendor) "Digikey "))
(libsource (lib power_supply) (part PTC))
(sheetpath (names /) (tstamps /))
(tstamp 53A0E6A4))
(comp (ref U6)
(value TPS2511)
(footprint msop-8-powerpad)
(datasheet http://www.ti.com/lit/ds/symlink/tps2511.pdf)
(fields
(field (name "Product Number") 296-30552-1-ND)
(field (name Vendor) "Digikey "))
(libsource (lib power_supply) (part TPS2511))
(sheetpath (names /) (tstamps /))
(tstamp 53A0F32C))
(comp (ref R7)
(value 34k)
(footprint r_pth_2.5x6.5mm)
(datasheet http://www.vishay.com/doc?31018)
(fields
(field (name "Product Number") CMF34.0KHFCT-ND)
(field (name Vendor) Digikey))
(libsource (lib power_supply) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 53A0F655))
(comp (ref R18)
(value 1M)
(footprint r_pth_2.5x6.5mm)
(datasheet http://www.vishay.com/doc?31018)
(fields
(field (name "Product Number") CMF1.00MHFCT-ND)
(field (name Vendor) Digikey))
(libsource (lib power_supply) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 53A0FF2A))
(comp (ref Q3)
(value SI4463CDY)
(footprint si4463cdy)
(datasheet http://www.vishay.com/docs/67335/si4463cd.pdf)
(fields
(field (name "Product Number") 78-SI4463CDY-T1-GE3)
(field (name Vendor) Mouser))
(libsource (lib power_supply) (part SI4463CDY))
(sheetpath (names /) (tstamps /))
(tstamp 53A0FF44))
(comp (ref U8)
(value LT1389)
(footprint so-8)
(datasheet http://www.linear.com/docs/1424)
(fields
(field (name "Product Number") LT1389BCS8-5#PBF-ND)
(field (name Vendor) "Digikey "))
(libsource (lib power_supply) (part LT1389))
(sheetpath (names /) (tstamps /))
(tstamp 53A314B0))
(comp (ref D9)
(value 1.35A)
(footprint led_1206)
(datasheet http://www.kingbrightusa.com/images/catalog/SPEC/APT3216SECK.pdf)
(fields
(field (name "Product Number") 754-1140-1-ND)
(field (name Vendor) Digikey))
(libsource (lib power_supply) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 53A33AC1))
(comp (ref D2)
(value 0.30A)
(footprint led_1206)
(datasheet http://www.kingbrightusa.com/images/catalog/SPEC/APT3216QBC-D.pdf)
(fields
(field (name "Product Number") 754-1439-1-ND)
(field (name Vendor) "Digikey "))
(libsource (lib power_supply) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 53A33F81))
(comp (ref D3)
(value 0.45A)
(footprint led_1206)
(datasheet http://www.kingbrightusa.com/images/catalog/SPEC/APT3216QBC-D.pdf)
(fields
(field (name "Product Number") 754-1439-1-ND)
(field (name Vendor) "Digikey "))
(libsource (lib power_supply) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 53A33F89))
(comp (ref D4)
(value 0.60A)
(footprint led_1206)
(datasheet http://www.kingbrightusa.com/images/catalog/SPEC/APT3216QBC-D.pdf)
(fields
(field (name "Product Number") 754-1439-1-ND)
(field (name Vendor) "Digikey "))
(libsource (lib power_supply) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 53A33F91))
(comp (ref D5)
(value 0.75A)
(footprint led_1206)
(datasheet http://www.kingbrightusa.com/images/catalog/SPEC/APT3216QBC-D.pdf)
(fields
(field (name "Product Number") 754-1439-1-ND)
(field (name Vendor) "Digikey "))
(libsource (lib power_supply) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 53A33F99))
(comp (ref D6)
(value 0.90A)
(footprint led_1206)
(datasheet http://www.kingbrightusa.com/images/catalog/SPEC/APT3216QBC-D.pdf)
(fields
(field (name "Product Number") 754-1439-1-ND)
(field (name Vendor) "Digikey "))
(libsource (lib power_supply) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 53A33FA1))
(comp (ref D7)
(value 1.05A)
(footprint led_1206)
(datasheet http://www.kingbrightusa.com/images/catalog/SPEC/APT3216QBC-D.pdf)
(fields
(field (name "Product Number") 754-1439-1-ND)
(field (name Vendor) "Digikey "))
(libsource (lib power_supply) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 53A33FA9))
(comp (ref R4)
(value 100k)
(footprint r_1206)
(datasheet http://www.vishay.com/doc?20035)
(fields
(field (name "Product Number") 541-100KFCT-ND)
(field (name Vendor) Digikey))
(libsource (lib power_supply) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 53A3487A))
(comp (ref R9)
(value 1k)
(footprint r_1206)
(datasheet http://www.vishay.com/doc?20035)
(fields
(field (name "Product Number") 541-100KFCT-ND)
(field (name Vendor) Digikey))
(libsource (lib power_supply) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 53A34882))
(comp (ref R13)
(value 100k)
(footprint r_1206)
(datasheet http://www.vishay.com/doc?20035)
(fields
(field (name "Product Number") 541-100KFCT-ND)
(field (name Vendor) Digikey))
(libsource (lib power_supply) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 53A34898))
(comp (ref R16)
(value 100k)
(footprint r_1206)
(datasheet http://www.vishay.com/doc?20035)
(fields
(field (name "Product Number") 541-100KFCT-ND)
(field (name Vendor) Digikey))
(libsource (lib power_supply) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 53A348BC))
(comp (ref R15)
(value 100k)
(footprint r_1206)
(datasheet http://www.vishay.com/doc?20035)
(fields
(field (name "Product Number") 541-100KFCT-ND)
(field (name Vendor) Digikey))
(libsource (lib power_supply) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 53A348D2))
(comp (ref U11)
(value MCP6041)
(footprint so-8)
(datasheet http://ww1.microchip.com/downloads/en/DeviceDoc/21669D.pdf)
(fields
(field (name "Product Number") MCP6041T-I/SNCT-ND)
(field (name Vendor) Digikey))
(libsource (lib power_supply) (part OPAMP))
(sheetpath (names /) (tstamps /))
(tstamp 53A354E4))
(comp (ref C2)
(value 104)
(footprint c_1206)
(datasheet http://www.kemet.com/docfinder?Partnumber=C1206C104K5RACTU)
(fields
(field (name "Product Number") 399-1249-1-ND)
(field (name Vendor) Digikey))
(libsource (lib power_supply) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 53A36072))
(comp (ref C3)
(value 104)
(footprint c_1206)
(datasheet http://www.kemet.com/docfinder?Partnumber=C1206C104K5RACTU)
(fields
(field (name "Product Number") 399-1249-1-ND)
(field (name Vendor) Digikey))
(libsource (lib power_supply) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 53A3607A))
(comp (ref C5)
(value 104)
(footprint c_1206)
(datasheet http://www.kemet.com/docfinder?Partnumber=C1206C104K5RACTU)
(fields
(field (name "Product Number") 399-1249-1-ND)
(field (name Vendor) Digikey))
(libsource (lib power_supply) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 53A36082))
(comp (ref C16)
(value 104)
(footprint c_1206)
(datasheet http://www.kemet.com/docfinder?Partnumber=C1206C104K5RACTU)
(fields
(field (name "Product Number") 399-1249-1-ND)
(field (name Vendor) Digikey))
(libsource (lib power_supply) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 53A3608A))
(comp (ref C9)
(value 104)
(footprint c_1206)
(datasheet http://www.kemet.com/docfinder?Partnumber=C1206C104K5RACTU)
(fields
(field (name "Product Number") 399-1249-1-ND)
(field (name Vendor) Digikey))
(libsource (lib power_supply) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 53A36092))
(comp (ref C11)
(value 104)
(footprint c_1206)
(datasheet http://www.kemet.com/docfinder?Partnumber=C1206C104K5RACTU)
(fields
(field (name "Product Number") 399-1249-1-ND)
(field (name Vendor) Digikey))
(libsource (lib power_supply) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 53A3609A))
(comp (ref C13)
(value 106)
(footprint c_1206)
(datasheet http://www.kemet.com/docfinder?Partnumber=C1206C106M3RACTU)
(fields
(field (name "Product Number") 399-7443-1-ND)
(field (name Vendor) Digikey))
(libsource (lib power_supply) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 53A36729))
(comp (ref U5)
(value TPD2E001)
(footprint TO-253-4)
(datasheet http://www.ti.com/lit/ds/symlink/tpd2e001.pdf)
(fields
(field (name "Product Number") 296-24770-1-ND)
(field (name Vendor) Digikey))
(libsource (lib power_supply) (part TPD2E001DZD))
(sheetpath (names /) (tstamps /))
(tstamp 53A4504E))
(comp (ref C12)
(value 107)
(footprint c_2924_tant)
(datasheet http://www.vishay.com/docs/40080/tr3.pdf)
(fields
(field (name "Product Number") 718-1885-1-ND)
(field (name Vendor) Digikey))
(libsource (lib power_supply) (part C_POL))
(sheetpath (names /) (tstamps /))
(tstamp 53A45576))
(comp (ref C1)
(value 477)
(footprint c_2917_tant)
(datasheet http://www.vishay.com/doc?40080)
(fields
(field (name "Product Number") 718-1362-1-ND)
(field (name Vendor) Digikey))
(libsource (lib power_supply) (part C_POL))
(sheetpath (names /) (tstamps /))
(tstamp 53A45605))
(comp (ref C14)
(value 107)
(footprint c_2924_tant)
(datasheet http://www.vishay.com/docs/40080/tr3.pdf)
(fields
(field (name "Product Number") 718-1885-1-ND)
(field (name Vendor) Digikey))
(libsource (lib power_supply) (part C_POL))
(sheetpath (names /) (tstamps /))
(tstamp 53A45686))
(comp (ref C15)
(value 107)
(footprint c_2924_tant)
(datasheet http://www.vishay.com/docs/40080/tr3.pdf)
(fields
(field (name "Product Number") 718-1885-1-ND)
(field (name Vendor) Digikey))
(libsource (lib power_supply) (part C_POL))
(sheetpath (names /) (tstamps /))
(tstamp 53A4568E))
(comp (ref R8)
(value 4k3)
(footprint r_pth_2.5x6.5mm)
(datasheet http://www.yageo.com/documents/recent/General%20Type_CFR.pdf)
(fields
(field (name "Product Number") 4.3KQBK-ND)
(field (name Vendor) Digikey))
(libsource (lib power_supply) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 53A48B98))
(comp (ref R11)
(value 4k3)
(footprint r_pth_2.5x6.5mm)
(datasheet http://www.yageo.com/documents/recent/General%20Type_CFR.pdf)
(fields
(field (name "Product Number") 4.3KQBK-ND)
(field (name Vendor) Digikey))
(libsource (lib power_supply) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 53A48BA0))
(comp (ref V1)
(value DBL_VIA)
(footprint DBL_VIA)
(libsource (lib power_supply) (part DBL_VIA))
(sheetpath (names /) (tstamps /))
(tstamp 53A5BAC3))
(comp (ref V2)
(value DBL_VIA)
(footprint DBL_VIA)
(libsource (lib power_supply) (part DBL_VIA))
(sheetpath (names /) (tstamps /))
(tstamp 53A5BAD0))
(comp (ref V3)
(value DBL_VIA)
(footprint DBL_VIA)
(libsource (lib power_supply) (part DBL_VIA))
(sheetpath (names /) (tstamps /))
(tstamp 53A5BAD6))
(comp (ref V4)
(value DBL_VIA)
(footprint DBL_VIA)
(libsource (lib power_supply) (part DBL_VIA))
(sheetpath (names /) (tstamps /))
(tstamp 53A5BADC))
(comp (ref V5)
(value DBL_VIA)
(footprint DBL_VIA)
(libsource (lib power_supply) (part DBL_VIA))
(sheetpath (names /) (tstamps /))
(tstamp 53A5BAEC))
(comp (ref V6)
(value DBL_VIA)
(footprint DBL_VIA)
(libsource (lib power_supply) (part DBL_VIA))
(sheetpath (names /) (tstamps /))
(tstamp 53A5BAFC))
(comp (ref V7)
(value DBL_VIA)
(footprint DBL_VIA)
(libsource (lib power_supply) (part DBL_VIA))
(sheetpath (names /) (tstamps /))
(tstamp 53A65E51))
(comp (ref R19)
(value 100k)
(footprint r_1206)
(datasheet http://www.vishay.com/doc?20035)
(fields
(field (name "Product Number") 541-100KFCT-ND)
(field (name Vendor) Digikey))
(libsource (lib power_supply) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 53A70602))
(comp (ref V11)
(value DBL_VIA)
(footprint DBL_VIA)
(libsource (lib power_supply) (part DBL_VIA))
(sheetpath (names /) (tstamps /))
(tstamp 53A9944B))
(comp (ref TP1)
(value VDD)
(footprint TP)
(datasheet http://www.keyelco.com/userAssets/file/M60-2p60.pdf)
(fields
(field (name "Product Number") 5000K-ND)
(field (name Vendor) Digikey))
(libsource (lib power_supply) (part TP))
(sheetpath (names /) (tstamps /))
(tstamp 53A9AA8B))
(comp (ref TP5)
(value VREG)
(footprint TP)
(datasheet http://www.keyelco.com/userAssets/file/M60-2p60.pdf)
(fields
(field (name "Product Number") 5000K-ND)
(field (name Vendor) Digikey))
(libsource (lib power_supply) (part TP))
(sheetpath (names /) (tstamps /))
(tstamp 53A9C1B5))
(comp (ref C17)
(value 104)
(footprint c_1206)
(datasheet http://www.kemet.com/docfinder?Partnumber=C1206C104K5RACTU)
(fields
(field (name "Product Number") 399-1249-1-ND)
(field (name Vendor) Digikey))
(libsource (lib power_supply) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 53A9C9BF))
(comp (ref TP2)
(value VUSB)
(footprint TP)
(datasheet http://www.keyelco.com/userAssets/file/M60-2p60.pdf)
(fields
(field (name "Product Number") 5000K-ND)
(field (name Vendor) Digikey))
(libsource (lib power_supply) (part TP))
(sheetpath (names /) (tstamps /))
(tstamp 53A9D1FA))
(comp (ref TP3)
(value D-)
(footprint TP)
(datasheet http://www.keyelco.com/userAssets/file/M60-2p60.pdf)
(fields
(field (name "Product Number") 5000K-ND)
(field (name Vendor) Digikey))
(libsource (lib power_supply) (part TP))
(sheetpath (names /) (tstamps /))
(tstamp 53A9D210))
(comp (ref TP4)
(value D+)
(footprint TP)
(datasheet http://www.keyelco.com/userAssets/file/M60-2p60.pdf)
(fields
(field (name "Product Number") 5000K-ND)
(field (name Vendor) Digikey))
(libsource (lib power_supply) (part TP))
(sheetpath (names /) (tstamps /))
(tstamp 53A9D226))
(comp (ref TP7)
(value VSW_REF)
(footprint TP)
(datasheet http://www.keyelco.com/userAssets/file/M60-2p60.pdf)
(fields
(field (name "Product Number") 5000K-ND)
(field (name Vendor) Digikey))
(libsource (lib power_supply) (part TP))
(sheetpath (names /) (tstamps /))
(tstamp 53A9D23C))
(comp (ref TP12)
(value "~EN DISPLAY")
(footprint TP)
(datasheet http://www.keyelco.com/userAssets/file/M60-2p60.pdf)
(fields
(field (name "Product Number") 5000K-ND)
(field (name Vendor) Digikey))
(libsource (lib power_supply) (part TP))
(sheetpath (names /) (tstamps /))
(tstamp 53A9D252))
(comp (ref TP13)
(value VDISP)
(footprint TP)
(datasheet http://www.keyelco.com/userAssets/file/M60-2p60.pdf)
(fields
(field (name "Product Number") 5000K-ND)
(field (name Vendor) Digikey))
(libsource (lib power_supply) (part TP))
(sheetpath (names /) (tstamps /))
(tstamp 53A9D25A))
(comp (ref TP9)
(value RS-)
(footprint TP)
(datasheet http://www.keyelco.com/userAssets/file/M60-2p60.pdf)
(fields
(field (name "Product Number") 5000K-ND)
(field (name Vendor) Digikey))
(libsource (lib power_supply) (part TP))
(sheetpath (names /) (tstamps /))
(tstamp 53A9D270))
(comp (ref TP8)
(value "I to V output")
(footprint TP)
(datasheet http://www.keyelco.com/userAssets/file/M60-2p60.pdf)
(fields
(field (name "Product Number") 5000K-ND)
(field (name Vendor) Digikey))
(libsource (lib power_supply) (part TP))
(sheetpath (names /) (tstamps /))
(tstamp 53A9D278))
(comp (ref TP6)
(value VBAT)
(footprint TP)
(datasheet http://www.keyelco.com/userAssets/file/M60-2p60.pdf)
(fields
(field (name "Product Number") 5000K-ND)
(field (name Vendor) Digikey))
(libsource (lib power_supply) (part TP))
(sheetpath (names /) (tstamps /))
(tstamp 53A9D28E))
(comp (ref TP11)
(value VSYS)
(footprint TP)
(datasheet http://www.keyelco.com/userAssets/file/M60-2p60.pdf)
(fields
(field (name "Product Number") 5000K-ND)
(field (name Vendor) Digikey))
(libsource (lib power_supply) (part TP))
(sheetpath (names /) (tstamps /))
(tstamp 53A9D2C0))
(comp (ref TP10)
(value RS+)
(footprint TP)
(datasheet http://www.keyelco.com/userAssets/file/M60-2p60.pdf)
(fields
(field (name "Product Number") 5000K-ND)
(field (name Vendor) Digikey))
(libsource (lib power_supply) (part TP))
(sheetpath (names /) (tstamps /))
(tstamp 53A9D48F))
(comp (ref TP14)
(value GND)
(footprint TP)
(datasheet http://www.keyelco.com/userAssets/file/M60-2p60.pdf)
(fields
(field (name "Product Number") 5000K-ND)
(field (name Vendor) Digikey))
(libsource (lib power_supply) (part TP))
(sheetpath (names /) (tstamps /))
(tstamp 53A9D69D))
(comp (ref R20)
(value 100k)
(footprint r_1206)
(datasheet http://www.vishay.com/doc?20035)
(fields
(field (name "Product Number") 541-100KFCT-ND)
(field (name Vendor) Digikey))
(libsource (lib power_supply) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 53D94605))
(comp (ref C18)
(value 226)
(footprint c_1206)
(datasheet http://www.samsungsem.com/servlet/FileDownload?type=spec&file=CL31B226KPHNNNE.pdf)
(fields
(field (name "Product Number") 1276-2769-1-ND)
(field (name Vendor) Digikey))
(libsource (lib power_supply) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 53D965A6))
(comp (ref V13)
(value DBL_VIA)
(footprint DBL_VIA)
(libsource (lib power_supply) (part DBL_VIA))
(sheetpath (names /) (tstamps /))
(tstamp 53DAF1D7))
(comp (ref U2)
(value TPD2E001)
(footprint TO-253-4)
(datasheet http://www.ti.com/lit/ds/symlink/tpd2e001.pdf)
(fields
(field (name "Product Number") 296-24770-1-ND)
(field (name Vendor) Digikey))
(libsource (lib power_supply) (part TPD2E001DZD))
(sheetpath (names /) (tstamps /))
(tstamp 53A44FDE))
(comp (ref TP21)
(value GND)
(footprint TP)
(datasheet http://www.keyelco.com/userAssets/file/M60-2p60.pdf)
(fields
(field (name "Product Number") 5000K-ND)
(field (name Vendor) Digikey))
(libsource (lib power_supply) (part TP))
(sheetpath (names /) (tstamps /))
(tstamp 53DFDC97))
(comp (ref TP18)
(value GND)
(footprint TP)
(datasheet http://www.keyelco.com/userAssets/file/M60-2p60.pdf)
(fields
(field (name "Product Number") 5000K-ND)
(field (name Vendor) Digikey))
(libsource (lib power_supply) (part TP))
(sheetpath (names /) (tstamps /))
(tstamp 53DFDCC0))
(comp (ref TP15)
(value GND)
(footprint TP)
(datasheet http://www.keyelco.com/userAssets/file/M60-2p60.pdf)
(fields
(field (name "Product Number") 5000K-ND)
(field (name Vendor) Digikey))
(libsource (lib power_supply) (part TP))
(sheetpath (names /) (tstamps /))
(tstamp 53DFDE5C))
(comp (ref TP19)
(value GND)
(footprint TP)
(datasheet http://www.keyelco.com/userAssets/file/M60-2p60.pdf)
(fields
(field (name "Product Number") 5000K-ND)
(field (name Vendor) Digikey))
(libsource (lib power_supply) (part TP))
(sheetpath (names /) (tstamps /))
(tstamp 53DFDFEB))
(comp (ref TP17)
(value GND)
(footprint TP)
(datasheet http://www.keyelco.com/userAssets/file/M60-2p60.pdf)
(fields
(field (name "Product Number") 5000K-ND)
(field (name Vendor) Digikey))
(libsource (lib power_supply) (part TP))
(sheetpath (names /) (tstamps /))
(tstamp 53DFE17C))
(comp (ref TP20)
(value GND)
(footprint TP)
(datasheet http://www.keyelco.com/userAssets/file/M60-2p60.pdf)
(fields
(field (name "Product Number") 5000K-ND)
(field (name Vendor) Digikey))
(libsource (lib power_supply) (part TP))
(sheetpath (names /) (tstamps /))
(tstamp 53DFE30F))
(comp (ref TP16)
(value "VSYS protected")
(footprint TP)
(datasheet http://www.keyelco.com/userAssets/file/M60-2p60.pdf)
(fields
(field (name "Product Number") 5000K-ND)
(field (name Vendor) Digikey))
(libsource (lib power_supply) (part TP))
(sheetpath (names /) (tstamps /))
(tstamp 53DFE4B9))
(comp (ref TP22)
(value "L current")
(footprint TP)
(datasheet http://www.keyelco.com/userAssets/file/M60-2p60.pdf)
(fields
(field (name "Product Number") 5000K-ND)
(field (name Vendor) Digikey))
(libsource (lib power_supply) (part TP))
(sheetpath (names /) (tstamps /))
(tstamp 53E01F53))