-
Notifications
You must be signed in to change notification settings - Fork 3
/
Keithley1950.net
1503 lines (1503 loc) · 54.1 KB
/
Keithley1950.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 D:\OSP\projects\Keithley1950\Keithley1950.sch)
(date "11/16/2019 9:13:24 PM")
(tool "Eeschema (5.1.4)-1")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title "Keithley DMM Option 1950")
(company OpenScopeProject)
(rev B)
(date 2019-11-16)
(source Keithley1950.sch)
(comment (number 1) (value "AC TRMS Volts and AC/DC AMPS board"))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref J1)
(value Conn_01x14)
(footprint Package_DIP:DIP-14_W7.62mm_Socket_LongPads)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x14) (description "Generic connector, single row, 01x14, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5CB3C43B))
(comp (ref U2)
(value LM339)
(footprint Package_SO:SOIC-14_3.9x8.7mm_P1.27mm)
(datasheet http://www.ti.com/lit/ds/symlink/lm339.pdf)
(libsource (lib project) (part LM339) (description "Quad Differential Comparators, DIP-14/SOIC-14/SSOP-14"))
(sheetpath (names /) (tstamps /))
(tstamp 5CB48104))
(comp (ref U7)
(value TLE2072)
(footprint Package_SO:SOIC-8_3.9x4.9mm_P1.27mm)
(datasheet http://www.ti.com/lit/ds/symlink/tl081.pdf)
(libsource (lib Amplifier_Operational) (part TL082) (description "Dual JFET-Input Operational Amplifiers, DIP-8/SOIC-8/SSOP-8"))
(sheetpath (names /) (tstamps /))
(tstamp 5CB523B3))
(comp (ref U1)
(value TLE2072)
(footprint Package_SO:SOIC-8_3.9x4.9mm_P1.27mm)
(datasheet http://www.ti.com/lit/ds/symlink/tl081.pdf)
(libsource (lib Amplifier_Operational) (part TL082) (description "Dual JFET-Input Operational Amplifiers, DIP-8/SOIC-8/SSOP-8"))
(sheetpath (names /) (tstamps /))
(tstamp 5CB5CADE))
(comp (ref U3)
(value 74LS138)
(footprint Package_SO:SOIC-16_3.9x9.9mm_P1.27mm)
(datasheet http://www.ti.com/lit/gpn/sn74LS138)
(libsource (lib 74xx) (part 74LS138) (description "Decoder 3 to 8 active low outputs"))
(sheetpath (names /) (tstamps /))
(tstamp 5CB65E45))
(comp (ref Q1)
(value MMBFJ111)
(footprint Package_TO_SOT_SMD:SOT-23)
(datasheet ~)
(libsource (lib Device) (part Q_NJFET_DSG) (description "N-JFET transistor, drain/source/gate"))
(sheetpath (names /) (tstamps /))
(tstamp 5CB70F81))
(comp (ref Q3)
(value MMBFJ111)
(footprint Package_TO_SOT_SMD:SOT-23)
(datasheet ~)
(libsource (lib Device) (part Q_NJFET_DSG) (description "N-JFET transistor, drain/source/gate"))
(sheetpath (names /) (tstamps /))
(tstamp 5CB727D8))
(comp (ref Q2)
(value MMBFJ111)
(footprint Package_TO_SOT_SMD:SOT-23)
(datasheet ~)
(libsource (lib Device) (part Q_NJFET_DSG) (description "N-JFET transistor, drain/source/gate"))
(sheetpath (names /) (tstamps /))
(tstamp 5CB72C92))
(comp (ref Q4)
(value MMBFJ111)
(footprint Package_TO_SOT_SMD:SOT-23)
(datasheet ~)
(libsource (lib Device) (part Q_NJFET_DSG) (description "N-JFET transistor, drain/source/gate"))
(sheetpath (names /) (tstamps /))
(tstamp 5CB7334B))
(comp (ref Q7)
(value MMBFJ111)
(footprint Package_TO_SOT_SMD:SOT-23)
(datasheet ~)
(libsource (lib Device) (part Q_NJFET_DSG) (description "N-JFET transistor, drain/source/gate"))
(sheetpath (names /) (tstamps /))
(tstamp 5CB73982))
(comp (ref Q8)
(value MMBT3906)
(footprint Package_TO_SOT_SMD:SOT-23)
(datasheet https://www.fairchildsemi.com/datasheets/2N/2N3906.pdf)
(libsource (lib Transistor_BJT) (part MMBT3906) (description "-0.2A Ic, -40V Vce, Small Signal PNP Transistor, SOT-23"))
(sheetpath (names /) (tstamps /))
(tstamp 5CB7453B))
(comp (ref J3)
(value Conn_01x02)
(footprint TerminalBlock_Phoenix:TerminalBlock_Phoenix_PT-1,5-2-5.0-H_1x02_P5.00mm_Horizontal)
(datasheet ~)
(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 5CB7E043))
(comp (ref J2)
(value Conn_01x03)
(footprint TerminalBlock_Phoenix:TerminalBlock_Phoenix_PT-1,5-3-5.0-H_1x03_P5.00mm_Horizontal)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x03) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5CB7E77D))
(comp (ref K5)
(value Relay_SP2P)
(footprint Relay_THT:Relay_SPST_StandexMeder_SIL_Form1A)
(libsource (lib project) (part Relay_SP2P) (description "Relay, single contact group, 2 pins, normally open"))
(sheetpath (names /) (tstamps /))
(tstamp 5CB8B124))
(comp (ref K4)
(value Relay_SP2P)
(footprint Relay_THT:Relay_SPST_StandexMeder_SIL_Form1A)
(libsource (lib project) (part Relay_SP2P) (description "Relay, single contact group, 2 pins, normally open"))
(sheetpath (names /) (tstamps /))
(tstamp 5CB8BE9C))
(comp (ref K2)
(value Relay_SP2P)
(footprint Relay_THT:Relay_SPST_StandexMeder_SIL_Form1A)
(libsource (lib project) (part Relay_SP2P) (description "Relay, single contact group, 2 pins, normally open"))
(sheetpath (names /) (tstamps /))
(tstamp 5CB8C2BE))
(comp (ref K1)
(value Relay_SP2P)
(footprint Relay_THT:Relay_SPST_StandexMeder_SIL_Form1A)
(libsource (lib project) (part Relay_SP2P) (description "Relay, single contact group, 2 pins, normally open"))
(sheetpath (names /) (tstamps /))
(tstamp 5CB8C528))
(comp (ref K7)
(value Relay_SP3P)
(footprint Relay_THT:Relay_SPDT_SANYOU_SRD_Series_Form_C)
(libsource (lib project) (part Relay_SP3P) (description "Relay, single contact group, 3 pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5CB8CA18))
(comp (ref K6)
(value Relay_SP3P)
(footprint Relay_THT:Relay_SPDT_SANYOU_SRD_Series_Form_C)
(libsource (lib project) (part Relay_SP3P) (description "Relay, single contact group, 3 pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5CB8D4BB))
(comp (ref D7)
(value S3M)
(footprint Diode_SMD:D_SMB)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5CB96380))
(comp (ref D6)
(value S3M)
(footprint Diode_SMD:D_SMB)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5CB985FA))
(comp (ref D3)
(value S3M)
(footprint Diode_SMD:D_SMB)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5CB98939))
(comp (ref D4)
(value S3M)
(footprint Diode_SMD:D_SMB)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5CB98E8E))
(comp (ref D5)
(value S3M)
(footprint Diode_SMD:D_SMB)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5CB99231))
(comp (ref D2)
(value S3M)
(footprint Diode_SMD:D_SMB)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5CB994DF))
(comp (ref D1)
(value S3M)
(footprint Diode_SMD:D_SMB)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5CB999A9))
(comp (ref R9)
(value 43R)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(fields
(field (name Comment) 0.1%))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5CB9B972))
(comp (ref R12)
(value 4R3)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(fields
(field (name Comment) 0.1%))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5CB9C495))
(comp (ref R15)
(value R43)
(footprint Resistor_SMD:R_2512_6332Metric)
(datasheet ~)
(fields
(field (name Comment) 0.1%))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5CB9C79B))
(comp (ref R17)
(value 0R1)
(footprint project:R_2512_With_10mm_axial)
(datasheet ~)
(fields
(field (name Comment) 0.1%))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5CB9CB8C))
(comp (ref R5)
(value 430R)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(fields
(field (name Comment) 0.1%))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5CB9CE54))
(comp (ref R4)
(value 100k)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5CB9DFA1))
(comp (ref R8)
(value 100k)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5CB9E6FE))
(comp (ref R7)
(value 100k)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5CB9EC31))
(comp (ref R11)
(value 100k)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5CB9F858))
(comp (ref R25)
(value 1M)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(fields
(field (name Comment) 0.5%))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5CB9FCE1))
(comp (ref R26)
(value 1M)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(fields
(field (name Comment) 0.5%))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5CBA1211))
(comp (ref R22)
(value 10k)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(fields
(field (name Comment) 0.1%))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5CBA173C))
(comp (ref R20)
(value 2k)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(fields
(field (name Comment) 0.1%))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5CBA2121))
(comp (ref R21)
(value 27k)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(fields
(field (name Comment) 0.1%))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5CBA2530))
(comp (ref R23)
(value DNP)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5CBA3019))
(comp (ref R28)
(value 100k)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5CBA7132))
(comp (ref C4)
(value 470pF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5CBA782D))
(comp (ref C23)
(value 0.1uF)
(footprint Capacitor_THT:C_Rect_L18.0mm_W5.0mm_P15.00mm_FKS3_FKP3)
(datasheet ~)
(fields
(field (name Comment) 1000v))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5CBA96C6))
(comp (ref C19)
(value 610pF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5CBAA767))
(comp (ref C20)
(value 110pF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5CBAAF98))
(comp (ref C22)
(value 47pF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5CBAB881))
(comp (ref C1)
(value 47uF)
(footprint Capacitor_SMD:CP_Elec_6.3x5.9)
(datasheet ~)
(fields
(field (name Comment) 25v))
(libsource (lib Device) (part CP_Small) (description "Polarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5CBAC1EB))
(comp (ref C2)
(value 47uF)
(footprint Capacitor_SMD:CP_Elec_6.3x5.9)
(datasheet ~)
(fields
(field (name Comment) 25v))
(libsource (lib Device) (part CP_Small) (description "Polarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5CBAE200))
(comp (ref C3)
(value 47uF)
(footprint Capacitor_SMD:CP_Elec_6.3x5.9)
(datasheet ~)
(fields
(field (name Comment) 25v))
(libsource (lib Device) (part CP_Small) (description "Polarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5CBAE457))
(comp (ref R2)
(value 10k)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5CCAB259))
(comp (ref R1)
(value 10k)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5CCAC22A))
(comp (ref C21)
(value 5pF)
(footprint project:MURATA_TZ03)
(libsource (lib project) (part CTRIM_Small) (description "Trimmable capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5CCB24A7))
(comp (ref C24)
(value 5pF)
(footprint project:MURATA_TZ03)
(libsource (lib project) (part CTRIM_Small) (description "Trimmable capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5CCB582E))
(comp (ref R13)
(value 5R1)
(footprint Resistor_SMD:R_2512_6332Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D058670))
(comp (ref U6)
(value 74HC4094)
(footprint Package_SO:SOIC-16_3.9x9.9mm_P1.27mm)
(datasheet http://www.ti.com/lit/ds/symlink/sn74hc595.pdf)
(libsource (lib project) (part 74HC4094) (description "8-bit serial in/out Shift Register 3-State Outputs"))
(sheetpath (names /) (tstamps /))
(tstamp 5CCDABD7))
(comp (ref U5)
(value ULN2003)
(footprint Package_SO:SOIC-16_3.9x9.9mm_P1.27mm)
(datasheet http://www.ti.com/lit/ds/symlink/uln2003a.pdf)
(libsource (lib project) (part ULN2003) (description "High Voltage, High Current Darlington Transistor Arrays, SOIC16/SOIC16W/DIP16/TSSOP16"))
(sheetpath (names /) (tstamps /))
(tstamp 5CEB78B3))
(comp (ref Q5)
(value MMBT3906)
(footprint Package_TO_SOT_SMD:SOT-23)
(datasheet https://www.fairchildsemi.com/datasheets/2N/2N3906.pdf)
(libsource (lib Transistor_BJT) (part MMBT3906) (description "-0.2A Ic, -40V Vce, Small Signal PNP Transistor, SOT-23"))
(sheetpath (names /) (tstamps /))
(tstamp 5D08F930))
(comp (ref Q6)
(value MMBT3906)
(footprint Package_TO_SOT_SMD:SOT-23)
(datasheet https://www.fairchildsemi.com/datasheets/2N/2N3906.pdf)
(libsource (lib Transistor_BJT) (part MMBT3906) (description "-0.2A Ic, -40V Vce, Small Signal PNP Transistor, SOT-23"))
(sheetpath (names /) (tstamps /))
(tstamp 5D091FCB))
(comp (ref R16)
(value 10k)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D0A1B8F))
(comp (ref R18)
(value 10k)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D0A23C6))
(comp (ref R27)
(value 10k)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D34A213))
(comp (ref TP1)
(value TestPoint)
(footprint TestPoint:TestPoint_Pad_D2.5mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 5DD3386F))
(comp (ref TP2)
(value TestPoint)
(footprint TestPoint:TestPoint_Pad_D2.5mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 5DD3558C))
(comp (ref TP3)
(value TestPoint)
(footprint TestPoint:TestPoint_Pad_D2.5mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 5DD359C9))
(comp (ref C14)
(value .1uF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5CF5352C))
(comp (ref C11)
(value .1uF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5CF939C7))
(comp (ref C5)
(value .1uF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5CFF60AA))
(comp (ref R24)
(value 3k)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(fields
(field (name Comment) 0.1%))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5CBA2B42))
(comp (ref K3)
(value Relay_SP3P)
(footprint Relay_THT:Relay_SPDT_SANYOU_SRD_Series_Form_C)
(libsource (lib project) (part Relay_SP3P) (description "Relay, single contact group, 3 pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5D1C13B7))
(comp (ref U4)
(value AD8436)
(footprint Package_SO:QSOP-20_3.9x8.7mm_P0.635mm)
(datasheet https://www.analog.com/media/en/technical-documentation/data-sheets/AD8436.pdf)
(libsource (lib project) (part AD8436) (description "TRMS to DC converter"))
(sheetpath (names /) (tstamps /))
(tstamp 5D2F10F8))
(comp (ref C10)
(value 1uF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D2F5647))
(comp (ref C13)
(value .1uF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D3760C8))
(comp (ref C8)
(value .1uF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D5C9DFD))
(comp (ref C7)
(value 10uF)
(footprint Capacitor_Tantalum_SMD:CP_EIA-3528-21_Kemet-B)
(datasheet ~)
(libsource (lib Device) (part CP_Small) (description "Polarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D5CB18C))
(comp (ref C9)
(value 10uF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D665C4A))
(comp (ref C6)
(value .1uF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5DDA86A7))
(comp (ref R19)
(value 10M)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5DE4A83A))
(comp (ref C12)
(value 3.3uF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E0E7EB6))
(comp (ref R14)
(value R47)
(footprint Resistor_SMD:R_2512_6332Metric)
(datasheet ~)
(fields
(field (name Comment) 0.1%))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5CF7C450))
(comp (ref R10)
(value 4R7)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(fields
(field (name Comment) 0.1%))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5CFD46A4))
(comp (ref R6)
(value 47R)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(fields
(field (name Comment) 0.1%))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D02CDB2))
(comp (ref R3)
(value 470R)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(fields
(field (name Comment) 0.1%))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D0856A1))
(comp (ref C15)
(value .1uF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D121F07))
(comp (ref C16)
(value .1uF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D122C17))
(comp (ref C17)
(value .1uF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D122E02))
(comp (ref C18)
(value .1uF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D123211))
(comp (ref H1)
(value MountingHole_Pad)
(footprint MountingHole:MountingHole_3.2mm_M3_Pad_Via)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5D327519))
(comp (ref H2)
(value MountingHole_Pad)
(footprint MountingHole:MountingHole_3.2mm_M3_Pad_Via)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5D327849))
(comp (ref H3)
(value MountingHole_Pad)
(footprint MountingHole:MountingHole_3.2mm_M3_Pad_Via)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5D327A53))
(comp (ref TP4)
(value TestPoint)
(footprint TestPoint:TestPoint_THTPad_D1.5mm_Drill0.7mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 5DF7CDFA)))
(libparts
(libpart (lib 74xx) (part 74LS138)
(description "Decoder 3 to 8 active low outputs")
(docs http://www.ti.com/lit/gpn/sn74LS138)
(footprints
(fp DIP?16*))
(fields
(field (name Reference) U)
(field (name Value) 74LS138))
(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 E1) (type input))
(pin (num 5) (name E2) (type input))
(pin (num 6) (name E3) (type input))
(pin (num 7) (name O7) (type output))
(pin (num 8) (name GND) (type power_in))
(pin (num 9) (name O6) (type output))
(pin (num 10) (name O5) (type output))
(pin (num 11) (name O4) (type output))
(pin (num 12) (name O3) (type output))
(pin (num 13) (name O2) (type output))
(pin (num 14) (name O1) (type output))
(pin (num 15) (name O0) (type output))
(pin (num 16) (name VCC) (type power_in))))
(libpart (lib Amplifier_Operational) (part LM2904)
(aliases
(alias LM358)
(alias AD8620)
(alias LMC6062)
(alias LMC6082)
(alias TL062)
(alias TL072)
(alias TL082)
(alias NE5532)
(alias SA5532)
(alias RC4558)
(alias RC4560)
(alias RC4580)
(alias LMV358)
(alias TS912)
(alias TSV912IDT)
(alias TSV912IST)
(alias TLC272)
(alias TLC277)
(alias MCP602)
(alias OPA2134)
(alias OPA2340)
(alias OPA2376xxD)
(alias OPA2376xxDGK)
(alias MC33078)
(alias MC33178)
(alias LM4562)
(alias OP249)
(alias OP275)
(alias ADA4075-2)
(alias MCP6002-xP)
(alias MCP6002-xSN)
(alias MCP6002-xMS)
(alias LM7332)
(alias OPA2333xxD)
(alias OPA2333xxDGK)
(alias LMC6482)
(alias LT1492)
(alias LTC6081xMS8)
(alias LM6172)
(alias MCP6L92)
(alias NJM2043)
(alias NJM2114)
(alias NJM4556A)
(alias NJM4558)
(alias NJM4559)
(alias NJM4560)
(alias NJM4580)
(alias NJM5532)
(alias ADA4807-2ARM)
(alias OPA2691)
(alias LT6234)
(alias OPA2356xxD)
(alias OPA2356xxDGK)
(alias OPA1612AxD)
(alias MC33172)
(alias OPA1602)
(alias TLV2372)
(alias LT6237))
(description "Dual Operational Amplifiers, DIP-8/SOIC-8/TSSOP-8/VSSOP-8")
(docs http://www.ti.com/lit/ds/symlink/lm358.pdf)
(footprints
(fp SOIC*3.9x4.9mm*P1.27mm*)
(fp DIP*W7.62mm*)
(fp TO*99*)
(fp OnSemi*Micro8*)
(fp TSSOP*3x3mm*P0.65mm*)
(fp TSSOP*4.4x3mm*P0.65mm*)
(fp MSOP*3x3mm*P0.65mm*)
(fp SSOP*3.9x4.9mm*P0.635mm*)
(fp LFCSP*2x2mm*P0.5mm*)
(fp *SIP*)
(fp SOIC*5.3x6.2mm*P1.27mm*))
(fields
(field (name Reference) U)
(field (name Value) LM2904))
(pins
(pin (num 1) (name ~) (type output))
(pin (num 2) (name -) (type input))
(pin (num 3) (name +) (type input))
(pin (num 4) (name V-) (type power_in))
(pin (num 5) (name +) (type input))
(pin (num 6) (name -) (type input))
(pin (num 7) (name ~) (type output))
(pin (num 8) (name V+) (type power_in))))
(libpart (lib Connector) (part TestPoint)
(description "test point")
(docs ~)
(footprints
(fp Pin*)
(fp Test*))
(fields
(field (name Reference) TP)
(field (name Value) TestPoint))
(pins
(pin (num 1) (name 1) (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_01x03)
(description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x03))
(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))))
(libpart (lib Connector_Generic) (part Conn_01x14)
(description "Generic connector, single row, 01x14, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x14))
(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))
(pin (num 5) (name Pin_5) (type passive))
(pin (num 6) (name Pin_6) (type passive))
(pin (num 7) (name Pin_7) (type passive))
(pin (num 8) (name Pin_8) (type passive))
(pin (num 9) (name Pin_9) (type passive))
(pin (num 10) (name Pin_10) (type passive))
(pin (num 11) (name Pin_11) (type passive))
(pin (num 12) (name Pin_12) (type passive))
(pin (num 13) (name Pin_13) (type passive))
(pin (num 14) (name Pin_14) (type passive))))
(libpart (lib Device) (part CP_Small)
(description "Polarized capacitor, small symbol")
(docs ~)
(footprints
(fp CP_*))
(fields
(field (name Reference) C)
(field (name Value) CP_Small))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Device) (part C_Small)
(description "Unpolarized capacitor, small symbol")
(docs ~)
(footprints
(fp C_*))
(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 Device) (part D_Small)
(description "Diode, small symbol")
(docs ~)
(footprints
(fp TO-???*)
(fp *_Diode_*)
(fp *SingleDiode*)
(fp D_*))
(fields
(field (name Reference) D)
(field (name Value) D_Small))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib Device) (part Q_NJFET_DSG)
(description "N-JFET transistor, drain/source/gate")
(docs ~)
(fields
(field (name Reference) Q)
(field (name Value) Q_NJFET_DSG))
(pins
(pin (num 1) (name D) (type passive))
(pin (num 2) (name S) (type passive))
(pin (num 3) (name G) (type input))))
(libpart (lib Device) (part R_Small)
(description "Resistor, small symbol")
(docs ~)
(footprints
(fp R_*))
(fields
(field (name Reference) R)
(field (name Value) R_Small))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Mechanical) (part MountingHole_Pad)
(description "Mounting Hole with connection")
(docs ~)
(footprints
(fp MountingHole*Pad*))
(fields
(field (name Reference) H)
(field (name Value) MountingHole_Pad))
(pins
(pin (num 1) (name 1) (type input))))
(libpart (lib Transistor_BJT) (part BC807)
(aliases
(alias BC808)
(alias BC856)
(alias BC857)
(alias BC858)
(alias BC859)
(alias BC860)
(alias MMBT3906))
(description "0.8A Ic, 45V Vce, PNP Transistor, SOT-23")
(docs http://www.fairchildsemi.com/ds/BC/BC807.pdf)
(footprints
(fp SOT?23*))
(fields
(field (name Reference) Q)
(field (name Value) BC807)
(field (name Footprint) Package_TO_SOT_SMD:SOT-23))
(pins
(pin (num 1) (name B) (type input))
(pin (num 2) (name E) (type passive))
(pin (num 3) (name C) (type passive))))
(libpart (lib project) (part 74HC4094)
(aliases
(alias 74LS595)
(alias 74HCT595))
(description "8-bit serial in/out Shift Register 3-State Outputs")
(docs http://www.ti.com/lit/ds/symlink/sn74hc595.pdf)
(footprints
(fp DIP*W7.62mm*)
(fp SOIC*3.9x9.9mm*P1.27mm*)
(fp TSSOP*4.4x5mm*P0.65mm*)
(fp SOIC*5.3x10.2mm*P1.27mm*)
(fp SOIC*7.5x10.3mm*P1.27mm*))
(fields
(field (name Reference) U)
(field (name Value) 74HC4094))
(pins
(pin (num 1) (name STROBE) (type input))
(pin (num 2) (name SER) (type input))
(pin (num 3) (name CLK) (type input))
(pin (num 4) (name Q1) (type 3state))
(pin (num 5) (name Q2) (type 3state))
(pin (num 6) (name Q3) (type 3state))
(pin (num 7) (name Q4) (type 3state))
(pin (num 8) (name GND) (type power_in))
(pin (num 9) (name QS) (type output))
(pin (num 10) (name QS') (type output))
(pin (num 11) (name Q8) (type 3state))
(pin (num 12) (name Q7) (type 3state))
(pin (num 13) (name Q6) (type 3state))
(pin (num 14) (name Q5) (type 3state))
(pin (num 15) (name OE) (type input))
(pin (num 16) (name VCC) (type power_in))))
(libpart (lib project) (part AD8436)
(description "TRMS to DC converter")
(docs https://www.analog.com/media/en/technical-documentation/data-sheets/AD8436.pdf)
(footprints
(fp QSOP-20_3.9x8.7mm_P0.635mm))
(fields
(field (name Reference) U)
(field (name Value) AD8436)
(field (name Footprint) Package_SO:QSOP-20_3.9x8.7mm_P0.635mm))
(pins
(pin (num 1) (name SUM) (type passive))
(pin (num 2) (name DNC) (type NotConnected))
(pin (num 3) (name RMS) (type output))
(pin (num 4) (name IBUFOUT) (type output))
(pin (num 5) (name IBUFIN-) (type input))
(pin (num 6) (name IBUFIN+) (type input))
(pin (num 7) (name IBUFGN) (type passive))
(pin (num 8) (name DNC) (type NotConnected))
(pin (num 9) (name OGND) (type passive))
(pin (num 10) (name OUT) (type output))
(pin (num 11) (name VEE) (type power_in))
(pin (num 12) (name IGND) (type power_in))
(pin (num 13) (name OBUFIN+) (type input))
(pin (num 14) (name OBUFIN-) (type input))
(pin (num 15) (name OBUFOUT) (type output))
(pin (num 16) (name OBUFV+) (type power_in))
(pin (num 17) (name IBUFV+) (type power_in))
(pin (num 18) (name VCC) (type power_in))