-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathThermometers.sch
1574 lines (1574 loc) · 66.7 KB
/
Thermometers.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
EELAYER 30 0
EELAYER END
$Descr A4 11693 8268
encoding utf-8
Sheet 15 25
Title "Marble-Mini"
Date "2020-09-25"
Rev "v1.1"
Comp "Michał Gąska / WUT"
Comment1 ""
Comment2 ""
Comment3 "Thermometer & Fans controller"
Comment4 ""
$EndDescr
$Comp
L marble_misc:LM75B-Sensor_Temperature U28
U 1 1 5D05AA1A
P 6900 1850
F 0 "U28" H 6650 2300 50 0000 C CNN
F 1 "LM75AIMM/NOPB" H 7250 1400 50 0000 C CNN
F 2 "Marble:SOP65P490X109-8N" H 6900 1850 50 0001 C CNN
F 3 "http://www.ti.com/lit/ds/symlink/lm75b.pdf" H 6900 1850 50 0001 C CNN
F 4 "LM75AIMM/NOPB" H 6900 1850 50 0001 C CNN "Manufacturer Part Number"
F 5 "TEXAS INSTRUMENTS" H 6900 1850 50 0001 C CNN "Manufacturer"
F 6 "Yes" H 6900 1850 50 0001 C CNN "SMD"
1 6900 1850
1 0 0 -1
$EndComp
$Comp
L power:+3V3P #PWR?
U 1 1 5D05AEC2
P 6900 1100
AR Path="/5C16C03C/5D05AEC2" Ref="#PWR?" Part="1"
AR Path="/5BCEDA39/5D05AEC2" Ref="#PWR?" Part="1"
AR Path="/5D05A99E/5D05AEC2" Ref="#PWR0358" Part="1"
AR Path="/5C16BF8E/5D05AEC2" Ref="#PWR0358" Part="1"
AR Path="/5D05AEC2" Ref="#PWR0358" Part="1"
F 0 "#PWR0358" H 6900 950 50 0001 C CNN
F 1 "+3V3P" H 6915 1273 50 0000 C CNN
F 2 "" H 6900 1100 50 0001 C CNN
F 3 "" H 6900 1100 50 0001 C CNN
1 6900 1100
1 0 0 -1
$EndComp
Wire Wire Line
6900 1100 6900 1250
Wire Wire Line
7000 1250 6900 1250
Connection ~ 6900 1250
Wire Wire Line
6900 1250 6900 1350
$Comp
L power:GND #PWR?
U 1 1 5D05B096
P 7350 1250
AR Path="/5BD32060/5D05B096" Ref="#PWR?" Part="1"
AR Path="/5BCEDA39/5D05B096" Ref="#PWR?" Part="1"
AR Path="/5D05A99E/5D05B096" Ref="#PWR0362" Part="1"
F 0 "#PWR0362" H 7350 1000 50 0001 C CNN
F 1 "GND" H 7355 1077 50 0000 C CNN
F 2 "" H 7350 1250 50 0001 C CNN
F 3 "" H 7350 1250 50 0001 C CNN
1 7350 1250
1 0 0 -1
$EndComp
Wire Wire Line
7300 1250 7350 1250
$Comp
L power:GND #PWR?
U 1 1 5D05B0FC
P 6900 2400
AR Path="/5BD32060/5D05B0FC" Ref="#PWR?" Part="1"
AR Path="/5BCEDA39/5D05B0FC" Ref="#PWR?" Part="1"
AR Path="/5D05A99E/5D05B0FC" Ref="#PWR0359" Part="1"
F 0 "#PWR0359" H 6900 2150 50 0001 C CNN
F 1 "GND" H 6905 2227 50 0000 C CNN
F 2 "" H 6900 2400 50 0001 C CNN
F 3 "" H 6900 2400 50 0001 C CNN
1 6900 2400
1 0 0 -1
$EndComp
Wire Wire Line
6900 2350 6900 2400
$Comp
L power:GND #PWR?
U 1 1 5D05B12F
P 7500 1950
AR Path="/5BD32060/5D05B12F" Ref="#PWR?" Part="1"
AR Path="/5BCEDA39/5D05B12F" Ref="#PWR?" Part="1"
AR Path="/5D05A99E/5D05B12F" Ref="#PWR0366" Part="1"
F 0 "#PWR0366" H 7500 1700 50 0001 C CNN
F 1 "GND" V 7505 1777 50 0000 C CNN
F 2 "" H 7500 1950 50 0001 C CNN
F 3 "" H 7500 1950 50 0001 C CNN
1 7500 1950
0 -1 -1 0
$EndComp
$Comp
L power:+3V3P #PWR?
U 1 1 5D05B18E
P 7500 1750
AR Path="/5C16C03C/5D05B18E" Ref="#PWR?" Part="1"
AR Path="/5BCEDA39/5D05B18E" Ref="#PWR?" Part="1"
AR Path="/5D05A99E/5D05B18E" Ref="#PWR0364" Part="1"
AR Path="/5C16BF8E/5D05B18E" Ref="#PWR0364" Part="1"
AR Path="/5D05B18E" Ref="#PWR0364" Part="1"
F 0 "#PWR0364" H 7500 1600 50 0001 C CNN
F 1 "+3V3P" V 7500 2000 50 0000 C CNN
F 2 "" H 7500 1750 50 0001 C CNN
F 3 "" H 7500 1750 50 0001 C CNN
1 7500 1750
0 1 1 0
$EndComp
$Comp
L power:+3V3P #PWR?
U 1 1 5D05B203
P 7500 1850
AR Path="/5C16C03C/5D05B203" Ref="#PWR?" Part="1"
AR Path="/5BCEDA39/5D05B203" Ref="#PWR?" Part="1"
AR Path="/5D05A99E/5D05B203" Ref="#PWR0365" Part="1"
AR Path="/5C16BF8E/5D05B203" Ref="#PWR0365" Part="1"
AR Path="/5D05B203" Ref="#PWR0365" Part="1"
F 0 "#PWR0365" H 7500 1700 50 0001 C CNN
F 1 "+3V3P" V 7500 2100 50 0000 C CNN
F 2 "" H 7500 1850 50 0001 C CNN
F 3 "" H 7500 1850 50 0001 C CNN
1 7500 1850
0 1 1 0
$EndComp
Wire Wire Line
7500 1750 7300 1750
Wire Wire Line
7500 1850 7300 1850
Wire Wire Line
7500 1950 7300 1950
$Comp
L marble_misc:LM75B-Sensor_Temperature U29
U 1 1 5D05B2F7
P 6900 3750
F 0 "U29" H 6650 4200 50 0000 C CNN
F 1 "LM75AIMM/NOPB" H 7250 3300 50 0000 C CNN
F 2 "Marble:SOP65P490X109-8N" H 6900 3750 50 0001 C CNN
F 3 "http://www.ti.com/lit/ds/symlink/lm75b.pdf" H 6900 3750 50 0001 C CNN
F 4 "LM75AIMM/NOPB" H 6900 3750 50 0001 C CNN "Manufacturer Part Number"
F 5 "TEXAS INSTRUMENTS" H 6900 3750 50 0001 C CNN "Manufacturer"
F 6 "Yes" H 6900 3750 50 0001 C CNN "SMD"
1 6900 3750
1 0 0 -1
$EndComp
$Comp
L power:+3V3P #PWR?
U 1 1 5D05B306
P 6900 3000
AR Path="/5C16C03C/5D05B306" Ref="#PWR?" Part="1"
AR Path="/5BCEDA39/5D05B306" Ref="#PWR?" Part="1"
AR Path="/5D05A99E/5D05B306" Ref="#PWR0360" Part="1"
AR Path="/5C16BF8E/5D05B306" Ref="#PWR0360" Part="1"
AR Path="/5D05B306" Ref="#PWR0360" Part="1"
F 0 "#PWR0360" H 6900 2850 50 0001 C CNN
F 1 "+3V3P" H 6915 3173 50 0000 C CNN
F 2 "" H 6900 3000 50 0001 C CNN
F 3 "" H 6900 3000 50 0001 C CNN
1 6900 3000
1 0 0 -1
$EndComp
Wire Wire Line
6900 3000 6900 3150
Wire Wire Line
7000 3150 6900 3150
Connection ~ 6900 3150
Wire Wire Line
6900 3150 6900 3250
$Comp
L power:GND #PWR?
U 1 1 5D05B310
P 7350 3150
AR Path="/5BD32060/5D05B310" Ref="#PWR?" Part="1"
AR Path="/5BCEDA39/5D05B310" Ref="#PWR?" Part="1"
AR Path="/5D05A99E/5D05B310" Ref="#PWR0363" Part="1"
F 0 "#PWR0363" H 7350 2900 50 0001 C CNN
F 1 "GND" H 7355 2977 50 0000 C CNN
F 2 "" H 7350 3150 50 0001 C CNN
F 3 "" H 7350 3150 50 0001 C CNN
1 7350 3150
1 0 0 -1
$EndComp
Wire Wire Line
7300 3150 7350 3150
$Comp
L power:GND #PWR?
U 1 1 5D05B317
P 6900 4300
AR Path="/5BD32060/5D05B317" Ref="#PWR?" Part="1"
AR Path="/5BCEDA39/5D05B317" Ref="#PWR?" Part="1"
AR Path="/5D05A99E/5D05B317" Ref="#PWR0361" Part="1"
F 0 "#PWR0361" H 6900 4050 50 0001 C CNN
F 1 "GND" H 6905 4127 50 0000 C CNN
F 2 "" H 6900 4300 50 0001 C CNN
F 3 "" H 6900 4300 50 0001 C CNN
1 6900 4300
1 0 0 -1
$EndComp
Wire Wire Line
6900 4250 6900 4300
$Comp
L power:GND #PWR?
U 1 1 5D05B31E
P 7500 3850
AR Path="/5BD32060/5D05B31E" Ref="#PWR?" Part="1"
AR Path="/5BCEDA39/5D05B31E" Ref="#PWR?" Part="1"
AR Path="/5D05A99E/5D05B31E" Ref="#PWR0369" Part="1"
F 0 "#PWR0369" H 7500 3600 50 0001 C CNN
F 1 "GND" V 7505 3677 50 0000 C CNN
F 2 "" H 7500 3850 50 0001 C CNN
F 3 "" H 7500 3850 50 0001 C CNN
1 7500 3850
0 -1 -1 0
$EndComp
$Comp
L power:+3V3P #PWR?
U 1 1 5D05B324
P 7500 3650
AR Path="/5C16C03C/5D05B324" Ref="#PWR?" Part="1"
AR Path="/5BCEDA39/5D05B324" Ref="#PWR?" Part="1"
AR Path="/5D05A99E/5D05B324" Ref="#PWR0367" Part="1"
AR Path="/5C16BF8E/5D05B324" Ref="#PWR0367" Part="1"
AR Path="/5D05B324" Ref="#PWR0367" Part="1"
F 0 "#PWR0367" H 7500 3500 50 0001 C CNN
F 1 "+3V3P" V 7500 3900 50 0000 C CNN
F 2 "" H 7500 3650 50 0001 C CNN
F 3 "" H 7500 3650 50 0001 C CNN
1 7500 3650
0 1 1 0
$EndComp
Wire Wire Line
7500 3650 7300 3650
Wire Wire Line
7500 3850 7300 3850
$Comp
L power:GND #PWR?
U 1 1 5D05B4B4
P 7500 3750
AR Path="/5BD32060/5D05B4B4" Ref="#PWR?" Part="1"
AR Path="/5BCEDA39/5D05B4B4" Ref="#PWR?" Part="1"
AR Path="/5D05A99E/5D05B4B4" Ref="#PWR0368" Part="1"
F 0 "#PWR0368" H 7500 3500 50 0001 C CNN
F 1 "GND" V 7505 3577 50 0000 C CNN
F 2 "" H 7500 3750 50 0001 C CNN
F 3 "" H 7500 3750 50 0001 C CNN
1 7500 3750
0 -1 -1 0
$EndComp
Wire Wire Line
7300 3750 7500 3750
Wire Wire Line
6500 3850 6300 3850
Wire Wire Line
6300 1950 6500 1950
Wire Wire Line
6500 3650 6150 3650
Connection ~ 6150 1750
Wire Wire Line
6150 1750 6500 1750
Wire Wire Line
6500 3750 6050 3750
Connection ~ 6050 1850
Wire Wire Line
6050 1850 6500 1850
Wire Wire Line
6300 1500 6300 1600
Connection ~ 6300 1950
$Comp
L power:+3V3P #PWR?
U 1 1 5D05D39D
P 6300 1100
AR Path="/5C16C03C/5D05D39D" Ref="#PWR?" Part="1"
AR Path="/5BCEDA39/5D05D39D" Ref="#PWR?" Part="1"
AR Path="/5D05A99E/5D05D39D" Ref="#PWR0357" Part="1"
AR Path="/5C16BF8E/5D05D39D" Ref="#PWR0357" Part="1"
AR Path="/5D05D39D" Ref="#PWR0357" Part="1"
F 0 "#PWR0357" H 6300 950 50 0001 C CNN
F 1 "+3V3P" H 6315 1273 50 0000 C CNN
F 2 "" H 6300 1100 50 0001 C CNN
F 3 "" H 6300 1100 50 0001 C CNN
1 6300 1100
1 0 0 -1
$EndComp
Wire Wire Line
6300 1100 6300 1200
$Comp
L power:+3V3P #PWR?
U 1 1 5D0665E3
P 2300 6000
AR Path="/5C16C03C/5D0665E3" Ref="#PWR?" Part="1"
AR Path="/5BCEDA39/5D0665E3" Ref="#PWR?" Part="1"
AR Path="/5D05A99E/5D0665E3" Ref="#PWR0356" Part="1"
AR Path="/5C16BF8E/5D0665E3" Ref="#PWR0356" Part="1"
AR Path="/5D0665E3" Ref="#PWR0356" Part="1"
F 0 "#PWR0356" H 2300 5850 50 0001 C CNN
F 1 "+3V3P" V 2300 6250 50 0000 C CNN
F 2 "" H 2300 6000 50 0001 C CNN
F 3 "" H 2300 6000 50 0001 C CNN
1 2300 6000
0 -1 1 0
$EndComp
$Comp
L power:GND #PWR?
U 1 1 5D067373
P 2400 6400
AR Path="/5BD32060/5D067373" Ref="#PWR?" Part="1"
AR Path="/5BCEDA39/5D067373" Ref="#PWR?" Part="1"
AR Path="/5D05A99E/5D067373" Ref="#PWR0355" Part="1"
F 0 "#PWR0355" H 2400 6150 50 0001 C CNN
F 1 "GND" H 2405 6227 50 0000 C CNN
F 2 "" H 2400 6400 50 0001 C CNN
F 3 "" H 2400 6400 50 0001 C CNN
1 2400 6400
-1 0 0 -1
$EndComp
Wire Wire Line
2400 6050 2400 6000
Connection ~ 2400 6000
Wire Wire Line
2400 6000 2300 6000
Wire Wire Line
2400 6350 2400 6400
Text HLabel 5500 1750 0 50 BiDi ~ 10
I2C_PM_SDA
Text HLabel 5500 1850 0 50 Input ~ 10
I2C_PM_SCL
Wire Wire Line
5500 1750 6150 1750
Wire Wire Line
5500 1850 6050 1850
Text HLabel 4850 5900 2 50 Output ~ 10
ALERT
Wire Wire Line
5500 1600 6300 1600
Connection ~ 6300 1600
Wire Wire Line
6300 1600 6300 1950
Text HLabel 1200 5000 0 50 Input ~ 10
DXP_0
Text HLabel 1200 5100 0 50 Input ~ 10
DXN_0
Wire Wire Line
2400 6000 2850 6000
$Comp
L power:GND #PWR?
U 1 1 5D54FC25
P 2850 6200
AR Path="/5BD32060/5D54FC25" Ref="#PWR?" Part="1"
AR Path="/5BCEDA39/5D54FC25" Ref="#PWR?" Part="1"
AR Path="/5D05A99E/5D54FC25" Ref="#PWR0505" Part="1"
F 0 "#PWR0505" H 2850 5950 50 0001 C CNN
F 1 "GND" H 2855 6027 50 0000 C CNN
F 2 "" H 2850 6200 50 0001 C CNN
F 3 "" H 2850 6200 50 0001 C CNN
1 2850 6200
-1 0 0 -1
$EndComp
Wire Wire Line
2850 6100 2850 6200
Wire Wire Line
1200 5100 1200 5300
Wire Wire Line
1200 5300 1400 5300
Wire Wire Line
2750 5000 2750 5200
Wire Wire Line
2750 5200 2850 5200
$Comp
L marble_misc:STS2DNE60-Transistor_FET Q7
U 1 1 5D559F89
P 6700 5750
F 0 "Q7" H 6906 5796 50 0000 L CNN
F 1 "STS8DN6LF6AG" H 6906 5705 50 0000 L CNN
F 2 "Marble:SOIC127P600X175-8N" H 6900 5675 50 0001 L CIN
F 3 "www.st.com/resource/en/datasheet/CD00001537.pdf" H 6700 5750 50 0001 L CNN
F 4 "STS8DN6LF6AG" H 6700 5750 50 0001 C CNN "Manufacturer Part Number"
F 5 "ST MICROELECTRONICS" H 6700 5750 50 0001 C CNN "Manufacturer"
F 6 "Yes" H 6700 5750 50 0001 C CNN "SMD"
1 6700 5750
1 0 0 -1
$EndComp
$Comp
L marble_misc:STS2DNE60-Transistor_FET Q7
U 2 1 5D559FE8
P 8300 5750
F 0 "Q7" H 8506 5796 50 0000 L CNN
F 1 "STS8DN6LF6AG" H 8506 5705 50 0000 L CNN
F 2 "Marble:SOIC127P600X175-8N" H 8500 5675 50 0001 L CIN
F 3 "www.st.com/resource/en/datasheet/CD00001537.pdf" H 8300 5750 50 0001 L CNN
F 4 "STS8DN6LF6AG" H 8300 5750 50 0001 C CNN "Manufacturer Part Number"
F 5 "ST MICROELECTRONICS" H 8300 5750 50 0001 C CNN "Manufacturer"
F 6 "Yes" H 8300 5750 50 0001 C CNN "SMD"
2 8300 5750
1 0 0 -1
$EndComp
$Comp
L power:GND #PWR?
U 1 1 5D55D97E
P 9550 5250
AR Path="/5C16C03C/5D55D97E" Ref="#PWR?" Part="1"
AR Path="/5BCEDA59/5D55D97E" Ref="#PWR?" Part="1"
AR Path="/5C16BF8E/5D55D97E" Ref="#PWR?" Part="1"
AR Path="/5D05A99E/5D55D97E" Ref="#PWR0514" Part="1"
F 0 "#PWR0514" H 9550 5000 50 0001 C CNN
F 1 "GND" H 9555 5077 50 0000 C CNN
F 2 "" H 9550 5250 50 0001 C CNN
F 3 "" H 9550 5250 50 0001 C CNN
1 9550 5250
1 0 0 -1
$EndComp
Wire Wire Line
9550 5200 9550 5250
$Comp
L power:+12V #PWR?
U 1 1 5D55D986
P 9550 4900
AR Path="/5C16BF8E/5D55D986" Ref="#PWR?" Part="1"
AR Path="/5D05A99E/5D55D986" Ref="#PWR0513" Part="1"
F 0 "#PWR0513" H 9550 4750 50 0001 C CNN
F 1 "+12V" H 9565 5073 50 0000 C CNN
F 2 "" H 9550 4900 50 0001 C CNN
F 3 "" H 9550 4900 50 0001 C CNN
1 9550 4900
1 0 0 -1
$EndComp
$Comp
L power:+12V #PWR?
U 1 1 5D5644C2
P 6800 4900
AR Path="/5C16BF8E/5D5644C2" Ref="#PWR?" Part="1"
AR Path="/5D05A99E/5D5644C2" Ref="#PWR0509" Part="1"
F 0 "#PWR0509" H 6800 4750 50 0001 C CNN
F 1 "+12V" H 6815 5073 50 0000 C CNN
F 2 "" H 6800 4900 50 0001 C CNN
F 3 "" H 6800 4900 50 0001 C CNN
1 6800 4900
1 0 0 -1
$EndComp
Wire Wire Line
6800 4900 6800 4950
$Comp
L power:GND #PWR?
U 1 1 5D56674C
P 6800 5950
AR Path="/5BD32060/5D56674C" Ref="#PWR?" Part="1"
AR Path="/5BCEDA39/5D56674C" Ref="#PWR?" Part="1"
AR Path="/5D05A99E/5D56674C" Ref="#PWR0510" Part="1"
F 0 "#PWR0510" H 6800 5700 50 0001 C CNN
F 1 "GND" H 6805 5777 50 0000 C CNN
F 2 "" H 6800 5950 50 0001 C CNN
F 3 "" H 6800 5950 50 0001 C CNN
1 6800 5950
1 0 0 -1
$EndComp
Wire Wire Line
6800 5450 6800 5550
Wire Wire Line
4800 5100 4800 5200
$Comp
L power:+3V3P #PWR?
U 1 1 5D57B1C9
P 4800 4750
AR Path="/5C16C03C/5D57B1C9" Ref="#PWR?" Part="1"
AR Path="/5BCEDA39/5D57B1C9" Ref="#PWR?" Part="1"
AR Path="/5D05A99E/5D57B1C9" Ref="#PWR0507" Part="1"
AR Path="/5C16BF8E/5D57B1C9" Ref="#PWR0507" Part="1"
AR Path="/5D57B1C9" Ref="#PWR0507" Part="1"
F 0 "#PWR0507" H 4800 4600 50 0001 C CNN
F 1 "+3V3P" H 4800 4900 50 0000 C CNN
F 2 "" H 4800 4750 50 0001 C CNN
F 3 "" H 4800 4750 50 0001 C CNN
1 4800 4750
-1 0 0 -1
$EndComp
$Comp
L power:+3V3P #PWR?
U 1 1 5D581F39
P 5350 4750
AR Path="/5C16C03C/5D581F39" Ref="#PWR?" Part="1"
AR Path="/5BCEDA39/5D581F39" Ref="#PWR?" Part="1"
AR Path="/5D05A99E/5D581F39" Ref="#PWR0508" Part="1"
AR Path="/5C16BF8E/5D581F39" Ref="#PWR0508" Part="1"
AR Path="/5D581F39" Ref="#PWR0508" Part="1"
F 0 "#PWR0508" H 5350 4600 50 0001 C CNN
F 1 "+3V3P" H 5350 4900 50 0000 C CNN
F 2 "" H 5350 4750 50 0001 C CNN
F 3 "" H 5350 4750 50 0001 C CNN
1 5350 4750
-1 0 0 -1
$EndComp
Wire Wire Line
5000 4800 5000 4750
Wire Wire Line
4800 4750 4800 4800
Wire Wire Line
5650 4800 5650 4750
Wire Wire Line
5650 4750 5350 4750
Wire Wire Line
5350 4800 5350 4750
Connection ~ 5350 4750
Wire Wire Line
5350 5100 5350 5400
Wire Wire Line
4050 5400 5350 5400
Wire Wire Line
5650 5100 5650 5500
Wire Wire Line
4050 5500 5650 5500
$Comp
L power:GND #PWR?
U 1 1 5D59BBCF
P 2650 5600
AR Path="/5BD32060/5D59BBCF" Ref="#PWR?" Part="1"
AR Path="/5BCEDA39/5D59BBCF" Ref="#PWR?" Part="1"
AR Path="/5D05A99E/5D59BBCF" Ref="#PWR0354" Part="1"
F 0 "#PWR0354" H 2650 5350 50 0001 C CNN
F 1 "GND" V 2655 5427 50 0000 C CNN
F 2 "" H 2650 5600 50 0001 C CNN
F 3 "" H 2650 5600 50 0001 C CNN
1 2650 5600
0 1 1 0
$EndComp
Wire Wire Line
2650 5600 2850 5600
Wire Wire Line
6300 6100 4050 6100
Connection ~ 6300 3850
Wire Wire Line
4050 5900 4400 5900
Connection ~ 4800 5200
Wire Wire Line
4050 5200 4800 5200
Wire Wire Line
4800 4750 5000 4750
Connection ~ 4800 4750
Wire Wire Line
4050 5800 4200 5800
Connection ~ 4200 5800
Connection ~ 4400 5900
Wire Wire Line
4600 6000 4050 6000
Connection ~ 4600 6000
$Comp
L power:+3V3P #PWR?
U 1 1 5D5D3DE2
P 4200 4750
AR Path="/5C16C03C/5D5D3DE2" Ref="#PWR?" Part="1"
AR Path="/5BCEDA39/5D5D3DE2" Ref="#PWR?" Part="1"
AR Path="/5D05A99E/5D5D3DE2" Ref="#PWR0506" Part="1"
AR Path="/5C16BF8E/5D5D3DE2" Ref="#PWR0506" Part="1"
AR Path="/5D5D3DE2" Ref="#PWR0506" Part="1"
F 0 "#PWR0506" H 4200 4600 50 0001 C CNN
F 1 "+3V3P" H 4200 4900 50 0000 C CNN
F 2 "" H 4200 4750 50 0001 C CNN
F 3 "" H 4200 4750 50 0001 C CNN
1 4200 4750
-1 0 0 -1
$EndComp
Wire Wire Line
4200 4750 4200 4800
Wire Wire Line
4600 4800 4600 4750
Wire Wire Line
4600 4750 4400 4750
Connection ~ 4200 4750
Wire Wire Line
4400 4800 4400 4750
Connection ~ 4400 4750
Wire Wire Line
4400 4750 4200 4750
Wire Wire Line
6150 1750 6150 3650
Wire Wire Line
6050 1850 6050 3750
Wire Wire Line
6300 1950 6300 3850
Wire Wire Line
6500 5300 6500 5150
Wire Wire Line
4050 5300 5000 5300
Wire Wire Line
6400 5200 6400 5750
Wire Wire Line
6400 5750 6500 5750
Wire Wire Line
4400 5900 4850 5900
Text HLabel 4850 5800 2 50 Output ~ 10
THERM
Text HLabel 4850 6000 2 50 Output ~ 10
FANFAIL
Wire Wire Line
4200 5800 4850 5800
Wire Wire Line
4600 6000 4850 6000
Text Label 4850 5800 2 50 ~ 10
THERM
Text Label 4850 5900 2 50 ~ 10
ALERT
Text Label 4450 6000 2 50 ~ 10
FANFAIL
Text HLabel 5500 1600 0 50 Output ~ 10
OVER_TEMP
Text Label 5600 1750 0 50 ~ 10
I2C_PM_SDA
Text Label 5600 1850 0 50 ~ 10
I2C_PM_SCL
Text Label 2000 5800 0 50 ~ 10
I2C_PM_SDA
Text Label 2000 5700 0 50 ~ 10
I2C_PM_SCL
Wire Wire Line
2000 5700 2850 5700
Wire Wire Line
2000 5800 2850 5800
$Comp
L power:GND #PWR?
U 1 1 5D630581
P 8400 5950
AR Path="/5BD32060/5D630581" Ref="#PWR?" Part="1"
AR Path="/5BCEDA39/5D630581" Ref="#PWR?" Part="1"
AR Path="/5D05A99E/5D630581" Ref="#PWR0512" Part="1"
F 0 "#PWR0512" H 8400 5700 50 0001 C CNN
F 1 "GND" H 8405 5777 50 0000 C CNN
F 2 "" H 8400 5950 50 0001 C CNN
F 3 "" H 8400 5950 50 0001 C CNN
1 8400 5950
1 0 0 -1
$EndComp
$Comp
L marble_misc:Fan_3pin-Motor M2
U 1 1 5D632A5C
P 8400 5150
F 0 "M2" H 8558 5146 50 0000 L CNN
F 1 "Fan_3pin" H 8558 5055 50 0000 L CNN
F 2 "Marble:Fan_Pin_Header_Straight_1x03" H 8400 5060 50 0001 C CNN
F 3 "http://www.hardwarecanucks.com/forum/attachments/new-builds/16287d1330775095-help-chassis-power-fan-connectors-motherboard-asus_p8z68.jpg" H 8400 5060 50 0001 C CNN
F 4 "SWR25X-NRTC-S03-ST-BA" H 8400 5150 50 0001 C CNN "Manufacturer Part Number"
F 5 "SULLINS" H 8400 5150 50 0001 C CNN "Manufacturer"
F 6 "No" H 8400 5150 50 0001 C CNN "SMD"
1 8400 5150
1 0 0 -1
$EndComp
Wire Wire Line
8400 5450 8400 5550
$Comp
L power:+12V #PWR?
U 1 1 5D634F91
P 8400 4900
AR Path="/5C16BF8E/5D634F91" Ref="#PWR?" Part="1"
AR Path="/5D05A99E/5D634F91" Ref="#PWR0511" Part="1"
F 0 "#PWR0511" H 8400 4750 50 0001 C CNN
F 1 "+12V" H 8415 5073 50 0000 C CNN
F 2 "" H 8400 4900 50 0001 C CNN
F 3 "" H 8400 4900 50 0001 C CNN
1 8400 4900
1 0 0 -1
$EndComp
Wire Wire Line
8400 4900 8400 4950
Wire Wire Line
5350 5400 6200 5400
Wire Wire Line
6200 5400 6200 6250
Wire Wire Line
6200 6250 7650 6250
Connection ~ 5350 5400
Wire Wire Line
5650 5500 6100 5500
Wire Wire Line
6100 5500 6100 6300
Wire Wire Line
6100 6300 7700 6300
Wire Wire Line
7700 6300 7700 5150
Wire Wire Line
7700 5150 8100 5150
Connection ~ 5650 5500
Wire Wire Line
8100 5750 7650 5750
Wire Wire Line
7650 5750 7650 6250
$Comp
L power:GND #PWR?
U 1 1 5D647F9A
P 10000 5250
AR Path="/5C16C03C/5D647F9A" Ref="#PWR?" Part="1"
AR Path="/5BCEDA59/5D647F9A" Ref="#PWR?" Part="1"
AR Path="/5C16BF8E/5D647F9A" Ref="#PWR?" Part="1"
AR Path="/5D05A99E/5D647F9A" Ref="#PWR0516" Part="1"
F 0 "#PWR0516" H 10000 5000 50 0001 C CNN
F 1 "GND" H 10005 5077 50 0000 C CNN
F 2 "" H 10000 5250 50 0001 C CNN
F 3 "" H 10000 5250 50 0001 C CNN
1 10000 5250
1 0 0 -1
$EndComp
Wire Wire Line
10000 5200 10000 5250
$Comp
L power:+12V #PWR?
U 1 1 5D647FA1
P 10000 4900
AR Path="/5C16BF8E/5D647FA1" Ref="#PWR?" Part="1"
AR Path="/5D05A99E/5D647FA1" Ref="#PWR0515" Part="1"
F 0 "#PWR0515" H 10000 4750 50 0001 C CNN
F 1 "+12V" H 10015 5073 50 0000 C CNN
F 2 "" H 10000 4900 50 0001 C CNN
F 3 "" H 10000 4900 50 0001 C CNN
1 10000 4900
1 0 0 -1
$EndComp
Text Label 5600 1600 0 50 ~ 10
OVER_TEMP
Wire Wire Line
4800 5200 6400 5200
Wire Wire Line
5000 5100 5000 5300
Connection ~ 5000 5300
Wire Wire Line
5000 5300 6500 5300
$Comp
L Analog_&_Interface:MAX6639AEE+ U27
U 1 1 5D01B880
P 3050 5100
F 0 "U27" H 3450 5265 50 0000 C CNN
F 1 "MAX6639AEE+" H 3450 5174 50 0000 C CNN
F 2 "Marble:SOP63P600X175-16N" H 3050 2910 60 0001 L CNN
F 3 "" H 3050 3630 60 0001 L CNN
F 4 "MAX6639AEE+" H 3050 3540 60 0001 L CNN "Part Number"
F 5 "MAX6639AEE+" H 3050 3450 60 0001 L CNN "Library Ref"
F 6 "SchLib\\Analog & Interface.SchLib" H 3050 3360 60 0001 L CNN "Library Path"
F 7 "=Device" H 3050 3270 60 0001 L CNN "Comment"
F 8 "Standard" H 3050 3180 60 0001 L CNN "Component Kind"
F 9 "Standard" H 3050 3090 60 0001 L CNN "Component Type"
F 10 "MAX6639AEE+" H 3050 3000 60 0001 L CNN "Device"
F 11 "SOP, 0.635mm pitch; 16 pin, 3.9mm W X 4.895mm L X 1.75mm H Body, IPC Medium Density" H 3050 2820 60 0001 L CNN "PackageDescription"
F 12 " " H 3050 2730 60 0001 L CNN "Status"
F 13 "2-Channel Temperature Monitor with Dual, Automatic, PWM Fan-Speed Controller" H 3050 2640 60 0001 L CNN "Part Description"
F 14 "MAXIM" H 3050 2550 60 0001 L CNN "Manufacturer"
F 15 "MAX6639AEE+" H 3050 2460 60 0001 L CNN "Manufacturer Part Number"
F 16 "16" H 3050 2370 60 0001 L CNN "Pin Count"
F 17 "SSOP16" H 3050 2280 60 0001 L CNN "Case"
F 18 "Yes" H 3050 2190 60 0001 L CNN "Mounted"
F 19 "No" H 3050 2100 60 0001 L CNN "Socket"
F 20 "Yes" H 3050 2010 60 0001 L CNN "SMD"
F 21 "No" H 3050 1920 60 0001 L CNN "PressFit"
F 22 "No" H 3050 1830 60 0001 L CNN "Sense"
F 23 " " H 3050 1740 60 0001 L CNN "Sense Comment"
F 24 "No" H 3050 1650 60 0001 L CNN "Bonding"
F 25 " " H 3050 1560 60 0001 L CNN "Status Comment"
F 26 "1.75mm" H 3050 1470 60 0001 L CNN "ComponentHeight"
F 27 "PcbLib\\ICs And Semiconductors SMD.PcbLib" H 3050 1380 60 0001 L CNN "Footprint Path"
F 28 "SOP63P600X175-16N" H 3050 1290 60 0001 L CNN "Footprint Ref"
F 29 "CERN DEM JLC" H 3050 1200 60 0001 L CNN "Author"
F 30 " " H 3050 840 60 0001 L CNN "ComponentLink2Description"
F 31 " " H 3050 750 60 0001 L CNN "ComponentLink1Description"
F 32 "08/15/12 00:00:00" H 3050 660 60 0001 L CNN "CreateDate"
F 33 "08/15/12 00:00:00" H 3050 570 60 0001 L CNN "LatestRevisionDate"
F 34 "ICs And Semiconductors SMD" H 3050 480 60 0001 L CNN "Library Name"
F 35 "This work is licensed under the Creative Commons CC-BY-SA 4.0 License. To the extent that circuit schematics that use Licensed Material can be considered to be ‘Adapted Material’, then the copyright holder waives article 3.b of the license with respect to these schematics." H 3050 390 60 0001 L CNN "License"
1 3050 5100
1 0 0 -1
$EndComp
Wire Wire Line
4200 5100 4200 5800
Wire Wire Line
4400 5100 4400 5900
Wire Wire Line
4600 5100 4600 6000
Wire Wire Line
6300 3850 6300 6100
$Comp
L Capacitors_SMD:CC0603_4.7UF_25V_10%_X5R C?
U 1 1 5D041D3E
P 9550 4900
AR Path="/5C16BF8E/5DB9B7E6/5D041D3E" Ref="C?" Part="1"
AR Path="/5D05A99E/5D041D3E" Ref="C343" Part="1"
F 0 "C343" V 9600 4900 50 0000 L CNN
F 1 "CC0603_4.7UF_25V_10%_X5R" H 9550 4640 60 0001 L CNN
F 2 "Marble:CAPC1709X95N" H 9550 3830 60 0001 L CNN
F 3 "\\\\cern.ch\\dfs\\Applications\\Altium\\Datasheets\\CC0603_X7R_TAIYO-YUDEN_HIGH-VALUE.pdf" H 9550 4460 60 0001 L CNN
F 4 "4.7uF" V 9800 4900 50 0000 L CNN "Val"
F 5 "CC0603_4.7UF_25V_10%_X5R" H 9550 4370 60 0001 L CNN "Part Number"
F 6 "Capacitor - non polarized" H 9550 4280 60 0001 L CNN "Library Ref"
F 7 "SchLib\\Capacitors.SchLib" H 9550 4190 60 0001 L CNN "Library Path"
F 8 "=Value" H 9550 4100 60 0001 L CNN "Comment"
F 9 "Standard" H 9550 4010 60 0001 L CNN "Component Kind"
F 10 "Standard" H 9550 3920 60 0001 L CNN "Component Type"
F 11 "2" H 9550 3740 60 0001 L CNN "Pin Count"
F 12 "PcbLib\\Capacitors SMD.PcbLib" H 9550 3650 60 0001 L CNN "Footprint Path"
F 13 "CAPC1709X95N" H 9550 3560 60 0001 L CNN "Footprint Ref"
F 14 " " H 9550 3470 60 0001 L CNN "PackageDescription"
F 15 "None" H 9550 3290 60 0001 L CNN "Status"
F 16 " " H 9550 3200 60 0001 L CNN "Status Comment"
F 17 "25V" H 9550 3110 60 0001 L CNN "Voltage"
F 18 "X5R" H 9550 3020 60 0001 L CNN "TC"
F 19 "±10%" H 9550 2930 60 0001 L CNN "Tolerance"
F 20 "SMD Multilayer Chip Ceramic Capacitor" H 9550 2840 60 0001 L CNN "Part Description"
F 21 "GENERIC" H 9550 2750 60 0001 L CNN "Manufacturer"
F 22 "CC0603_4.7UF_25V_10%_X5R" H 9550 2660 60 0001 L CNN "Manufacturer Part Number"
F 23 "0603" H 9550 2570 60 0001 L CNN "Case"
F 24 "Yes" H 9550 2480 60 0001 L CNN "Mounted"
F 25 "No" H 9550 2390 60 0001 L CNN "Socket"
F 26 "Yes" H 9550 2300 60 0001 L CNN "SMD"
F 27 " " H 9550 2210 60 0001 L CNN "PressFit"
F 28 "No" H 9550 2120 60 0001 L CNN "Sense"
F 29 " " H 9550 2030 60 0001 L CNN "Sense Comment"
F 30 " " H 9550 1940 60 0001 L CNN "ComponentHeight"
F 31 "Samsung" H 9550 1850 60 0001 L CNN "Manufacturer1 Example"
F 32 "CL10A475KA8NQN" H 9550 1760 60 0001 L CNN "Manufacturer1 Part Number"
F 33 "0.95mm" H 9550 1670 60 0001 L CNN "Manufacturer1 ComponentHeight"
F 34 "CERN DEM JLC" H 9550 1490 60 0001 L CNN "Author"
F 35 "12/16/13 00:00:00" H 9550 1400 60 0001 L CNN "CreateDate"
F 36 "09/16/14 00:00:00" H 9550 1310 60 0001 L CNN "LatestRevisionDate"
F 37 "Capacitors SMD" H 9550 1220 60 0001 L CNN "Library Name"
F 38 "This work is licensed under the Creative Commons CC-BY-SA 4.0 License. To the extent that circuit schematics that use Licensed Material can be considered to be ‘Adapted Material’, then the copyright holder waives article 3.b of the license with respect to these schematics." H 9550 1130 60 0001 L CNN "License"
1 9550 4900
0 1 1 0
$EndComp
$Comp
L Capacitors_SMD:CC0603_4.7UF_25V_10%_X5R C?
U 1 1 5D044AE9
P 10000 4900
AR Path="/5C16BF8E/5DB9B7E6/5D044AE9" Ref="C?" Part="1"
AR Path="/5D05A99E/5D044AE9" Ref="C344" Part="1"
F 0 "C344" V 10050 4900 50 0000 L CNN
F 1 "CC0603_4.7UF_25V_10%_X5R" H 10000 4640 60 0001 L CNN
F 2 "Marble:CAPC1709X95N" H 10000 3830 60 0001 L CNN
F 3 "\\\\cern.ch\\dfs\\Applications\\Altium\\Datasheets\\CC0603_X7R_TAIYO-YUDEN_HIGH-VALUE.pdf" H 10000 4460 60 0001 L CNN
F 4 "4.7uF" V 10250 4900 50 0000 L CNN "Val"
F 5 "CC0603_4.7UF_25V_10%_X5R" H 10000 4370 60 0001 L CNN "Part Number"
F 6 "Capacitor - non polarized" H 10000 4280 60 0001 L CNN "Library Ref"
F 7 "SchLib\\Capacitors.SchLib" H 10000 4190 60 0001 L CNN "Library Path"
F 8 "=Value" H 10000 4100 60 0001 L CNN "Comment"
F 9 "Standard" H 10000 4010 60 0001 L CNN "Component Kind"
F 10 "Standard" H 10000 3920 60 0001 L CNN "Component Type"
F 11 "2" H 10000 3740 60 0001 L CNN "Pin Count"
F 12 "PcbLib\\Capacitors SMD.PcbLib" H 10000 3650 60 0001 L CNN "Footprint Path"
F 13 "CAPC1709X95N" H 10000 3560 60 0001 L CNN "Footprint Ref"
F 14 " " H 10000 3470 60 0001 L CNN "PackageDescription"
F 15 "None" H 10000 3290 60 0001 L CNN "Status"
F 16 " " H 10000 3200 60 0001 L CNN "Status Comment"
F 17 "25V" H 10000 3110 60 0001 L CNN "Voltage"
F 18 "X5R" H 10000 3020 60 0001 L CNN "TC"
F 19 "±10%" H 10000 2930 60 0001 L CNN "Tolerance"
F 20 "SMD Multilayer Chip Ceramic Capacitor" H 10000 2840 60 0001 L CNN "Part Description"
F 21 "GENERIC" H 10000 2750 60 0001 L CNN "Manufacturer"
F 22 "CC0603_4.7UF_25V_10%_X5R" H 10000 2660 60 0001 L CNN "Manufacturer Part Number"
F 23 "0603" H 10000 2570 60 0001 L CNN "Case"
F 24 "Yes" H 10000 2480 60 0001 L CNN "Mounted"
F 25 "No" H 10000 2390 60 0001 L CNN "Socket"
F 26 "Yes" H 10000 2300 60 0001 L CNN "SMD"
F 27 " " H 10000 2210 60 0001 L CNN "PressFit"
F 28 "No" H 10000 2120 60 0001 L CNN "Sense"
F 29 " " H 10000 2030 60 0001 L CNN "Sense Comment"
F 30 " " H 10000 1940 60 0001 L CNN "ComponentHeight"
F 31 "Samsung" H 10000 1850 60 0001 L CNN "Manufacturer1 Example"
F 32 "CL10A475KA8NQN" H 10000 1760 60 0001 L CNN "Manufacturer1 Part Number"
F 33 "0.95mm" H 10000 1670 60 0001 L CNN "Manufacturer1 ComponentHeight"
F 34 "CERN DEM JLC" H 10000 1490 60 0001 L CNN "Author"
F 35 "12/16/13 00:00:00" H 10000 1400 60 0001 L CNN "CreateDate"
F 36 "09/16/14 00:00:00" H 10000 1310 60 0001 L CNN "LatestRevisionDate"
F 37 "Capacitors SMD" H 10000 1220 60 0001 L CNN "Library Name"
F 38 "This work is licensed under the Creative Commons CC-BY-SA 4.0 License. To the extent that circuit schematics that use Licensed Material can be considered to be ‘Adapted Material’, then the copyright holder waives article 3.b of the license with respect to these schematics." H 10000 1130 60 0001 L CNN "License"
1 10000 4900
0 1 1 0
$EndComp
$Comp
L Capacitors_SMD:CC0402_10NF_35V_10%_X7R C188
U 1 1 5D0544A8
P 1950 5000
F 0 "C188" V 2054 5110 50 0000 L CNN
F 1 "CC0402_10NF_35V_10%_X7R" H 1950 4740 60 0001 L CNN
F 2 "Marble:CAPC1005X55N" H 1950 3930 60 0001 L CNN
F 3 "\\\\cern.ch\\dfs\\Applications\\Altium\\Datasheets\\CC0402_X7R_PHYCOMP.pdf" H 1950 4560 60 0001 L CNN
F 4 "10nF" V 2145 5110 50 0000 L CNN "Val"
F 5 "CC0402_10NF_35V_10%_X7R" H 1950 4470 60 0001 L CNN "Part Number"
F 6 "Capacitor - non polarized" H 1950 4380 60 0001 L CNN "Library Ref"
F 7 "SchLib\\Capacitors.SchLib" H 1950 4290 60 0001 L CNN "Library Path"
F 8 "=Value" H 1950 4200 60 0001 L CNN "Comment"
F 9 "Standard" H 1950 4110 60 0001 L CNN "Component Kind"
F 10 "Standard" H 1950 4020 60 0001 L CNN "Component Type"
F 11 "2" H 1950 3840 60 0001 L CNN "Pin Count"
F 12 "PcbLib\\Capacitors SMD.PcbLib" H 1950 3750 60 0001 L CNN "Footprint Path"
F 13 "CAPC1005X55N" H 1950 3660 60 0001 L CNN "Footprint Ref"
F 14 " " H 1950 3570 60 0001 L CNN "PackageDescription"
F 15 "Not Recommended" H 1950 3390 60 0001 L CNN "Status"
F 16 " " H 1950 3300 60 0001 L CNN "Status Comment"
F 17 "35V" H 1950 3210 60 0001 L CNN "Voltage"
F 18 "X7R" H 1950 3120 60 0001 L CNN "TC"
F 19 "±10%" H 1950 3030 60 0001 L CNN "Tolerance"
F 20 "SMD Multilayer Chip Ceramic Capacitor" H 1950 2940 60 0001 L CNN "Part Description"
F 21 "GENERIC" H 1950 2850 60 0001 L CNN "Manufacturer"
F 22 "CC0402_10NF_35V_10%_X7R" H 1950 2760 60 0001 L CNN "Manufacturer Part Number"
F 23 "0402" H 1950 2670 60 0001 L CNN "Case"
F 24 "Yes" H 1950 2580 60 0001 L CNN "Mounted"
F 25 "No" H 1950 2490 60 0001 L CNN "Socket"
F 26 "Yes" H 1950 2400 60 0001 L CNN "SMD"
F 27 " " H 1950 2310 60 0001 L CNN "PressFit"
F 28 "No" H 1950 2220 60 0001 L CNN "Sense"
F 29 " " H 1950 2130 60 0001 L CNN "Sense Comment"
F 30 " " H 1950 2040 60 0001 L CNN "ComponentHeight"
F 31 "TDK" H 1950 1950 60 0001 L CNN "Manufacturer1 Example"
F 32 "CGA2B3X7R1V103K050B" H 1950 1860 60 0001 L CNN "Manufacturer1 Part Number"
F 33 "0.55mm" H 1950 1770 60 0001 L CNN "Manufacturer1 ComponentHeight"
F 34 "CERN DEM JLC" H 1950 1590 60 0001 L CNN "Author"
F 35 "12/03/07 00:00:00" H 1950 1500 60 0001 L CNN "CreateDate"
F 36 "05/24/20 00:00:00" H 1950 1410 60 0001 L CNN "LatestRevisionDate"
F 37 "Capacitors SMD" H 1950 1320 60 0001 L CNN "Library Name"
F 38 "This work is licensed under the Creative Commons CC-BY-SA 4.0 License. To the extent that circuit schematics that use Licensed Material can be considered to be ‘Adapted Material’, then the copyright holder waives article 3.b of the license with respect to these schematics." H 1950 1230 60 0001 L CNN "License"
1 1950 5000
0 1 1 0
$EndComp
$Comp
L Capacitors_SMD:CC0402_10NF_35V_10%_X7R C189
U 1 1 5D054632
P 2400 5000
F 0 "C189" V 2504 5110 50 0000 L CNN
F 1 "CC0402_10NF_35V_10%_X7R" H 2400 4740 60 0001 L CNN
F 2 "Marble:CAPC1005X55N" H 2400 3930 60 0001 L CNN
F 3 "\\\\cern.ch\\dfs\\Applications\\Altium\\Datasheets\\CC0402_X7R_PHYCOMP.pdf" H 2400 4560 60 0001 L CNN
F 4 "10nF" V 2595 5110 50 0000 L CNN "Val"
F 5 "CC0402_10NF_35V_10%_X7R" H 2400 4470 60 0001 L CNN "Part Number"
F 6 "Capacitor - non polarized" H 2400 4380 60 0001 L CNN "Library Ref"
F 7 "SchLib\\Capacitors.SchLib" H 2400 4290 60 0001 L CNN "Library Path"
F 8 "=Value" H 2400 4200 60 0001 L CNN "Comment"
F 9 "Standard" H 2400 4110 60 0001 L CNN "Component Kind"
F 10 "Standard" H 2400 4020 60 0001 L CNN "Component Type"
F 11 "2" H 2400 3840 60 0001 L CNN "Pin Count"
F 12 "PcbLib\\Capacitors SMD.PcbLib" H 2400 3750 60 0001 L CNN "Footprint Path"
F 13 "CAPC1005X55N" H 2400 3660 60 0001 L CNN "Footprint Ref"
F 14 " " H 2400 3570 60 0001 L CNN "PackageDescription"
F 15 "Not Recommended" H 2400 3390 60 0001 L CNN "Status"
F 16 " " H 2400 3300 60 0001 L CNN "Status Comment"
F 17 "35V" H 2400 3210 60 0001 L CNN "Voltage"
F 18 "X7R" H 2400 3120 60 0001 L CNN "TC"
F 19 "±10%" H 2400 3030 60 0001 L CNN "Tolerance"
F 20 "SMD Multilayer Chip Ceramic Capacitor" H 2400 2940 60 0001 L CNN "Part Description"
F 21 "GENERIC" H 2400 2850 60 0001 L CNN "Manufacturer"
F 22 "CC0402_10NF_35V_10%_X7R" H 2400 2760 60 0001 L CNN "Manufacturer Part Number"
F 23 "0402" H 2400 2670 60 0001 L CNN "Case"
F 24 "Yes" H 2400 2580 60 0001 L CNN "Mounted"
F 25 "No" H 2400 2490 60 0001 L CNN "Socket"
F 26 "Yes" H 2400 2400 60 0001 L CNN "SMD"
F 27 " " H 2400 2310 60 0001 L CNN "PressFit"
F 28 "No" H 2400 2220 60 0001 L CNN "Sense"
F 29 " " H 2400 2130 60 0001 L CNN "Sense Comment"
F 30 " " H 2400 2040 60 0001 L CNN "ComponentHeight"
F 31 "TDK" H 2400 1950 60 0001 L CNN "Manufacturer1 Example"
F 32 "CGA2B3X7R1V103K050B" H 2400 1860 60 0001 L CNN "Manufacturer1 Part Number"
F 33 "0.55mm" H 2400 1770 60 0001 L CNN "Manufacturer1 ComponentHeight"
F 34 "CERN DEM JLC" H 2400 1590 60 0001 L CNN "Author"
F 35 "12/03/07 00:00:00" H 2400 1500 60 0001 L CNN "CreateDate"
F 36 "05/24/20 00:00:00" H 2400 1410 60 0001 L CNN "LatestRevisionDate"
F 37 "Capacitors SMD" H 2400 1320 60 0001 L CNN "Library Name"
F 38 "This work is licensed under the Creative Commons CC-BY-SA 4.0 License. To the extent that circuit schematics that use Licensed Material can be considered to be ‘Adapted Material’, then the copyright holder waives article 3.b of the license with respect to these schematics." H 2400 1230 60 0001 L CNN "License"
1 2400 5000
0 1 1 0
$EndComp
Wire Wire Line
1200 5000 1950 5000
Wire Wire Line
1700 5300 1950 5300
Connection ~ 1950 5000
Wire Wire Line
1950 5000 2400 5000
Connection ~ 1950 5300
Wire Wire Line
1950 5300 2400 5300
Connection ~ 2400 5000
Wire Wire Line
2400 5000 2750 5000
Connection ~ 2400 5300
Wire Wire Line
2400 5300 2750 5300
$Comp
L Capacitors_SMD:CC0201_100NF_6.3V_10%_X5R C?
U 1 1 5D05A2DF
P 2400 6050
AR Path="/5BCEDA59/5D05A2DF" Ref="C?" Part="1"
AR Path="/5D05A99E/5D05A2DF" Ref="C190" Part="1"
F 0 "C190" V 2504 6160 50 0000 L CNN
F 1 "CC0201_100NF_6.3V_10%_X5R" H 2400 5790 60 0001 L CNN
F 2 "Marble:CAPC0603X33N" H 2400 4980 60 0001 L CNN
F 3 "\\\\cern.ch\\dfs\\Applications\\Altium\\Datasheets\\CC0201_X5R_AVX.pdf" H 2400 5610 60 0001 L CNN
F 4 "100nF" V 2595 6160 50 0000 L CNN "Val"
F 5 "CC0201_100NF_6.3V_10%_X5R" H 2400 5520 60 0001 L CNN "Part Number"
F 6 "Capacitor - non polarized" H 2400 5430 60 0001 L CNN "Library Ref"
F 7 "SchLib\\Capacitors.SchLib" H 2400 5340 60 0001 L CNN "Library Path"
F 8 "=Value" H 2400 5250 60 0001 L CNN "Comment"
F 9 "Standard" H 2400 5160 60 0001 L CNN "Component Kind"
F 10 "Standard" H 2400 5070 60 0001 L CNN "Component Type"
F 11 "2" H 2400 4890 60 0001 L CNN "Pin Count"
F 12 "PcbLib\\Capacitors SMD.PcbLib" H 2400 4800 60 0001 L CNN "Footprint Path"