-
Notifications
You must be signed in to change notification settings - Fork 0
/
wide-input-reg.sch
4236 lines (4236 loc) · 236 KB
/
wide-input-reg.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
EESchema Schematic File Version 4
LIBS:wide-input-reg-cache
EELAYER 26 0
EELAYER END
$Descr A3 16535 11693
encoding utf-8
Sheet 1 1
Title "Power Regulation"
Date "2018-07-29"
Rev "1.0.0"
Comp "Scott Rapson"
Comment1 "Wide input DC-DC Regulator"
Comment2 "20181113"
Comment3 "Scott Rapson"
Comment4 ""
$EndDescr
Text Notes 1250 1275 0 118 ~ 24
15-80VDC Input Power
Text Notes 1250 4700 0 118 ~ 24
Input Monitoring
Text Notes 8325 1250 0 118 ~ 24
Main Regulation
Text Notes 1575 9825 0 118 ~ 24
Testpoints
$Comp
L appli_test_points:CLIP_HOOK_BLACK TEST5
U 1 1 5AB8D09C
P 2850 10325
F 0 "TEST5" H 2891 10394 39 0000 L CNN
F 1 "CLIP_HOOK_BLACK" H 2900 10325 39 0001 L TNN
F 2 "Applidyne_Test:KEYSTONE_5001" H 2900 10275 39 0001 L TNN
F 3 "http://www.farnell.com/datasheets/1703983.pdf" H 2900 10125 39 0001 L BNN
F 4 "KEYSTONE" H 2900 10225 39 0001 L TNN "manf"
F 5 "5001" H 2900 10075 39 0001 L BNN "manf#"
F 6 "Element14" H 2900 10025 39 0001 L BNN "Supplier"
F 7 "2301278" H 2900 9975 39 0001 L BNN "Supplier Part No"
F 8 "http://au.element14.com/keystone/5001/test-point-pcb-through-hole/dp/2301278" H 2900 9925 39 0001 L BNN "Supplier URL"
F 9 "0.218" H 2900 9875 39 0001 L BNN "Supplier Price"
F 10 "100" H 2900 9825 39 0001 L BNN "Suppier Price Break"
1 2850 10325
1 0 0 -1
$EndComp
$Comp
L appli_power:GND #PWR012
U 1 1 5AB8D36F
P 2850 10425
F 0 "#PWR012" H 2850 10175 50 0001 C CNN
F 1 "GND" H 2855 10252 50 0000 C CNN
F 2 "" H 2850 10425 60 0000 C CNN
F 3 "" H 2850 10425 60 0000 C CNN
1 2850 10425
1 0 0 -1
$EndComp
Wire Wire Line
2850 10325 2850 10425
$Comp
L appli_power:+POWER #PWR04
U 1 1 5AB8D4D9
P 1650 10325
F 0 "#PWR04" H 1650 10275 20 0001 C CNN
F 1 "+POWER" H 1653 10463 30 0000 C CNN
F 2 "" H 1650 10325 60 0000 C CNN
F 3 "" H 1650 10325 60 0000 C CNN
1 1650 10325
1 0 0 -1
$EndComp
Wire Wire Line
1050 10450 1050 10325
Text Notes 950 10075 0 50 ~ 0
INPUT
Text Notes 2750 10075 0 50 ~ 0
GND
Wire Wire Line
1650 10450 1650 10325
$Comp
L appli_test_points:CLIP_HOOK_YELLOW TEST2
U 1 1 5AB8D795
P 1650 10450
F 0 "TEST2" H 1472 10518 39 0000 R CNN
F 1 "CLIP_HOOK_YELLOW" H 1700 10450 39 0001 L TNN
F 2 "Applidyne_Test:KEYSTONE_5004" H 1700 10400 39 0001 L TNN
F 3 "http://www.farnell.com/datasheets/1703983.pdf" H 1700 10250 39 0001 L BNN
F 4 "KEYSTONE" H 1700 10350 39 0001 L TNN "manf"
F 5 "5004" H 1700 10200 39 0001 L BNN "manf#"
F 6 "Element14" H 1700 10150 39 0001 L BNN "Supplier"
F 7 "2301281" H 1700 10100 39 0001 L BNN "Supplier Part No"
F 8 "http://au.element14.com/keystone/5004/test-point-pcb-through-hole/dp/2301281" H 1700 10050 39 0001 L BNN "Supplier URL"
F 9 "0.238" H 1700 10000 39 0001 L BNN "Supplier Price"
F 10 "100" H 1700 9950 39 0001 L BNN "Suppier Price Break"
1 1650 10450
-1 0 0 1
$EndComp
Wire Wire Line
2275 10450 2275 10325
Text Notes 2125 10075 0 50 ~ 0
3V3 REG
$Comp
L appli_power:+3.3V #PWR08
U 1 1 5AB8D9EC
P 2275 10325
F 0 "#PWR08" H 2275 10285 30 0001 C CNN
F 1 "+3.3V" H 2284 10463 30 0000 C CNN
F 2 "" H 2275 10325 60 0000 C CNN
F 3 "" H 2275 10325 60 0000 C CNN
1 2275 10325
1 0 0 -1
$EndComp
Text Notes 1250 1675 0 50 ~ 0
SABRE 2-pin connector
$Comp
L appli_resistor:130K_1608M R1
U 1 1 5ABC59BC
P 1225 5375
F 0 "R1" H 1153 5190 50 0000 R CNN
F 1 "130K_1608M" H 1153 5270 35 0000 R CNN
F 2 "Applidyne_Resistor:RESC1608X50N" V 1335 5225 20 0001 C CNN
F 3 "http://www.farnell.com/datasheets/2059623.pdf" V 1360 5225 20 0001 C CNN
F 4 "PANASONIC" V 1410 5225 20 0001 C CNN "manf"
F 5 "ERJ3GEYJ134V" V 1435 5225 20 0001 C CNN "manf#"
F 6 "Element14" V 1460 5225 20 0001 C CNN "Supplier"
F 7 "2059658" V 1485 5225 20 0001 C CNN "Supplier Part No"
F 8 "http://au.element14.com/panasonic-electronic-components/erj3geyj134v/res-thick-film-130k-5-0-1w-0603/dp/2059658" V 1510 5225 20 0001 C CNN "Supplier URL"
F 9 "0.011" V 1535 5225 20 0001 C CNN "Supplier Price"
F 10 "50" V 1560 5225 20 0001 C CNN "Supplier Price Break"
1 1225 5375
1 0 0 1
$EndComp
$Comp
L appli_resistor:130K_1608M R2
U 1 1 5ABC5A8A
P 1225 5775
F 0 "R2" H 1153 5590 50 0000 R CNN
F 1 "130K_1608M" H 1153 5670 35 0000 R CNN
F 2 "Applidyne_Resistor:RESC1608X50N" V 1335 5625 20 0001 C CNN
F 3 "http://www.farnell.com/datasheets/2059623.pdf" V 1360 5625 20 0001 C CNN
F 4 "PANASONIC" V 1410 5625 20 0001 C CNN "manf"
F 5 "ERJ3GEYJ134V" V 1435 5625 20 0001 C CNN "manf#"
F 6 "Element14" V 1460 5625 20 0001 C CNN "Supplier"
F 7 "2059658" V 1485 5625 20 0001 C CNN "Supplier Part No"
F 8 "http://au.element14.com/panasonic-electronic-components/erj3geyj134v/res-thick-film-130k-5-0-1w-0603/dp/2059658" V 1510 5625 20 0001 C CNN "Supplier URL"
F 9 "0.011" V 1535 5625 20 0001 C CNN "Supplier Price"
F 10 "50" V 1560 5625 20 0001 C CNN "Supplier Price Break"
1 1225 5775
1 0 0 1
$EndComp
$Comp
L appli_resistor:10K0_1608M R3
U 1 1 5ABC5BF5
P 1225 6175
F 0 "R3" H 1152 6060 50 0000 R CNN
F 1 "10K0_1608M" H 1152 5980 35 0000 R CNN
F 2 "Applidyne_Resistor:RESC1608X50N" V 1335 6025 20 0001 C CNN
F 3 "http://www.farnell.com/datasheets/1723233.pdf" V 1360 6025 20 0001 C CNN
F 4 "TE CONNECTIVITY" V 1410 6025 20 0001 C CNN "manf"
F 5 "CRGH0603F10K" V 1435 6025 20 0001 C CNN "manf#"
F 6 "Element14" V 1460 6025 20 0001 C CNN "Supplier"
F 7 "2332016" V 1485 6025 20 0001 C CNN "Supplier Part No"
F 8 "http://au.element14.com/te-connectivity/crgh0603f10k/resistor-power-10k-0-2w-1-0603/dp/2332016" V 1510 6025 20 0001 C CNN "Supplier URL"
F 9 "0.02" V 1535 6025 20 0001 C CNN "Supplier Price"
F 10 "10" V 1560 6025 20 0001 C CNN "Supplier Price Break"
1 1225 6175
1 0 0 1
$EndComp
Wire Wire Line
1225 5025 1225 5075
Wire Wire Line
1225 5375 1225 5475
Wire Wire Line
1225 5775 1225 5825
Wire Wire Line
1575 5925 1575 5825
Wire Wire Line
1575 5825 1225 5825
Connection ~ 1225 5825
Wire Wire Line
1225 5825 1225 5875
Wire Wire Line
1225 6175 1225 6225
$Comp
L appli_power:GND #PWR03
U 1 1 5ABC61AD
P 1225 6275
F 0 "#PWR03" H 1225 6025 50 0001 C CNN
F 1 "GND" H 1230 6102 50 0000 C CNN
F 2 "" H 1225 6275 60 0000 C CNN
F 3 "" H 1225 6275 60 0000 C CNN
1 1225 6275
1 0 0 -1
$EndComp
Wire Wire Line
1575 6125 1575 6225
Wire Wire Line
1575 6225 1225 6225
Connection ~ 1225 6225
Wire Wire Line
1225 6225 1225 6275
Wire Wire Line
1575 5825 2225 5825
Connection ~ 1575 5825
$Comp
L appli_device:BAV99 D1
U 1 1 5ABC7E1F
P 2225 5825
F 0 "D1" H 2333 5871 50 0000 L CNN
F 1 "BAV99" H 2333 5780 50 0000 L CNN
F 2 "Applidyne_SOT:SOT95P240X110-3L16N" H 2425 5675 20 0001 C CNN
F 3 "http://datasheet.octopart.com/BAV99-/T3-NXP-datasheet-5318834.pdf" H 2425 5650 20 0001 C CNN
F 4 "NXP" H 2425 5600 20 0001 C CNN "manf"
F 5 "RS Online" H 2425 5550 20 0001 C CNN "Supplier"
F 6 " 544-4534" H 2425 5525 20 0001 C CNN "Supplier Part No"
F 7 "http://au.rs-online.com/web/p/rectifier-schottky-diodes/5444534/" H 2425 5500 20 0001 C CNN "Supplier URL"
F 8 "0.045" H 2425 5475 20 0001 C CNN "Supplier Price"
F 9 "1" H 2425 5450 20 0001 C CNN "Supplier Price Break"
F 10 "BAV99" H 2425 5575 20 0001 C CNN "manf#"
1 2225 5825
1 0 0 -1
$EndComp
Wire Wire Line
2225 6075 2225 6275
Wire Wire Line
2225 5575 2225 5500
$Comp
L appli_power:GND #PWR06
U 1 1 5ABC81D7
P 2225 6275
F 0 "#PWR06" H 2225 6025 50 0001 C CNN
F 1 "GND" H 2230 6102 50 0000 C CNN
F 2 "" H 2225 6275 60 0000 C CNN
F 3 "" H 2225 6275 60 0000 C CNN
1 2225 6275
1 0 0 -1
$EndComp
$Comp
L appli_power:+3.3V #PWR05
U 1 1 5ABC8212
P 2225 5500
F 0 "#PWR05" H 2225 5460 30 0001 C CNN
F 1 "+3.3V" H 2234 5638 30 0000 C CNN
F 2 "" H 2225 5500 60 0000 C CNN
F 3 "" H 2225 5500 60 0000 C CNN
1 2225 5500
1 0 0 -1
$EndComp
Wire Wire Line
2225 5825 2625 5825
Connection ~ 2225 5825
Wire Wire Line
2925 5825 3025 5825
Text GLabel 3025 5825 2 50 Output ~ 0
VOLTAGE_INPUT
Text Notes 1725 5200 0 50 ~ 0
Teknic IPC-3/5 outputs 75VDC nominal.\nDivider is 27:1, so 75V = 2.78.\nProvides enough overhead for sensing 90VDC.
Text Notes 3100 6025 0 50 ~ 0
27:1 ratio
$Comp
L appli_resistor:0R_1608M R20
U 1 1 5B040E00
P 11450 3725
F 0 "R20" V 11262 3575 50 0000 C CNN
F 1 "0R_1608M" V 11342 3575 35 0000 C CNN
F 2 "Applidyne_Resistor:RESC1608X50N" V 11560 3575 20 0001 C CNN
F 3 "http://www.farnell.com/datasheets/1739504.pdf" V 11585 3575 20 0001 C CNN
F 4 "MULTICOMP" V 11635 3575 20 0001 C CNN "manf"
F 5 "MC0063W06030R" V 11660 3575 20 0001 C CNN "manf#"
F 6 "Element14" V 11685 3575 20 0001 C CNN "Supplier"
F 7 "9331662" V 11710 3575 20 0001 C CNN "Supplier Part No"
F 8 "http://au.element14.com/multicomp/mc0063w06030r/resistor-thick-film-0r-0-063w/dp/9331662" V 11735 3575 20 0001 C CNN "Supplier URL"
F 9 "0.023" V 11760 3575 20 0001 C CNN "Supplier Price"
F 10 "50" V 11785 3575 20 0001 C CNN "Supplier Price Break"
1 11450 3725
0 1 1 0
$EndComp
$Comp
L appli_resistor:10K0_1608M R22
U 1 1 5B040F7F
P 11450 4350
F 0 "R22" V 11262 4200 50 0000 C CNN
F 1 "10K0_1608M" V 11342 4200 35 0000 C CNN
F 2 "Applidyne_Resistor:RESC1608X50N" V 11560 4200 20 0001 C CNN
F 3 "http://www.farnell.com/datasheets/1723233.pdf" V 11585 4200 20 0001 C CNN
F 4 "TE CONNECTIVITY" V 11635 4200 20 0001 C CNN "manf"
F 5 "CRGH0603F10K" V 11660 4200 20 0001 C CNN "manf#"
F 6 "Element14" V 11685 4200 20 0001 C CNN "Supplier"
F 7 "2332016" V 11710 4200 20 0001 C CNN "Supplier Part No"
F 8 "http://au.element14.com/te-connectivity/crgh0603f10k/resistor-power-10k-0-2w-1-0603/dp/2332016" V 11735 4200 20 0001 C CNN "Supplier URL"
F 9 "0.02" V 11760 4200 20 0001 C CNN "Supplier Price"
F 10 "10" V 11785 4200 20 0001 C CNN "Supplier Price Break"
1 11450 4350
0 1 1 0
$EndComp
$Comp
L appli_resistor:39K_1608M R10
U 1 1 5B041168
P 7550 3400
F 0 "R10" H 7623 3285 50 0000 L CNN
F 1 "39K_1608M" H 7623 3205 35 0000 L CNN
F 2 "Applidyne_Resistor:RESC1608X50N" V 7660 3250 20 0001 C CNN
F 3 "http://www.farnell.com/datasheets/2310790.pdf" V 7685 3250 20 0001 C CNN
F 4 "PANASONIC" V 7735 3250 20 0001 C CNN "manf"
F 5 "MCMR06X2202FTL" V 7760 3250 20 0001 C CNN "manf#"
F 6 "Element14" V 7785 3250 20 0001 C CNN "Supplier"
F 7 "1469804" V 7810 3250 20 0001 C CNN "Supplier Part No"
F 8 "http://au.element14.com/vishay/crcw060339k0fkea/res-thick-film-39k-1-0-1w-0603/dp/1469804" V 7835 3250 20 0001 C CNN "Supplier URL"
F 9 "0.176" V 7860 3250 20 0001 C CNN "Supplier Price"
F 10 "1" V 7885 3250 20 0001 C CNN "Supplier Price Break"
1 7550 3400
-1 0 0 -1
$EndComp
$Comp
L appli_resistor:1M_1608M R6
U 1 1 5B0412F7
P 6300 2875
F 0 "R6" H 6227 2690 50 0000 R CNN
F 1 "1M_1608M" H 6227 2770 35 0000 R CNN
F 2 "Applidyne_Resistor:RESC1608X50N" V 6410 2725 20 0001 C CNN
F 3 "http://www.farnell.com/datasheets/1720486.pdf" V 6435 2725 20 0001 C CNN
F 4 "VISHAY DRALORIC" V 6485 2725 20 0001 C CNN "manf"
F 5 "CRCW06031M00FKEA" V 6510 2725 20 0001 C CNN "manf#"
F 6 "Element14" V 6535 2725 20 0001 C CNN "Supplier"
F 7 "1469746" V 6560 2725 20 0001 C CNN "Supplier Part No"
F 8 "http://au.element14.com/vishay-draloric/crcw06031m00fkea/product-range-aec-q200-crcw-series/dp/1469746" V 6585 2725 20 0001 C CNN "Supplier URL"
F 9 "0.02" V 6610 2725 20 0001 C CNN "Supplier Price"
F 10 "100" V 6635 2725 20 0001 C CNN "Supplier Price Break"
1 6300 2875
-1 0 0 1
$EndComp
Wire Wire Line
9800 3650 10050 3650
Wire Wire Line
10050 3650 10050 3900
Wire Wire Line
10050 4100 10050 4650
$Comp
L appli_power:GND #PWR032
U 1 1 5B047597
P 10050 4650
F 0 "#PWR032" H 10050 4400 50 0001 C CNN
F 1 "GND" H 10055 4477 50 0000 C CNN
F 2 "" H 10050 4650 60 0000 C CNN
F 3 "" H 10050 4650 60 0000 C CNN
1 10050 4650
1 0 0 -1
$EndComp
$Comp
L appli_power:GND #PWR029
U 1 1 5B0475D7
P 9100 4650
F 0 "#PWR029" H 9100 4400 50 0001 C CNN
F 1 "GND" H 9105 4477 50 0000 C CNN
F 2 "" H 9100 4650 60 0000 C CNN
F 3 "" H 9100 4650 60 0000 C CNN
1 9100 4650
1 0 0 -1
$EndComp
Wire Wire Line
9000 3950 9000 4000
Wire Wire Line
9000 4000 9100 4000
Wire Wire Line
9100 4000 9100 3950
Wire Wire Line
9100 4000 9200 4000
Wire Wire Line
9200 4000 9200 3950
Connection ~ 9100 4000
Wire Wire Line
8700 4100 8700 3950
Wire Wire Line
8800 3950 8800 4150
Wire Wire Line
8800 4150 9325 4150
Wire Wire Line
8450 4400 8450 4650
$Comp
L appli_power:GND #PWR026
U 1 1 5B049899
P 8450 4650
F 0 "#PWR026" H 8450 4400 50 0001 C CNN
F 1 "GND" H 8455 4477 50 0000 C CNN
F 2 "" H 8450 4650 60 0000 C CNN
F 3 "" H 8450 4650 60 0000 C CNN
1 8450 4650
1 0 0 -1
$EndComp
Wire Wire Line
9625 4150 9850 4150
$Comp
L appli_resistor:12K7_1608M R7
U 1 1 5B04EAEE
P 6300 3700
F 0 "R7" H 6227 3515 50 0000 R CNN
F 1 "12K7_1608M" H 6227 3595 35 0000 R CNN
F 2 "Applidyne_Resistor:RESC1608X50N" V 6410 3550 20 0001 C CNN
F 3 "http://www.farnell.com/datasheets/1911175.pdf" V 6435 3550 20 0001 C CNN
F 4 "PANASONIC" V 6485 3550 20 0001 C CNN "manf"
F 5 "ERJ3EKF1272V" V 6510 3550 20 0001 C CNN "manf#"
F 6 "Element14" V 6535 3550 20 0001 C CNN "Supplier"
F 7 "2059415" V 6560 3550 20 0001 C CNN "Supplier Part No"
F 8 "http://au.element14.com/panasonic-electronic-components/erj3ekf1272v/res-thick-film-12k7-1-0-1w-0603/dp/2059415" V 6585 3550 20 0001 C CNN "Supplier URL"
F 9 "0.014" V 6610 3550 20 0001 C CNN "Supplier Price"
F 10 "50" V 6635 3550 20 0001 C CNN "Supplier Price Break"
1 6300 3700
-1 0 0 1
$EndComp
Wire Wire Line
7500 2650 7500 2600
Wire Wire Line
7500 2650 7500 2700
Connection ~ 7500 2650
Wire Wire Line
7500 2300 7500 2250
Wire Wire Line
7500 2250 8200 2250
Connection ~ 7500 2250
Wire Wire Line
7500 2650 7150 2650
Wire Wire Line
7150 2650 7150 2750
Wire Wire Line
8200 2950 7950 2950
Wire Wire Line
7950 2950 7950 3150
Wire Wire Line
7950 3150 6300 3150
Wire Wire Line
7550 4175 7550 4100
Wire Wire Line
7550 4175 7550 4300
Connection ~ 7550 4175
Wire Wire Line
7550 4600 7550 4650
Wire Wire Line
7550 3900 7550 3700
Wire Wire Line
7550 3400 7550 3350
Wire Wire Line
7550 3350 8200 3350
Wire Wire Line
7550 3350 6800 3350
Wire Wire Line
6800 3350 6800 3675
Connection ~ 7550 3350
Wire Wire Line
6800 3875 6800 4175
Wire Wire Line
6800 4175 7550 4175
$Comp
L appli_power:GND #PWR024
U 1 1 5B06CC85
P 7550 4650
F 0 "#PWR024" H 7550 4400 50 0001 C CNN
F 1 "GND" H 7555 4477 50 0000 C CNN
F 2 "" H 7550 4650 60 0000 C CNN
F 3 "" H 7550 4650 60 0000 C CNN
1 7550 4650
1 0 0 -1
$EndComp
Wire Wire Line
8100 3650 8100 3750
Wire Wire Line
8100 4050 8100 4175
$Comp
L appli_regulator:LM5116 U2
U 1 1 5B07707D
P 9000 2950
F 0 "U2" H 9000 3917 50 0000 C CNN
F 1 "LM5116" H 9000 3826 50 0000 C CNN
F 2 "Applidyne_SOP:SOP21P65_720X780X200L75X30N" H 9325 2050 20 0001 L CNN
F 3 "http://www.ti.com/lit/ds/snvs499h/snvs499h.pdf" H 9325 2025 20 0001 L CNN
F 4 "TEXAS INSTRUMENTS" H 9325 1975 20 0001 L CNN "manf"
F 5 "LM5116MHX" H 9325 1950 20 0001 L CNN "manf#"
F 6 "Digikey" H 9325 1925 20 0001 L CNN "Supplier"
F 7 "LM5116MHX/NOPBCT-ND" H 9325 1900 20 0001 L CNN "Supplier Part No"
F 8 "https://www.digikey.com.au/product-detail/en/LM5116MHX-NOPB/LM5116MHX-NOPBCT-ND/3440164" H 9325 1875 20 0001 L CNN "Supplier URL"
F 9 "7.79" H 9325 1850 20 0001 L CNN "Supplier Price"
F 10 "1" H 9325 1825 20 0001 L CNN "Supplier Price Break"
1 9000 2950
1 0 0 -1
$EndComp
Wire Wire Line
7550 4175 7750 4175
Wire Wire Line
8100 3650 8200 3650
Wire Wire Line
8200 3450 7750 3450
Wire Wire Line
7750 3450 7750 4175
Connection ~ 7750 4175
Wire Wire Line
7750 4175 8100 4175
Wire Wire Line
8100 3625 8100 3650
Connection ~ 8100 3650
Wire Wire Line
11000 2550 11000 2250
Wire Wire Line
9800 2550 10100 2550
Wire Wire Line
11000 2600 11000 2550
Connection ~ 11000 2550
Wire Wire Line
11000 2800 11000 2850
Wire Wire Line
11000 2250 10350 2250
Wire Wire Line
9800 2850 11000 2850
Wire Wire Line
11000 2850 11550 2850
Connection ~ 11000 2850
Wire Wire Line
10400 2550 11000 2550
Wire Wire Line
12850 2850 13100 2850
Wire Wire Line
11900 3725 11450 3725
Wire Wire Line
11900 4025 11450 4025
$Comp
L appli_resistor:0R_1608M R21
U 1 1 5B0D507E
P 11450 4025
F 0 "R21" V 11262 3875 50 0000 C CNN
F 1 "0R_1608M" V 11342 3875 35 0000 C CNN
F 2 "Applidyne_Resistor:RESC1608X50N" V 11560 3875 20 0001 C CNN
F 3 "http://www.farnell.com/datasheets/1739504.pdf" V 11585 3875 20 0001 C CNN
F 4 "MULTICOMP" V 11635 3875 20 0001 C CNN "manf"
F 5 "MC0063W06030R" V 11660 3875 20 0001 C CNN "manf#"
F 6 "Element14" V 11685 3875 20 0001 C CNN "Supplier"
F 7 "9331662" V 11710 3875 20 0001 C CNN "Supplier Part No"
F 8 "http://au.element14.com/multicomp/mc0063w06030r/resistor-thick-film-0r-0-063w/dp/9331662" V 11735 3875 20 0001 C CNN "Supplier URL"
F 9 "0.023" V 11760 3875 20 0001 C CNN "Supplier Price"
F 10 "50" V 11785 3875 20 0001 C CNN "Supplier Price Break"
1 11450 4025
0 1 1 0
$EndComp
Wire Wire Line
11150 4025 10900 4025
Wire Wire Line
9800 3150 11000 3150
Wire Wire Line
11000 3150 11000 3400
Wire Wire Line
11000 3725 11150 3725
Wire Wire Line
9800 3250 10900 3250
Wire Wire Line
10900 3250 10900 4025
Wire Wire Line
10450 3650 10600 3650
$Comp
L appli_power:GND #PWR035
U 1 1 5B0E58BD
P 11900 4425
F 0 "#PWR035" H 11900 4175 50 0001 C CNN
F 1 "GND" H 11905 4252 50 0000 C CNN
F 2 "" H 11900 4425 60 0000 C CNN
F 3 "" H 11900 4425 60 0000 C CNN
1 11900 4425
1 0 0 -1
$EndComp
Wire Wire Line
9800 3350 10800 3350
Wire Wire Line
10800 3350 10800 4350
Wire Wire Line
10800 4350 11150 4350
Wire Wire Line
11450 4350 11900 4350
Wire Wire Line
11900 4025 11900 4350
Wire Wire Line
11900 4425 11900 4350
Connection ~ 11900 4350
Wire Wire Line
11100 3050 11100 3150
Wire Wire Line
9800 3050 11100 3050
Wire Wire Line
9800 2250 9850 2250
Wire Wire Line
9850 4200 9850 4150
Connection ~ 9850 4150
$Comp
L appli_power:GND #PWR030
U 1 1 5B142139
P 9850 4650
F 0 "#PWR030" H 9850 4400 50 0001 C CNN
F 1 "GND" H 9855 4477 50 0000 C CNN
F 2 "" H 9850 4650 60 0000 C CNN
F 3 "" H 9850 4650 60 0000 C CNN
1 9850 4650
1 0 0 -1
$EndComp
Wire Wire Line
6300 3700 6300 4650
Wire Wire Line
6300 2575 6300 2250
Wire Wire Line
6300 2250 7150 2250
Wire Wire Line
6300 2250 5600 2250
Connection ~ 6300 2250
Wire Wire Line
7500 2650 8200 2650
Wire Wire Line
11900 2900 11900 2850
Connection ~ 11900 2850
Wire Wire Line
11900 2850 12550 2850
Wire Wire Line
9850 4150 9850 2250
Connection ~ 9850 2250
Wire Wire Line
9850 2250 10150 2250
Wire Wire Line
9850 4650 9850 4400
Wire Wire Line
10050 3650 10150 3650
Connection ~ 10050 3650
Wire Wire Line
11275 2450 11275 2650
Wire Wire Line
11275 2650 11600 2650
Wire Wire Line
9800 2450 11275 2450
$Comp
L appli_connector_molex:MOLEX_43160-0102 P1
U 1 1 5AD2F837
P 1575 2150
F 0 "P1" H 1494 2415 50 0000 C CNN
F 1 "MOLEX_43160-0102" H 1494 2324 50 0000 C CNN
F 2 "Applidyne_Connector_Molex:Molex_Sabre_43160-0102_VERT" V 1750 2150 50 0001 C CNN
F 3 "https://www.molex.com/molex/products/datasheet.jsp?part=active/0431600102_PCB_HEADERS.xml" V 2525 2200 50 0001 C CNN
F 4 "MOLEX" V 1850 2175 60 0001 C CNN "manf"
F 5 "043160-0102" V 1950 2175 60 0001 C CNN "manf#"
F 6 "DigiKey" V 2050 2175 60 0001 C CNN "Supplier"
F 7 "WM18473-ND" V 2125 2175 60 0001 C CNN "Supplier Part No"
F 8 "https://www.digikey.com.au/product-detail/en/0431600102/WM18473-ND/300106" V 2225 2175 60 0001 C CNN "Supplier URL"
F 9 "1.66" V 2325 2175 60 0001 C CNN "Supplier Price"
F 10 "1" V 2425 2175 60 0001 C CNN "Supplier Price Break"
1 1575 2150
-1 0 0 -1
$EndComp
Wire Wire Line
1775 2100 2325 2100
Wire Wire Line
1775 2200 2250 2200
Wire Wire Line
2250 2200 2250 2250
$Comp
L appli_power:GND #PWR07
U 1 1 5AD4886E
P 2250 2250
F 0 "#PWR07" H 2250 2000 50 0001 C CNN
F 1 "GND" H 2255 2077 50 0000 C CNN
F 2 "" H 2250 2250 60 0000 C CNN
F 3 "" H 2250 2250 60 0000 C CNN
1 2250 2250
1 0 0 -1
$EndComp
Wire Wire Line
8700 4100 8450 4100
Wire Wire Line
8450 4100 8450 4200
Wire Wire Line
8800 4200 8800 4150
Connection ~ 8800 4150
Wire Wire Line
8800 4400 8800 4650
$Comp
L appli_power:GND #PWR028
U 1 1 5AD84D28
P 8800 4650
F 0 "#PWR028" H 8800 4400 50 0001 C CNN
F 1 "GND" H 8805 4477 50 0000 C CNN
F 2 "" H 8800 4650 60 0000 C CNN
F 3 "" H 8800 4650 60 0000 C CNN
1 8800 4650
1 0 0 -1
$EndComp
Wire Wire Line
9100 4650 9100 4000
Text Notes 12025 4175 0 50 ~ 0
Route with Kelvin \nconnection
$Comp
L appli_resistor:1K2_1608M R11
U 1 1 5ADD2F03
P 7550 4300
F 0 "R11" H 7623 4185 50 0000 L CNN
F 1 "1K2_1608M" H 7623 4105 35 0000 L CNN
F 2 "Applidyne_Resistor:RESC1608X50N" V 7660 4150 20 0001 C CNN
F 3 "http://www.farnell.com/datasheets/2310790.pdf" V 7685 4150 20 0001 C CNN
F 4 "VISHAY" V 7735 4150 20 0001 C CNN "manf"
F 5 "CRCW06031K20FKEA" V 7760 4150 20 0001 C CNN "manf#"
F 6 "Element14" V 7785 4150 20 0001 C CNN "Supplier"
F 7 "1469741" V 7810 4150 20 0001 C CNN "Supplier Part No"
F 8 "http://au.element14.com/vishay/crcw06031k20fkea/res-thick-film-1k2-1-0-1w-0603/dp/1469741" V 7835 4150 20 0001 C CNN "Supplier URL"
F 9 "0.013" V 7860 4150 20 0001 C CNN "Supplier Price"
F 10 "10" V 7885 4150 20 0001 C CNN "Supplier Price Break"
1 7550 4300
1 0 0 -1
$EndComp
$Comp
L appli_resistor:10K7_1608M R12
U 1 1 5ADD30A8
P 8100 3750
F 0 "R12" H 8173 3635 50 0000 L CNN
F 1 "10K7_1608M" H 8173 3555 35 0000 L CNN
F 2 "Applidyne_Resistor:RESC1608X50N" V 8210 3600 20 0001 C CNN
F 3 "http://www.farnell.com/datasheets/1911175.pdf" V 8235 3600 20 0001 C CNN
F 4 "PANASONIC" V 8285 3600 20 0001 C CNN "manf"
F 5 "ERJ3EKF1072V" V 8310 3600 20 0001 C CNN "manf#"
F 6 "Element14" V 8335 3600 20 0001 C CNN "Supplier"
F 7 "2303193" V 8360 3600 20 0001 C CNN "Supplier Part No"
F 8 "http://au.element14.com/panasonic-electronic-components/erj3ekf1072v/res-thick-film-10k7-1-0-1w-0603/dp/2303193" V 8385 3600 20 0001 C CNN "Supplier URL"
F 9 "0.014" V 8410 3600 20 0001 C CNN "Supplier Price"
F 10 "5" V 8435 3600 20 0001 C CNN "Supplier Price Break"
1 8100 3750
1 0 0 -1
$EndComp
$Comp
L appli_resistor:750K_1608M R16
U 1 1 5ADD3253
P 9625 4150
F 0 "R16" V 9437 4000 50 0000 C CNN
F 1 "750K_1608M" V 9517 4000 35 0000 C CNN
F 2 "Applidyne_Resistor:RESC1608X50N" V 9735 4000 20 0001 C CNN
F 3 "http://www.farnell.com/datasheets/1716711.pdf" V 9760 4000 20 0001 C CNN
F 4 "MULTICOMP" V 9810 4000 20 0001 C CNN "manf"
F 5 "MCSR06X7503FTL" V 9835 4000 20 0001 C CNN "manf#"
F 6 "Element14" V 9860 4000 20 0001 C CNN "Supplier"
F 7 "2074305" V 9885 4000 20 0001 C CNN "Supplier Part No"
F 8 "http://au.element14.com/multicomp/mcsr06x7503ftl/res-ceramic-750k-1-0-1w-0603/dp/2074305" V 9910 4000 20 0001 C CNN "Supplier URL"
F 9 "0.01" V 9935 4000 20 0001 C CNN "Supplier Price"
F 10 "100" V 9960 4000 20 0001 C CNN "Supplier Price Break"
1 9625 4150
0 1 1 0
$EndComp
$Comp
L appli_resistor:102K_1608M R8
U 1 1 5AE1914E
P 7500 2300
F 0 "R8" H 7573 2185 50 0000 L CNN
F 1 "102K_1608M" H 7573 2105 35 0000 L CNN
F 2 "Applidyne_Resistor:RESC1608X50N" V 7610 2150 20 0001 C CNN
F 3 "http://www.farnell.com/datasheets/1729042.pdf" V 7635 2150 20 0001 C CNN
F 4 "MULTICOMP" V 7685 2150 20 0001 C CNN "manf"
F 5 "MCWF06R1023BTL" V 7710 2150 20 0001 C CNN "manf#"
F 6 "Element14" V 7735 2150 20 0001 C CNN "Supplier"
F 7 "2338699" V 7760 2150 20 0001 C CNN "Supplier Part No"
F 8 "http://au.element14.com/multicomp/mcwf06r1023btl/res-thin-film-102k-0-1-0-1w-0603/dp/2338699" V 7785 2150 20 0001 C CNN "Supplier URL"
F 9 "0.045" V 7810 2150 20 0001 C CNN "Supplier Price"
F 10 "10" V 7835 2150 20 0001 C CNN "Supplier Price Break"
1 7500 2300
1 0 0 -1
$EndComp
$Comp
L appli_resistor:1R0_1608M R18
U 1 1 5AE215F9
P 10450 3650
F 0 "R18" V 10262 3500 50 0000 C CNN
F 1 "1R0_1608M" V 10342 3500 35 0000 C CNN
F 2 "Applidyne_Resistor:RESC1608X50N" V 10560 3500 20 0001 C CNN
F 3 "http://www.farnell.com/datasheets/2549522.pdf" V 10585 3500 20 0001 C CNN
F 4 "MULTICOMP" V 10635 3500 20 0001 C CNN "manf"
F 5 "MCMR06X1R0JTL" V 10660 3500 20 0001 C CNN "manf#"
F 6 "Element14" V 10685 3500 20 0001 C CNN "Supplier"
F 7 "2073416" V 10710 3500 20 0001 C CNN "Supplier Part No"
F 8 "http://au.element14.com/multicomp/mcmr06x1r0-jtl/res-ceramic-1r-5-0-1w-0603/dp/2073416" V 10735 3500 20 0001 C CNN "Supplier URL"
F 9 "0.005" V 10760 3500 20 0001 C CNN "Supplier Price"
F 10 "100" V 10785 3500 20 0001 C CNN "Supplier Price Break"
1 10450 3650
0 1 1 0
$EndComp
$Comp
L appli_resistor:9K53_1608M R9
U 1 1 5AE2DC3A
P 7500 2700
F 0 "R9" H 7573 2585 50 0000 L CNN
F 1 "9K53_1608M" H 7573 2505 35 0000 L CNN
F 2 "Applidyne_Resistor:RESC1608X50N" V 7610 2550 20 0001 C CNN
F 3 "http://www.farnell.com/datasheets/2111203.pdf" V 7635 2550 20 0001 C CNN
F 4 "VISHAY" V 7685 2550 20 0001 C CNN "manf"
F 5 "CRCW06039K53FKEA" V 7710 2550 20 0001 C CNN "manf#"
F 6 "Element14" V 7735 2550 20 0001 C CNN "Supplier"
F 7 "1469844" V 7760 2550 20 0001 C CNN "Supplier Part No"
F 8 "http://au.element14.com/vishay/crcw06039k53fkea/res-thick-film-9k53-1-0-1w-0603/dp/1469844?CMP=GRHB-OCTOPART" V 7785 2550 20 0001 C CNN "Supplier URL"
F 9 "0.087" V 7810 2550 20 0001 C CNN "Supplier Price"
F 10 "10" V 7835 2550 20 0001 C CNN "Supplier Price Break"
1 7500 2700
1 0 0 -1
$EndComp
$Comp
L appli_power:PWR_FLAG #FLG01
U 1 1 5AD55228
P 2650 2050
F 0 "#FLG01" H 2650 2100 30 0001 C CNN
F 1 "PWR_FLAG" H 2650 2183 30 0000 C CNN
F 2 "" H 2650 2050 60 0000 C CNN
F 3 "" H 2650 2050 60 0000 C CNN
1 2650 2050
1 0 0 -1
$EndComp
$Comp
L appli_power:PWR_FLAG #FLG02
U 1 1 5AD5527D
P 15600 2800
F 0 "#FLG02" H 15600 2850 30 0001 C CNN
F 1 "PWR_FLAG" H 15600 2933 30 0000 C CNN
F 2 "" H 15600 2800 60 0000 C CNN
F 3 "" H 15600 2800 60 0000 C CNN
1 15600 2800
1 0 0 -1
$EndComp
$Comp
L appli_capacitor:100n_X7R_1608M C1
U 1 1 5ADBDD4B
P 1575 5925
F 0 "C1" H 1653 5860 50 0000 L CNN
F 1 "100n_X7R_1608M" H 1653 5780 35 0000 L CNN
F 2 "Applidyne_Capacitor:CAPC1608X90N" V 1690 5825 20 0001 C CNN
F 3 "http://www.farnell.com/datasheets/1732728.pdf" V 1715 5825 20 0001 C CNN
F 4 "KEMET" V 1765 5825 20 0001 C CNN "manf"
F 5 "C0603C104K5RACAUTO" V 1790 5825 20 0001 C CNN "manf#"
F 6 "Element14" V 1815 5825 20 0001 C CNN "Supplier"
F 7 "2070398" V 1840 5825 20 0001 C CNN "Supplier Part No"
F 8 "http://au.element14.com/kemet/c0603c104k5racauto/cap-mlcc-x7r-100nf-50v-0603/dp/2070398" V 1865 5825 20 0001 C CNN "Supplier URL"
F 9 "0.011" V 1890 5825 20 0001 C CNN "Supplier Price"
F 10 "1" V 1915 5825 20 0001 C CNN "Supplier Price Break"
1 1575 5925
1 0 0 -1
$EndComp
$Comp
L appli_capacitor:1u_X7R_2012M C14
U 1 1 5ADBE365
P 9850 4400
F 0 "C14" H 9773 4265 50 0000 R CNN
F 1 "1u_X7R_2012M" H 9773 4345 35 0000 R CNN
F 2 "Applidyne_Capacitor:CAPC2012X110N" V 9965 4300 20 0001 C CNN
F 3 "http://www.farnell.com/datasheets/2047889.pdf" V 9990 4300 20 0001 C CNN
F 4 "muRata" V 10040 4300 20 0001 C CNN "manf"
F 5 "GRM21BR71C105KA01L" V 10065 4300 20 0001 C CNN "manf#"
F 6 "Element14" V 10090 4300 20 0001 C CNN "Supplier"
F 7 "9527710" V 10115 4300 20 0001 C CNN "Supplier Part No"
F 8 "http://au.element14.com/murata/grm21br71c105ka01l/cap-mlcc-x7r-1uf-16v-0805/dp/9527710" V 10140 4300 20 0001 C CNN "Supplier URL"
F 9 "0.224" V 10165 4300 20 0001 C CNN "Supplier Price"
F 10 "1" V 10190 4300 20 0001 C CNN "Supplier Price Break"
1 9850 4400
1 0 0 1
$EndComp
$Comp
L appli_capacitor:1u_X7R_2012M C15
U 1 1 5ADCA287
P 10050 4100
F 0 "C15" H 9972 3965 50 0000 R CNN
F 1 "1u_X7R_2012M" H 9972 4045 35 0000 R CNN
F 2 "Applidyne_Capacitor:CAPC2012X110N" V 10165 4000 20 0001 C CNN
F 3 "http://www.farnell.com/datasheets/2047889.pdf" V 10190 4000 20 0001 C CNN
F 4 "muRata" V 10240 4000 20 0001 C CNN "manf"
F 5 "GRM21BR71C105KA01L" V 10265 4000 20 0001 C CNN "manf#"
F 6 "Element14" V 10290 4000 20 0001 C CNN "Supplier"
F 7 "9527710" V 10315 4000 20 0001 C CNN "Supplier Part No"
F 8 "http://au.element14.com/murata/grm21br71c105ka01l/cap-mlcc-x7r-1uf-16v-0805/dp/9527710" V 10340 4000 20 0001 C CNN "Supplier URL"
F 9 "0.224" V 10365 4000 20 0001 C CNN "Supplier Price"
F 10 "1" V 10390 4000 20 0001 C CNN "Supplier Price Break"
1 10050 4100
-1 0 0 1
$EndComp
$Comp
L appli_capacitor:330p_X7R_1608M C13
U 1 1 5ADCA53F
P 8800 4200
F 0 "C13" V 8675 4050 50 0000 L CNN
F 1 "330p_X7R_1608M" V 8900 3700 35 0000 L CNN
F 2 "Applidyne_Capacitor:CAPC1608X90N" V 8915 4100 20 0001 C CNN
F 3 "http://www.farnell.com/datasheets/2068140.pdf" V 8940 4100 20 0001 C CNN
F 4 "AVX" V 8990 4100 20 0001 C CNN "manf"
F 5 "06035A331JAT2A" V 9015 4100 20 0001 C CNN "manf#"
F 6 "Element14" V 9040 4100 20 0001 C CNN "Supplier"
F 7 "316660" V 9065 4100 20 0001 C CNN "Supplier Part No"
F 8 "http://au.element14.com/avx/06035a331jat2a/cap-mlcc-c0g-np0-330pf-50v-0603/dp/316660" V 9090 4100 20 0001 C CNN "Supplier URL"
F 9 "0.21" V 9115 4100 20 0001 C CNN "Supplier Price"
F 10 "10" V 9140 4100 20 0001 C CNN "Supplier Price Break"
1 8800 4200
1 0 0 -1
$EndComp
$Comp
L appli_capacitor:100n_X7R_1608M C12
U 1 1 5ADCA97C
P 8450 4200
F 0 "C12" V 8325 4050 50 0000 L CNN
F 1 "100n_X7R_1608M" V 8550 3725 35 0000 L CNN
F 2 "Applidyne_Capacitor:CAPC1608X90N" V 8565 4100 20 0001 C CNN
F 3 "http://www.farnell.com/datasheets/1732728.pdf" V 8590 4100 20 0001 C CNN
F 4 "KEMET" V 8640 4100 20 0001 C CNN "manf"
F 5 "C0603C104K5RACAUTO" V 8665 4100 20 0001 C CNN "manf#"
F 6 "Element14" V 8690 4100 20 0001 C CNN "Supplier"
F 7 "2070398" V 8715 4100 20 0001 C CNN "Supplier Part No"
F 8 "http://au.element14.com/kemet/c0603c104k5racauto/cap-mlcc-x7r-100nf-50v-0603/dp/2070398" V 8740 4100 20 0001 C CNN "Supplier URL"
F 9 "0.011" V 8765 4100 20 0001 C CNN "Supplier Price"
F 10 "1" V 8790 4100 20 0001 C CNN "Supplier Price Break"
1 8450 4200
1 0 0 -1
$EndComp
$Comp
L appli_capacitor:1n5_X7R_1608M C11
U 1 1 5ADCAF13
P 7550 4100
F 0 "C11" H 7473 3965 50 0000 R CNN
F 1 "1n5_X7R_1608M" H 7473 4045 35 0000 R CNN
F 2 "Applidyne_Capacitor:CAPC1608X90N" V 7665 4000 20 0001 C CNN
F 3 "http://www.farnell.com/datasheets/1955686.pdf" V 7690 4000 20 0001 C CNN
F 4 "muRata" V 7740 4000 20 0001 C CNN "manf"
F 5 "GRM188R71H152KA01D" V 7765 4000 20 0001 C CNN "manf#"
F 6 "Element14" V 7790 4000 20 0001 C CNN "Supplier"
F 7 "2494239RL" V 7815 4000 20 0001 C CNN "Supplier Part No"
F 8 "http://au.element14.com/murata/grm188r71h152ka01d/cap-mlcc-x7r-1500pf-50v-0603/dp/2494239RL" V 7840 4000 20 0001 C CNN "Supplier URL"
F 9 "0.209" V 7865 4000 20 0001 C CNN "Supplier Price"
F 10 "10" V 7890 4000 20 0001 C CNN "Supplier Price Break"
1 7550 4100
1 0 0 1
$EndComp
$Comp
L appli_capacitor:15p_X7R_1608M C9
U 1 1 5ADD6F55
P 6800 3675
F 0 "C9" H 6878 3610 50 0000 L CNN
F 1 "15p_X7R_1608M" H 6878 3530 35 0000 L CNN
F 2 "Applidyne_Capacitor:CAPC1608X90N" V 6915 3575 20 0001 C CNN
F 3 "http://www.farnell.com/datasheets/2291921.pdf" V 6940 3575 20 0001 C CNN
F 4 "TDK" V 6990 3575 20 0001 C CNN "manf"
F 5 "C1608C0G1H150J080AA" V 7015 3575 20 0001 C CNN "manf#"
F 6 "Element14" V 7040 3575 20 0001 C CNN "Supplier"
F 7 "1907286RL" V 7065 3575 20 0001 C CNN "Supplier Part No"
F 8 "http://au.element14.com/tdk/c1608c0g1h150j080aa/cap-mlcc-c0g-np0-15pf-50v-0603/dp/1907286RL" V 7090 3575 20 0001 C CNN "Supplier URL"
F 9 "0.0121" V 7115 3575 20 0001 C CNN "Supplier Price"
F 10 "50" V 7140 3575 20 0001 C CNN "Supplier Price Break"
1 6800 3675
1 0 0 -1
$EndComp
$Comp
L appli_capacitor:1u_X7R_1608M C10
U 1 1 5ADD72D1
P 7150 2950
F 0 "C10" H 7073 2815 50 0000 R CNN
F 1 "1u_X7R_1608M" H 7073 2895 35 0000 R CNN
F 2 "Applidyne_Capacitor:CAPC1608X90N" V 7265 2850 20 0001 C CNN
F 3 "http://www.farnell.com/datasheets/2048611.pdf?_ga=1.116411968.774814437.1442284889" V 7290 2850 20 0001 C CNN
F 4 "muRata" V 7340 2850 20 0001 C CNN "manf"
F 5 "GRM188R61H105KAALD" V 7365 2850 20 0001 C CNN "manf#"
F 6 "Element14" V 7390 2850 20 0001 C CNN "Supplier"
F 7 "1845736" V 7415 2850 20 0001 C CNN "Supplier Part No"
F 8 "http://au.element14.com/murata/grm188r61h105kaald/cap-mlcc-x5r-1uf-50v-0603/dp/1845736" V 7440 2850 20 0001 C CNN "Supplier URL"
F 9 "0.092" V 7465 2850 20 0001 C CNN "Supplier Price"
F 10 "100" V 7490 2850 20 0001 C CNN "Supplier Price Break"
1 7150 2950
1 0 0 1
$EndComp
$Comp
L appli_capacitor:1u_X7R_2012M C16
U 1 1 5ADD78B1
P 11000 2800
F 0 "C16" H 10923 2665 50 0000 R CNN
F 1 "1u_X7R_2012M" H 10923 2745 35 0000 R CNN
F 2 "Applidyne_Capacitor:CAPC2012X110N" V 11115 2700 20 0001 C CNN
F 3 "http://www.farnell.com/datasheets/2047889.pdf" V 11140 2700 20 0001 C CNN
F 4 "muRata" V 11190 2700 20 0001 C CNN "manf"
F 5 "GRM21BR71C105KA01L" V 11215 2700 20 0001 C CNN "manf#"
F 6 "Element14" V 11240 2700 20 0001 C CNN "Supplier"
F 7 "9527710" V 11265 2700 20 0001 C CNN "Supplier Part No"
F 8 "http://au.element14.com/murata/grm21br71c105ka01l/cap-mlcc-x7r-1uf-16v-0805/dp/9527710" V 11290 2700 20 0001 C CNN "Supplier URL"
F 9 "0.224" V 11315 2700 20 0001 C CNN "Supplier Price"
F 10 "1" V 11340 2700 20 0001 C CNN "Supplier Price Break"
1 11000 2800
1 0 0 1
$EndComp
$Comp
L appli_resistor:R01_3216M R23
U 1 1 5ADD7A8A
P 11900 3725
F 0 "R23" H 11973 3610 50 0000 L CNN
F 1 "R01_3216M" H 11973 3530 35 0000 L CNN
F 2 "Applidyne_Resistor:RESC3216X140N" V 12010 3575 20 0001 C CNN
F 3 "http://www.farnell.com/datasheets/2049155.pdf?" V 12035 3575 20 0001 C CNN
F 4 "Vishay" V 12085 3575 20 0001 C CNN "manf"
F 5 "WSLP1206R0100FEA" V 12110 3575 20 0001 C CNN "manf#"
F 6 "Element14" V 12135 3575 20 0001 C CNN "Supplier"
F 7 "683-6215" V 12160 3575 20 0001 C CNN "Supplier Part No"
F 8 "http://au.rs-online.com/web/p/surface-mount-fixed-resistors/6836215" V 12185 3575 20 0001 C CNN "Supplier URL"
F 9 "1.15" V 12210 3575 20 0001 C CNN "Supplier Price"
F 10 "1" V 12235 3575 20 0001 C CNN "Supplier Price Break"
1 11900 3725
1 0 0 -1
$EndComp
Connection ~ 11900 4025
$Comp
L appli_inductor:10u2_PA2050 L1
U 1 1 5ADD7CF3
P 12550 2850
F 0 "L1" V 12363 2700 55 0000 C CNN