forked from mikelawrence/RPi-Hat-Thermocouple
-
Notifications
You must be signed in to change notification settings - Fork 0
/
RPi-Hat-Thermocouple.net
executable file
·978 lines (978 loc) · 38 KB
/
RPi-Hat-Thermocouple.net
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
(export (version D)
(design
(source /Users/mike/Documents/KiCAD/RPi-Hat-Thermocouple/RPi-Hat-Thermocouple.sch)
(date "Saturday, April 08, 2017 'AMt' 09:47:35 AM")
(tool "Eeschema 4.0.5")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title "Raspberry Pi Thermocouple Hat")
(company "Mike Lawrence")
(rev 1.2)
(date "April 2017")
(source RPi-Hat-Thermocouple.sch)
(comment (number 1) (value "Rev 1.1 Added Alert, Ext 1-Wire connections, and console connections."))
(comment (number 2) (value "Rev 1.2 Added R7. Added 3.3V analog power supply."))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref J1)
(value RPi_GPIO)
(footprint raspberry-ml:Pin_Header_Straight_2x20)
(datasheet https://www.adafruit.com/products/2222)
(fields
(field (name "Part Number") 2222)
(field (name Manufacturer) Adafruit)
(field (name Vendor) Mouser)
(field (name "Vendor Part Number") 485-2222))
(libsource (lib Raspberry-ml) (part RPi_GPIO))
(sheetpath (names /) (tstamps /))
(tstamp 5516AE26))
(comp (ref U2)
(value MAX31855)
(footprint Housings_SOIC:SOIC-8_3.9x4.9mm_Pitch1.27mm)
(datasheet https://datasheets.maximintegrated.com/en/ds/MAX31855.pdf)
(fields
(field (name "Part Number") MAX31855KASA+)
(field (name Manufacturer) "Maxim Integrated")
(field (name Vendor) Mouser)
(field (name "Vendor Part Number") 700-MAX31855KASA+))
(libsource (lib interface) (part MAX31855KASA))
(sheetpath (names /) (tstamps /))
(tstamp 58A99B99))
(comp (ref R1)
(value 1k)
(footprint Resistors_SMD:R_0603)
(datasheet https://industrial.panasonic.com/cdbs/www-data/pdf/RDA0000/AOA0000C283.pdf)
(fields
(field (name Tolerance) 1%)
(field (name Manufacturer) Panasonic)
(field (name "Part Number") ERJ-3EKF1001V)
(field (name Vendor) Mouser)
(field (name "Vendor Part Number") 667-ERJ-3EKF1001V))
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 58A9B1BF))
(comp (ref R2)
(value 3.9k)
(footprint Resistors_SMD:R_0603)
(datasheet https://industrial.panasonic.com/cdbs/www-data/pdf/RDA0000/AOA0000C283.pdf)
(fields
(field (name Tolerance) 1%)
(field (name Manufacturer) Panasonic)
(field (name "Part Number") ERJ-3EKF3901V)
(field (name Vendor) Mouser)
(field (name "Vendor Part Number") 667-ERJ-3EKF3901V))
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 58A9C93F))
(comp (ref R3)
(value 3.9k)
(footprint Resistors_SMD:R_0603)
(datasheet https://industrial.panasonic.com/cdbs/www-data/pdf/RDA0000/AOA0000C283.pdf)
(fields
(field (name Tolerance) 1%)
(field (name Manufacturer) Panasonic)
(field (name "Part Number") ERJ-3EKF3901V)
(field (name Vendor) Mouser)
(field (name "Vendor Part Number") 667-ERJ-3EKF3901V))
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 58A9CC2E))
(comp (ref U1)
(value AT24CS32)
(footprint Housings_SOIC:SOIC-8_3.9x4.9mm_Pitch1.27mm)
(datasheet http://www.atmel.com/images/Atmel-8869-SEEPROM-AT24CS32-Datasheet.pdf)
(fields
(field (name "Part Number") AT24CS32-SSHM)
(field (name Manufacturer) Atmel)
(field (name Vendor) Mouser)
(field (name "Vendor Part Number") 556-AT24CS32-SSHM-T))
(libsource (lib memory-ml) (part AT24CS32-SSHM))
(sheetpath (names /) (tstamps /))
(tstamp 58A9E6D9))
(comp (ref J2)
(value "Push Terminal")
(footprint Connectors_Phoenix:PhoenixContact_PTSM0,5_2-2,5-V_SMD)
(datasheet https://www.phoenixcontact.com/online/portal/us?uri=pxc-oc-itemdetail:pid=1771091&library=usen&tab=1)
(fields
(field (name "Part Number") 1771091)
(field (name Manufacturer) "Phoenix Contact")
(field (name Vendor) Mouser)
(field (name "Vendor Part Number") 651-1771091))
(libsource (lib conn) (part Screw_Terminal_1x02))
(sheetpath (names /) (tstamps /))
(tstamp 58A9F16B))
(comp (ref C5)
(value 10nF)
(footprint Capacitors_SMD:C_0603)
(datasheet http://www.mouser.com/ProductDetail/Murata-Electronics/GRM188R71H103KA01D/?qs=sGAEpiMZZMs0AnBnWHyRQNOmsPzkISN05dIajb7qEY0%3d)
(fields
(field (name "Part Number") GRM188R71H103KA01D)
(field (name Manufacturer) "Murata Electronics")
(field (name Vendor) Mouser)
(field (name "Vendor Part Number") 81-GRM39X103K50D))
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 58A9F489))
(comp (ref C1)
(value 0.1uF)
(footprint Capacitors_SMD:C_0603)
(datasheet http://www.mouser.com/ProductDetail/Murata-Electronics/GRM188R71H103KA01D/?qs=sGAEpiMZZMs0AnBnWHyRQNOmsPzkISN05dIajb7qEY0%3d)
(fields
(field (name "Part Number") GRM188R71H104KA93D)
(field (name Manufacturer) "Murata Electronics")
(field (name Vendor) Mouser)
(field (name "Vendor Part Number") 81-GRM39X104K50D))
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 58A9FAF4))
(comp (ref C2)
(value 0.1uF)
(footprint Capacitors_SMD:C_0603)
(datasheet http://www.mouser.com/ProductDetail/Murata-Electronics/GRM188R71H103KA01D/?qs=sGAEpiMZZMs0AnBnWHyRQNOmsPzkISN05dIajb7qEY0%3d)
(fields
(field (name "Part Number") GRM188R71H104KA93D)
(field (name Manufacturer) "Murata Electronics")
(field (name Vendor) Mouser)
(field (name "Vendor Part Number") 81-GRM39X104K50D))
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 58AA09C4))
(comp (ref U3)
(value MAX31855)
(footprint Housings_SOIC:SOIC-8_3.9x4.9mm_Pitch1.27mm)
(datasheet https://datasheets.maximintegrated.com/en/ds/MAX31855.pdf)
(fields
(field (name "Part Number") MAX31855KASA+)
(field (name Manufacturer) "Maxim Integrated")
(field (name Vendor) Mouser)
(field (name "Vendor Part Number") 700-MAX31855KASA+))
(libsource (lib interface) (part MAX31855KASA))
(sheetpath (names /) (tstamps /))
(tstamp 58AA1493))
(comp (ref J3)
(value "Push Terminal")
(footprint Connectors_Phoenix:PhoenixContact_PTSM0,5_2-2,5-V_SMD)
(datasheet https://www.phoenixcontact.com/online/portal/us?uri=pxc-oc-itemdetail:pid=1771091&library=usen&tab=1)
(fields
(field (name "Part Number") 1771091)
(field (name Manufacturer) "Phoenix Contact")
(field (name Vendor) Mouser)
(field (name "Vendor Part Number") 651-1771091))
(libsource (lib conn) (part Screw_Terminal_1x02))
(sheetpath (names /) (tstamps /))
(tstamp 58AA149D))
(comp (ref C6)
(value 10nF)
(footprint Capacitors_SMD:C_0603)
(datasheet http://www.mouser.com/ProductDetail/Murata-Electronics/GRM188R71H103KA01D/?qs=sGAEpiMZZMs0AnBnWHyRQNOmsPzkISN05dIajb7qEY0%3d)
(fields
(field (name "Part Number") GRM188R71H103KA01D)
(field (name Manufacturer) "Murata Electronics")
(field (name Vendor) Mouser)
(field (name "Vendor Part Number") 81-GRM39X103K50D))
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 58AA14A7))
(comp (ref C3)
(value 0.1uF)
(footprint Capacitors_SMD:C_0603)
(datasheet http://www.mouser.com/ProductDetail/Murata-Electronics/GRM188R71H103KA01D/?qs=sGAEpiMZZMs0AnBnWHyRQNOmsPzkISN05dIajb7qEY0%3d)
(fields
(field (name "Part Number") GRM188R71H104KA93D)
(field (name Manufacturer) "Murata Electronics")
(field (name Vendor) Mouser)
(field (name "Vendor Part Number") 81-GRM39X104K50D))
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 58AA14B5))
(comp (ref U4)
(value MAX31855)
(footprint Housings_SOIC:SOIC-8_3.9x4.9mm_Pitch1.27mm)
(datasheet https://datasheets.maximintegrated.com/en/ds/MAX31855.pdf)
(fields
(field (name "Part Number") MAX31855KASA+)
(field (name Manufacturer) "Maxim Integrated")
(field (name Vendor) Mouser)
(field (name "Vendor Part Number") 700-MAX31855KASA+))
(libsource (lib interface) (part MAX31855KASA))
(sheetpath (names /) (tstamps /))
(tstamp 58AA1582))
(comp (ref J4)
(value "Push Terminal")
(footprint Connectors_Phoenix:PhoenixContact_PTSM0,5_2-2,5-V_SMD)
(datasheet https://www.phoenixcontact.com/online/portal/us?uri=pxc-oc-itemdetail:pid=1771091&library=usen&tab=1)
(fields
(field (name "Part Number") 1771091)
(field (name Manufacturer) "Phoenix Contact")
(field (name Vendor) Mouser)
(field (name "Vendor Part Number") 651-1771091))
(libsource (lib conn) (part Screw_Terminal_1x02))
(sheetpath (names /) (tstamps /))
(tstamp 58AA158C))
(comp (ref C7)
(value 10nF)
(footprint Capacitors_SMD:C_0603)
(datasheet http://www.mouser.com/ProductDetail/Murata-Electronics/GRM188R71H103KA01D/?qs=sGAEpiMZZMs0AnBnWHyRQNOmsPzkISN05dIajb7qEY0%3d)
(fields
(field (name "Part Number") GRM188R71H103KA01D)
(field (name Manufacturer) "Murata Electronics")
(field (name Vendor) Mouser)
(field (name "Vendor Part Number") 81-GRM39X103K50D))
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 58AA1596))
(comp (ref C4)
(value 0.1uF)
(footprint Capacitors_SMD:C_0603)
(datasheet http://www.mouser.com/ProductDetail/Murata-Electronics/GRM188R71H103KA01D/?qs=sGAEpiMZZMs0AnBnWHyRQNOmsPzkISN05dIajb7qEY0%3d)
(fields
(field (name "Part Number") GRM188R71H104KA93D)
(field (name Manufacturer) "Murata Electronics")
(field (name Vendor) Mouser)
(field (name "Vendor Part Number") 81-GRM39X104K50D))
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 58AA15A4))
(comp (ref U5)
(value 74LVC139)
(footprint Housings_SSOP:TSSOP-16_4.4x5mm_Pitch0.65mm)
(datasheet http://www.ti.com/lit/ds/symlink/sn74lvc139a.pdf)
(fields
(field (name "Part Number") SN74LVC139APWR)
(field (name Manufacturer) TI)
(field (name Vendor) Mouser)
(field (name "Vendor Part Number") 595-SN74LVC139APWR))
(libsource (lib 74xx) (part 74LS139))
(sheetpath (names /) (tstamps /))
(tstamp 58ADBEF1))
(comp (ref C8)
(value 0.1uF)
(footprint Capacitors_SMD:C_0603)
(datasheet http://www.mouser.com/ProductDetail/Murata-Electronics/GRM188R71H103KA01D/?qs=sGAEpiMZZMs0AnBnWHyRQNOmsPzkISN05dIajb7qEY0%3d)
(fields
(field (name "Part Number") GRM188R71H104KA93D)
(field (name Manufacturer) "Murata Electronics")
(field (name Vendor) Mouser)
(field (name "Vendor Part Number") 81-GRM39X104K50D))
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 58AE110C))
(comp (ref SW1)
(value Write)
(footprint Buttons_Switches_SMD:SW_SPST_B3U-1000P-B)
(datasheet http://www.mouser.com/ds/2/307/en-b3u-3615.pdf)
(fields
(field (name "Part Number") B3U-1000P)
(field (name Manufacturer) Omron)
(field (name Vendor) Mouser)
(field (name "Vendor Part Number") 653-B3U-1000P))
(libsource (lib switches) (part SW_Push))
(sheetpath (names /) (tstamps /))
(tstamp 58AE1963))
(comp (ref U6)
(value DS18S20)
(footprint TO_SOT_Packages_THT:TO-92_Molded_Narrow)
(datasheet https://datasheets.maximintegrated.com/en/ds/DS18S20.pdf)
(fields
(field (name "Part Number") DS18S20)
(field (name Manufacturer) "Maxim Integrated")
(field (name Vendor) Mouser)
(field (name "Vendor Part Number") 700-DS18S20))
(libsource (lib maxim) (part DS18S20))
(sheetpath (names /) (tstamps /))
(tstamp 58AFBC55))
(comp (ref R4)
(value 4.7k)
(footprint Resistors_SMD:R_0603)
(datasheet https://industrial.panasonic.com/cdbs/www-data/pdf/RDA0000/AOA0000C283.pdf)
(fields
(field (name "Part Number") ERJ-3EKF4701V)
(field (name Manufacturer) Panasonic)
(field (name Vendor) Mouser)
(field (name "Vendor Part Number") 667-ERJ-3EKF4701V)
(field (name Tolerance) 1%))
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 58AFBF2D))
(comp (ref BT1)
(value CR1225)
(footprint Battery_Holders:Keystone_3000_1x12mm-CoinCell)
(datasheet http://www.keyelco.com/product-pdf.cfm?p=777)
(fields
(field (name "Part Number") 3000)
(field (name Manufacturer) "Keystone Electronics")
(field (name Vendor) Mouser)
(field (name "Vendor Part Number") 534-3000))
(libsource (lib device) (part Battery_Cell))
(sheetpath (names /) (tstamps /))
(tstamp 58B051ED))
(comp (ref C9)
(value 0.1uF)
(footprint Capacitors_SMD:C_0603)
(datasheet http://www.mouser.com/ProductDetail/Murata-Electronics/GRM188R71H103KA01D/?qs=sGAEpiMZZMs0AnBnWHyRQNOmsPzkISN05dIajb7qEY0%3d)
(fields
(field (name "Part Number") GRM188R71H104KA93D)
(field (name Manufacturer) "Murata Electronics")
(field (name Vendor) Mouser)
(field (name "Vendor Part Number") 81-GRM39X104K50D))
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 58B05917))
(comp (ref R5)
(value DNI)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 58B0D452))
(comp (ref R6)
(value DNI)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 58B0DA02))
(comp (ref U7)
(value DS3231M)
(footprint Housings_SOIC:SOIC-8_3.9x4.9mm_Pitch1.27mm)
(datasheet https://datasheets.maximintegrated.com/en/ds/DS3231M.pdf)
(fields
(field (name "Part Number") DS3231MZ)
(field (name Manufacturer) "Maxim Integrated")
(field (name Vendor) Mouser)
(field (name "Vendor Part Number") 700-DS3231MZ+))
(libsource (lib maxim) (part DS3232M))
(sheetpath (names /) (tstamps /))
(tstamp 58B198BC))
(comp (ref BZ1)
(value Buzzer)
(footprint cui-ml:CMI-9655S-SMT)
(datasheet http://www.cui.com/product/resource/cmi-9655s-smt.pdf)
(fields
(field (name "Part Number") CMI-9655S-SMT-TR)
(field (name Manufacturer) CUI)
(field (name Vendor) Mouser)
(field (name "Vendor Part Number") 490-CMI-9655S-SMT-TR))
(libsource (lib cui-ml) (part Buzzer))
(sheetpath (names /) (tstamps /))
(tstamp 58C3BAEC))
(comp (ref Q1)
(value NUD3124)
(footprint TO_SOT_Packages_SMD:SOT-23)
(datasheet https://www.onsemi.com/pub/Collateral/NUD3124-D.PDF)
(fields
(field (name "Part Number") NUD3124LT1G)
(field (name Manufacturer) OnSemi)
(field (name Vendor) Mouser)
(field (name "Vendor Part Number") 863-NUD3124LT1G))
(libsource (lib onsemi-ml) (part NUD3124))
(sheetpath (names /) (tstamps /))
(tstamp 58C44EBA))
(comp (ref C10)
(value 0.1uF)
(footprint Capacitors_SMD:C_0603)
(datasheet http://www.mouser.com/ProductDetail/Murata-Electronics/GRM188R71H103KA01D/?qs=sGAEpiMZZMs0AnBnWHyRQNOmsPzkISN05dIajb7qEY0%3d)
(fields
(field (name "Part Number") GRM188R71H104KA93D)
(field (name Manufacturer) "Murata Electronics")
(field (name Vendor) Mouser)
(field (name "Vendor Part Number") 81-GRM39X104K50D))
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 58C47891))
(comp (ref P1)
(value CONN_01X03)
(footprint Pin_Headers:Pin_Header_Straight_1x03_Pitch2.00mm)
(libsource (lib conn) (part CONN_01X03))
(sheetpath (names /) (tstamps /))
(tstamp 58C498D6))
(comp (ref P2)
(value CONN_01X03)
(footprint Pin_Headers:Pin_Header_Straight_1x03_Pitch2.54mm)
(libsource (lib conn) (part CONN_01X03))
(sheetpath (names /) (tstamps /))
(tstamp 58C4B7E1))
(comp (ref R7)
(value 4.7k)
(footprint Resistors_SMD:R_0603)
(datasheet https://industrial.panasonic.com/cdbs/www-data/pdf/RDA0000/AOA0000C283.pdf)
(fields
(field (name "Part Number") ERJ-3EKF4701V)
(field (name Manufacturer) Panasonic)
(field (name Vendor) Mouser)
(field (name "Vendor Part Number") 667-ERJ-3EKF4701V)
(field (name Tolerance) 1%))
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 58D090D7))
(comp (ref U8)
(value MCP1754ST)
(footprint TO_SOT_Packages_SMD:SOT89-3_Housing)
(datasheet http://ww1.microchip.com/downloads/en/DeviceDoc/20002276C.pdf)
(fields
(field (name "Part Number") MCP1754ST-3302E/MB)
(field (name Manufacturer) Microchip)
(field (name Vendor) Mouser)
(field (name "Vendor Part Number") 579-MCP1754ST3302EMB))
(libsource (lib regul) (part MCP1754ST-3302E/MB))
(sheetpath (names /) (tstamps /))
(tstamp 58E231EF))
(comp (ref C12)
(value 2.2uF)
(footprint Capacitors_SMD:C_0805)
(datasheet http://www.mouser.com/ds/2/281/c02e-2905.pdf)
(fields
(field (name "Part Number") GRM21BR71C225KA12L)
(field (name Manufacturer) "Murata Electronics")
(field (name Vendor) Mouser)
(field (name "Vendor Part Number") 81-GRM21BR71C225KA2L))
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 58E249F4))
(comp (ref C11)
(value 2.2uF)
(footprint Capacitors_SMD:C_0805)
(datasheet http://www.mouser.com/ds/2/281/c02e-2905.pdf)
(fields
(field (name "Part Number") GRM21BR71C225KA12L)
(field (name Manufacturer) "Murata Electronics")
(field (name Vendor) Mouser)
(field (name "Vendor Part Number") 81-GRM21BR71C225KA2L))
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 58E24D01))
(comp (ref C13)
(value 10nF)
(footprint Capacitors_SMD:C_0603)
(datasheet http://www.mouser.com/ProductDetail/Murata-Electronics/GRM188R71H103KA01D/?qs=sGAEpiMZZMs0AnBnWHyRQNOmsPzkISN05dIajb7qEY0%3d)
(fields
(field (name "Part Number") GRM188R71H103KA01D)
(field (name Manufacturer) "Murata Electronics")
(field (name Vendor) Mouser)
(field (name "Vendor Part Number") 81-GRM39X103K50D))
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 58E2E872))
(comp (ref C14)
(value 10nF)
(footprint Capacitors_SMD:C_0603)
(datasheet http://www.mouser.com/ProductDetail/Murata-Electronics/GRM188R71H103KA01D/?qs=sGAEpiMZZMs0AnBnWHyRQNOmsPzkISN05dIajb7qEY0%3d)
(fields
(field (name "Part Number") GRM188R71H103KA01D)
(field (name Manufacturer) "Murata Electronics")
(field (name Vendor) Mouser)
(field (name "Vendor Part Number") 81-GRM39X103K50D))
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 58E30EE8))
(comp (ref C15)
(value 10nF)
(footprint Capacitors_SMD:C_0603)
(datasheet http://www.mouser.com/ProductDetail/Murata-Electronics/GRM188R71H103KA01D/?qs=sGAEpiMZZMs0AnBnWHyRQNOmsPzkISN05dIajb7qEY0%3d)
(fields
(field (name "Part Number") GRM188R71H103KA01D)
(field (name Manufacturer) "Murata Electronics")
(field (name Vendor) Mouser)
(field (name "Vendor Part Number") 81-GRM39X103K50D))
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 58E32123)))
(libparts
(libpart (lib 74xx) (part 74LS139)
(description "Dual Decoder 1 of 4, Active low outputs")
(fields
(field (name Reference) U)
(field (name Value) 74LS139))
(pins
(pin (num 1) (name E) (type input))
(pin (num 2) (name A0) (type input))
(pin (num 3) (name A1) (type input))
(pin (num 4) (name O0) (type output))
(pin (num 5) (name O1) (type output))
(pin (num 6) (name O2) (type output))
(pin (num 7) (name O3) (type output))
(pin (num 8) (name GND) (type power_in))
(pin (num 9) (name O3) (type output))
(pin (num 10) (name O2) (type output))
(pin (num 11) (name O1) (type output))
(pin (num 12) (name O0) (type output))
(pin (num 13) (name A1) (type input))
(pin (num 14) (name A0) (type input))
(pin (num 15) (name E) (type input))
(pin (num 16) (name VCC) (type power_in))))
(libpart (lib memory-ml) (part AT24CS32-SSHM)
(description "32Kb (4096x8) Serial EEPROM with Unique Serial Number, SOIC-8")
(docs http://www.atmel.com/Images/Atmel-8869-SEEPROM-AT24CS32-Datasheet.pdf)
(footprints
(fp SO8*)
(fp SOIC-8*))
(fields
(field (name Reference) U)
(field (name Value) AT24CS32-SSHM)
(field (name Footprint) SO8)
(field (name Datasheet) http://www.atmel.com/images/Atmel-8869-SEEPROM-AT24CS32-Datasheet.pdf)
(field (name "Vendor Part Number") 556-AT24CS32-SSHM-T)
(field (name "Part Number") AT24CS32-SSHM)
(field (name Manufacturer) Atmel)
(field (name Vendor) Mouser))
(pins
(pin (num 1) (name A0) (type input))
(pin (num 2) (name A1) (type input))
(pin (num 3) (name A2) (type input))
(pin (num 4) (name GND) (type power_in))
(pin (num 5) (name SDA) (type BiDi))
(pin (num 6) (name SCL) (type input))
(pin (num 7) (name WP) (type input))
(pin (num 8) (name VCC) (type power_in))))
(libpart (lib device) (part Battery_Cell)
(description "single battery cell")
(fields
(field (name Reference) BT)
(field (name Value) Battery_Cell))
(pins
(pin (num 1) (name +) (type passive))
(pin (num 2) (name -) (type passive))))
(libpart (lib cui-ml) (part Buzzer)
(description "Buzzer, polar")
(footprints
(fp *Buzzer*))
(fields
(field (name Reference) BZ)
(field (name Value) Buzzer))
(pins
(pin (num 1) (name -) (type passive))
(pin (num 2) (name +) (type passive))))
(libpart (lib conn) (part CONN_01X03)
(description "Connector, single row, 01x03")
(footprints
(fp Pin_Header_Straight_1X03)
(fp Pin_Header_Angled_1X03)
(fp Socket_Strip_Straight_1X03)
(fp Socket_Strip_Angled_1X03))
(fields
(field (name Reference) P)
(field (name Value) CONN_01X03))
(pins
(pin (num 1) (name P1) (type passive))
(pin (num 2) (name P2) (type passive))
(pin (num 3) (name P3) (type passive))))
(libpart (lib device) (part C_Small)
(description "Unpolarized capacitor")
(footprints
(fp C?)
(fp C_????_*)
(fp C_????)
(fp SMD*_c)
(fp Capacitor*))
(fields
(field (name Reference) C)
(field (name Value) C_Small))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib maxim) (part DS3232M)
(description "±5ppm, I2C Real-Time Clock with SRAM SOIC-8")
(docs http://datasheets.maximintegrated.com/en/ds/DS3232M.pdf)
(footprints
(fp SOIC-*_3.9x4.9mm_Pitch1.27mm*))
(fields
(field (name Reference) U)
(field (name Value) DS3232M)
(field (name Footprint) Housings_SOIC:SOIC-8_3.9x4.9mm_Pitch1.27mm))
(pins
(pin (num 1) (name 32KHZ) (type output))
(pin (num 2) (name VCC) (type power_in))
(pin (num 3) (name ~INT~/SQW) (type openCol))
(pin (num 4) (name ~RST) (type BiDi))
(pin (num 5) (name GND) (type power_in))
(pin (num 6) (name VBAT) (type power_in))
(pin (num 7) (name SDA) (type BiDi))
(pin (num 8) (name SCL) (type input))))
(libpart (lib maxim) (part MAX31820)
(aliases
(alias DS1822)
(alias DS18B20)
(alias DS18S20)
(alias DS1821C))
(description "1-Wire Ambient Temperature Sensor")
(docs http://datasheets.maximintegrated.com/en/ds/MAX31820.pdf)
(footprints
(fp TO-92_*))
(fields
(field (name Reference) U)
(field (name Value) MAX31820))
(pins
(pin (num 1) (name GND) (type power_in))
(pin (num 2) (name DQ) (type BiDi))
(pin (num 3) (name VDD) (type power_in))))
(libpart (lib interface) (part MAX31855KASA)
(aliases
(alias MAX31855JASA)
(alias MAX31855NASA)
(alias MAX31855SASA)
(alias MAX31855TASA)
(alias MAX31855EASA)
(alias MAX31855RASA))
(description "Cold Junction K-type Termocouple Interface, SPI, SO8")
(docs http://datasheets.maximintegrated.com/en/ds/MAX31855.pdf)
(footprints
(fp SO*))
(fields
(field (name Reference) U)
(field (name Value) MAX31855KASA)
(field (name Footprint) SO-8))
(pins
(pin (num 1) (name GND) (type power_in))
(pin (num 2) (name T-) (type passive))
(pin (num 3) (name T+) (type passive))
(pin (num 4) (name VCC) (type power_in))
(pin (num 5) (name SCK) (type input))
(pin (num 6) (name ~CS~) (type input))
(pin (num 7) (name SO) (type output))))
(libpart (lib regul) (part MCP1754ST-5002E/MB)
(aliases
(alias MCP1754ST-1802E/MB)
(alias MCP1754ST-3302E/MB))
(description "MCP1754ST, Fixed 150mA Low Dropout Voltage Regulator, Positive")
(docs http://ww1.microchip.com/downloads/en/DeviceDoc/20002276C.pdf)
(footprints
(fp SOT-89*))
(fields
(field (name Reference) U)
(field (name Value) MCP1754ST-5002E/MB))
(pins
(pin (num 1) (name VI) (type power_in))
(pin (num 2) (name GND) (type power_in))
(pin (num 3) (name VO) (type power_out))))
(libpart (lib onsemi-ml) (part NUD3124)
(description "Automotive Inductive Load Driver")
(footprints
(fp *SOT-23*))
(fields
(field (name Reference) Q)
(field (name Value) NUD3124)
(field (name Footprint) TO_SOT_Packages_SMD:TSOT-23)
(field (name Datasheet) https://www.onsemi.com/pub/Collateral/NUD3124-D.PDF)
(field (name "Vendor Part Number") 863-NUD3124LT1G)
(field (name Vendor) Mouser)
(field (name "Part Number") NUD3124LT1G)
(field (name Manufacturer) "On Semi"))
(pins
(pin (num 1) (name G) (type input))
(pin (num 2) (name S) (type passive))
(pin (num 3) (name D) (type passive))))
(libpart (lib device) (part R)
(description Resistor)
(footprints
(fp R_*)
(fp Resistor_*))
(fields
(field (name Reference) R)
(field (name Value) R))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Raspberry-ml) (part RPi_GPIO)
(description "Raspberry Pi Hat GPIO")
(fields
(field (name Reference) J)
(field (name Value) RPi_GPIO))
(pins
(pin (num 1) (name 3.3V) (type power_in))
(pin (num 2) (name 5V) (type power_in))
(pin (num 3) (name GPIO02_SDA1_I2C) (type BiDi))
(pin (num 4) (name 5V) (type power_in))
(pin (num 5) (name GPIO03_SCL1_I2C) (type BiDi))
(pin (num 6) (name GND) (type power_in))
(pin (num 7) (name GPIO04_GCLK) (type BiDi))
(pin (num 8) (name GPIO14_TXD0) (type BiDi))
(pin (num 9) (name GND) (type power_in))
(pin (num 10) (name GPIO15_RXD0) (type BiDi))
(pin (num 11) (name GPIO17) (type BiDi))
(pin (num 12) (name GPIO18) (type BiDi))
(pin (num 13) (name GPIO27) (type BiDi))
(pin (num 14) (name GND) (type power_in))
(pin (num 15) (name GPIO22) (type BiDi))
(pin (num 16) (name GPIO23) (type BiDi))
(pin (num 17) (name 3.3V) (type power_in))
(pin (num 18) (name GPIO24) (type BiDi))
(pin (num 19) (name GPIO10_SPI_MOSI) (type BiDi))
(pin (num 20) (name GND) (type power_in))
(pin (num 21) (name GPIO09_SPI_MISO) (type BiDi))
(pin (num 22) (name GPIO25) (type BiDi))
(pin (num 23) (name GPIO11_SPI_CLK) (type BiDi))
(pin (num 24) (name GPIO08_SPI_CE0_N) (type BiDi))
(pin (num 25) (name GND) (type power_in))
(pin (num 26) (name GPIO07_SPI_CE1_N) (type BiDi))
(pin (num 27) (name ID_SD) (type BiDi))
(pin (num 28) (name ID_SC) (type BiDi))
(pin (num 29) (name GPIO05) (type BiDi))
(pin (num 30) (name GND) (type power_in))
(pin (num 31) (name GPIO06) (type BiDi))
(pin (num 32) (name GPIO12) (type BiDi))
(pin (num 33) (name GPIO13) (type BiDi))
(pin (num 34) (name GND) (type power_in))
(pin (num 35) (name GPIO19) (type BiDi))
(pin (num 36) (name GPIO16) (type BiDi))
(pin (num 37) (name GPIO26) (type BiDi))
(pin (num 38) (name GPIO20) (type BiDi))
(pin (num 39) (name GND) (type power_in))
(pin (num 40) (name GPIO21) (type BiDi))))
(libpart (lib switches) (part SW_Push)
(description "Push button switch, generic, two pins")
(fields
(field (name Reference) SW)
(field (name Value) SW_Push))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib conn) (part Screw_Terminal_1x02)
(description "2-pin screw terminal connector")
(footprints
(fp bornier2)
(fp TerminalBlock*2pol))
(fields
(field (name Reference) J)
(field (name Value) Screw_Terminal_1x02))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive)))))
(libraries
(library (logical cui-ml)
(uri /Users/mike/Documents/KiCAD/libraries/cui-ml.lib))
(library (logical Raspberry-ml)
(uri /Users/mike/Documents/KiCAD/libraries/Raspberry-ml.lib))
(library (logical device)
(uri "/Library/Application Support/kicad/library/device.lib"))
(library (logical memory-ml)
(uri /Users/mike/Documents/KiCAD/libraries/memory-ml.lib))
(library (logical onsemi-ml)
(uri /Users/mike/Documents/KiCAD/libraries/onsemi-ml.lib))
(library (logical conn)
(uri "/Library/Application Support/kicad/library/conn.lib"))
(library (logical 74xx)
(uri "/Library/Application Support/kicad/library/74xx.lib"))
(library (logical regul)
(uri "/Library/Application Support/kicad/library/regul.lib"))
(library (logical interface)
(uri "/Library/Application Support/kicad/library/interface.lib"))
(library (logical switches)
(uri "/Library/Application Support/kicad/library/switches.lib"))
(library (logical maxim)
(uri "/Library/Application Support/kicad/library/maxim.lib")))
(nets
(net (code 1) (name "Net-(BT1-Pad1)")
(node (ref U7) (pin 6))
(node (ref BT1) (pin 1)))
(net (code 2) (name +3.3VA)
(node (ref C11) (pin 1))
(node (ref C4) (pin 1))
(node (ref U4) (pin 4))
(node (ref U2) (pin 4))
(node (ref C14) (pin 2))
(node (ref C13) (pin 2))
(node (ref U6) (pin 3))
(node (ref R4) (pin 1))
(node (ref C3) (pin 1))
(node (ref C15) (pin 2))
(node (ref U3) (pin 4))
(node (ref C2) (pin 1))
(node (ref C10) (pin 2))
(node (ref P1) (pin 3))
(node (ref U8) (pin 3)))
(net (code 3) (name +5V)
(node (ref U8) (pin 1))
(node (ref C12) (pin 1))
(node (ref BZ1) (pin 1))
(node (ref J1) (pin 2))
(node (ref J1) (pin 4)))
(net (code 4) (name GND)
(node (ref R7) (pin 1))
(node (ref U8) (pin 2))
(node (ref P1) (pin 1))
(node (ref P2) (pin 3))
(node (ref U7) (pin 5))
(node (ref Q1) (pin 2))
(node (ref J1) (pin 39))
(node (ref U2) (pin 1))
(node (ref U1) (pin 1))
(node (ref U1) (pin 2))
(node (ref SW1) (pin 2))
(node (ref U6) (pin 1))
(node (ref BT1) (pin 2))
(node (ref C9) (pin 2))
(node (ref U5) (pin 8))
(node (ref C8) (pin 1))
(node (ref C10) (pin 1))
(node (ref U1) (pin 4))
(node (ref C1) (pin 2))
(node (ref C2) (pin 2))
(node (ref U3) (pin 1))
(node (ref U1) (pin 3))
(node (ref J1) (pin 6))
(node (ref J1) (pin 9))
(node (ref J1) (pin 20))
(node (ref J1) (pin 30))
(node (ref J1) (pin 14))
(node (ref J1) (pin 34))
(node (ref J1) (pin 25))
(node (ref C3) (pin 2))
(node (ref U4) (pin 1))
(node (ref C4) (pin 2))
(node (ref C12) (pin 2))
(node (ref C11) (pin 2))
(node (ref C15) (pin 1))
(node (ref C14) (pin 1))
(node (ref C13) (pin 1)))
(net (code 5) (name "Net-(BZ1-Pad2)")
(node (ref BZ1) (pin 2))
(node (ref Q1) (pin 3)))
(net (code 6) (name /TC_CE)
(node (ref U5) (pin 1))
(node (ref J1) (pin 24)))
(net (code 7) (name /RX)
(node (ref J1) (pin 10))
(node (ref P2) (pin 2)))
(net (code 8) (name /TX)
(node (ref P2) (pin 1))
(node (ref J1) (pin 8)))
(net (code 9) (name "Net-(J1-Pad26)")
(node (ref J1) (pin 26)))
(net (code 10) (name "Net-(J1-Pad35)")
(node (ref J1) (pin 35)))
(net (code 11) (name "Net-(J1-Pad15)")
(node (ref J1) (pin 15)))
(net (code 12) (name "Net-(J1-Pad33)")
(node (ref J1) (pin 33)))
(net (code 13) (name "Net-(J1-Pad13)")
(node (ref J1) (pin 13)))
(net (code 14) (name "Net-(J1-Pad32)")
(node (ref J1) (pin 32)))
(net (code 15) (name "Net-(J1-Pad22)")
(node (ref J1) (pin 22)))
(net (code 16) (name "Net-(J1-Pad12)")
(node (ref J1) (pin 12)))
(net (code 17) (name "Net-(J1-Pad31)")
(node (ref J1) (pin 31)))
(net (code 18) (name "Net-(J1-Pad11)")
(node (ref J1) (pin 11)))
(net (code 19) (name "Net-(J1-Pad40)")
(node (ref J1) (pin 40)))
(net (code 20) (name "Net-(R1-Pad2)")
(node (ref U1) (pin 7))
(node (ref SW1) (pin 1))
(node (ref R1) (pin 2)))
(net (code 21) (name "Net-(J1-Pad19)")
(node (ref J1) (pin 19)))
(net (code 22) (name "Net-(J1-Pad38)")
(node (ref J1) (pin 38)))
(net (code 23) (name "Net-(J1-Pad37)")
(node (ref J1) (pin 37)))
(net (code 24) (name "Net-(J1-Pad36)")
(node (ref J1) (pin 36)))
(net (code 25) (name /ID_SD)
(node (ref R2) (pin 2))
(node (ref J1) (pin 27))
(node (ref U1) (pin 5)))
(net (code 26) (name /TC_A0)
(node (ref U5) (pin 2))
(node (ref J1) (pin 18)))
(net (code 27) (name /TC_A1)
(node (ref J1) (pin 16))
(node (ref U5) (pin 3)))
(net (code 28) (name "Net-(U7-Pad4)")
(node (ref U7) (pin 4)))
(net (code 29) (name "Net-(U7-Pad3)")
(node (ref U7) (pin 3)))
(net (code 30) (name "Net-(U7-Pad1)")
(node (ref U7) (pin 1)))
(net (code 31) (name /TC_CLK)
(node (ref J1) (pin 23))
(node (ref U2) (pin 5))
(node (ref U3) (pin 5))
(node (ref U4) (pin 5)))
(net (code 32) (name /TC_MISO)
(node (ref U2) (pin 7))
(node (ref U3) (pin 7))
(node (ref U4) (pin 7))
(node (ref J1) (pin 21)))
(net (code 33) (name /ALERT)
(node (ref Q1) (pin 1))
(node (ref J1) (pin 29))
(node (ref R7) (pin 2)))
(net (code 34) (name "Net-(U5-Pad12)")
(node (ref U5) (pin 12)))
(net (code 35) (name "Net-(U5-Pad11)")
(node (ref U5) (pin 11)))
(net (code 36) (name "Net-(U5-Pad10)")
(node (ref U5) (pin 10)))
(net (code 37) (name "Net-(U5-Pad9)")
(node (ref U5) (pin 9)))
(net (code 38) (name +3V3)
(node (ref C9) (pin 1))
(node (ref J1) (pin 17))
(node (ref U1) (pin 8))
(node (ref C1) (pin 1))
(node (ref U7) (pin 2))
(node (ref R6) (pin 1))
(node (ref R5) (pin 1))
(node (ref J1) (pin 1))
(node (ref U5) (pin 15))
(node (ref U5) (pin 14))
(node (ref U5) (pin 13))
(node (ref U5) (pin 16))
(node (ref C8) (pin 2))
(node (ref R1) (pin 1))
(node (ref R2) (pin 1))
(node (ref R3) (pin 1)))
(net (code 39) (name "Net-(U5-Pad7)")
(node (ref U5) (pin 7)))
(net (code 40) (name /ID_SC)
(node (ref R3) (pin 2))
(node (ref U1) (pin 6))
(node (ref J1) (pin 28)))
(net (code 41) (name /T_SDA)
(node (ref U7) (pin 7))
(node (ref J1) (pin 3))
(node (ref R5) (pin 2)))
(net (code 42) (name /T_SCL)
(node (ref J1) (pin 5))
(node (ref U7) (pin 8))
(node (ref R6) (pin 2)))
(net (code 43) (name /T_OW)
(node (ref U6) (pin 2))
(node (ref R4) (pin 2))
(node (ref J1) (pin 7))
(node (ref P1) (pin 2)))
(net (code 44) (name /~TC_CS3~)
(node (ref U4) (pin 6))
(node (ref U5) (pin 6)))
(net (code 45) (name /~TC_CS2~)
(node (ref U3) (pin 6))
(node (ref U5) (pin 5)))
(net (code 46) (name /~TC_CS1~)
(node (ref U5) (pin 4))
(node (ref U2) (pin 6)))
(net (code 47) (name /TC3-)
(node (ref C7) (pin 2))
(node (ref J4) (pin 2))
(node (ref U4) (pin 2)))
(net (code 48) (name /TC3+)
(node (ref C7) (pin 1))
(node (ref J4) (pin 1))
(node (ref U4) (pin 3)))
(net (code 49) (name /TC2-)
(node (ref C6) (pin 2))
(node (ref U3) (pin 2))
(node (ref J3) (pin 2)))
(net (code 50) (name /TC1-)
(node (ref U2) (pin 2))
(node (ref C5) (pin 2))
(node (ref J2) (pin 2)))
(net (code 51) (name /TC2+)
(node (ref U3) (pin 3))
(node (ref C6) (pin 1))
(node (ref J3) (pin 1)))
(net (code 52) (name /TC1+)
(node (ref U2) (pin 3))
(node (ref C5) (pin 1))
(node (ref J2) (pin 1)))))