forked from festlv/thc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththc.net
More file actions
1043 lines (1043 loc) · 34.2 KB
/
Copy paththc.net
File metadata and controls
1043 lines (1043 loc) · 34.2 KB
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 /home/reinis/projects/thc/thc.sch)
(date "svētdiena, 2014. gada 2. marts, plkst. 19 un 10")
(tool "eeschema (2013-may-18)-stable"))
(components
(comp (ref U2)
(value ARDUINO_MINI_PRO)
(libsource (lib doors) (part ARDUINO_MINI_PRO))
(sheetpath (names /) (tstamps /))
(tstamp 52BA2222))
(comp (ref C3)
(value 1uF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 52BA2306))
(comp (ref C4)
(value 100uF)
(libsource (lib device) (part CP))
(sheetpath (names /) (tstamps /))
(tstamp 52BA232D))
(comp (ref U4)
(value 7805)
(libsource (lib regul) (part 7805))
(sheetpath (names /) (tstamps /))
(tstamp 52BA25D0))
(comp (ref C5)
(value 1uF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 52BA2639))
(comp (ref F1)
(value "PTC 1.1A 30V")
(libsource (lib device) (part FUSE))
(sheetpath (names /) (tstamps /))
(tstamp 52BA3520))
(comp (ref D2)
(value 1N4007)
(libsource (lib device) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 52BA359D))
(comp (ref CON1)
(value BARREL_JACK)
(libsource (lib conn) (part BARREL_JACK))
(sheetpath (names /) (tstamps /))
(tstamp 52BF7646))
(comp (ref D3)
(value "5v1 ZENER")
(libsource (lib device) (part ZENER))
(sheetpath (names /) (tstamps /))
(tstamp 52BFE700))
(comp (ref D4)
(value "5v1 ZENER")
(libsource (lib device) (part ZENER))
(sheetpath (names /) (tstamps /))
(tstamp 52BFE860))
(comp (ref D10)
(value "5v1 ZENER")
(libsource (lib device) (part ZENER))
(sheetpath (names /) (tstamps /))
(tstamp 52EEA2D5))
(comp (ref R20)
(value 100R)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 52BFE70F))
(comp (ref R3)
(value 100R)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 52EEB62C))
(comp (ref J2)
(value DB25)
(libsource (lib conn) (part DB25))
(sheetpath (names /Isolation/) (tstamps /52BF21D2/))
(tstamp 52BF21EC))
(comp (ref U5)
(value ISOL_PWR)
(libsource (lib doors) (part ISOL_PWR))
(sheetpath (names /Isolation/) (tstamps /52BF21D2/))
(tstamp 52BF2979))
(comp (ref C7)
(value 10uF)
(libsource (lib device) (part C))
(sheetpath (names /Isolation/) (tstamps /52BF21D2/))
(tstamp 52BF2ABC))
(comp (ref C6)
(value 10uF)
(libsource (lib device) (part C))
(sheetpath (names /Isolation/) (tstamps /52BF21D2/))
(tstamp 52BF2B27))
(comp (ref U3)
(value CNY74-4)
(libsource (lib doors) (part CNY74-4))
(sheetpath (names /Isolation/) (tstamps /52BF21D2/))
(tstamp 52BF3A48))
(comp (ref R7)
(value 200R)
(libsource (lib device) (part R))
(sheetpath (names /Isolation/) (tstamps /52BF21D2/))
(tstamp 52BF3A69))
(comp (ref R8)
(value 200R)
(libsource (lib device) (part R))
(sheetpath (names /Isolation/) (tstamps /52BF21D2/))
(tstamp 52BF3AB4))
(comp (ref R9)
(value 200R)
(libsource (lib device) (part R))
(sheetpath (names /Isolation/) (tstamps /52BF21D2/))
(tstamp 52BF3ABA))
(comp (ref R11)
(value 200R)
(libsource (lib device) (part R))
(sheetpath (names /Isolation/) (tstamps /52BF21D2/))
(tstamp 52BF3AC0))
(comp (ref R1)
(value 1K)
(libsource (lib device) (part R))
(sheetpath (names /Isolation/) (tstamps /52BF21D2/))
(tstamp 52BF3F30))
(comp (ref R2)
(value 1K)
(libsource (lib device) (part R))
(sheetpath (names /Isolation/) (tstamps /52BF21D2/))
(tstamp 52BF3F36))
(comp (ref R4)
(value 1K)
(libsource (lib device) (part R))
(sheetpath (names /Isolation/) (tstamps /52BF21D2/))
(tstamp 52BF3F3C))
(comp (ref R5)
(value 1K)
(libsource (lib device) (part R))
(sheetpath (names /Isolation/) (tstamps /52BF21D2/))
(tstamp 52BF3F42))
(comp (ref IC1)
(value 4N25)
(footprint DIP6)
(libsource (lib opto) (part 4N25))
(sheetpath (names /Isolation/) (tstamps /52BF21D2/))
(tstamp 52BF50D2))
(comp (ref R6)
(value 1K)
(libsource (lib device) (part R))
(sheetpath (names /Isolation/) (tstamps /52BF21D2/))
(tstamp 52BF52A8))
(comp (ref C2)
(value 1uF)
(libsource (lib device) (part C))
(sheetpath (names /Isolation/) (tstamps /52BF21D2/))
(tstamp 52BF5647))
(comp (ref U7)
(value CNY74-4)
(libsource (lib doors) (part CNY74-4))
(sheetpath (names /Isolation/) (tstamps /52BF21D2/))
(tstamp 52BF5B9E))
(comp (ref R14)
(value 200R)
(libsource (lib device) (part R))
(sheetpath (names /Isolation/) (tstamps /52BF21D2/))
(tstamp 52BF5BA4))
(comp (ref R15)
(value 200R)
(libsource (lib device) (part R))
(sheetpath (names /Isolation/) (tstamps /52BF21D2/))
(tstamp 52BF5CCF))
(comp (ref R13)
(value 200R)
(libsource (lib device) (part R))
(sheetpath (names /Isolation/) (tstamps /52BF21D2/))
(tstamp 52BF5E01))
(comp (ref R12)
(value 200R)
(libsource (lib device) (part R))
(sheetpath (names /Isolation/) (tstamps /52BF21D2/))
(tstamp 52BF5F3B))
(comp (ref R16)
(value 10K)
(libsource (lib device) (part R))
(sheetpath (names /Isolation/) (tstamps /52BF21D2/))
(tstamp 52BF63B7))
(comp (ref R17)
(value 10K)
(libsource (lib device) (part R))
(sheetpath (names /Isolation/) (tstamps /52BF21D2/))
(tstamp 52BF63BD))
(comp (ref R18)
(value 10K)
(libsource (lib device) (part R))
(sheetpath (names /Isolation/) (tstamps /52BF21D2/))
(tstamp 52BF63D7))
(comp (ref R19)
(value 10K)
(libsource (lib device) (part R))
(sheetpath (names /Isolation/) (tstamps /52BF21D2/))
(tstamp 52BF63DD))
(comp (ref R10)
(value 200R)
(libsource (lib device) (part R))
(sheetpath (names /Isolation/) (tstamps /52BF21D2/))
(tstamp 52BF6D8A))
(comp (ref D6)
(value "5v1 ZENER")
(libsource (lib device) (part ZENER))
(sheetpath (names /Isolation/) (tstamps /52BF21D2/))
(tstamp 52BFD8F2))
(comp (ref D5)
(value "5v1 ZENER")
(libsource (lib device) (part ZENER))
(sheetpath (names /Isolation/) (tstamps /52BF21D2/))
(tstamp 52BFD8FF))
(comp (ref D7)
(value "5v1 ZENER")
(libsource (lib device) (part ZENER))
(sheetpath (names /Isolation/) (tstamps /52BF21D2/))
(tstamp 52BFDA56))
(comp (ref D8)
(value "5v1 ZENER")
(libsource (lib device) (part ZENER))
(sheetpath (names /Isolation/) (tstamps /52BF21D2/))
(tstamp 52BFDA5C))
(comp (ref D9)
(value "5v1 ZENER")
(libsource (lib device) (part ZENER))
(sheetpath (names /Isolation/) (tstamps /52BF21D2/))
(tstamp 52BFDA62))
(comp (ref U6)
(value 74HC04)
(libsource (lib 74hct04) (part 74HC04))
(sheetpath (names /Isolation/) (tstamps /52BF21D2/))
(tstamp 52C96612))
(comp (ref U8)
(value ISOL_PWR)
(libsource (lib doors) (part ISOL_PWR))
(sheetpath (names "/Plasma source/") (tstamps /52EEA39D/))
(tstamp 52EEA3A5))
(comp (ref C11)
(value 0.1uF)
(libsource (lib device) (part C))
(sheetpath (names "/Plasma source/") (tstamps /52EEA39D/))
(tstamp 52EEA41B))
(comp (ref C12)
(value 10uF)
(libsource (lib device) (part CP))
(sheetpath (names "/Plasma source/") (tstamps /52EEA39D/))
(tstamp 52EEA446))
(comp (ref C10)
(value 0.1uF)
(libsource (lib device) (part C))
(sheetpath (names "/Plasma source/") (tstamps /52EEA39D/))
(tstamp 52EEA483))
(comp (ref C9)
(value 10uF)
(libsource (lib device) (part CP))
(sheetpath (names "/Plasma source/") (tstamps /52EEA39D/))
(tstamp 52EEA489))
(comp (ref PH1)
(value IL300)
(libsource (lib opto) (part IL300))
(sheetpath (names "/Plasma source/") (tstamps /52EEA39D/))
(tstamp 52EEA4CE))
(comp (ref U1)
(value LM358)
(libsource (lib linear) (part LM358))
(sheetpath (names "/Plasma source/") (tstamps /52EEA39D/))
(tstamp 52EEA505))
(comp (ref R22)
(value 47k)
(libsource (lib device) (part R))
(sheetpath (names "/Plasma source/") (tstamps /52EEA39D/))
(tstamp 52EEA52E))
(comp (ref R26)
(value 400R)
(libsource (lib device) (part R))
(sheetpath (names "/Plasma source/") (tstamps /52EEA39D/))
(tstamp 52EEA62E))
(comp (ref U9)
(value LM358)
(libsource (lib linear) (part LM358))
(sheetpath (names "/Plasma source/") (tstamps /52EEA39D/))
(tstamp 52EEA7C4))
(comp (ref C8)
(value 0.1uF)
(libsource (lib device) (part C))
(sheetpath (names "/Plasma source/") (tstamps /52EEA39D/))
(tstamp 52EEA8C2))
(comp (ref C1)
(value 0.1uF)
(libsource (lib device) (part C))
(sheetpath (names "/Plasma source/") (tstamps /52EEA39D/))
(tstamp 52EEA936))
(comp (ref IC2)
(value 4N25)
(footprint DIP6)
(libsource (lib opto) (part 4N25))
(sheetpath (names "/Plasma source/") (tstamps /52EEA39D/))
(tstamp 52EEA9D2))
(comp (ref R24)
(value 400R)
(libsource (lib device) (part R))
(sheetpath (names "/Plasma source/") (tstamps /52EEA39D/))
(tstamp 52EEA9E9))
(comp (ref R27)
(value 1K)
(libsource (lib device) (part R))
(sheetpath (names "/Plasma source/") (tstamps /52EEA39D/))
(tstamp 52EEAADF))
(comp (ref IC3)
(value 4N25)
(footprint DIP6)
(libsource (lib opto) (part 4N25))
(sheetpath (names "/Plasma source/") (tstamps /52EEA39D/))
(tstamp 52EEAD07))
(comp (ref R25)
(value 100R)
(libsource (lib device) (part R))
(sheetpath (names "/Plasma source/") (tstamps /52EEA39D/))
(tstamp 52EEAD0D))
(comp (ref Q1)
(value BC547)
(footprint TO92)
(libsource (lib transistors) (part BC547))
(sheetpath (names "/Plasma source/") (tstamps /52EEA39D/))
(tstamp 52EEAD15))
(comp (ref R23)
(value 10K)
(libsource (lib device) (part R))
(sheetpath (names "/Plasma source/") (tstamps /52EEA39D/))
(tstamp 52EEAEAF))
(comp (ref R21)
(value 3K3)
(libsource (lib device) (part R))
(sheetpath (names "/Plasma source/") (tstamps /52EEA39D/))
(tstamp 52EEAF9F))
(comp (ref R28)
(value 1K)
(libsource (lib device) (part R))
(sheetpath (names "/Plasma source/") (tstamps /52EEA39D/))
(tstamp 52EEB237))
(comp (ref J3)
(value DB9)
(libsource (lib db9_shield) (part DB9))
(sheetpath (names "/Plasma source/") (tstamps /52EEA39D/))
(tstamp 52EEB657))
(comp (ref D1)
(value "5v1 ZENER")
(libsource (lib device) (part ZENER))
(sheetpath (names "/Plasma source/") (tstamps /52EEA39D/))
(tstamp 530289CF))
(comp (ref D11)
(value "12v1 ZENER")
(libsource (lib device) (part ZENER))
(sheetpath (names "/Plasma source/") (tstamps /52EEA39D/))
(tstamp 53028A51))
(comp (ref D12)
(value "12v1 ZENER")
(libsource (lib device) (part ZENER))
(sheetpath (names "/Plasma source/") (tstamps /52EEA39D/))
(tstamp 53028AD8))
(comp (ref 50K1)
(value POT)
(libsource (lib device) (part POT))
(sheetpath (names "/Plasma source/") (tstamps /52EEA39D/))
(tstamp 53136847)))
(libparts
(libpart (lib 74hct04) (part 74HCT04)
(fields
(field (name Reference) U)
(field (name Value) 74HCT04)
(field (name Footprint) ~)
(field (name Datasheet) ~))
(pins
(pin (num 1) (name ~) (type input))
(pin (num 2) (name ~) (type output))
(pin (num 3) (name ~) (type input))
(pin (num 4) (name ~) (type output))
(pin (num 5) (name ~) (type input))
(pin (num 6) (name ~) (type output))
(pin (num 7) (name GND) (type power_in))
(pin (num 8) (name ~) (type output))
(pin (num 9) (name ~) (type input))
(pin (num 10) (name ~) (type output))
(pin (num 11) (name ~) (type input))
(pin (num 12) (name ~) (type output))
(pin (num 13) (name ~) (type input))
(pin (num 14) (name VCC) (type power_in))))
(libpart (lib db9_shield) (part DB9)
(footprints
(fp DB9*))
(fields
(field (name Reference) J)
(field (name Value) DB9)
(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))
(pin (num 4) (name 4) (type passive))
(pin (num 5) (name 5) (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 SHIELD) (type input))))
(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 CP)
(description "Condensateur polarise")
(footprints
(fp CP*)
(fp SM*))
(fields
(field (name Reference) C)
(field (name Value) CP)
(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 FUSE)
(fields
(field (name Reference) F)
(field (name Value) FUSE)
(field (name Footprint) ~)
(field (name Datasheet) ~))
(pins
(pin (num 1) (name ~) (type input))
(pin (num 2) (name ~) (type input))))
(libpart (lib device) (part POT)
(description Potentionmetre)
(fields
(field (name Reference) RV)
(field (name Value) POT)
(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 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 ZENER)
(description "Diode zener")
(footprints
(fp D?)
(fp SO*)
(fp SM*))
(fields
(field (name Reference) D)
(field (name Value) ZENER)
(field (name Footprint) ~)
(field (name Datasheet) ~))
(pins
(pin (num 1) (name A) (type passive))
(pin (num 2) (name K) (type passive))))
(libpart (lib transistors) (part BC547)
(description "BC547, 45V Vce, 0.1A Ic, NPN, Small Signal Transistor,TO-92")
(docs http://www.fairchildsemi.com/ds/BC/BC547.pdf)
(footprints
(fp TO92*))
(fields
(field (name Reference) Q)
(field (name Value) BC547)
(field (name Footprint) TO92)
(field (name Datasheet) ~))
(pins
(pin (num 1) (name C) (type passive))
(pin (num 2) (name B) (type input))
(pin (num 3) (name E) (type passive))))
(libpart (lib conn) (part BARREL_JACK)
(description "DC Barrel Jack")
(fields
(field (name Reference) CON)
(field (name Value) BARREL_JACK)
(field (name Footprint) ~)
(field (name Datasheet) ~))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))
(pin (num 3) (name ~) (type passive))))
(libpart (lib conn) (part DB25)
(footprints
(fp DB25*))
(fields
(field (name Reference) J)
(field (name Value) DB25)
(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))
(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))
(pin (num 10) (name 10) (type passive))
(pin (num 11) (name 11) (type passive))
(pin (num 12) (name 12) (type passive))
(pin (num 13) (name 13) (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))
(pin (num 25) (name P25) (type passive))))
(libpart (lib linear) (part LM358)
(description "Dual Op amp (low power)")
(docs ns/lm158.pdf)
(fields
(field (name Reference) U)
(field (name Value) LM358))
(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 regul) (part 7805)
(description "Linear Regulator +5V")
(docs regulator\lm78xx.pdf)
(fields
(field (name Reference) U)
(field (name Value) 7805)
(field (name Footprint) ~)
(field (name Datasheet) ~))
(pins
(pin (num GND) (name GND) (type input))
(pin (num VI) (name VI) (type input))
(pin (num VO) (name VO) (type power_out))))
(libpart (lib opto) (part 4N25)
(description "4N25, DIP6, DC Optocoupler Base Connected, Vce 30V, CTR 20%, Viso 2500V")
(fields
(field (name Reference) IC)
(field (name Value) 4N25)
(field (name Footprint) DIP6)
(field (name Datasheet) ~))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))
(pin (num 4) (name ~) (type passive))
(pin (num 5) (name ~) (type passive))
(pin (num 6) (name ~) (type passive))))
(libpart (lib opto) (part IL300)
(description "IL300, Isolated Linear Photocoupler, High Gain, Wideband, DIP8/SMD8")
(docs http://www.vishay.com/docs/83622/il300.pdf)
(footprints
(fp DIP*)
(fp SMD*))
(fields
(field (name Reference) PH)
(field (name Value) IL300)
(field (name Footprint) ~)
(field (name Datasheet) ~))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))
(pin (num 3) (name ~) (type passive))
(pin (num 4) (name ~) (type passive))
(pin (num 5) (name ~) (type passive))
(pin (num 6) (name ~) (type passive))))
(libpart (lib doors) (part ARDUINO_MINI_PRO)
(fields
(field (name Reference) U)
(field (name Value) ARDUINO_MINI_PRO)
(field (name Footprint) ~)
(field (name Datasheet) ~))
(pins
(pin (num 1) (name TX) (type output))
(pin (num 2) (name RX) (type output))
(pin (num 3) (name RST) (type output))
(pin (num 4) (name GND) (type output))
(pin (num 5) (name 2) (type output))
(pin (num 6) (name 3) (type output))
(pin (num 7) (name 4) (type output))
(pin (num 8) (name 5) (type output))
(pin (num 9) (name 6) (type output))
(pin (num 10) (name 7) (type output))
(pin (num 11) (name 8) (type output))
(pin (num 12) (name 9) (type output))
(pin (num 15) (name A7) (type output))
(pin (num 16) (name A6) (type output))
(pin (num 17) (name 10) (type output))
(pin (num 18) (name 11) (type output))
(pin (num 19) (name 12) (type output))
(pin (num 20) (name 13) (type output))
(pin (num 21) (name A0) (type output))
(pin (num 22) (name A1) (type output))
(pin (num 23) (name A2) (type output))
(pin (num 24) (name A3) (type output))
(pin (num 25) (name VCC) (type output))
(pin (num 26) (name RST) (type output))
(pin (num 27) (name GND) (type output))
(pin (num 28) (name RAW) (type output))
(pin (num ~) (name A4) (type output))))
(libpart (lib doors) (part CNY74-4)
(fields
(field (name Reference) U)
(field (name Value) CNY74-4)
(field (name Footprint) ~)
(field (name Datasheet) ~))
(pins
(pin (num 1) (name A1) (type input))
(pin (num 2) (name C1) (type input))
(pin (num 3) (name C2) (type input))
(pin (num 4) (name A2) (type input))
(pin (num 5) (name A3) (type input))
(pin (num 6) (name C3) (type input))
(pin (num 7) (name C4) (type input))
(pin (num 8) (name A4) (type input))
(pin (num 9) (name E4) (type input))
(pin (num 10) (name C4) (type input))
(pin (num 11) (name C3) (type input))
(pin (num 12) (name E3) (type input))
(pin (num 13) (name E3) (type input))
(pin (num 14) (name C2) (type input))
(pin (num 15) (name C1) (type input))
(pin (num 16) (name E1) (type input))))
(libpart (lib doors) (part ISOL_PWR)
(fields
(field (name Reference) U)
(field (name Value) ISOL_PWR)
(field (name Footprint) ~)
(field (name Datasheet) ~))
(pins
(pin (num 1) (name IN_V-) (type input))
(pin (num 2) (name IN_V+) (type input))
(pin (num 3) (name OUT_V-) (type input))
(pin (num 4) (name OUT_V+) (type input)))))
(libraries
(library (logical 74hct04)
(uri 74hct04.lib))
(library (logical db9_shield)
(uri db9_shield.lib))
(library (logical device)
(uri /usr/share/kicad/library/device.lib))
(library (logical transistors)
(uri /usr/share/kicad/library/transistors.lib))
(library (logical conn)
(uri /usr/share/kicad/library/conn.lib))
(library (logical linear)
(uri /usr/share/kicad/library/linear.lib))
(library (logical regul)
(uri /usr/share/kicad/library/regul.lib))
(library (logical opto)
(uri /usr/share/kicad/library/opto.lib))
(library (logical doors)
(uri doors.lib)))
(nets
(net (code 1) (name "")
(node (ref D3) (pin 2))
(node (ref U2) (pin 5))
(node (ref R20) (pin 2)))
(net (code 2) (name "")
(node (ref D4) (pin 2))
(node (ref U2) (pin 6))
(node (ref R3) (pin 2)))
(net (code 3) (name GND)
(node (ref C3) (pin 2))
(node (ref U4) (pin GND))
(node (ref C4) (pin 2))
(node (ref D2) (pin 1))
(node (ref C5) (pin 2))
(node (ref IC3) (pin 2))
(node (ref D8) (pin 1))
(node (ref C10) (pin 1))
(node (ref C9) (pin 1))
(node (ref IC2) (pin 4))
(node (ref D9) (pin 1))
(node (ref C8) (pin 2))
(node (ref D7) (pin 1))
(node (ref R17) (pin 2))
(node (ref 50K1) (pin 3))
(node (ref U9) (pin 4))
(node (ref D6) (pin 1))
(node (ref D5) (pin 1))
(node (ref U8) (pin 1))
(node (ref R16) (pin 1))
(node (ref R19) (pin 2))
(node (ref R18) (pin 2))
(node (ref CON1) (pin 2))
(node (ref CON1) (pin 3))
(node (ref D10) (pin 1))
(node (ref IC1) (pin 2))
(node (ref C6) (pin 2))
(node (ref D3) (pin 1))
(node (ref D4) (pin 1))
(node (ref U5) (pin 1))
(node (ref U3) (pin 3))
(node (ref U2) (pin 27))
(node (ref U3) (pin 2))
(node (ref U3) (pin 7))
(node (ref U3) (pin 6))
(node (ref U2) (pin 4)))
(net (code 4) (name I_TORCH_ON)
(node (ref R21) (pin 2))
(node (ref R20) (pin 1)))
(net (code 5) (name "")
(node (ref U2) (pin 24)))
(net (code 7) (name "")
(node (ref U2) (pin ~)))
(net (code 8) (name I_ARC_OK)
(node (ref IC2) (pin 5))
(node (ref R27) (pin 1))
(node (ref R3) (pin 1)))
(net (code 9) (name "")
(node (ref U2) (pin ~)))
(net (code 10) (name "")
(node (ref U2) (pin 22)))
(net (code 11) (name "")
(node (ref U2) (pin 15)))
(net (code 12) (name "")
(node (ref U2) (pin 16)))
(net (code 13) (name "")
(node (ref U2) (pin 23)))
(net (code 14) (name "")
(node (ref U2) (pin 3)))
(net (code 15) (name "")
(node (ref U2) (pin 2)))
(net (code 16) (name "")
(node (ref U2) (pin 1)))
(net (code 17) (name "")
(node (ref U2) (pin 26)))
(net (code 18) (name "")
(node (ref U2) (pin 28)))
(net (code 19) (name "")
(node (ref U2) (pin 20)))
(net (code 20) (name I_THC_OUT1)
(node (ref U2) (pin 11))
(node (ref R7) (pin 2)))
(net (code 21) (name I_ANALOG_IN)
(node (ref U9) (pin 2))
(node (ref U2) (pin 21))
(node (ref U9) (pin 1)))
(net (code 22) (name I_THC_OUT5)
(node (ref R8) (pin 2))
(node (ref U2) (pin 12)))
(net (code 23) (name I_THC_INP4)
(node (ref R16) (pin 2))
(node (ref U2) (pin 10))
(node (ref U7) (pin 16)))
(net (code 24) (name I_THC_OUT2)
(node (ref U2) (pin 17))
(node (ref R11) (pin 2)))
(net (code 25) (name I_THC_OUT3)
(node (ref R10) (pin 2))
(node (ref U2) (pin 18)))
(net (code 26) (name I_THC_OUT4)
(node (ref U2) (pin 19))
(node (ref R9) (pin 2)))
(net (code 27) (name I_THC_INP1)
(node (ref U7) (pin 9))
(node (ref U2) (pin 7))
(node (ref R19) (pin 1)))
(net (code 28) (name I_THC_INP2)
(node (ref R18) (pin 1))
(node (ref U7) (pin 12))
(node (ref U2) (pin 8)))
(net (code 29) (name I_THC_INP3)
(node (ref U2) (pin 9))
(node (ref U7) (pin 13))
(node (ref R17) (pin 1)))
(net (code 30) (name +5V)
(node (ref R27) (pin 2))
(node (ref C5) (pin 1))
(node (ref D10) (pin 2))
(node (ref C6) (pin 1))
(node (ref PH1) (pin 6))
(node (ref U5) (pin 2))
(node (ref R23) (pin 2))
(node (ref U7) (pin 11))
(node (ref U2) (pin 25))
(node (ref U7) (pin 10))
(node (ref Q1) (pin 1))
(node (ref U7) (pin 14))
(node (ref U7) (pin 15))
(node (ref U4) (pin VO)))
(net (code 31) (name "")
(node (ref F1) (pin 1))
(node (ref CON1) (pin 1)))
(net (code 32) (name +12V)
(node (ref D2) (pin 2))
(node (ref C10) (pin 2))
(node (ref U9) (pin 8))
(node (ref U8) (pin 2))
(node (ref C9) (pin 2))
(node (ref C4) (pin 1))
(node (ref C3) (pin 1))
(node (ref F1) (pin 2))
(node (ref C8) (pin 1))
(node (ref U4) (pin VI)))
(net (code 33) (name /Isolation/U_THC_OUT2)
(node (ref R6) (pin 1))
(node (ref IC1) (pin 4))
(node (ref J2) (pin 10)))
(net (code 34) (name "")
(node (ref R11) (pin 1))
(node (ref IC1) (pin 1))
(node (ref D6) (pin 2)))
(net (code 35) (name "")
(node (ref U7) (pin 1))
(node (ref R14) (pin 2)))
(net (code 36) (name "")
(node (ref R12) (pin 2))
(node (ref U7) (pin 8)))
(net (code 37) (name "")
(node (ref U7) (pin 5))
(node (ref R13) (pin 2)))
(net (code 38) (name "")
(node (ref R15) (pin 2))
(node (ref U7) (pin 4)))
(net (code 39) (name "")
(node (ref J2) (pin 17)))
(net (code 40) (name "")
(node (ref J2) (pin 4)))
(net (code 41) (name "")
(node (ref J2) (pin 16)))
(net (code 42) (name "")
(node (ref J2) (pin 5)))
(net (code 43) (name GNDA)
(node (ref U5) (pin 3))
(node (ref C7) (pin 2))
(node (ref C2) (pin 2))
(node (ref U7) (pin 7))
(node (ref U7) (pin 6))
(node (ref J2) (pin 23))
(node (ref R6) (pin 2))
(node (ref J2) (pin 19))
(node (ref J2) (pin 18))
(node (ref U7) (pin 3))
(node (ref U7) (pin 2))
(node (ref R4) (pin 2))
(node (ref R5) (pin 2))
(node (ref R2) (pin 2))
(node (ref U6) (pin 7))
(node (ref R1) (pin 2))
(node (ref J2) (pin 25))
(node (ref J2) (pin 20))
(node (ref J2) (pin 24))
(node (ref J2) (pin 22))
(node (ref J2) (pin 21)))
(net (code 44) (name "")
(node (ref R12) (pin 1))
(node (ref U6) (pin 12)))
(net (code 45) (name "")
(node (ref R13) (pin 1))
(node (ref U6) (pin 10)))
(net (code 46) (name "")
(node (ref J2) (pin 9)))
(net (code 47) (name "")
(node (ref J2) (pin 8)))
(net (code 48) (name "")
(node (ref J2) (pin 7)))
(net (code 49) (name "")
(node (ref J2) (pin 6)))
(net (code 50) (name "")
(node (ref R14) (pin 1))
(node (ref U6) (pin 2)))
(net (code 52) (name "")
(node (ref R15) (pin 1))
(node (ref U6) (pin 4)))
(net (code 58) (name "")
(node (ref D9) (pin 2))
(node (ref R7) (pin 1))
(node (ref U3) (pin 8)))
(net (code 59) (name "")
(node (ref U3) (pin 5))
(node (ref R8) (pin 1))
(node (ref D8) (pin 2)))
(net (code 60) (name "")
(node (ref R9) (pin 1))
(node (ref D7) (pin 2))
(node (ref U3) (pin 4)))
(net (code 61) (name "")
(node (ref D5) (pin 2))
(node (ref R10) (pin 1))
(node (ref U3) (pin 1)))
(net (code 62) (name /Isolation/U_THC_OUT3)
(node (ref U3) (pin 16))
(node (ref J2) (pin 11))
(node (ref R5) (pin 1)))
(net (code 63) (name /Isolation/U_THC_OUT4)
(node (ref J2) (pin 12))
(node (ref U3) (pin 13))
(node (ref R4) (pin 1)))
(net (code 64) (name /Isolation/U_THC_OUT5)
(node (ref R2) (pin 1))
(node (ref U3) (pin 12))
(node (ref J2) (pin 13)))
(net (code 65) (name /Isolation/U_THC_OUT1)
(node (ref J2) (pin 15))
(node (ref U3) (pin 9))
(node (ref R1) (pin 1)))
(net (code 66) (name /Isolation/U_THC_INP2)
(node (ref J2) (pin 14))
(node (ref U6) (pin 11)))
(net (code 67) (name /Isolation/U_THC_INP1)
(node (ref J2) (pin 1))
(node (ref U6) (pin 13)))
(net (code 68) (name +5VA)
(node (ref C2) (pin 1))
(node (ref U3) (pin 10))
(node (ref U3) (pin 14))
(node (ref C7) (pin 1))
(node (ref U3) (pin 15))
(node (ref U3) (pin 11))
(node (ref U5) (pin 4))
(node (ref U6) (pin 14))
(node (ref IC1) (pin 5)))
(net (code 69) (name "")
(node (ref IC1) (pin 6)))
(net (code 70) (name /Isolation/U_THC_INP3)
(node (ref J2) (pin 2))
(node (ref U6) (pin 3)))
(net (code 71) (name /Isolation/U_THC_INP4)
(node (ref U6) (pin 1))
(node (ref J2) (pin 3)))
(net (code 72) (name "")
(node (ref Q1) (pin 2))
(node (ref R21) (pin 1))
(node (ref R23) (pin 1)))
(net (code 73) (name +12C)
(node (ref U1) (pin 8))
(node (ref PH1) (pin 3))
(node (ref C1) (pin 1))
(node (ref U8) (pin 4))
(node (ref C12) (pin 2))
(node (ref C11) (pin 2))
(node (ref J3) (pin 7))
(node (ref R28) (pin 2)))
(net (code 74) (name "/Plasma source/ANALOG_IN")
(node (ref D1) (pin 2))
(node (ref U1) (pin 3))
(node (ref J3) (pin 3)))
(net (code 75) (name "/Plasma source/TORCH_ON")
(node (ref IC3) (pin 5))
(node (ref R28) (pin 1))
(node (ref D12) (pin 2))
(node (ref J3) (pin 1)))
(net (code 76) (name "")
(node (ref IC2) (pin 6)))
(net (code 77) (name "")
(node (ref IC3) (pin 6)))
(net (code 78) (name "")
(node (ref IC3) (pin 1))
(node (ref R25) (pin 1)))
(net (code 79) (name "")
(node (ref Q1) (pin 3))