-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSNModule.net
1830 lines (1830 loc) · 77.7 KB
/
SNModule.net
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(export (version D)
(design
(source W:\KicadStuff\SN_Module\SN2_Extensio\SNModule.sch)
(date "21.02.2021 19:05:38")
(tool "Eeschema (5.1.9)-1")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title "Snapmaker2 CANbus extension")
(company)
(rev 1)
(date 2021-01-16)
(source SNModule.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 2) (name /ADC_SPI/) (tstamps /5FF0E871/)
(title_block
(title "Snapmaker2 CANbus extension")
(company)
(rev 1)
(date 2021-01-16)
(source ADC.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 3) (name /Revisions/) (tstamps /602057BA/)
(title_block
(title)
(company)
(rev)
(date)
(source Revisions.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref U1)
(value Teensy4.0)
(footprint TeensyFootprints:Teensy40_THT)
(datasheet https://www.pjrc.com/store/teensy40.html)
(fields
(field (name Manufacturer_Name) Adafruit)
(field (name Manufacturer_Part_Number) 4323)
(field (name "Mouser Part Number") 485-4323))
(libsource (lib Teensy) (part Teensy4.0) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FEB52F0))
(comp (ref J1)
(value DB9_Male_MountingHoles)
(footprint SamacSys_Parts:D09P23A4GV00LF)
(datasheet https://www.mouser.ch/datasheet/2/18/c01-8646-0743-1303348.pdf)
(fields
(field (name Manufacturer_Name) "Amphenol FCI ")
(field (name Manufacturer_Part_Number) "D09P23A4GV00LF ")
(field (name "Mouser Part Number") 649-D09P23A4GV00LF))
(libsource (lib Connector) (part DB9_Male_MountingHoles) (description "9-pin male D-SUB connector, Mounting Hole"))
(sheetpath (names /) (tstamps /))
(tstamp 5FEC0DAA))
(comp (ref U2)
(value MCP2562-E-P)
(footprint Housings_DIP:DIP-8_W7.62mm_Socket)
(datasheet https://www.mouser.ch/datasheet/2/268/20005167C-1512552.pdf)
(fields
(field (name Manufacturer_Name) "Microchip Technology ")
(field (name Manufacturer_Part_Number) MCP2562-E/P)
(field (name "Mouser Part Number") 579-MCP2562-E/P))
(libsource (lib Interface_CAN_LIN) (part MCP2562-E-P) (description "High-Speed CAN Transceiver, 1Mbps, 5V supply, Vio pin, -40C to +125C, DIP-8"))
(sheetpath (names /) (tstamps /))
(tstamp 5FEB8662))
(comp (ref J12)
(value Conn_01x04)
(footprint Socket_Strips:Socket_Strip_Straight_1x04_Pitch2.54mm)
(datasheet https://www.mouser.ch/datasheet/2/527/slw-1370256.pdf)
(fields
(field (name Manufacturer_Name) Samtec)
(field (name Manufacturer_Part_Number) SLW-104-01-T-S)
(field (name "Mouser Part Number") 200-SLW10401TS))
(libsource (lib Connector_Generic) (part Conn_01x04) (description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5FEC5B57))
(comp (ref J14)
(value Conn_01x02)
(footprint Pin_Headers:Pin_Header_Straight_1x02_Pitch2.54mm)
(datasheet https://www.mouser.ch/datasheet/2/527/slw-1370256.pdf)
(fields
(field (name Manufacturer_Name) Samtec)
(field (name Manufacturer_Part_Number) SLW-102-01-T-S)
(field (name "Mouser Part Number") 200-SLW10201TS))
(libsource (lib Connector_Generic) (part Conn_01x02) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5FF4F83D))
(comp (ref BZ1)
(value Buzzer)
(footprint "Blanket Github additions:Buzzer_TDK_12.2x6.5RM5")
(datasheet https://product.tdk.com/info/en/catalog/datasheets/piezoelectronic_buzzer_ps_en.pdf)
(fields
(field (name Manufacturer_Name) TDK)
(field (name Manufacturer_Part_Number) PS1240P02BT)
(field (name "Mouser Part Number") 810-PS1240P02BT))
(libsource (lib Device) (part Buzzer) (description "Buzzer, polarized"))
(sheetpath (names /) (tstamps /))
(tstamp 6002F13D))
(comp (ref SW2)
(value SW_Push)
(footprint Buttons_Switches_THT:SW_PUSH_6mm_h4.3mm)
(datasheet https://www.mouser.ch/datasheet/2/26/ADTS6-ADTSM-KTSC6-263747-1158247.pdf)
(fields
(field (name Manufacturer_Name) Apem)
(field (name Manufacturer_Part_Number) ADTS61KV)
(field (name "Mouser Part Number") 642-ADTS61KV))
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 6013CD68))
(comp (ref SW3)
(value SW_Push)
(footprint Buttons_Switches_THT:SW_PUSH_6mm_h4.3mm)
(datasheet https://www.mouser.ch/datasheet/2/26/ADTS6-ADTSM-KTSC6-263747-1158247.pdf)
(fields
(field (name Manufacturer_Name) Apem)
(field (name Manufacturer_Part_Number) ADTS61KV)
(field (name "Mouser Part Number") 642-ADTS61KV))
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 6013D57D))
(comp (ref U6)
(value TSR_1-2450)
(footprint Converters_DCDC_ACDC:DCDC-Conv_TRACO_TSR-1)
(datasheet https://www.mouser.ch/datasheet/2/687/tsr05-536572.pdf)
(fields
(field (name Manufacturer_Name) "TRACO Power ")
(field (name Manufacturer_Part_Number) TSR0.5-2450)
(field (name "Mouser Part Number") 495-TSR0.5-2450))
(libsource (lib Regulator_Switching) (part TSR_1-2450) (description "1A step-down regulator module, fixed 5V output voltage, 5-36V input voltage, -40°C to +85°C temperature range, TO-220 compatible LM78xx replacement"))
(sheetpath (names /) (tstamps /))
(tstamp 6022A77E))
(comp (ref F1)
(value 500mA)
(footprint Fuse_Holders_and_Fuses:Fuse_SMD1206_HandSoldering)
(datasheet https://www.mouser.ch/datasheet/2/643/ds-CP-0zcj-series-1664160.pdf)
(fields
(field (name Manufacturer_Name) "Bel Fuse ")
(field (name Manufacturer_Part_Number) "0ZCJ0025AF2E ")
(field (name "Mouser Part Number") 530-0ZCJ0025AF2E))
(libsource (lib Device) (part Polyfuse_Small) (description "Resettable fuse, polymeric positive temperature coefficient, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 600649FD))
(comp (ref C1)
(value 4.7uF)
(footprint Capacitors_SMD:C_1206_HandSoldering)
(datasheet https://www.mouser.ch/datasheet/2/212/KEM_C1006_X5R_SMD-1103249.pdf)
(fields
(field (name Manufacturer_Name) KEMET)
(field (name Manufacturer_Part_Number) C1206C475K5PACTU)
(field (name "Mouser Part Number") 80-C1206C475K5P))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 60325EF2))
(comp (ref C2)
(value 4.7uF)
(footprint Capacitors_SMD:C_1206_HandSoldering)
(datasheet https://www.mouser.ch/datasheet/2/212/KEM_C1006_X5R_SMD-1103249.pdf)
(fields
(field (name Manufacturer_Name) KEMET)
(field (name Manufacturer_Part_Number) C1206C475K5PACTU)
(field (name "Mouser Part Number") 80-C1206C475K5P))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 6032675D))
(comp (ref C3)
(value 4.7uF)
(footprint Capacitors_SMD:C_1206_HandSoldering)
(datasheet https://www.mouser.ch/datasheet/2/212/KEM_C1006_X5R_SMD-1103249.pdf)
(fields
(field (name Manufacturer_Name) KEMET)
(field (name Manufacturer_Part_Number) C1206C475K5PACTU)
(field (name "Mouser Part Number") 80-C1206C475K5P))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 60326A6F))
(comp (ref L1)
(value 10uH)
(footprint Inductors_SMD:L_TracoPower_TCK-047_5.2x5.8mm)
(datasheet https://www.mouser.ch/datasheet/2/687/tck047-519418.pdf)
(fields
(field (name Manufacturer_Name) "TRACO Power ")
(field (name Manufacturer_Part_Number) "TCK-047 ")
(field (name "Mouser Part Number") "495-TCK-047 "))
(libsource (lib Device) (part L) (description Inductor))
(sheetpath (names /) (tstamps /))
(tstamp 60327183))
(comp (ref C4)
(value 100uF)
(footprint Capacitors_SMD:CP_Elec_6.3x7.7)
(datasheet https://www.mouser.ch/datasheet/2/315/panasonic_05052020_Capacitor_Lytic_SMD_Halogen_Fre-1843155.pdf)
(fields
(field (name Manufacturer_Name) Panasonic)
(field (name Manufacturer_Part_Number) EEE-FTH101XAL)
(field (name "Mouser Part Number") 667-EEE-FTH101XAL))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 603DBE78))
(comp (ref J13)
(value Conn_01x04)
(footprint Socket_Strips:Socket_Strip_Straight_1x04_Pitch2.54mm)
(datasheet https://www.mouser.ch/datasheet/2/527/slw-1370256.pdf)
(fields
(field (name Manufacturer_Name) Samtec)
(field (name Manufacturer_Part_Number) SLW-104-01-T-S)
(field (name "Mouser Part Number") 200-SLW10401TS))
(libsource (lib Connector_Generic) (part Conn_01x04) (description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 60091551))
(comp (ref R2)
(value 4k7)
(footprint Resistors_SMD:R_1206_HandSoldering)
(datasheet https://www.mouser.ch/datasheet/2/427/crcwce3-1762584.pdf)
(fields
(field (name Manufacturer_Name) "Vishay / Dale")
(field (name Manufacturer_Part_Number) CRCW12064K70FKEA)
(field (name "Mouser Part Number") 71-CRCW1206-4.7K-E3))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5FFD5052))
(comp (ref R1)
(value 4k7)
(footprint Resistors_SMD:R_1206_HandSoldering)
(datasheet https://www.mouser.ch/datasheet/2/427/crcwce3-1762584.pdf)
(fields
(field (name Manufacturer_Name) "Vishay / Dale")
(field (name Manufacturer_Part_Number) CRCW12064K70FKEA)
(field (name "Mouser Part Number") 71-CRCW1206-4.7K-E3))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5FFD451D))
(comp (ref U4)
(value FM24C64B)
(footprint Housings_SOIC:SOIC-8_3.9x4.9mm_Pitch1.27mm)
(datasheet http://www.cypress.com/file/41651/download)
(fields
(field (name Manufacturer_Name) "Cypress Semiconductor")
(field (name Manufacturer_Part_Number) FM24C64B-G)
(field (name "Mouser Part Number") 877-FM24C64B-G))
(libsource (lib Memory_NVRAM) (part FM24C64B) (description "64Kb serial FRAM nonvolatile Memory, SOIC-8"))
(sheetpath (names /) (tstamps /))
(tstamp 5FEBAE81))
(comp (ref U7)
(value EN11-HSM1AF15)
(footprint SamacSys_Parts:EN11HSM1AF15)
(datasheet https://componentsearchengine.com/Datasheets/1/EN11-HSM1AF15.pdf)
(fields
(field (name Description) "BI TECHNOLOGIES / TT ELECTRONICS - EN11-HSM1AF15 - INCREMENTAL ENCODER")
(field (name Height) 22.1)
(field (name Manufacturer_Name) "BI Technologies")
(field (name Manufacturer_Part_Number) EN11-HSM1AF15)
(field (name "Mouser Part Number") 858-EN11-HSM1AF15))
(libsource (lib Samacsys) (part EN11-HSM1AF15) (description "BI TECHNOLOGIES / TT ELECTRONICS - EN11-HSM1AF15 - INCREMENTAL ENCODER"))
(sheetpath (names /) (tstamps /))
(tstamp 5FFD471D))
(comp (ref J11)
(value Conn_01x04)
(footprint Socket_Strips:Socket_Strip_Straight_1x04_Pitch2.54mm)
(datasheet https://www.mouser.ch/datasheet/2/527/slw-1370256.pdf)
(fields
(field (name Manufacturer_Name) Samtec)
(field (name Manufacturer_Part_Number) SLW-104-01-T-S)
(field (name "Mouser Part Number") 200-SLW10401TS))
(libsource (lib Connector_Generic) (part Conn_01x04) (description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5FFEA117))
(comp (ref H4)
(value MountingHole_Pad)
(footprint Mounting_Holes:MountingHole_4.3mm_M4_Pad_Via)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5FFFF73C))
(comp (ref H3)
(value MountingHole_Pad)
(footprint Mounting_Holes:MountingHole_4.3mm_M4_Pad_Via)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5FFFFE51))
(comp (ref H2)
(value MountingHole_Pad)
(footprint Mounting_Holes:MountingHole_4.3mm_M4_Pad_Via)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 600002EE))
(comp (ref H1)
(value MountingHole_Pad)
(footprint Mounting_Holes:MountingHole_4.3mm_M4_Pad_Via)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 6000072C))
(comp (ref D1)
(value D_Schottky)
(footprint Diodes_SMD:D_1206)
(datasheet https://www.mouser.ch/datasheet/2/40/schottky-776407.pdf)
(fields
(field (name Manufacturer_Name) AVX)
(field (name Manufacturer_Part_Number) SD1206T040S1R0)
(field (name "Mouser Part Number") 581-SD1206T040S1R0))
(libsource (lib Device) (part D_Schottky) (description "Schottky diode"))
(sheetpath (names /) (tstamps /))
(tstamp 6014A409))
(comp (ref R11)
(value 200R)
(footprint Resistors_SMD:R_1206_HandSoldering)
(datasheet https://www.mouser.ch/datasheet/2/427/crcwce3-1762584.pdf)
(fields
(field (name Manufacturer_Name) "Vishay / Dale")
(field (name Manufacturer_Part_Number) CRCW1206200RFKEA)
(field (name "Mouser Part Number") 71-CRCW1206-200-E3))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5FF69C98))
(comp (ref D2)
(value LED)
(footprint LEDs:LED_D5.0mm_FlatTop)
(datasheet https://www.mouser.ch/datasheet/2/239/lite-on_lite-s-a0003820128-1-1737731.pdf)
(fields
(field (name Manufacturer_Name) Lite-On)
(field (name Manufacturer_Part_Number) LTL-307GE)
(field (name "Mouser Part Number") 859-LTL-307GE))
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 6008FE63))
(comp (ref D3)
(value LED)
(footprint LEDs:LED_D5.0mm_FlatTop)
(datasheet https://www.mouser.ch/datasheet/2/239/lite-on_lite-s-a0003820128-1-1737731.pdf)
(fields
(field (name Manufacturer_Name) Lite-On)
(field (name Manufacturer_Part_Number) LTL-307GE)
(field (name "Mouser Part Number") 859-LTL-307GE))
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 6009072B))
(comp (ref D4)
(value LED)
(footprint LEDs:LED_D5.0mm_FlatTop)
(datasheet https://www.mouser.ch/datasheet/2/239/lite-on_lite-s-a0003820128-1-1737731.pdf)
(fields
(field (name Manufacturer_Name) Lite-On)
(field (name Manufacturer_Part_Number) LTL-307GE)
(field (name "Mouser Part Number") 859-LTL-307GE))
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 60090A09))
(comp (ref FID3)
(value Fiducial)
(footprint Fiducials:Fiducial_0.5mm_Dia_1mm_Outer)
(datasheet ~)
(libsource (lib Mechanical) (part Fiducial) (description "Fiducial Marker"))
(sheetpath (names /) (tstamps /))
(tstamp 60014620))
(comp (ref FID2)
(value Fiducial)
(footprint Fiducials:Fiducial_0.5mm_Dia_1mm_Outer)
(datasheet ~)
(libsource (lib Mechanical) (part Fiducial) (description "Fiducial Marker"))
(sheetpath (names /) (tstamps /))
(tstamp 60014CC0))
(comp (ref FID1)
(value Fiducial)
(footprint Fiducials:Fiducial_0.5mm_Dia_1mm_Outer)
(datasheet ~)
(libsource (lib Mechanical) (part Fiducial) (description "Fiducial Marker"))
(sheetpath (names /) (tstamps /))
(tstamp 60014ECF))
(comp (ref C9)
(value 0.1uF)
(footprint Capacitors_SMD:C_1206_HandSoldering)
(datasheet https://www.mouser.ch/datasheet/2/427/vjcommercialseries-1764145.pdf)
(fields
(field (name Manufacturer_Name) "Vishay / Vitramon")
(field (name Manufacturer_Part_Number) VJ1206Y104KXXAC)
(field (name "Mouser Part Number") 77-VJ1206Y104KXXAC))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 600386A9))
(comp (ref C8)
(value 0.1uF)
(footprint Capacitors_SMD:C_1206_HandSoldering)
(datasheet https://www.mouser.ch/datasheet/2/427/vjcommercialseries-1764145.pdf)
(fields
(field (name Manufacturer_Name) "Vishay / Vitramon")
(field (name Manufacturer_Part_Number) VJ1206Y104KXXAC)
(field (name "Mouser Part Number") 77-VJ1206Y104KXXAC))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 600391B7))
(comp (ref C7)
(value 0.1uF)
(footprint Capacitors_SMD:C_1206_HandSoldering)
(datasheet https://www.mouser.ch/datasheet/2/427/vjcommercialseries-1764145.pdf)
(fields
(field (name Manufacturer_Name) "Vishay / Vitramon")
(field (name Manufacturer_Part_Number) VJ1206Y104KXXAC)
(field (name "Mouser Part Number") 77-VJ1206Y104KXXAC))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 6003957E))
(comp (ref C6)
(value 0.1uF)
(footprint Capacitors_SMD:C_1206_HandSoldering)
(datasheet https://www.mouser.ch/datasheet/2/427/vjcommercialseries-1764145.pdf)
(fields
(field (name Manufacturer_Name) "Vishay / Vitramon")
(field (name Manufacturer_Part_Number) VJ1206Y104KXXAC)
(field (name "Mouser Part Number") 77-VJ1206Y104KXXAC))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 60055D79))
(comp (ref R19)
(value 200R)
(footprint Resistors_SMD:R_1206_HandSoldering)
(datasheet https://www.mouser.ch/datasheet/2/427/crcwce3-1762584.pdf)
(fields
(field (name Manufacturer_Name) "Vishay / Dale")
(field (name Manufacturer_Part_Number) CRCW1206200RFKEA)
(field (name "Mouser Part Number") 71-CRCW1206-200-E3))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 602225BF))
(comp (ref R17)
(value 200R)
(footprint Resistors_SMD:R_1206_HandSoldering)
(datasheet https://www.mouser.ch/datasheet/2/427/crcwce3-1762584.pdf)
(fields
(field (name Manufacturer_Name) "Vishay / Dale")
(field (name Manufacturer_Part_Number) CRCW1206200RFKEA)
(field (name "Mouser Part Number") 71-CRCW1206-200-E3))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 60222E14))
(comp (ref R18)
(value 200R)
(footprint Resistors_SMD:R_1206_HandSoldering)
(datasheet https://www.mouser.ch/datasheet/2/427/crcwce3-1762584.pdf)
(fields
(field (name Manufacturer_Name) "Vishay / Dale")
(field (name Manufacturer_Part_Number) CRCW1206200RFKEA)
(field (name "Mouser Part Number") 71-CRCW1206-200-E3))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 60223189))
(comp (ref R16)
(value 200R)
(footprint Resistors_SMD:R_1206_HandSoldering)
(datasheet https://www.mouser.ch/datasheet/2/427/crcwce3-1762584.pdf)
(fields
(field (name Manufacturer_Name) "Vishay / Dale")
(field (name Manufacturer_Part_Number) CRCW1206200RFKEA)
(field (name "Mouser Part Number") 71-CRCW1206-200-E3))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 6022356E))
(comp (ref R15)
(value 200R)
(footprint Resistors_SMD:R_1206_HandSoldering)
(datasheet https://www.mouser.ch/datasheet/2/427/crcwce3-1762584.pdf)
(fields
(field (name Manufacturer_Name) "Vishay / Dale")
(field (name Manufacturer_Part_Number) CRCW1206200RFKEA)
(field (name "Mouser Part Number") 71-CRCW1206-200-E3))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 6024B34B))
(comp (ref R20)
(value 68k)
(footprint Resistors_SMD:R_1206_HandSoldering)
(datasheet https://www.mouser.ch/datasheet/2/427/dcrcwe3-1762152.pdf)
(fields
(field (name Manufacturer_Name) "Vishay / Dale")
(field (name Manufacturer_Part_Number) CRCW120668K0FKEA)
(field (name "Mouser Part Number") 71-CRCW1206-68K-E3))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 60038962))
(comp (ref R13)
(value 200R)
(footprint Resistors_SMD:R_1206_HandSoldering)
(datasheet https://www.mouser.ch/datasheet/2/427/crcwce3-1762584.pdf)
(fields
(field (name Manufacturer_Name) "Vishay / Dale")
(field (name Manufacturer_Part_Number) CRCW1206200RFKEA)
(field (name "Mouser Part Number") 71-CRCW1206-200-E3))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5FF6A611))
(comp (ref R12)
(value 200R)
(footprint Resistors_SMD:R_1206_HandSoldering)
(datasheet https://www.mouser.ch/datasheet/2/427/crcwce3-1762584.pdf)
(fields
(field (name Manufacturer_Name) "Vishay / Dale")
(field (name Manufacturer_Part_Number) CRCW1206200RFKEA)
(field (name "Mouser Part Number") 71-CRCW1206-200-E3))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5FF6A384))
(comp (ref C5)
(value 100uF)
(footprint Capacitors_SMD:CP_Elec_6.3x7.7)
(datasheet https://www.mouser.ch/datasheet/2/315/panasonic_05052020_Capacitor_Lytic_SMD_Halogen_Fre-1843155.pdf)
(fields
(field (name Manufacturer_Name) Panasonic)
(field (name Manufacturer_Part_Number) EEE-FTH101XAL)
(field (name "Mouser Part Number") 667-EEE-FTH101XAL))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 60144572))
(comp (ref D5)
(value D_Schottky)
(footprint Diodes_SMD:D_2114)
(datasheet https://www.mouser.ch/datasheet/2/40/schottky-776407.pdf)
(fields
(field (name Manufacturer_Name) AVX)
(field (name Manufacturer_Part_Number) SD2114S040S8R0)
(field (name "Mouser Part Number") 581-SD2114S040S8R0))
(libsource (lib Device) (part D_Schottky) (description "Schottky diode"))
(sheetpath (names /) (tstamps /))
(tstamp 601250AD))
(comp (ref R14)
(value 120R)
(footprint Resistors_SMD:R_1206_HandSoldering)
(datasheet https://www.mouser.ch/datasheet/2/427/crcwce3-1762584.pdf)
(fields
(field (name Manufacturer_Name) "Vishay / Dale")
(field (name Manufacturer_Part_Number) "CRCW1206120RFKEAC ")
(field (name "Mouser Part Number") 71-CRCW1206120RFKEAC))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 6002C5F3))
(comp (ref J2)
(value DB9_Female_MountingHoles)
(footprint SamacSys_Parts:D09S23A4GV00LF)
(datasheet https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/c01-8646-0755.pdf)
(fields
(field (name Manufacturer_Name) "Amphenol FCI ")
(field (name Manufacturer_Part_Number) "D09S23A4GV00LF ")
(field (name "Mouser Part Number") 649-D09S23A4GV00LF))
(libsource (lib Connector) (part DB9_Female_MountingHoles) (description "9-pin female D-SUB connector, Mounting Hole"))
(sheetpath (names /) (tstamps /))
(tstamp 5FEDC114))
(comp (ref U3)
(value MCP2562-E-P)
(footprint Housings_DIP:DIP-8_W7.62mm_Socket)
(datasheet https://www.mouser.ch/datasheet/2/268/20005167C-1512552.pdf)
(fields
(field (name Manufacturer_Name) "Microchip Technology ")
(field (name Manufacturer_Part_Number) MCP2562-E/P)
(field (name "Mouser Part Number") 579-MCP2562-E/P))
(libsource (lib Interface_CAN_LIN) (part MCP2562-E-P) (description "High-Speed CAN Transceiver, 1Mbps, 5V supply, Vio pin, -40C to +125C, DIP-8"))
(sheetpath (names /) (tstamps /))
(tstamp 5FEB93F9))
(comp (ref R22)
(value 1M)
(footprint Resistors_SMD:R_1206_HandSoldering)
(datasheet https://www.mouser.ch/datasheet/2/427/crcwce3-1762584.pdf)
(fields
(field (name Manufacturer_Name) "Vishay / Dale")
(field (name Manufacturer_Part_Number) CRCW12061M00FKEAC)
(field (name "Mouser Part Number") 71-CRCW12061M00FKEAC))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 60261E8F))
(comp (ref R21)
(value 1M)
(footprint Resistors_SMD:R_1206_HandSoldering)
(datasheet https://www.mouser.ch/datasheet/2/427/crcwce3-1762584.pdf)
(fields
(field (name Manufacturer_Name) "Vishay / Dale")
(field (name Manufacturer_Part_Number) CRCW12061M00FKEAC)
(field (name "Mouser Part Number") 71-CRCW12061M00FKEAC))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 60264864))
(comp (ref Q1)
(value BC337)
(footprint TO_SOT_Packages_THT:TO-92_Inline_Wide)
(datasheet https://diotec.com/tl_files/diotec/files/pdf/datasheets/bc337.pdf)
(fields
(field (name Manufacturer_Name) "ON Semiconductor / Fairchild")
(field (name Manufacturer_Part_Number) BC33716TFR)
(field (name "Mouser Part Number") 512-BC33716TFR))
(libsource (lib Transistor_BJT) (part BC337) (description "0.8A Ic, 45V Vce, NPN Transistor, TO-92"))
(sheetpath (names /) (tstamps /))
(tstamp 602BF7CA))
(comp (ref U8)
(value TLP785)
(footprint Housings_DIP:DIP-4_W7.62mm_LongPads)
(datasheet https://toshiba.semicon-storage.com/info/docget.jsp?did=10569&prodName=TLP785)
(fields
(field (name Manufacturer_Name) Toshiba)
(field (name Manufacturer_Part_Number) "TLP785(D4-GR,F")
(field (name "Mouser Part Number") 757-TLP785D4-GRF))
(libsource (lib Isolator) (part TLP785) (description "DC Optocoupler, Vce 80V, CTR 50-200%, DIP4"))
(sheetpath (names /) (tstamps /))
(tstamp 6035AE29))
(comp (ref R23)
(value 120R)
(footprint Resistors_SMD:R_1206_HandSoldering)
(datasheet https://www.mouser.ch/datasheet/2/427/crcwce3-1762584.pdf)
(fields
(field (name Manufacturer_Name) "Vishay / Dale")
(field (name Manufacturer_Part_Number) "CRCW1206120RFKEAC ")
(field (name "Mouser Part Number") 71-CRCW1206120RFKEAC))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 6035B31C))
(comp (ref J16)
(value TBL009-254-02GY-2GY)
(footprint SamacSys_Parts:TBL00925402GY2GY)
(datasheet https://componentsearchengine.com/Datasheets/1/TBL009-254-02GY-2GY.pdf)
(fields
(field (name Description) "Fixed Terminal Blocks Terminal block, screwless, 2.54, Horizontal, 2, Gray w Gray Button")
(field (name Height) 10.5)
(field (name Manufacturer_Name) "CUI Devices")
(field (name Manufacturer_Part_Number) TBL009-254-02GY-2GY)
(field (name "Mouser Part Number") 490-TBL00925402GY2GY))
(libsource (lib Samacsys) (part TBL009-254-02GY-2GY) (description "Fixed Terminal Blocks Terminal block, screwless, 2.54, Horizontal, 2, Gray w Gray Button"))
(sheetpath (names /) (tstamps /))
(tstamp 6035DE61))
(comp (ref D6)
(value CDSOT23-T24CAN)
(footprint TO_SOT_Packages_SMD:SOT-23)
(datasheet https://www.bourns.com/docs/Product-Datasheets/CDSOT23-T24CAN.pdf)
(fields
(field (name Description) "Bourns CDSOT23-T24CAN, Dual Bi-Directional ESD Protection Diode, 3-Pin SOT-23")
(field (name Height) 1.17)
(field (name Manufacturer_Name) Bourns)
(field (name Manufacturer_Part_Number) CDSOT23-T24CAN)
(field (name "Mouser Part Number") 652-CDSOT23-T24CAN)
(field (name "Mouser Price/Stock") https://www.mouser.co.uk/ProductDetail/Bourns/CDSOT23-T24CAN?qs=Z7P4xsdcg2LuAOb%2FzQ7xoQ%3D%3D))
(libsource (lib Samacsys) (part CDSOT23-T24CAN) (description "Bourns CDSOT23-T24CAN, Dual Bi-Directional ESD Protection Diode, 3-Pin SOT-23"))
(sheetpath (names /) (tstamps /))
(tstamp 602E7168))
(comp (ref D7)
(value CDSOT23-T24CAN)
(footprint TO_SOT_Packages_SMD:SOT-23)
(datasheet https://www.bourns.com/docs/Product-Datasheets/CDSOT23-T24CAN.pdf)
(fields
(field (name Description) "Bourns CDSOT23-T24CAN, Dual Bi-Directional ESD Protection Diode, 3-Pin SOT-23")
(field (name Height) 1.17)
(field (name Manufacturer_Name) Bourns)
(field (name Manufacturer_Part_Number) CDSOT23-T24CAN)
(field (name "Mouser Part Number") 652-CDSOT23-T24CAN)
(field (name "Mouser Price/Stock") https://www.mouser.co.uk/ProductDetail/Bourns/CDSOT23-T24CAN?qs=Z7P4xsdcg2LuAOb%2FzQ7xoQ%3D%3D))
(libsource (lib Samacsys) (part CDSOT23-T24CAN) (description "Bourns CDSOT23-T24CAN, Dual Bi-Directional ESD Protection Diode, 3-Pin SOT-23"))
(sheetpath (names /) (tstamps /))
(tstamp 602E944F))
(comp (ref JP1)
(value Jumper_NC_Small)
(footprint Pin_Headers:Pin_Header_Straight_1x02_Pitch2.54mm)
(datasheet https://www.mouser.ch/datasheet/2/222/SX1100-B-461401.pdf)
(fields
(field (name Manufacturer_Name) Kycon)
(field (name Manufacturer_Part_Number) SX1100-B)
(field (name "Mouser Part Number") 806-SX1100-B))
(libsource (lib Device) (part Jumper_NC_Small) (description "Jumper, normally closed, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 6002BAEA))
(comp (ref H5)
(value MountingHole_Pad)
(footprint Mounting_Holes:MountingHole_4.3mm_M4_Pad_Via)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 604E8F19))
(comp (ref H6)
(value MountingHole_Pad)
(footprint Mounting_Holes:MountingHole_4.3mm_M4_Pad_Via)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 605218AE))
(comp (ref U5)
(value MCP3008)
(footprint Housings_DIP:DIP-16_W7.62mm_Socket)
(datasheet https://www.mouser.ch/datasheet/2/268/21295b-72710.pdf)
(fields
(field (name Manufacturer_Name) "Microchip Technology ")
(field (name Manufacturer_Part_Number) "MCP3008-I/P ")
(field (name "Mouser Part Number") "579-MCP3008-I/P "))
(libsource (lib Analog_ADC) (part MCP3008) (description "A/D Converter, 10-Bit, 8-Channel, SPI Interface , 2.7V-5.5V"))
(sheetpath (names /ADC_SPI/) (tstamps /5FF0E871/))
(tstamp 5FF10AFF))
(comp (ref R3)
(value 27k)
(footprint Resistors_SMD:R_1206_HandSoldering)
(datasheet https://www.mouser.ch/datasheet/2/427/crcwce3-1762584.pdf)
(fields
(field (name Manufacturer_Name) "Vishay / Dale")
(field (name Manufacturer_Part_Number) CRCW120627K0FKEA)
(field (name "Mouser Part Number") 71-CRCW1206-27K-E3))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /ADC_SPI/) (tstamps /5FF0E871/))
(tstamp 5FF211F8))
(comp (ref R4)
(value 27k)
(footprint Resistors_SMD:R_1206_HandSoldering)
(datasheet https://www.mouser.ch/datasheet/2/427/crcwce3-1762584.pdf)
(fields
(field (name Manufacturer_Name) "Vishay / Dale")
(field (name Manufacturer_Part_Number) CRCW120627K0FKEA)
(field (name "Mouser Part Number") 71-CRCW1206-27K-E3))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /ADC_SPI/) (tstamps /5FF0E871/))
(tstamp 5FF21565))
(comp (ref R5)
(value 27k)
(footprint Resistors_SMD:R_1206_HandSoldering)
(datasheet https://www.mouser.ch/datasheet/2/427/crcwce3-1762584.pdf)
(fields
(field (name Manufacturer_Name) "Vishay / Dale")
(field (name Manufacturer_Part_Number) CRCW120627K0FKEA)
(field (name "Mouser Part Number") 71-CRCW1206-27K-E3))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /ADC_SPI/) (tstamps /5FF0E871/))
(tstamp 5FF21841))
(comp (ref R6)
(value 27k)
(footprint Resistors_SMD:R_1206_HandSoldering)
(datasheet https://www.mouser.ch/datasheet/2/427/crcwce3-1762584.pdf)
(fields
(field (name Manufacturer_Name) "Vishay / Dale")
(field (name Manufacturer_Part_Number) CRCW120627K0FKEA)
(field (name "Mouser Part Number") 71-CRCW1206-27K-E3))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /ADC_SPI/) (tstamps /5FF0E871/))
(tstamp 5FF21B77))
(comp (ref R7)
(value 27k)
(footprint Resistors_SMD:R_1206_HandSoldering)
(datasheet https://www.mouser.ch/datasheet/2/427/crcwce3-1762584.pdf)
(fields
(field (name Manufacturer_Name) "Vishay / Dale")
(field (name Manufacturer_Part_Number) CRCW120627K0FKEA)
(field (name "Mouser Part Number") 71-CRCW1206-27K-E3))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /ADC_SPI/) (tstamps /5FF0E871/))
(tstamp 5FF21E2F))
(comp (ref R8)
(value 27k)
(footprint Resistors_SMD:R_1206_HandSoldering)
(datasheet https://www.mouser.ch/datasheet/2/427/crcwce3-1762584.pdf)
(fields
(field (name Manufacturer_Name) "Vishay / Dale")
(field (name Manufacturer_Part_Number) CRCW120627K0FKEA)
(field (name "Mouser Part Number") 71-CRCW1206-27K-E3))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /ADC_SPI/) (tstamps /5FF0E871/))
(tstamp 5FF2209D))
(comp (ref R9)
(value 27k)
(footprint Resistors_SMD:R_1206_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /ADC_SPI/) (tstamps /5FF0E871/))
(tstamp 5FF222A3))
(comp (ref R10)
(value 27k)
(footprint Resistors_SMD:R_1206_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /ADC_SPI/) (tstamps /5FF0E871/))
(tstamp 5FF22517))
(comp (ref J3)
(value DB9_Male_MountingHoles)
(footprint SamacSys_Parts:D09P23A4GV00LF)
(datasheet https://www.mouser.ch/datasheet/2/18/c01-8646-0743-1303348.pdf)
(fields
(field (name Manufacturer_Name) "Amphenol FCI ")
(field (name Manufacturer_Part_Number) "D09P23A4GV00LF ")
(field (name "Mouser Part Number") 649-D09P23A4GV00LF))
(libsource (lib Connector) (part DB9_Male_MountingHoles) (description "9-pin male D-SUB connector, Mounting Hole"))
(sheetpath (names /ADC_SPI/) (tstamps /5FF0E871/))
(tstamp 6032F34B))
(comp (ref J17)
(value TBL009-254-02GY-2GY)
(footprint SamacSys_Parts:TBL00925402GY2GY)
(datasheet https://componentsearchengine.com/Datasheets/1/TBL009-254-02GY-2GY.pdf)
(fields
(field (name Description) "Fixed Terminal Blocks Terminal block, screwless, 2.54, Horizontal, 2, Gray w Gray Button")
(field (name Height) 10.5)
(field (name Manufacturer_Name) "CUI Devices")
(field (name Manufacturer_Part_Number) TBL009-254-02GY-2GY)
(field (name "Mouser Part Number") 490-TBL00925402GY2GY))
(libsource (lib Samacsys) (part TBL009-254-02GY-2GY) (description "Fixed Terminal Blocks Terminal block, screwless, 2.54, Horizontal, 2, Gray w Gray Button"))
(sheetpath (names /ADC_SPI/) (tstamps /5FF0E871/))
(tstamp 60352355))
(comp (ref J10)
(value TBL009-254-02GY-2GY)
(footprint SamacSys_Parts:TBL00925402GY2GY)
(datasheet https://componentsearchengine.com/Datasheets/1/TBL009-254-02GY-2GY.pdf)
(fields
(field (name Description) "Fixed Terminal Blocks Terminal block, screwless, 2.54, Horizontal, 2, Gray w Gray Button")
(field (name Height) 10.5)
(field (name Manufacturer_Name) "CUI Devices")
(field (name Manufacturer_Part_Number) TBL009-254-02GY-2GY)
(field (name "Mouser Part Number") 490-TBL00925402GY2GY))
(libsource (lib Samacsys) (part TBL009-254-02GY-2GY) (description "Fixed Terminal Blocks Terminal block, screwless, 2.54, Horizontal, 2, Gray w Gray Button"))
(sheetpath (names /ADC_SPI/) (tstamps /5FF0E871/))
(tstamp 6036130E))
(comp (ref J9)
(value TBL009-254-02GY-2GY)
(footprint SamacSys_Parts:TBL00925402GY2GY)
(datasheet https://componentsearchengine.com/Datasheets/1/TBL009-254-02GY-2GY.pdf)
(fields
(field (name Description) "Fixed Terminal Blocks Terminal block, screwless, 2.54, Horizontal, 2, Gray w Gray Button")
(field (name Height) 10.5)
(field (name Manufacturer_Name) "CUI Devices")
(field (name Manufacturer_Part_Number) TBL009-254-02GY-2GY)
(field (name "Mouser Part Number") 490-TBL00925402GY2GY))
(libsource (lib Samacsys) (part TBL009-254-02GY-2GY) (description "Fixed Terminal Blocks Terminal block, screwless, 2.54, Horizontal, 2, Gray w Gray Button"))
(sheetpath (names /ADC_SPI/) (tstamps /5FF0E871/))
(tstamp 6036180B))
(comp (ref J8)
(value TBL009-254-02GY-2GY)
(footprint SamacSys_Parts:TBL00925402GY2GY)
(datasheet https://componentsearchengine.com/Datasheets/1/TBL009-254-02GY-2GY.pdf)
(fields
(field (name Description) "Fixed Terminal Blocks Terminal block, screwless, 2.54, Horizontal, 2, Gray w Gray Button")
(field (name Height) 10.5)
(field (name Manufacturer_Name) "CUI Devices")
(field (name Manufacturer_Part_Number) TBL009-254-02GY-2GY)
(field (name "Mouser Part Number") 490-TBL00925402GY2GY))
(libsource (lib Samacsys) (part TBL009-254-02GY-2GY) (description "Fixed Terminal Blocks Terminal block, screwless, 2.54, Horizontal, 2, Gray w Gray Button"))
(sheetpath (names /ADC_SPI/) (tstamps /5FF0E871/))
(tstamp 60361F93))
(comp (ref J7)
(value TBL009-254-02GY-2GY)
(footprint SamacSys_Parts:TBL00925402GY2GY)
(datasheet https://componentsearchengine.com/Datasheets/1/TBL009-254-02GY-2GY.pdf)
(fields
(field (name Description) "Fixed Terminal Blocks Terminal block, screwless, 2.54, Horizontal, 2, Gray w Gray Button")
(field (name Height) 10.5)
(field (name Manufacturer_Name) "CUI Devices")
(field (name Manufacturer_Part_Number) TBL009-254-02GY-2GY)
(field (name "Mouser Part Number") 490-TBL00925402GY2GY))
(libsource (lib Samacsys) (part TBL009-254-02GY-2GY) (description "Fixed Terminal Blocks Terminal block, screwless, 2.54, Horizontal, 2, Gray w Gray Button"))
(sheetpath (names /ADC_SPI/) (tstamps /5FF0E871/))
(tstamp 6036248C))
(comp (ref J6)
(value TBL009-254-02GY-2GY)
(footprint SamacSys_Parts:TBL00925402GY2GY)
(datasheet https://componentsearchengine.com/Datasheets/1/TBL009-254-02GY-2GY.pdf)
(fields
(field (name Description) "Fixed Terminal Blocks Terminal block, screwless, 2.54, Horizontal, 2, Gray w Gray Button")
(field (name Height) 10.5)
(field (name Manufacturer_Name) "CUI Devices")
(field (name Manufacturer_Part_Number) TBL009-254-02GY-2GY)
(field (name "Mouser Part Number") 490-TBL00925402GY2GY))
(libsource (lib Samacsys) (part TBL009-254-02GY-2GY) (description "Fixed Terminal Blocks Terminal block, screwless, 2.54, Horizontal, 2, Gray w Gray Button"))
(sheetpath (names /ADC_SPI/) (tstamps /5FF0E871/))
(tstamp 603629DD))
(comp (ref J5)
(value TBL009-254-02GY-2GY)
(footprint SamacSys_Parts:TBL00925402GY2GY)
(datasheet https://componentsearchengine.com/Datasheets/1/TBL009-254-02GY-2GY.pdf)
(fields
(field (name Description) "Fixed Terminal Blocks Terminal block, screwless, 2.54, Horizontal, 2, Gray w Gray Button")
(field (name Height) 10.5)
(field (name Manufacturer_Name) "CUI Devices")
(field (name Manufacturer_Part_Number) TBL009-254-02GY-2GY)
(field (name "Mouser Part Number") 490-TBL00925402GY2GY))
(libsource (lib Samacsys) (part TBL009-254-02GY-2GY) (description "Fixed Terminal Blocks Terminal block, screwless, 2.54, Horizontal, 2, Gray w Gray Button"))
(sheetpath (names /ADC_SPI/) (tstamps /5FF0E871/))
(tstamp 60362E06))
(comp (ref J4)
(value TBL009-254-02GY-2GY)
(footprint SamacSys_Parts:TBL00925402GY2GY)
(datasheet https://componentsearchengine.com/Datasheets/1/TBL009-254-02GY-2GY.pdf)
(fields
(field (name Description) "Fixed Terminal Blocks Terminal block, screwless, 2.54, Horizontal, 2, Gray w Gray Button")
(field (name Height) 10.5)
(field (name Manufacturer_Name) "CUI Devices")
(field (name Manufacturer_Part_Number) TBL009-254-02GY-2GY)
(field (name "Mouser Part Number") 490-TBL00925402GY2GY))
(libsource (lib Samacsys) (part TBL009-254-02GY-2GY) (description "Fixed Terminal Blocks Terminal block, screwless, 2.54, Horizontal, 2, Gray w Gray Button"))
(sheetpath (names /ADC_SPI/) (tstamps /5FF0E871/))
(tstamp 6036315F))
(comp (ref J15)
(value DB9_Female_MountingHoles)
(footprint SamacSys_Parts:D09S23A4GV00LF)
(datasheet " ~")
(libsource (lib Connector) (part DB9_Female_MountingHoles) (description "9-pin female D-SUB connector, Mounting Hole"))
(sheetpath (names /ADC_SPI/) (tstamps /5FF0E871/))
(tstamp 6034DC7F))
(comp (ref J18)
(value DB9_Female_MountingHoles)
(footprint SamacSys_Parts:D09S23A4GV00LF)
(datasheet " ~")
(libsource (lib Connector) (part DB9_Female_MountingHoles) (description "9-pin female D-SUB connector, Mounting Hole"))
(sheetpath (names /ADC_SPI/) (tstamps /5FF0E871/))
(tstamp 6037C4A1)))
(libparts
(libpart (lib Analog_ADC) (part MCP3208)
(aliases
(alias MCP3008))
(description "A/D Converter, 12-Bit, 8-Channel, SPI Interface , 2.7V-5.5V")
(docs http://ww1.microchip.com/downloads/en/DeviceDoc/21298c.pdf)
(footprints
(fp DIP*W7.62mm*)
(fp SOIC*3.9x9.9mm*P1.27mm*))
(fields
(field (name Reference) U)
(field (name Value) MCP3208))
(pins
(pin (num 1) (name CH0) (type input))
(pin (num 2) (name CH1) (type input))
(pin (num 3) (name CH2) (type input))
(pin (num 4) (name CH3) (type input))
(pin (num 5) (name CH4) (type input))
(pin (num 6) (name CH5) (type input))
(pin (num 7) (name CH6) (type input))
(pin (num 8) (name CH7) (type input))
(pin (num 9) (name DGND) (type power_in))
(pin (num 10) (name ~CS~/SHDN) (type input))
(pin (num 11) (name Din) (type input))
(pin (num 12) (name Dout) (type output))
(pin (num 13) (name CLK) (type input))
(pin (num 14) (name AGND) (type power_in))
(pin (num 15) (name Vref) (type power_in))
(pin (num 16) (name Vdd) (type power_in))))
(libpart (lib Connector) (part DB9_Female_MountingHoles)
(description "9-pin female D-SUB connector, Mounting Hole")
(docs " ~")
(footprints
(fp DSUB*Female*))
(fields
(field (name Reference) J)
(field (name Value) DB9_Female_MountingHoles))
(pins
(pin (num 0) (name PAD) (type passive))
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))
(pin (num 3) (name 3) (type passive))
(pin (num 4) (name 4) (type passive))
(pin (num 5) (name 5) (type passive))
(pin (num 6) (name 6) (type passive))
(pin (num 7) (name 7) (type passive))
(pin (num 8) (name 8) (type passive))
(pin (num 9) (name 9) (type passive))))
(libpart (lib Connector) (part DB9_Male_MountingHoles)
(description "9-pin male D-SUB connector, Mounting Hole")
(docs " ~")
(footprints
(fp DSUB*Male*))
(fields
(field (name Reference) J)
(field (name Value) DB9_Male_MountingHoles))
(pins
(pin (num 0) (name PAD) (type passive))
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))
(pin (num 3) (name 3) (type passive))
(pin (num 4) (name 4) (type passive))
(pin (num 5) (name 5) (type passive))
(pin (num 6) (name 6) (type passive))
(pin (num 7) (name 7) (type passive))
(pin (num 8) (name 8) (type passive))
(pin (num 9) (name 9) (type passive))))
(libpart (lib Connector_Generic) (part Conn_01x02)
(description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x02))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))))
(libpart (lib Connector_Generic) (part Conn_01x04)
(description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x04))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))
(pin (num 4) (name Pin_4) (type passive))))
(libpart (lib Device) (part Buzzer)
(description "Buzzer, polarized")
(docs ~)
(footprints
(fp *Buzzer*))