-
Notifications
You must be signed in to change notification settings - Fork 0
/
MCP9600.kicad_sch
1352 lines (1322 loc) · 46.1 KB
/
MCP9600.kicad_sch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_sch (version 20230121) (generator eeschema)
(uuid 7f110d67-2227-4482-9bc6-6c802bd2b33e)
(paper "A4")
(lib_symbols
(symbol "Adafruit MCP9600-eagle-import:FERRITE-0805NO" (in_bom yes) (on_board yes)
(property "Reference" "FB" (at -1.27 1.905 0)
(effects (font (size 1.27 1.0795)) (justify left bottom))
)
(property "Value" "" (at -1.27 -3.175 0)
(effects (font (size 1.27 1.0795)) (justify left bottom))
)
(property "Footprint" "Adafruit MCP9600:0805-NO" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_locked" "" (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(symbol "FERRITE-0805NO_1_0"
(polyline
(pts
(xy -1.27 -0.9525)
(xy -1.27 0.9525)
)
(stroke (width 0.4064) (type solid))
(fill (type none))
)
(polyline
(pts
(xy -1.27 0.9525)
(xy 1.27 0.9525)
)
(stroke (width 0.4064) (type solid))
(fill (type none))
)
(polyline
(pts
(xy 1.27 -0.9525)
(xy -1.27 -0.9525)
)
(stroke (width 0.4064) (type solid))
(fill (type none))
)
(polyline
(pts
(xy 1.27 0.9525)
(xy 1.27 -0.9525)
)
(stroke (width 0.4064) (type solid))
(fill (type none))
)
(pin passive line (at -2.54 0 0) (length 2.54)
(name "P$1" (effects (font (size 0 0))))
(number "1" (effects (font (size 0 0))))
)
(pin passive line (at 2.54 0 180) (length 2.54)
(name "P$2" (effects (font (size 0 0))))
(number "2" (effects (font (size 0 0))))
)
)
)
(symbol "Adafruit MCP9600-eagle-import:MCP9600" (in_bom yes) (on_board yes)
(property "Reference" "U" (at -15.24 17.78 0)
(effects (font (size 1.27 1.0795)) (justify left bottom))
)
(property "Value" "" (at -15.24 -17.78 0)
(effects (font (size 1.27 1.0795)) (justify left bottom))
)
(property "Footprint" "Adafruit MCP9600:VQFN20_5MM" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_locked" "" (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(symbol "MCP9600_1_0"
(polyline
(pts
(xy -15.24 -15.24)
(xy -15.24 15.24)
)
(stroke (width 0.254) (type solid))
(fill (type none))
)
(polyline
(pts
(xy -15.24 15.24)
(xy 15.24 15.24)
)
(stroke (width 0.254) (type solid))
(fill (type none))
)
(polyline
(pts
(xy 15.24 -15.24)
(xy -15.24 -15.24)
)
(stroke (width 0.254) (type solid))
(fill (type none))
)
(polyline
(pts
(xy 15.24 15.24)
(xy 15.24 -15.24)
)
(stroke (width 0.254) (type solid))
(fill (type none))
)
(pin bidirectional line (at -17.78 5.08 0) (length 2.54)
(name "GND@1" (effects (font (size 1.27 1.27))))
(number "P$1" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 5.08 -17.78 90) (length 2.54)
(name "GND@7" (effects (font (size 1.27 1.27))))
(number "P$10" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 17.78 -5.08 180) (length 2.54)
(name "ALRT1" (effects (font (size 1.27 1.27))))
(number "P$11" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 17.78 -2.54 180) (length 2.54)
(name "ALRT2" (effects (font (size 1.27 1.27))))
(number "P$12" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 17.78 0 180) (length 2.54)
(name "GND@8" (effects (font (size 1.27 1.27))))
(number "P$13" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 17.78 2.54 180) (length 2.54)
(name "ALRT3" (effects (font (size 1.27 1.27))))
(number "P$14" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 17.78 5.08 180) (length 2.54)
(name "ALRT4" (effects (font (size 1.27 1.27))))
(number "P$15" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 5.08 17.78 270) (length 2.54)
(name "ADDR" (effects (font (size 1.27 1.27))))
(number "P$16" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 2.54 17.78 270) (length 2.54)
(name "GND@9" (effects (font (size 1.27 1.27))))
(number "P$17" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 0 17.78 270) (length 2.54)
(name "GND@10" (effects (font (size 1.27 1.27))))
(number "P$18" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -2.54 17.78 270) (length 2.54)
(name "SCL" (effects (font (size 1.27 1.27))))
(number "P$19" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 2.54 0) (length 2.54)
(name "VIN+" (effects (font (size 1.27 1.27))))
(number "P$2" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -5.08 17.78 270) (length 2.54)
(name "SDA" (effects (font (size 1.27 1.27))))
(number "P$20" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 0 0) (length 2.54)
(name "GND@2" (effects (font (size 1.27 1.27))))
(number "P$3" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 -2.54 0) (length 2.54)
(name "VIN-" (effects (font (size 1.27 1.27))))
(number "P$4" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 -5.08 0) (length 2.54)
(name "GND@3" (effects (font (size 1.27 1.27))))
(number "P$5" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -5.08 -17.78 90) (length 2.54)
(name "GND@4" (effects (font (size 1.27 1.27))))
(number "P$6" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -2.54 -17.78 90) (length 2.54)
(name "GND@5" (effects (font (size 1.27 1.27))))
(number "P$7" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 0 -17.78 90) (length 2.54)
(name "VDD" (effects (font (size 1.27 1.27))))
(number "P$8" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 2.54 -17.78 90) (length 2.54)
(name "GND@6" (effects (font (size 1.27 1.27))))
(number "P$9" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 17.78 -12.7 180) (length 2.54)
(name "GND@11" (effects (font (size 1.27 1.27))))
(number "THRM" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Adafruit MCP9600-eagle-import:RESISTOR_0603_NOOUT" (in_bom yes) (on_board yes)
(property "Reference" "R" (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "" (at 0 0 0)
(effects (font (size 1.016 1.016) bold))
)
(property "Footprint" "Adafruit MCP9600:0603-NO" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_locked" "" (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(symbol "RESISTOR_0603_NOOUT_1_0"
(polyline
(pts
(xy -2.54 -1.27)
(xy -2.54 1.27)
)
(stroke (width 0.254) (type solid))
(fill (type none))
)
(polyline
(pts
(xy -2.54 1.27)
(xy 2.54 1.27)
)
(stroke (width 0.254) (type solid))
(fill (type none))
)
(polyline
(pts
(xy 2.54 -1.27)
(xy -2.54 -1.27)
)
(stroke (width 0.254) (type solid))
(fill (type none))
)
(polyline
(pts
(xy 2.54 1.27)
(xy 2.54 -1.27)
)
(stroke (width 0.254) (type solid))
(fill (type none))
)
(pin passive line (at -5.08 0 0) (length 2.54)
(name "1" (effects (font (size 0 0))))
(number "1" (effects (font (size 0 0))))
)
(pin passive line (at 5.08 0 180) (length 2.54)
(name "2" (effects (font (size 0 0))))
(number "2" (effects (font (size 0 0))))
)
)
)
(symbol "Adafruit MCP9600-eagle-import:SOLDERJUMPER" (in_bom yes) (on_board yes)
(property "Reference" "SJ" (at -2.54 2.54 0)
(effects (font (size 1.27 1.0795)) (justify left bottom))
)
(property "Value" "" (at -2.54 -3.81 0)
(effects (font (size 1.27 1.0795)) (justify left bottom))
)
(property "Footprint" "Adafruit MCP9600:SOLDERJUMPER_ARROW_NOPASTE" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_locked" "" (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(symbol "SOLDERJUMPER_1_0"
(arc (start -0.381 -0.635) (mid 0.2514 -0.0001) (end -0.3808 0.635)
(stroke (width 1.27) (type solid))
(fill (type none))
)
(polyline
(pts
(xy -2.54 0)
(xy -1.651 0)
)
(stroke (width 0.1524) (type solid))
(fill (type none))
)
(polyline
(pts
(xy 2.54 0)
(xy 1.651 0)
)
(stroke (width 0.1524) (type solid))
(fill (type none))
)
(arc (start 0.3808 -0.635) (mid 1.0132 -0.0001) (end 0.381 0.635)
(stroke (width 1.27) (type solid))
(fill (type none))
)
(pin passive line (at -5.08 0 0) (length 2.54)
(name "1" (effects (font (size 0 0))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 0 180) (length 2.54)
(name "2" (effects (font (size 0 0))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "C" (at 0.635 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C" (at 0.635 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 0.9652 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "cap capacitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_0_1"
(polyline
(pts
(xy -2.032 -0.762)
(xy 2.032 -0.762)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
(polyline
(pts
(xy -2.032 0.762)
(xy 2.032 0.762)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
)
(symbol "C_1_1"
(pin passive line (at 0 3.81 270) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "R" (at 2.032 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R" (at 0 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at -1.778 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "R res resistor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_0_1"
(rectangle (start -1.016 -2.54) (end 1.016 2.54)
(stroke (width 0.254) (type default))
(fill (type none))
)
)
(symbol "R_1_1"
(pin passive line (at 0 3.81 270) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:+3V3" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3V3" (at 0 3.556 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "global power" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"+3V3\"" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+3V3_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "+3V3_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+3V3" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "global power" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "GND_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 -1.27)
(xy 1.27 -1.27)
(xy 0 -2.54)
(xy -1.27 -1.27)
(xy 0 -1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "GND_1_1"
(pin power_in line (at 0 0 270) (length 0) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 179.07 69.85) (diameter 0) (color 0 0 0 0)
(uuid 1da07e60-3fa3-46d6-8df6-86bfb773c0be)
)
(junction (at 153.67 110.49) (diameter 0) (color 0 0 0 0)
(uuid 32fb6f05-8c76-4ac7-aff9-6a05a1bdf7e3)
)
(junction (at 173.99 82.55) (diameter 0) (color 0 0 0 0)
(uuid 3f42601d-7237-481a-a212-2db316a26e11)
)
(junction (at 144.78 100.33) (diameter 0) (color 0 0 0 0)
(uuid 40461319-8ba3-4a63-91d1-12f4279fcda2)
)
(junction (at 179.07 125.73) (diameter 0) (color 0 0 0 0)
(uuid 49d02fc7-42cf-4f51-af82-78efca2e51fe)
)
(junction (at 168.91 125.73) (diameter 0) (color 0 0 0 0)
(uuid 4cd3a4af-2931-45ee-aa97-79fe5f666cb9)
)
(junction (at 153.67 105.41) (diameter 0) (color 0 0 0 0)
(uuid adcb6358-7b27-41a3-9f0b-866879aecffe)
)
(junction (at 179.07 74.93) (diameter 0) (color 0 0 0 0)
(uuid e048e8a5-0e53-4fa1-a622-595f9cc39f8e)
)
(junction (at 196.85 118.11) (diameter 0) (color 0 0 0 0)
(uuid eaf8da6e-5e5b-452b-bc3f-705f35f5341a)
)
(junction (at 144.78 107.95) (diameter 0) (color 0 0 0 0)
(uuid feb9a5e0-a951-4573-ac0b-5f298bfb5ada)
)
(wire (pts (xy 168.91 80.01) (xy 168.91 87.63))
(stroke (width 0) (type default))
(uuid 013cfa7a-284f-4f91-a19b-de53cfcb6a03)
)
(wire (pts (xy 151.13 102.87) (xy 156.21 102.87))
(stroke (width 0.1524) (type solid))
(uuid 036027bc-62f0-4bd7-9f8b-41e0f222dd15)
)
(wire (pts (xy 199.39 83.82) (xy 199.39 85.09))
(stroke (width 0) (type default))
(uuid 0a337e5e-6624-4da3-9609-2ee93dc9dbcb)
)
(wire (pts (xy 199.39 69.85) (xy 199.39 74.93))
(stroke (width 0.1524) (type solid))
(uuid 124c776a-0a44-4bb3-a2a4-ab901693f52f)
)
(wire (pts (xy 173.99 80.01) (xy 184.15 80.01))
(stroke (width 0.1524) (type solid))
(uuid 15c18cee-96c5-4020-8523-77ba75d0587c)
)
(wire (pts (xy 156.21 110.49) (xy 153.67 110.49))
(stroke (width 0.1524) (type solid))
(uuid 1691c9d2-e98f-4b55-a651-f9e11856882c)
)
(wire (pts (xy 191.77 110.49) (xy 209.55 110.49))
(stroke (width 0.1524) (type solid))
(uuid 1e9708ae-353d-4895-a711-980f888f5b7d)
)
(wire (pts (xy 168.91 146.05) (xy 168.91 143.51))
(stroke (width 0.1524) (type solid))
(uuid 20c69135-25da-41fe-983e-3cef2ef97ac1)
)
(wire (pts (xy 176.53 87.63) (xy 176.53 82.55))
(stroke (width 0.1524) (type solid))
(uuid 271c44f8-71d5-4dc9-b394-e1fe370d5214)
)
(wire (pts (xy 142.24 107.95) (xy 144.78 107.95))
(stroke (width 0.1524) (type solid))
(uuid 2caf6e58-305a-4d58-9705-c2dd976eaabf)
)
(wire (pts (xy 171.45 123.19) (xy 171.45 125.73))
(stroke (width 0.1524) (type solid))
(uuid 48dad6f7-e913-426f-8aca-c680c9a68229)
)
(wire (pts (xy 153.67 100.33) (xy 153.67 105.41))
(stroke (width 0.1524) (type solid))
(uuid 4dfa8ccb-4320-453f-b86f-bd92e9a66be3)
)
(wire (pts (xy 156.21 100.33) (xy 153.67 100.33))
(stroke (width 0.1524) (type solid))
(uuid 4dfd1249-5701-4180-8e49-e869d82254e3)
)
(wire (pts (xy 191.77 118.11) (xy 196.85 118.11))
(stroke (width 0.1524) (type solid))
(uuid 4ec05f10-3ee3-47f8-827d-c64bf7684e4b)
)
(wire (pts (xy 173.99 87.63) (xy 173.99 82.55))
(stroke (width 0.1524) (type solid))
(uuid 60103c3c-dbd9-4578-969b-b45b679fad36)
)
(wire (pts (xy 173.99 123.19) (xy 173.99 146.05))
(stroke (width 0.1524) (type solid))
(uuid 6379a68e-853e-4fd1-bc04-f2b57216137e)
)
(wire (pts (xy 179.07 74.93) (xy 179.07 69.85))
(stroke (width 0.1524) (type solid))
(uuid 6b404821-0191-4d23-9f85-ff20dafde9ef)
)
(wire (pts (xy 191.77 74.93) (xy 191.77 76.2))
(stroke (width 0) (type default))
(uuid 6e470f3a-c53a-4528-a625-6bf9e5637fc0)
)
(wire (pts (xy 143.51 100.33) (xy 144.78 100.33))
(stroke (width 0.1524) (type solid))
(uuid 71953fb9-811c-44a5-89ee-349b30dab5b8)
)
(wire (pts (xy 179.07 59.69) (xy 179.07 57.15))
(stroke (width 0.1524) (type solid))
(uuid 75a4409e-cd07-45ce-98c4-6f49837385a0)
)
(wire (pts (xy 191.77 100.33) (xy 209.55 100.33))
(stroke (width 0.1524) (type solid))
(uuid 7db00ad2-fae0-4ca7-8c43-d9faecda61b4)
)
(wire (pts (xy 121.92 100.33) (xy 124.46 100.33))
(stroke (width 0.1524) (type solid))
(uuid 80512668-1b05-4074-b8e5-81a8f271a2e5)
)
(wire (pts (xy 173.99 82.55) (xy 173.99 80.01))
(stroke (width 0.1524) (type solid))
(uuid 884a37c5-d2ac-4d4f-b54e-8822a1b19250)
)
(wire (pts (xy 179.07 123.19) (xy 179.07 125.73))
(stroke (width 0.1524) (type solid))
(uuid 88674f8e-767a-4309-ad4b-430d4709ade1)
)
(wire (pts (xy 199.39 74.93) (xy 199.39 76.2))
(stroke (width 0) (type default))
(uuid 8ba8bf4e-3d92-4735-9fb4-63edcbe342c4)
)
(wire (pts (xy 191.77 107.95) (xy 209.55 107.95))
(stroke (width 0.1524) (type solid))
(uuid 96cc1bd5-a823-4b9c-8362-0db516cf1792)
)
(wire (pts (xy 191.77 83.82) (xy 191.77 85.09))
(stroke (width 0) (type default))
(uuid 9a4f393d-54d3-4555-a57f-41a184d116d6)
)
(wire (pts (xy 129.54 107.95) (xy 133.35 107.95))
(stroke (width 0.1524) (type solid))
(uuid 9b107df0-fe3b-46c3-8912-98dcc182e121)
)
(wire (pts (xy 196.85 105.41) (xy 196.85 118.11))
(stroke (width 0.1524) (type solid))
(uuid 9b68048f-9557-44a7-8b82-0035590ab1bf)
)
(wire (pts (xy 121.92 107.95) (xy 124.46 107.95))
(stroke (width 0.1524) (type solid))
(uuid 9c502d07-3e45-45e9-b97e-40b56a1e6274)
)
(wire (pts (xy 153.67 105.41) (xy 153.67 110.49))
(stroke (width 0.1524) (type solid))
(uuid 9ce35ddf-1b05-489c-acdb-6870747e8b8b)
)
(wire (pts (xy 144.78 100.33) (xy 151.13 100.33))
(stroke (width 0.1524) (type solid))
(uuid a2147302-45b8-49b5-ba9c-c790c05a3600)
)
(wire (pts (xy 171.45 125.73) (xy 168.91 125.73))
(stroke (width 0.1524) (type solid))
(uuid a291a114-3ded-4f30-9561-bdc4de71bd65)
)
(wire (pts (xy 153.67 110.49) (xy 153.67 130.81))
(stroke (width 0.1524) (type solid))
(uuid a5462d1e-8d40-4a2f-9f68-f0b1c042e53b)
)
(wire (pts (xy 133.35 107.95) (xy 134.62 107.95))
(stroke (width 0) (type default))
(uuid b284aeb4-bbe8-4f4e-bc2d-d81216de2b9c)
)
(wire (pts (xy 142.24 100.33) (xy 143.51 100.33))
(stroke (width 0) (type default))
(uuid b3bb9324-5f9e-4356-bbdf-811e85488227)
)
(wire (pts (xy 168.91 123.19) (xy 168.91 125.73))
(stroke (width 0.1524) (type solid))
(uuid c2fa1be6-126d-4b6d-8013-9b83b930c81a)
)
(wire (pts (xy 144.78 107.95) (xy 156.21 107.95))
(stroke (width 0.1524) (type solid))
(uuid c318efbb-c24d-42fc-a31f-4167dc001058)
)
(wire (pts (xy 176.53 125.73) (xy 179.07 125.73))
(stroke (width 0.1524) (type solid))
(uuid c34ed8e5-a98b-478b-9e61-65fd98632d3c)
)
(wire (pts (xy 196.85 118.11) (xy 196.85 130.81))
(stroke (width 0.1524) (type solid))
(uuid c7312a66-359c-47f5-8033-4df788b5d5d3)
)
(wire (pts (xy 156.21 105.41) (xy 153.67 105.41))
(stroke (width 0.1524) (type solid))
(uuid c8219883-4171-479b-b65c-02655ad02589)
)
(wire (pts (xy 184.15 80.01) (xy 184.15 82.55))
(stroke (width 0.1524) (type solid))
(uuid c841fd68-c948-4d54-83b7-c95318751789)
)
(wire (pts (xy 179.07 87.63) (xy 179.07 74.93))
(stroke (width 0.1524) (type solid))
(uuid ca4764a1-f5b1-4c39-9625-9f9230a47cc4)
)
(wire (pts (xy 129.54 100.33) (xy 134.62 100.33))
(stroke (width 0.1524) (type solid))
(uuid cb897f96-5c0e-4ea6-9e6b-3f2a5b4b9c79)
)
(wire (pts (xy 168.91 125.73) (xy 168.91 130.81))
(stroke (width 0.1524) (type solid))
(uuid cffc3da8-16f8-4175-8097-e32baaef0365)
)
(wire (pts (xy 176.53 123.19) (xy 176.53 125.73))
(stroke (width 0.1524) (type solid))
(uuid d0599034-783e-4fd1-ab2f-38fa97d5d9c8)
)
(wire (pts (xy 171.45 80.01) (xy 171.45 87.63))
(stroke (width 0) (type default))
(uuid d442d1c0-c9fc-43c9-a2cc-1c6b2eca80df)
)
(wire (pts (xy 191.77 69.85) (xy 199.39 69.85))
(stroke (width 0.1524) (type solid))
(uuid d5a0bb9e-8d4e-4ecc-a6f2-23266a1f9315)
)
(wire (pts (xy 176.53 82.55) (xy 173.99 82.55))
(stroke (width 0.1524) (type solid))
(uuid d65f1224-a1af-4e52-99ee-580317f3e1a8)
)
(wire (pts (xy 191.77 105.41) (xy 196.85 105.41))
(stroke (width 0.1524) (type solid))
(uuid d7cd39e9-f90f-4e86-becc-d69012c5e220)
)
(wire (pts (xy 191.77 102.87) (xy 209.55 102.87))
(stroke (width 0.1524) (type solid))
(uuid dba15ae5-1996-44c8-91f6-134e2f8af1b8)
)
(wire (pts (xy 181.61 69.85) (xy 179.07 69.85))
(stroke (width 0.1524) (type solid))
(uuid dbe01e98-49fa-45af-81f4-7ebccb6979b4)
)
(wire (pts (xy 179.07 125.73) (xy 179.07 130.81))
(stroke (width 0.1524) (type solid))
(uuid eb86d6d8-ac2b-48e2-9770-32dfa1af7886)
)
(wire (pts (xy 151.13 100.33) (xy 151.13 102.87))
(stroke (width 0.1524) (type solid))
(uuid f1ecf26a-b558-411c-aa25-c67d9fed74cd)
)
(wire (pts (xy 173.99 146.05) (xy 168.91 146.05))
(stroke (width 0.1524) (type solid))
(uuid f4f9f945-50b5-41f9-b62e-712814acb300)
)
(wire (pts (xy 179.07 74.93) (xy 181.61 74.93))
(stroke (width 0.1524) (type solid))
(uuid fe84ecf0-f752-4a6b-b6ad-a8ddd1f9e78a)
)
(rectangle (start 62.23 46.99) (end 218.44 151.13)
(stroke (width 0.5) (type default))
(fill (type none))
(uuid 717880b9-5a56-4015-be0f-d15754370f18)
)
(rectangle (start 62.23 46.99) (end 96.52 151.13)
(stroke (width 0) (type default))
(fill (type none))
(uuid 8958c8c9-9571-4c7c-b42c-68fc8ff0bab6)
)
(text "MODULE:\nMCP9600\n\nEXPOSED CONNECTION: \n\nSCL0\nSDA0\nTHERM_COUPLE_P\nTHERM_COUPLE_N\n\nINPUT VOLTAGE:\n3.3V\n\nNOTE: \nADDR uses an internal \nADC to check\nthe voltage on the pin \nto determine\nthe last three bits of \nthe 7-bit I2C\naddress (1:1:0:0:A2:A1:A0).\nSetting ADDR to \nGND = 1:1:0:0:0:0:0\nSetting ADDR to \nVIN = 1:1:0:0:1:1:1\nFor other values \nand resistor divider\nsetup, see the DS \nfor details."
(at 67.31 110.49 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 46de57c4-fecb-44cf-aba6-c0a90c4301fe)
)
(label "ALERT2_MCP9600" (at 199.39 107.95 0) (fields_autoplaced)
(effects (font (size 1.2446 1.2446)) (justify left bottom))
(uuid 1045d351-c522-4dc8-94f7-f295d5154b15)
)
(label "ALERT3_MCP9600" (at 199.39 102.87 0) (fields_autoplaced)
(effects (font (size 1.2446 1.2446)) (justify left bottom))
(uuid 4bbf8a1d-2f0c-4764-a624-5f63d4363710)
)
(label "ALERT1_MCP9600" (at 199.39 110.49 0) (fields_autoplaced)
(effects (font (size 1.2446 1.2446)) (justify left bottom))
(uuid 860302df-6aea-4f9b-a527-1294a8c160f9)
)
(label "ADDR_MCP9600" (at 179.07 82.55 90) (fields_autoplaced)
(effects (font (size 1.2446 1.2446)) (justify left bottom))
(uuid 966a454b-4f9e-41ec-9cf2-4ca3d7dcae16)
)
(label "ALERT4_MCP9600" (at 199.39 100.33 0) (fields_autoplaced)
(effects (font (size 1.2446 1.2446)) (justify left bottom))
(uuid 98e3b6f8-8f92-43a0-917a-cd08abdaa8ae)
)
(global_label "THERM_COUPLE_N" (shape input) (at 121.92 107.95 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid a2a60a7f-94aa-42cf-b25d-8b3383c2d7e7)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 102.1225 107.95 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "SCL0" (shape input) (at 171.45 80.01 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid b223ca68-77c6-4cc2-aa56-e22a7be597b3)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 171.45 72.3077 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "THERM_COUPLE_P" (shape input) (at 121.92 100.33 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid b9e612e6-929b-4746-b5cb-5635bbd75b64)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 102.183 100.33 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "SDA0" (shape input) (at 168.91 80.01 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid bee8a483-3296-4548-be13-2e808e9c7f8d)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 168.91 72.2472 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(symbol (lib_id "power:GND") (at 179.07 130.81 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 0a8d3c41-25d5-49a8-8e18-2043ee545738)
(property "Reference" "#PWR05" (at 179.07 137.16 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 179.07 134.62 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 179.07 130.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 179.07 130.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 5859d963-afe9-4dfd-b52a-25c604dca373))
(instances
(project "MCP9600"
(path "/7f110d67-2227-4482-9bc6-6c802bd2b33e"
(reference "#PWR05") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 191.77 80.01 180) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 18a79ce3-fe0b-4e71-8fe5-af61446facdd)
(property "Reference" "R4" (at 190.5 81.28 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "22k" (at 190.5 78.74 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Resistor_SMD:R_01005_0402Metric" (at 193.548 80.01 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 191.77 80.01 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid c5c109c2-f0b7-4d99-979f-961c5f7fd46d))
(pin "2" (uuid 80f315aa-8612-411e-99cd-e26f16e69fbb))
(instances
(project "MCP9600"
(path "/7f110d67-2227-4482-9bc6-6c802bd2b33e"
(reference "R4") (unit 1)
)
)
)
)
(symbol (lib_id "power:+3V3") (at 179.07 57.15 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 27d43ceb-6f51-42b9-8ab3-1a1ac02fddd6)
(property "Reference" "#PWR04" (at 179.07 60.96 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3V3" (at 179.07 52.07 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 179.07 57.15 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 179.07 57.15 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 838d22f1-f4ae-4cf0-bd5b-5d3daa8cb160))
(instances
(project "MCP9600"
(path "/7f110d67-2227-4482-9bc6-6c802bd2b33e"
(reference "#PWR04") (unit 1)
)
)
)
)
(symbol (lib_id "Adafruit MCP9600-eagle-import:FERRITE-0805NO") (at 127 100.33 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 2827848b-db94-4c39-b392-9700a0a35e4d)
(property "Reference" "FB1" (at 125.73 98.425 0)
(effects (font (size 1.27 1.0795)) (justify left bottom))
)
(property "Value" "Ferrite" (at 125.73 103.505 0)
(effects (font (size 1.27 1.0795)) (justify left bottom))
)
(property "Footprint" "Adafruit MCP9600:0805-NO" (at 127 100.33 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 127 100.33 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 37538720-7a34-4f05-bdb7-7b05133e6079))
(pin "2" (uuid a8d71890-87dd-4fc8-bd41-8beadd6d00d2))
(instances
(project "MCP9600"
(path "/7f110d67-2227-4482-9bc6-6c802bd2b33e"
(reference "FB1") (unit 1)
)
)
)
)
(symbol (lib_id "Adafruit MCP9600-eagle-import:MCP9600") (at 173.99 105.41 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 51411b45-abdf-4a23-9858-17a0aa23cf7d)
(property "Reference" "U1" (at 158.75 87.63 0)
(effects (font (size 1.27 1.0795)) (justify left bottom))
)
(property "Value" "MCP9600" (at 158.75 123.19 0)
(effects (font (size 1.27 1.0795)) (justify left bottom))
)
(property "Footprint" "Adafruit MCP9600:VQFN20_5MM" (at 173.99 105.41 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 173.99 105.41 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "P$1" (uuid cc194de7-c5c5-4986-9a35-3e938cf116c7))
(pin "P$10" (uuid 4526c021-d8b9-41d1-8726-6fd3aeb92db4))
(pin "P$11" (uuid 3e6b9624-4780-494c-92c9-e7348c806ee7))
(pin "P$12" (uuid 89e07b25-2ec1-4a43-8e13-7faa07fa1c17))
(pin "P$13" (uuid 37930614-2651-45b9-971e-8108d874e46a))
(pin "P$14" (uuid e6cddc7e-f4eb-4001-b4fa-2b3141a4f119))
(pin "P$15" (uuid 1d644e89-f522-4e50-9acd-babb03e2e9ff))
(pin "P$16" (uuid 09fe290e-9430-4f8d-b2b6-7619d66e8d50))
(pin "P$17" (uuid 4ab1e410-2351-4d60-9ddb-95d5aa0e01b8))
(pin "P$18" (uuid 98470044-50b5-4b33-bf62-13cdc2b1e468))
(pin "P$19" (uuid 219afb74-74f1-4121-ab0c-cd45a5acb3e0))
(pin "P$2" (uuid 19078a02-5980-4b30-b9ac-9d6ff18fa23f))
(pin "P$20" (uuid e3733f65-ec49-488b-86ba-662c62229b68))
(pin "P$3" (uuid 137195bf-86e5-4ab6-9850-2fb5e72289d5))
(pin "P$4" (uuid 0514d210-8581-49f3-8636-d990b991b16c))
(pin "P$5" (uuid 395bedad-80ff-440c-975f-13f9f9d3b114))
(pin "P$6" (uuid 5dbd86ab-cc6a-4a1f-a94c-a0472f172fb6))
(pin "P$7" (uuid 7dc5b5d3-d428-4270-a4bf-8ca3a09d046b))
(pin "P$8" (uuid 21495f98-74de-45db-b674-4e0abafeef2e))
(pin "P$9" (uuid db087fa1-1d90-4400-a0cd-1cd63e0bf625))
(pin "THRM" (uuid 1b94782a-5a60-495b-8668-4c4c94d4ba35))
(instances
(project "MCP9600"
(path "/7f110d67-2227-4482-9bc6-6c802bd2b33e"
(reference "U1") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 138.43 107.95 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 5512699b-695b-43e9-ae84-fbc92dbe9876)
(property "Reference" "R2" (at 137.16 106.68 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100" (at 139.7 106.68 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Resistor_SMD:R_01005_0402Metric" (at 138.43 109.728 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 138.43 107.95 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 476804d9-8355-49ab-b104-ec2bacb61e62))
(pin "2" (uuid 995160f0-9880-4cd5-9b38-dbbb80347ed4))
(instances
(project "MCP9600"
(path "/7f110d67-2227-4482-9bc6-6c802bd2b33e"
(reference "R2") (unit 1)
)
)
)
)
(symbol (lib_id "Adafruit MCP9600-eagle-import:FERRITE-0805NO") (at 127 107.95 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 5feaeab6-9492-4c15-b3b2-a3842ebe60d0)
(property "Reference" "FB2" (at 125.73 106.045 0)
(effects (font (size 1.27 1.0795)) (justify left bottom))
)
(property "Value" "Ferrite" (at 125.73 111.125 0)
(effects (font (size 1.27 1.0795)) (justify left bottom))
)