forked from ContextualElectronics/BenchBudEE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBenchBudEE.net
1397 lines (1397 loc) · 49.2 KB
/
BenchBudEE.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 "C:/Users/Frits Jan/Dropbox/ContextualElectronics/BenchBudEE/BenchBuddy.sch")
(date "25/02/2014 21:09:59")
(tool "eeschema (2013-07-07 BZR 4022)-stable"))
(components
(comp (ref Q1)
(value MMBT3904-7-F)
(datasheet http://www.diodes.com/datasheets/ds30036.pdf)
(fields
(field (name "MFG Name") "Diodes Incorporated")
(field (name "MFG Part Number") MMBT3904-7-F)
(field (name Distributor) DigiKey)
(field (name "Distributor Part Number") MMBT3904-FDICT-ND)
(field (name "Distributor Link") http://www.digikey.com/product-detail/en/MMBT3904-7-F/MMBT3904-FDICT-ND/815727))
(libsource (lib device) (part NPN))
(sheetpath (names /Relay/) (tstamps /52EEB072/))
(tstamp 52F37F3B))
(comp (ref D1)
(value "LED LG Q971-KN-1")
(footprint 0603)
(datasheet http://catalog.osram-os.com/catalogue/catalogue.do;jsessionid=DE4D071D0D2758CC117C711BF848053E?act=downloadFile&favOid=0200000600005069000100b6)
(fields
(field (name "MFG Name") "OSRAM Opto Semiconductors Inc")
(field (name "MFG Part Number") "LG Q971-KN-1")
(field (name Distributor) DigiKey)
(field (name "Distributor Part Number") 475-1409-1-ND)
(field (name "Distributor Link") http://www.digikey.com/product-detail/en/LG%20Q971-KN-1/475-1409-1-ND/1802597))
(libsource (lib device) (part LED))
(sheetpath (names /Relay/) (tstamps /52EEB072/))
(tstamp 52F37F4A))
(comp (ref K1)
(value RELAY_SPDT)
(datasheet http://media.digikey.com/pdf/Data%20Sheets/Tyco%20Electronics%20P%20B%20PDFs/ORWH.pdf)
(fields
(field (name "MFG Name") "TE Connectivity")
(field (name "MFG Part Number") 1461069-5)
(field (name Distributor) DigiKey)
(field (name "Distributor Part Number") PB1321-ND)
(field (name "Distributor Link") http://www.digikey.com/product-detail/en/1461069-5/PB1321-ND/3318145))
(libsource (lib relay_spdt) (part RELAY_SPDT))
(sheetpath (names /Relay/) (tstamps /52EEB072/))
(tstamp 52F384DE))
(comp (ref R3)
(value 100)
(libsource (lib device) (part R))
(sheetpath (names /Relay/) (tstamps /52EEB072/))
(tstamp 52F38578))
(comp (ref R5)
(value 0)
(libsource (lib device) (part R))
(sheetpath (names /Relay/) (tstamps /52EEB072/))
(tstamp 52F385E6))
(comp (ref R2)
(value 200)
(libsource (lib device) (part R))
(sheetpath (names /Relay/) (tstamps /52EEB072/))
(tstamp 52F3862E))
(comp (ref R4)
(value 0)
(libsource (lib device) (part R))
(sheetpath (names /Relay/) (tstamps /52EEB072/))
(tstamp 52F386D7))
(comp (ref R1)
(value 500)
(libsource (lib device) (part R))
(sheetpath (names /Relay/) (tstamps /52EEB072/))
(tstamp 52F3871A))
(comp (ref D2)
(value "SCHOTTKY B130-13-F")
(datasheet http://www.diodes.com/datasheets/ds13002.pdf)
(fields
(field (name "MFG Name") "Diodes Incorporated")
(field (name "MFG Part Number") B130-13-F)
(field (name Distributor) DigiKey)
(field (name "Distributor Part Number") B130-FDICT-ND)
(field (name "Distributor Link") http://www.digikey.com/product-detail/en/B130-13-F/B130-FDICT-ND/815318))
(libsource (lib device) (part DIODE))
(sheetpath (names /Relay/) (tstamps /52EEB072/))
(tstamp 52F387C5))
(comp (ref U1)
(value "OPTO LTV-816S")
(datasheet "http://optoelectronics.liteon.com/upload/download/DS-70-97-0013/P_100_LTV-816%20826%20846%20(M,%20S,%20S-TA,%20S-TA1,%20S-TP)%20Series.pdf")
(fields
(field (name "MFG Name") "Lite-On Inc")
(field (name "MFG Part Number") LTV-816S)
(field (name Distributor) DigiKey)
(field (name "Distributor Part Number") 160-1361-5-ND)
(field (name "Distributor Link") http://www.digikey.com/product-detail/en/LTV-816S/160-1361-5-ND/385831))
(libsource (lib opto) (part OPTO-TRANSISTOR4))
(sheetpath (names /Relay/) (tstamps /52EEB072/))
(tstamp 5308B821))
(comp (ref R6)
(value 0)
(libsource (lib device) (part R))
(sheetpath (names /Relay/) (tstamps /52EEB072/))
(tstamp 5308B8DE))
(comp (ref P1)
(value "24 Pin Minifit Jr")
(fields
(field (name "MFG Name") Molex)
(field (name "MFG Part Number") 39-30-1240)
(field (name Distributor) Mouser)
(field (name "Distributor Part Number") 538-39-30-1240)
(field (name "Distributor Link") http://nl.mouser.com/ProductDetail/Molex/39-30-1240/?qs=sGAEpiMZZMs%252bGHln7q6pm%252bS0pk2Wo0Xxrf8ldfSZpwQ=)
(field (name "Alternative part") https://www.sparkfun.com/products/9498))
(libsource (lib conn) (part CONN_12X2))
(sheetpath (names /Power/) (tstamps /52EEB085/))
(tstamp 52F3A9AC))
(comp (ref R7)
(value R)
(libsource (lib device) (part R))
(sheetpath (names /Power/) (tstamps /52EEB085/))
(tstamp 52F3AC3E))
(comp (ref SW1)
(value SWITCH_INV)
(libsource (lib device) (part SWITCH_INV))
(sheetpath (names /Power/) (tstamps /52EEB085/))
(tstamp 52F3AC4D))
(comp (ref L2)
(value INDUCTOR)
(libsource (lib device) (part INDUCTOR))
(sheetpath (names /Power/) (tstamps /52EEB085/))
(tstamp 52F3AD14))
(comp (ref L1)
(value INDUCTOR)
(libsource (lib device) (part INDUCTOR))
(sheetpath (names /Power/) (tstamps /52EEB085/))
(tstamp 52F3AD23))
(comp (ref C1)
(value C)
(libsource (lib device) (part C))
(sheetpath (names /Power/) (tstamps /52EEB085/))
(tstamp 52F3AD32))
(comp (ref C2)
(value C)
(libsource (lib device) (part C))
(sheetpath (names /Power/) (tstamps /52EEB085/))
(tstamp 52F3AD49))
(comp (ref TH1)
(value THERMISTOR)
(fields
(field (name Reference) TH)
(field (name Value) THERMISTOR))
(libsource (lib device) (part THERMISTOR))
(sheetpath (names /Power/) (tstamps /52EEB085/))
(tstamp 52F8FA4B))
(comp (ref TH2)
(value THERMISTOR)
(fields
(field (name Reference) TH)
(field (name Value) THERMISTOR))
(libsource (lib device) (part THERMISTOR))
(sheetpath (names /Power/) (tstamps /52EEB085/))
(tstamp 52F8FA72))
(comp (ref TH3)
(value THERMISTOR)
(fields
(field (name Reference) TH)
(field (name Value) THERMISTOR))
(libsource (lib device) (part THERMISTOR))
(sheetpath (names /Power/) (tstamps /52EEB085/))
(tstamp 52F8FA7B))
(comp (ref TH4)
(value THERMISTOR)
(fields
(field (name Reference) TH)
(field (name Value) THERMISTOR))
(libsource (lib device) (part THERMISTOR))
(sheetpath (names /Power/) (tstamps /52EEB085/))
(tstamp 52F8FA84))
(comp (ref U2)
(value AP5726)
(libsource (lib BenchBuddy) (part AP5726))
(sheetpath (names /LED_Driver/) (tstamps /52EEB0B1/))
(tstamp 52F53D10))
(comp (ref C3)
(value C)
(libsource (lib device) (part C))
(sheetpath (names /LED_Driver/) (tstamps /52EEB0B1/))
(tstamp 52F53D91))
(comp (ref L3)
(value INDUCTOR)
(libsource (lib device) (part INDUCTOR))
(sheetpath (names /LED_Driver/) (tstamps /52EEB0B1/))
(tstamp 52F53DB6))
(comp (ref D3)
(value DIODESCH)
(libsource (lib device) (part DIODESCH))
(sheetpath (names /LED_Driver/) (tstamps /52EEB0B1/))
(tstamp 52F53DD8))
(comp (ref C4)
(value C)
(libsource (lib device) (part C))
(sheetpath (names /LED_Driver/) (tstamps /52EEB0B1/))
(tstamp 52F53E10))
(comp (ref R8)
(value R)
(libsource (lib device) (part R))
(sheetpath (names /LED_Driver/) (tstamps /52EEB0B1/))
(tstamp 52F53E60))
(comp (ref K2)
(value "3 Pin Terminal Block")
(datasheet http://media.digikey.com/pdf/Data%20Sheets/Phoenix%20Contact%20PDFs/COMBICON%20Compact%205.0mm%20Series.pdf)
(fields
(field (name "MFG Name") "Phoenix Contact")
(field (name "MFG Part Number") 1935174)
(field (name Distributor) DigiKey)
(field (name "Distributor Part Number") 277-1578-ND)
(field (name "Distributor Link") http://www.digikey.com/product-detail/en/1935174/277-1578-ND/568615))
(libsource (lib conn) (part CONN_3))
(sheetpath (names /TerminalBlock/) (tstamps /52EEB0FB/))
(tstamp 530A7290))
(comp (ref P4)
(value "12 Pin Terminal Block")
(fields
(field (name "MFG Name") "On Shore")
(field (name "MFG Part Number") OSTTE120104)
(field (name Distributor) Digikey)
(field (name "Distributor Part Number") ED2737-ND)
(field (name "Distributor Link") http://www.digikey.com/product-detail/en/OSTTE120104/ED2737-ND/2351813))
(libsource (lib conn) (part CONN_12))
(sheetpath (names /TerminalBlock/) (tstamps /52EEB0FB/))
(tstamp 530A7609))
(comp (ref U5)
(value OPA4170)
(libsource (lib linear) (part LM324))
(sheetpath (names /Thermalcouple/) (tstamps /52EEB050/))
(tstamp 52F0F265))
(comp (ref R13)
(value R)
(libsource (lib device) (part R))
(sheetpath (names /Thermalcouple/) (tstamps /52EEB050/))
(tstamp 52F0F311))
(comp (ref R14)
(value R)
(libsource (lib device) (part R))
(sheetpath (names /Thermalcouple/) (tstamps /52EEB050/))
(tstamp 52F0F317))
(comp (ref R15)
(value R)
(libsource (lib device) (part R))
(sheetpath (names /Thermalcouple/) (tstamps /52EEB050/))
(tstamp 52F0F31D))
(comp (ref R11)
(value R)
(libsource (lib device) (part R))
(sheetpath (names /Thermalcouple/) (tstamps /52EEB050/))
(tstamp 52F0F33D))
(comp (ref R9)
(value R)
(libsource (lib device) (part R))
(sheetpath (names /Thermalcouple/) (tstamps /52EEB050/))
(tstamp 52F0F349))
(comp (ref R12)
(value R)
(libsource (lib device) (part R))
(sheetpath (names /Thermalcouple/) (tstamps /52EEB050/))
(tstamp 52F0F360))
(comp (ref R10)
(value R)
(libsource (lib device) (part R))
(sheetpath (names /Thermalcouple/) (tstamps /52EEB050/))
(tstamp 52F0F366))
(comp (ref U3)
(value MCP3901)
(libsource (lib BenchBuddy) (part MCP3901))
(sheetpath (names /Thermalcouple/) (tstamps /52EEB050/))
(tstamp 530A1433))
(comp (ref R37)
(value R)
(libsource (lib device) (part R))
(sheetpath (names /Thermalcouple/) (tstamps /52EEB050/))
(tstamp 530A181C))
(comp (ref R38)
(value R)
(libsource (lib device) (part R))
(sheetpath (names /Thermalcouple/) (tstamps /52EEB050/))
(tstamp 530A1846))
(comp (ref P2)
(value CONN_3X2)
(libsource (lib conn) (part CONN_3X2))
(sheetpath (names /Thermalcouple/) (tstamps /52EEB050/))
(tstamp 530A184C))
(comp (ref U4)
(value LMT84)
(libsource (lib BenchBuddy) (part LMT84))
(sheetpath (names /Thermalcouple/) (tstamps /52EEB050/))
(tstamp 530A20B6))
(comp (ref C11)
(value C)
(libsource (lib device) (part C))
(sheetpath (names /Thermalcouple/) (tstamps /52EEB050/))
(tstamp 530A20C3))
(comp (ref C12)
(value C)
(libsource (lib device) (part C))
(sheetpath (names /Thermalcouple/) (tstamps /52EEB050/))
(tstamp 530A2462))
(comp (ref C10)
(value C)
(libsource (lib device) (part C))
(sheetpath (names /Thermalcouple/) (tstamps /52EEB050/))
(tstamp 530A255B))
(comp (ref C7)
(value C)
(libsource (lib device) (part C))
(sheetpath (names /Thermalcouple/) (tstamps /52EEB050/))
(tstamp 530A16D7))
(comp (ref C9)
(value C)
(libsource (lib device) (part C))
(sheetpath (names /Thermalcouple/) (tstamps /52EEB050/))
(tstamp 530A2847))
(comp (ref C8)
(value C)
(libsource (lib device) (part C))
(sheetpath (names /Thermalcouple/) (tstamps /52EEB050/))
(tstamp 530A29E4))
(comp (ref P3)
(value CONN_2)
(libsource (lib conn) (part CONN_2))
(sheetpath (names /Thermalcouple/) (tstamps /52EEB050/))
(tstamp 530A65F7))
(comp (ref R42)
(value 0)
(libsource (lib device) (part R))
(sheetpath (names /Thermalcouple/) (tstamps /52EEB050/))
(tstamp 530A6D0B))
(comp (ref R41)
(value 0)
(libsource (lib device) (part R))
(sheetpath (names /Thermalcouple/) (tstamps /52EEB050/))
(tstamp 530A6E02))
(comp (ref U6)
(value LM317)
(libsource (lib regul) (part LM317))
(sheetpath (names /PowerAdjustmentMonitor/) (tstamps /52F3A754/))
(tstamp 52F4C8CD))
(comp (ref R16)
(value R)
(libsource (lib device) (part R))
(sheetpath (names /PowerAdjustmentMonitor/) (tstamps /52F3A754/))
(tstamp 52F4C9CC))
(comp (ref C6)
(value C)
(libsource (lib device) (part C))
(sheetpath (names /PowerAdjustmentMonitor/) (tstamps /52F3A754/))
(tstamp 52F4C9E1))
(comp (ref C5)
(value C)
(libsource (lib device) (part C))
(sheetpath (names /PowerAdjustmentMonitor/) (tstamps /52F3A754/))
(tstamp 52F4CA2F))
(comp (ref R17)
(value R)
(libsource (lib device) (part R))
(sheetpath (names /PowerAdjustmentMonitor/) (tstamps /52F3A754/))
(tstamp 52F4D69E))
(comp (ref R19)
(value R)
(libsource (lib device) (part R))
(sheetpath (names /PowerAdjustmentMonitor/) (tstamps /52F3A754/))
(tstamp 52F4D6CF))
(comp (ref R20)
(value R)
(libsource (lib device) (part R))
(sheetpath (names /PowerAdjustmentMonitor/) (tstamps /52F3A754/))
(tstamp 52F4D6D5))
(comp (ref R18)
(value R)
(libsource (lib device) (part R))
(sheetpath (names /PowerAdjustmentMonitor/) (tstamps /52F3A754/))
(tstamp 52F4D7CB))
(comp (ref U7)
(value LM324)
(libsource (lib linear) (part LM324))
(sheetpath (names /PowerAdjustmentMonitor/) (tstamps /52F3A754/))
(tstamp 52F4D895))
(comp (ref U9)
(value LM293)
(libsource (lib linear) (part LM293))
(sheetpath (names /Fan/) (tstamps /52EEB0CE/))
(tstamp 52F10F8D))
(comp (ref R22)
(value 1)
(libsource (lib device) (part R))
(sheetpath (names /Fan/) (tstamps /52EEB0CE/))
(tstamp 52F10F9C))
(comp (ref R21)
(value R)
(libsource (lib device) (part R))
(sheetpath (names /Fan/) (tstamps /52EEB0CE/))
(tstamp 52F36F5D))
(comp (ref TH5)
(value "PTC 500mA")
(datasheet http://documents.tycoelectronics.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Specification+Or+Standard%7FSCD25063%7FH%7Fpdf%7FEnglish%7FENG_SS_SCD25063_H.pdf)
(fields
(field (name "MFG Name") "TE Connectivity")
(field (name "MFG Part Number") MINISMDC050F-2)
(field (name Distributor) DigiKey)
(field (name "Distributor Part Number") MINISMDC050FCT-ND)
(field (name "Distributor Link") http://www.digikey.com/product-detail/en/MINISMDC050F-2/MINISMDC050FCT-ND/1045862))
(libsource (lib device) (part THERMISTOR))
(sheetpath (names /Fan/) (tstamps /52EEB0CE/))
(tstamp 52F8F352))
(comp (ref D5)
(value B130-13-F)
(datasheet http://www.diodes.com/datasheets/ds13002.pdf)
(fields
(field (name "MFG Name") "Diodes Inc")
(field (name "MFG Part Number") B130-13-F)
(field (name Distributor) DigiKey)
(field (name "Distributor Part Number") B130-FDICT-ND)
(field (name "Distributor Link") http://www.digikey.com/product-detail/en/B130-13-F/B130-FDICT-ND/815318))
(libsource (lib device) (part DIODE))
(sheetpath (names /Fan/) (tstamps /52EEB0CE/))
(tstamp 52F8F3B9))
(comp (ref Q2)
(value DMN65D8L-7)
(datasheet http://www.diodes.com/datasheets/DMN65D8L.pdf)
(fields
(field (name "MFG Name") "Diodes Inc")
(field (name "MFG Part Number") DMN65D8L-7)
(field (name Distributor) DigiKey)
(field (name "Distributor Part Number") DMN65D8L-7DICT-ND)
(field (name "Distributor Link") http://www.digikey.com/product-detail/en/DMN65D8L-7/DMN65D8L-7DICT-ND/3677916))
(libsource (lib device) (part MOSFET_N))
(sheetpath (names /Fan/) (tstamps /52EEB0CE/))
(tstamp 52F8F4F2))
(comp (ref U8)
(value MCP4801)
(libsource (lib BenchBuddy) (part MCP4801))
(sheetpath (names /Fan/) (tstamps /52EEB0CE/))
(tstamp 530CEB4F))
(comp (ref C13)
(value C)
(libsource (lib device) (part C))
(sheetpath (names /Fan/) (tstamps /52EEB0CE/))
(tstamp 530DA093))
(comp (ref C14)
(value C)
(libsource (lib device) (part C))
(sheetpath (names /Fan/) (tstamps /52EEB0CE/))
(tstamp 530DA77A))
(comp (ref Q4)
(value AOD476)
(datasheet http://www.aosmd.com/res/data_sheets/AOD476.pdf)
(fields
(field (name "MFG Name") "Alpha & Omega Semiconductor Inc")
(field (name "MFG Part Number") AOD476)
(field (name Distributor) DigiKey)
(field (name "Distributor Part Number") 785-1112-1-ND)
(field (name "Distributor Link") http://www.digikey.com/product-detail/en/AOD476/785-1112-1-ND/1856055))
(libsource (lib BenchBuddy) (part MOS_N_1))
(sheetpath (names /Fan/) (tstamps /52EEB0CE/))
(tstamp 530DB6F5))
(comp (ref Q3)
(value AOD476)
(datasheet http://www.aosmd.com/res/data_sheets/AOD476.pdf)
(fields
(field (name "MFG Name") "Alpha & Omega Semiconductor Inc")
(field (name "MFG Part Number") AOD476)
(field (name Distributor) DigiKey)
(field (name "Distributor Part Number") 785-1112-1-ND)
(field (name "Distributor Link") http://www.digikey.com/product-detail/en/AOD476/785-1112-1-ND/1856055))
(libsource (lib BenchBuddy) (part MOS_N_1))
(sheetpath (names /Fan/) (tstamps /52EEB0CE/))
(tstamp 530DB8F6))
(comp (ref U10)
(value ARDUINOPINS)
(libsource (lib BenchBuddy) (part ARDUINOPINS))
(sheetpath (names /Arduino/) (tstamps /52EEB005/))
(tstamp 52F5E6F4))
(comp (ref R31)
(value 0)
(libsource (lib device) (part R))
(sheetpath (names /Arduino/) (tstamps /52EEB005/))
(tstamp 52F5E804))
(comp (ref R35)
(value 0)
(libsource (lib device) (part R))
(sheetpath (names /Arduino/) (tstamps /52EEB005/))
(tstamp 52F5E824))
(comp (ref R36)
(value 0)
(libsource (lib device) (part R))
(sheetpath (names /Arduino/) (tstamps /52EEB005/))
(tstamp 52F5E82A))
(comp (ref R27)
(value 0)
(libsource (lib device) (part R))
(sheetpath (names /Arduino/) (tstamps /52EEB005/))
(tstamp 52F5F8DC))
(comp (ref R26)
(value 0)
(libsource (lib device) (part R))
(sheetpath (names /Arduino/) (tstamps /52EEB005/))
(tstamp 52F5F8E2))
(comp (ref R25)
(value 0)
(libsource (lib device) (part R))
(sheetpath (names /Arduino/) (tstamps /52EEB005/))
(tstamp 52F6002A))
(comp (ref R24)
(value 0)
(libsource (lib device) (part R))
(sheetpath (names /Arduino/) (tstamps /52EEB005/))
(tstamp 52F60030))
(comp (ref R30)
(value 0)
(libsource (lib device) (part R))
(sheetpath (names /Arduino/) (tstamps /52EEB005/))
(tstamp 52F61DF2))
(comp (ref R29)
(value 0)
(libsource (lib device) (part R))
(sheetpath (names /Arduino/) (tstamps /52EEB005/))
(tstamp 52F61DFA))
(comp (ref R28)
(value 0)
(libsource (lib device) (part R))
(sheetpath (names /Arduino/) (tstamps /52EEB005/))
(tstamp 52F61E00))
(comp (ref R34)
(value 0)
(libsource (lib device) (part R))
(sheetpath (names /Arduino/) (tstamps /52EEB005/))
(tstamp 52F61E12))
(comp (ref R32)
(value 0)
(libsource (lib device) (part R))
(sheetpath (names /Arduino/) (tstamps /52EEB005/))
(tstamp 52F61E4A))
(comp (ref R33)
(value 0)
(libsource (lib device) (part R))
(sheetpath (names /Arduino/) (tstamps /52EEB005/))
(tstamp 52F65267))
(comp (ref R23)
(value 0)
(libsource (lib device) (part R))
(sheetpath (names /Arduino/) (tstamps /52EEB005/))
(tstamp 52F919D6))
(comp (ref R39)
(value 0)
(libsource (lib device) (part R))
(sheetpath (names /Arduino/) (tstamps /52EEB005/))
(tstamp 530A4ED3))
(comp (ref R40)
(value 0)
(libsource (lib device) (part R))
(sheetpath (names /Arduino/) (tstamps /52EEB005/))
(tstamp 530A4EDC))
(comp (ref R43)
(value 0)
(libsource (lib device) (part R))
(sheetpath (names /Arduino/) (tstamps /52EEB005/))
(tstamp 530CF738))
(comp (ref R44)
(value 0)
(libsource (lib device) (part R))
(sheetpath (names /Arduino/) (tstamps /52EEB005/))
(tstamp 530CF741)))
(libparts
(libpart (lib device) (part C)
(description "Condensateur non polarise")
(footprints
(fp SM*)
(fp C?)
(fp C1-1))
(fields
(field (name Reference) C)
(field (name Value) C)
(field (name Footprint) ~)
(field (name Datasheet) ~))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib device) (part DIODE)
(description "Diode simple")
(footprints
(fp D?)
(fp S*))
(fields
(field (name Reference) D)
(field (name Value) DIODE)
(field (name Footprint) ~)
(field (name Datasheet) ~))
(pins
(pin (num 1) (name A) (type passive))
(pin (num 2) (name K) (type passive))))
(libpart (lib device) (part LED)
(footprints
(fp LED-3MM)
(fp LED-5MM)
(fp LED-10MM)
(fp LED-0603)
(fp LED-0805)
(fp LED-1206)
(fp LEDV))
(fields
(field (name Reference) D)
(field (name Value) LED)
(field (name Footprint) ~)
(field (name Datasheet) ~))
(pins
(pin (num 1) (name A) (type passive))
(pin (num 2) (name K) (type passive))))
(libpart (lib device) (part INDUCTOR)
(fields
(field (name Reference) L)
(field (name Value) INDUCTOR)
(field (name Footprint) ~)
(field (name Datasheet) ~))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib device) (part MOS_N)
(docs transistors/mos/*.*)
(fields
(field (name Reference) Q)
(field (name Value) MOS_N)
(field (name Footprint) ~)
(field (name Datasheet) ~))
(pins
(pin (num D) (name D) (type passive))
(pin (num G) (name G) (type input))
(pin (num S) (name S) (type passive))))
(libpart (lib device) (part NPN)
(docs transistors/bipolar/*.*)
(fields
(field (name Reference) Q)
(field (name Value) NPN)
(field (name Footprint) ~)
(field (name Datasheet) ~))
(pins
(pin (num 1) (name E) (type passive))
(pin (num 2) (name B) (type input))
(pin (num 3) (name C) (type passive))))
(libpart (lib device) (part DIODESCH)
(description "Diode schottky")
(footprints
(fp D?)
(fp S*))
(fields
(field (name Reference) D)
(field (name Value) DIODESCH)
(field (name Footprint) ~)
(field (name Datasheet) ~))
(pins
(pin (num 1) (name A) (type passive))
(pin (num 2) (name K) (type passive))))
(libpart (lib device) (part R)
(description Resistance)
(footprints
(fp R?)
(fp SM0603)
(fp SM0805)
(fp R?-*)
(fp SM1206))
(fields
(field (name Reference) R)
(field (name Value) R)
(field (name Footprint) ~)
(field (name Datasheet) ~))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib device) (part SWITCH_INV)
(description "Switch inverseur")
(fields
(field (name Reference) SW)
(field (name Value) SWITCH_INV)
(field (name Footprint) ~)
(field (name Datasheet) ~))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))
(pin (num 3) (name 3) (type passive))))
(libpart (lib device) (part THERMISTOR)
(description Resistance)
(footprints
(fp R?)
(fp SM0603)
(fp SM0805))
(fields
(field (name Reference) TH)
(field (name Value) THERMISTOR)
(field (name Footprint) ~)
(field (name Datasheet) ~))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib conn) (part CONN_12)
(description "Symbole general de connecteur")
(fields
(field (name Reference) P)
(field (name Value) CONN_12))
(pins
(pin (num 1) (name P1) (type passive))
(pin (num 2) (name P2) (type passive))
(pin (num 3) (name P3) (type passive))
(pin (num 4) (name P4) (type passive))
(pin (num 5) (name P5) (type passive))
(pin (num 6) (name P6) (type passive))
(pin (num 7) (name P7) (type passive))
(pin (num 8) (name P8) (type passive))
(pin (num 9) (name P9) (type passive))
(pin (num 10) (name P10) (type passive))
(pin (num 11) (name P11) (type passive))
(pin (num 12) (name P12) (type passive))))
(libpart (lib conn) (part CONN_12X2)
(description "ymbole general de connecteur")
(fields
(field (name Reference) P)
(field (name Value) CONN_12X2))
(pins
(pin (num 1) (name P1) (type passive))
(pin (num 2) (name P2) (type passive))
(pin (num 3) (name P3) (type passive))
(pin (num 4) (name P4) (type passive))
(pin (num 5) (name P5) (type passive))
(pin (num 6) (name P6) (type passive))
(pin (num 7) (name P7) (type passive))
(pin (num 8) (name P8) (type passive))
(pin (num 9) (name P9) (type passive))
(pin (num 10) (name P10) (type passive))
(pin (num 11) (name P11) (type passive))
(pin (num 12) (name P12) (type passive))
(pin (num 13) (name P13) (type passive))
(pin (num 14) (name P14) (type passive))
(pin (num 15) (name P15) (type passive))
(pin (num 16) (name P16) (type passive))
(pin (num 17) (name P17) (type passive))
(pin (num 18) (name P18) (type passive))
(pin (num 19) (name P19) (type passive))
(pin (num 20) (name P20) (type passive))
(pin (num 21) (name P21) (type passive))
(pin (num 22) (name P22) (type passive))
(pin (num 23) (name P23) (type passive))
(pin (num 24) (name P24) (type passive))))
(libpart (lib conn) (part CONN_2)
(description "Symbole general de connecteur")
(fields
(field (name Reference) P)
(field (name Value) CONN_2))
(pins
(pin (num 1) (name P1) (type passive))
(pin (num 2) (name PM) (type passive))))
(libpart (lib conn) (part CONN_3)
(description "Symbole general de connecteur")
(fields
(field (name Reference) K)
(field (name Value) CONN_3))
(pins
(pin (num 1) (name P1) (type passive))
(pin (num 2) (name PM) (type passive))
(pin (num 3) (name P3) (type passive))))
(libpart (lib conn) (part CONN_3X2)
(description "Symbole general de connecteur")
(fields
(field (name Reference) P)
(field (name Value) CONN_3X2))
(pins
(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))))
(libpart (lib regul) (part LM317)
(description "Linear Regulator (adjustable)")
(docs regulator/lm117.pdf)
(fields
(field (name Reference) U)
(field (name Value) LM317)
(field (name Footprint) ~)
(field (name Datasheet) ~))
(pins
(pin (num 1) (name IN) (type input))
(pin (num 2) (name ADJ) (type input))
(pin (num 3) (name OUT) (type power_out))))
(libpart (lib linear) (part LM2903)
(description "Dual Voltage Comparator")
(docs ns/lm193.pdf)
(fields
(field (name Reference) U)
(field (name Value) LM2903))
(pins
(pin (num 1) (name ~) (type openCol))
(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 openCol))
(pin (num 8) (name V+) (type power_in))))
(libpart (lib linear) (part LM2902N)
(description "Quad Op amp.")
(docs op_amps/lm324.pdf)
(fields
(field (name Reference) U)
(field (name Value) LM2902N))
(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 ~) (type output))
(pin (num 9) (name -) (type input))
(pin (num 10) (name +) (type input))
(pin (num 11) (name V-) (type power_in))
(pin (num 12) (name +) (type input))
(pin (num 13) (name -) (type input))
(pin (num 14) (name ~) (type output))))
(libpart (lib opto) (part OPTO-TRANSISTOR4)
(fields
(field (name Reference) U)
(field (name Value) OPTO-TRANSISTOR4))
(pins
(pin (num 1) (name A) (type input))
(pin (num 2) (name K) (type input))
(pin (num 3) (name E) (type output))
(pin (num 4) (name C) (type output))))
(libpart (lib BenchBuddy) (part AP5726)
(description AP5726)
(docs http://www.diodes.com/datasheets/AP5726.pdf)
(fields
(field (name Reference) U)
(field (name Value) AP5726)
(field (name Footprint) ~)
(field (name Datasheet) ~))
(pins
(pin (num 1) (name SW) (type input))
(pin (num 2) (name GND) (type input))
(pin (num 3) (name FB) (type input))
(pin (num 4) (name EN) (type input))
(pin (num 5) (name OVP) (type input))
(pin (num 6) (name VIN) (type input))))
(libpart (lib BenchBuddy) (part ARDUINOPINS)
(description "Arduino Uno")
(fields
(field (name Reference) U)
(field (name Value) ARDUINOPINS)
(field (name Footprint) ~)
(field (name Datasheet) ~))
(pins
(pin (num 1) (name 5V) (type output))
(pin (num 2) (name GND) (type output))
(pin (num 3) (name GND) (type output))
(pin (num 4) (name 9V) (type output))
(pin (num 5) (name Analog0) (type output))
(pin (num 6) (name Analog1) (type output))
(pin (num 7) (name Analog2) (type BiDi))
(pin (num 8) (name Analog3) (type BiDi))
(pin (num 9) (name Analog4) (type BiDi))
(pin (num 10) (name Analog5) (type BiDi))
(pin (num 11) (name Digital0) (type BiDi))
(pin (num 12) (name Digital1) (type BiDi))
(pin (num 13) (name Digital2) (type BiDi))
(pin (num 14) (name Digital3) (type BiDi))
(pin (num 15) (name Digital4) (type BiDi))
(pin (num 16) (name Digital5) (type BiDi))
(pin (num 17) (name Digital6) (type BiDi))
(pin (num 18) (name Digital7) (type BiDi))
(pin (num 19) (name Digital8) (type BiDi))
(pin (num 20) (name PWM0) (type BiDi))
(pin (num 21) (name CS_N) (type BiDi))
(pin (num 22) (name MOSI) (type BiDi))
(pin (num 23) (name MISO) (type BiDi))
(pin (num 24) (name SCK) (type BiDi))
(pin (num 25) (name GND) (type output))
(pin (num 26) (name AREF) (type input))))
(libpart (lib BenchBuddy) (part LMT84)
(description "Analog Sensor")
(docs http://www.ti.com/lit/ds/symlink/lmt84.pdf)
(fields
(field (name Reference) U)
(field (name Value) LMT84)
(field (name Footprint) ~)
(field (name Datasheet) ~))
(pins
(pin (num 1) (name GND) (type input))
(pin (num 2) (name GND) (type input))
(pin (num 3) (name OUT) (type output))
(pin (num 4) (name Vdd) (type input))
(pin (num 5) (name GND) (type input))))
(libpart (lib BenchBuddy) (part MCP3901)
(description "Two Channel Analog Front End ")
(docs http://ww1.microchip.com/downloads/en/DeviceDoc/22192d.pdf)
(fields
(field (name Reference) U)
(field (name Value) MCP3901)
(field (name Footprint) ~)
(field (name Datasheet) ~))
(pins
(pin (num 1) (name ~RESET) (type input))
(pin (num 2) (name DVdd) (type input))
(pin (num 3) (name AVdd) (type input))
(pin (num 4) (name CH0+) (type input))
(pin (num 5) (name CH0-) (type input))
(pin (num 6) (name CH1+) (type input))
(pin (num 7) (name CH1-) (type input))
(pin (num 8) (name AGND) (type input))
(pin (num 9) (name REFIN/OUT+) (type BiDi))
(pin (num 10) (name REFIN-) (type input))
(pin (num 11) (name DGND) (type input))
(pin (num 12) (name MDAT1) (type input))
(pin (num 13) (name MDAT0) (type input))
(pin (num 14) (name ~RD) (type input))
(pin (num 15) (name OSC1) (type input))
(pin (num 16) (name OSC2) (type input))
(pin (num 17) (name ~CS) (type input))
(pin (num 18) (name SCK) (type input))
(pin (num 19) (name SDO) (type input))
(pin (num 20) (name SDI) (type input))))
(libpart (lib relay_spdt) (part RELAY_SPDT)
(description "Single Pole, Double Throw relay")
(fields
(field (name Reference) K)
(field (name Value) RELAY_SPDT)
(field (name Footprint) ~)
(field (name Datasheet) ~))
(pins
(pin (num 1) (name COM) (type passive))
(pin (num 2) (name COIL+) (type input))
(pin (num 3) (name NO) (type passive))
(pin (num 4) (name NC) (type passive))
(pin (num 5) (name COIL-) (type input))))
(libpart (lib BenchBuddy) (part MCP4801)
(description "8 bit Voltage Output DAC, with internal Vref")
(docs http://ww1.microchip.com/downloads/en/DeviceDoc/22244B.pdf)
(fields
(field (name Reference) U)
(field (name Value) MCP4801))
(pins
(pin (num 1) (name Vdd) (type input))
(pin (num 2) (name ~CS) (type input))
(pin (num 3) (name SCK) (type input))
(pin (num 4) (name SDI) (type input))
(pin (num 5) (name ~LDAC) (type input))
(pin (num 6) (name ~SHDN) (type input))
(pin (num 7) (name Vss) (type input))
(pin (num 8) (name Vout) (type input))))
(libpart (lib BenchBuddy) (part MOS_N_1)
(docs transistors/mos/*.*)
(fields
(field (name Reference) Q)
(field (name Value) MOS_N_1)
(field (name Footprint) ~)
(field (name Datasheet) ~))
(pins
(pin (num 1) (name G) (type input))
(pin (num 2) (name D) (type passive))
(pin (num 3) (name S) (type passive)))))
(libraries
(library (logical device)
(uri "C:\\Program Files (x86)\\KiCad\\share\\library\\device.lib"))
(library (logical conn)
(uri "C:\\Program Files (x86)\\KiCad\\share\\library\\conn.lib"))
(library (logical regul)
(uri "C:\\Program Files (x86)\\KiCad\\share\\library\\regul.lib"))
(library (logical linear)
(uri "C:\\Program Files (x86)\\KiCad\\share\\library\\linear.lib"))
(library (logical opto)
(uri "C:\\Program Files (x86)\\KiCad\\share\\library\\opto.lib"))
(library (logical BenchBuddy)
(uri BenchBuddy.lib))
(library (logical relay_spdt)
(uri relay_spdt.lib)))
(nets
(net (code 1) (name /LED_Driver/LED_STRING+)
(node (ref D3) (pin 2))
(node (ref U2) (pin 5))
(node (ref P4) (pin 6))
(node (ref C4) (pin 1)))
(net (code 2) (name /Fan/CS_N)
(node (ref R34) (pin 2))
(node (ref U8) (pin 2)))
(net (code 3) (name /Arduino/LED_EN_PWM)
(node (ref R32) (pin 2))
(node (ref U2) (pin 4)))
(net (code 4) (name /Arduino/RELAY+)
(node (ref U1) (pin 1))
(node (ref R35) (pin 2)))
(net (code 5) (name GND)
(node (ref SW1) (pin 3))
(node (ref U2) (pin 2))
(node (ref P1) (pin 3))
(node (ref C2) (pin 1))
(node (ref C5) (pin 2))
(node (ref C1) (pin 2))
(node (ref R2) (pin 1))
(node (ref P4) (pin 3))
(node (ref R1) (pin 1))
(node (ref R20) (pin 2))