-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSCMD2.net
936 lines (936 loc) · 30.6 KB
/
SCMD2.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
(export (version D)
(design
(source D:/xmega128/SCMD2/SCMD2.sch)
(date "16/09/2014 20:21:06")
(tool "eeschema (2013-07-07 BZR 4022)-stable"))
(components
(comp (ref IC1)
(value ATMEGA8-P)
(footprint DIL28)
(libsource (lib atmel) (part ATMEGA8-P))
(sheetpath (names /) (tstamps /))
(tstamp 53D2D0D5))
(comp (ref C21)
(value 0.1uF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 53D2D25E))
(comp (ref R1)
(value 10k)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 53D2D6A1))
(comp (ref D1)
(value 1n4148)
(libsource (lib device) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 53D2D6DD))
(comp (ref C1)
(value 0.1uF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 53D2D7C5))
(comp (ref X1)
(value 16MHz)
(libsource (lib device) (part CRYSTAL))
(sheetpath (names /) (tstamps /))
(tstamp 53D2DA13))
(comp (ref C2)
(value 22pF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 53D2DA45))
(comp (ref C10)
(value 22pF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 53D2DA5E))
(comp (ref SW2)
(value SW_PUSH)
(libsource (lib device) (part SW_PUSH))
(sheetpath (names /) (tstamps /))
(tstamp 53D2DBFA))
(comp (ref R17)
(value 10k)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 53D2DC78))
(comp (ref R7)
(value 330R)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 53D2E1D7))
(comp (ref R8)
(value 330R)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 53D2E1DD))
(comp (ref J1)
(value "PWR JACK")
(libsource (lib conn) (part BARREL_JACK))
(sheetpath (names /) (tstamps /))
(tstamp 53D6C476))
(comp (ref D2)
(value 1N4001)
(libsource (lib device) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 53D6C4A7))
(comp (ref U3)
(value TLE2426)
(libsource (lib texas_other) (part TLE2426))
(sheetpath (names /) (tstamps /))
(tstamp 53D956D7))
(comp (ref C3)
(value 220uF)
(libsource (lib device) (part CP1))
(sheetpath (names /) (tstamps /))
(tstamp 53D95A1B))
(comp (ref U4)
(value TL431LP)
(footprint TO92)
(libsource (lib special) (part TL431LP))
(sheetpath (names /) (tstamps /))
(tstamp 53DC0444))
(comp (ref R11)
(value 100R)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 53DC0D0F))
(comp (ref R12)
(value 3k9)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 53DC0D1C))
(comp (ref R9)
(value 200R)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 53DC101A))
(comp (ref C19)
(value 0.1uF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 53DC1800))
(comp (ref R4)
(value 47k)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 53DD55EC))
(comp (ref Q1)
(value 2N3904)
(libsource (lib device) (part NPN))
(sheetpath (names /) (tstamps /))
(tstamp 53DD445F))
(comp (ref J2)
(value ICSP)
(libsource (lib conn) (part CONN_3X2))
(sheetpath (names /) (tstamps /))
(tstamp 53EBAA73))
(comp (ref D6)
(value LM385-1.2)
(libsource (lib device) (part DIODESCH))
(sheetpath (names /) (tstamps /))
(tstamp 53EBB0A5))
(comp (ref R10)
(value 15k)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 53EBB0B4))
(comp (ref RV1)
(value 20k)
(libsource (lib device) (part POT))
(sheetpath (names /) (tstamps /))
(tstamp 53EBB0C3))
(comp (ref C11)
(value 10uF)
(libsource (lib device) (part CP1))
(sheetpath (names /) (tstamps /))
(tstamp 53EBB0D0))
(comp (ref U7)
(value OP177)
(libsource (lib op177) (part OP177))
(sheetpath (names /) (tstamps /))
(tstamp 53EBB973))
(comp (ref J3)
(value SKIN_EL)
(libsource (lib conn) (part CONN_4X2))
(sheetpath (names /) (tstamps /))
(tstamp 53EBC075))
(comp (ref U2)
(value OP177)
(libsource (lib op177) (part OP177))
(sheetpath (names /) (tstamps /))
(tstamp 53EBC66B))
(comp (ref C8)
(value 0.1uF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 53EBC67A))
(comp (ref C9)
(value 0.1uF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 53EBC68A))
(comp (ref R3)
(value 100k)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 53EBC69A))
(comp (ref C7)
(value 1.5uF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 53EBC6AC))
(comp (ref R6)
(value 100R)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 53EBC6BB))
(comp (ref D5)
(value 1N4734A)
(libsource (lib device) (part DIODESCH))
(sheetpath (names /) (tstamps /))
(tstamp 53EBC6CA))
(comp (ref U1)
(value OP177)
(libsource (lib op177) (part OP177))
(sheetpath (names /) (tstamps /))
(tstamp 53EBD33F))
(comp (ref C5)
(value 0.1uF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 53EBD345))
(comp (ref C6)
(value 0.1uF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 53EBD34B))
(comp (ref R2)
(value 100k)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 53EBD351))
(comp (ref C4)
(value 1.5uF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 53EBD357))
(comp (ref R5)
(value 100R)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 53EBD35D))
(comp (ref D4)
(value 1N4734A)
(libsource (lib device) (part DIODESCH))
(sheetpath (names /) (tstamps /))
(tstamp 53EBD363))
(comp (ref U6)
(value OP177)
(libsource (lib op177) (part OP177))
(sheetpath (names /) (tstamps /))
(tstamp 53EBD527))
(comp (ref C16)
(value 0.1uF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 53EBD52D))
(comp (ref C17)
(value 0.1uF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 53EBD533))
(comp (ref R14)
(value 100k)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 53EBD539))
(comp (ref C15)
(value 1.5uF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 53EBD53F))
(comp (ref R16)
(value 100R)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 53EBD545))
(comp (ref D8)
(value 1N4734A)
(libsource (lib device) (part DIODESCH))
(sheetpath (names /) (tstamps /))
(tstamp 53EBD54B))
(comp (ref U5)
(value OP177)
(libsource (lib op177) (part OP177))
(sheetpath (names /) (tstamps /))
(tstamp 53EBD592))
(comp (ref C13)
(value 0.1uF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 53EBD598))
(comp (ref C14)
(value 0.1uF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 53EBD59E))
(comp (ref R13)
(value 100k)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 53EBD5A4))
(comp (ref C12)
(value 1.5uF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 53EBD5AA))
(comp (ref R15)
(value 100R)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 53EBD5B0))
(comp (ref D7)
(value 1N4734A)
(libsource (lib device) (part DIODESCH))
(sheetpath (names /) (tstamps /))
(tstamp 53EBD5B6))
(comp (ref D3)
(value LED)
(libsource (lib device) (part DOUBLE_LED))
(sheetpath (names /) (tstamps /))
(tstamp 53EBE012))
(comp (ref J4)
(value MINIUSB)
(libsource (lib miniusb) (part MINIUSB))
(sheetpath (names /) (tstamps /))
(tstamp 53EBE5B9))
(comp (ref U8)
(value FT232RL)
(libsource (lib interface) (part FT232RL))
(sheetpath (names /) (tstamps /))
(tstamp 53ED323B))
(comp (ref C18)
(value 10nF)
(libsource (lib device) (part CP1))
(sheetpath (names /) (tstamps /))
(tstamp 53ED3505))
(comp (ref L1)
(value 100uH)
(libsource (lib device) (part INDUCTOR_SMALL))
(sheetpath (names /) (tstamps /))
(tstamp 53ED353F))
(comp (ref C22)
(value 10uF)
(libsource (lib device) (part CP1))
(sheetpath (names /) (tstamps /))
(tstamp 53ED358A))
(comp (ref C23)
(value 0.1uF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 53ED3590))
(comp (ref C20)
(value 0.1uF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 53ED4470))
(comp (ref SW1)
(value SW_GENERIC)
(libsource (lib scmd2-parts) (part SW_GENERIC))
(sheetpath (names /) (tstamps /))
(tstamp 53FB9055)))
(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 CP1)
(description "Condensateur polarise")
(footprints
(fp CP*)
(fp SM*))
(fields
(field (name Reference) C)
(field (name Value) CP1)
(field (name Footprint) ~)
(field (name Datasheet) ~))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib device) (part CRYSTAL)
(fields
(field (name Reference) X)
(field (name Value) CRYSTAL)
(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 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 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 DOUBLE_LED)
(fields
(field (name Reference) D)
(field (name Value) DOUBLE_LED)
(field (name Footprint) ~)
(field (name Datasheet) ~))
(pins
(pin (num A1) (name A1) (type passive))
(pin (num A2) (name A2) (type passive))
(pin (num K) (name K) (type passive))))
(libpart (lib device) (part INDUCTOR_SMALL)
(fields
(field (name Reference) L)
(field (name Value) INDUCTOR_SMALL)
(field (name Footprint) ~)
(field (name Datasheet) ~))
(pins
(pin (num 1) (name 1) (type input))
(pin (num 2) (name 2) (type input))))
(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 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 SW_PUSH)
(description "Push Button")
(fields
(field (name Reference) SW)
(field (name Value) SW_PUSH)
(field (name Footprint) ~)
(field (name Datasheet) ~))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib conn) (part BARREL_JACK)
(description "DC Barrel Jack")
(fields
(field (name Reference) CON)
(field (name Value) BARREL_JACK))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))
(pin (num 3) (name ~) (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 conn) (part CONN_4X2)
(description "Symbole general de connecteur")
(fields
(field (name Reference) P)
(field (name Value) CONN_4X2))
(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))))
(libpart (lib special) (part TL431LP)
(fields
(field (name Reference) U)
(field (name Value) TL431LP)
(field (name Footprint) ~))
(pins
(pin (num 1) (name R) (type input))
(pin (num 2) (name A) (type input))
(pin (num 3) (name K) (type input))))
(libpart (lib interface) (part FT232RL)
(description "USB to serial interface")
(fields
(field (name Reference) U)
(field (name Value) FT232RL))
(pins
(pin (num 1) (name TXD) (type output))
(pin (num 2) (name DTR) (type output))
(pin (num 3) (name RTS) (type output))
(pin (num 4) (name VCCIO) (type input))
(pin (num 5) (name RXD) (type input))
(pin (num 6) (name RI) (type input))
(pin (num 7) (name GND) (type power_in))
(pin (num 9) (name DCR) (type input))
(pin (num 10) (name DCD) (type input))
(pin (num 11) (name CTS) (type input))
(pin (num 12) (name CBUS4) (type BiDi))
(pin (num 13) (name CBUS2) (type BiDi))
(pin (num 14) (name CBUS3) (type BiDi))
(pin (num 15) (name USBD+) (type BiDi))
(pin (num 16) (name USBD-) (type BiDi))
(pin (num 17) (name 3V3OUT) (type input))
(pin (num 18) (name GND) (type power_in))
(pin (num 19) (name RESET) (type input))
(pin (num 20) (name VCC) (type power_in))
(pin (num 21) (name GND) (type power_in))
(pin (num 22) (name CBUS1) (type output))
(pin (num 23) (name CBUS0) (type BiDi))
(pin (num 25) (name AGND) (type power_in))
(pin (num 26) (name TEST) (type power_in))
(pin (num 27) (name OSCI) (type input))
(pin (num 28) (name OSCO) (type output))))
(libpart (lib atmel) (part ATMEGA8-P)
(description "ATMEGA8, PDIP28 Narrow, 8k Flash, 1k SRAM, 512B EEPROM")
(docs http://www.atmel.com/dyn/resources/prod_documents/doc2486.pdf)
(footprints
(fp 28DIP-ELL600)
(fp 28dip600))
(fields
(field (name Reference) IC)
(field (name Value) ATMEGA8-P)
(field (name Footprint) DIL28))
(pins
(pin (num 1) (name "PC6(~RESET~)") (type BiDi))
(pin (num 2) (name "(RXD)PD0") (type BiDi))
(pin (num 3) (name "(TXD)PD1") (type BiDi))
(pin (num 4) (name "(INT0)PD2") (type BiDi))
(pin (num 5) (name "(INT1)PD3") (type BiDi))
(pin (num 6) (name "(XCK/T0)PD4") (type BiDi))
(pin (num 7) (name VCC) (type power_in))
(pin (num 8) (name GND) (type power_in))
(pin (num 9) (name "PB6(XTAL1/TOSC1)") (type BiDi))
(pin (num 10) (name "PB7(XTAL2/TOSC2)") (type BiDi))
(pin (num 11) (name "(T1)PD5") (type BiDi))
(pin (num 12) (name "(AIN0)PD6") (type BiDi))
(pin (num 13) (name "(AIN1)PD7") (type BiDi))
(pin (num 14) (name "(ICP)PB0") (type BiDi))
(pin (num 15) (name "(OC1A)PB1") (type BiDi))
(pin (num 16) (name "(~SS~/OC1B)PB2") (type BiDi))
(pin (num 17) (name "(MOSI/OC2)PB3") (type BiDi))
(pin (num 18) (name "(MISO)PB4") (type BiDi))
(pin (num 19) (name "(SCK)PB5") (type BiDi))
(pin (num 20) (name AVCC) (type power_in))
(pin (num 21) (name AREF) (type BiDi))
(pin (num 22) (name AGND) (type power_in))
(pin (num 23) (name "(ADC0)PC0") (type BiDi))
(pin (num 24) (name "(ADC1)PC1") (type BiDi))
(pin (num 25) (name "(ADC2)PC2") (type BiDi))
(pin (num 26) (name "(ADC3)PC3") (type BiDi))
(pin (num 27) (name "(ADC4/SDA)PC4") (type BiDi))
(pin (num 28) (name "(ADC5/SCL)PC5") (type BiDi))))
(libpart (lib texas_other) (part TLE2426)
(description "Rail Splitter Precision Virtual Ground")
(footprints
(fp DIP8)
(fp LP))
(fields
(field (name Reference) U)
(field (name Value) TLE2426))
(pins
(pin (num 1) (name VIN) (type input))
(pin (num 2) (name COM) (type input))
(pin (num 3) (name VOUT) (type output))))
(libpart (lib op177) (part OP177)
(fields
(field (name Reference) U)
(field (name Value) OP177)
(field (name Footprint) ~)
(field (name Datasheet) ~))
(pins
(pin (num 2) (name -) (type input))
(pin (num 3) (name +) (type input))
(pin (num 4) (name V-) (type power_in))
(pin (num 6) (name ~) (type output))
(pin (num 7) (name V+) (type power_in))))
(libpart (lib miniusb) (part MINIUSB)
(fields
(field (name Reference) J)
(field (name Value) MINIUSB)
(field (name Footprint) ~)
(field (name Datasheet) ~))
(pins
(pin (num 1) (name VBUS) (type input))
(pin (num 2) (name D-) (type input))
(pin (num 3) (name D+) (type input))
(pin (num 4) (name ID) (type input))
(pin (num 5) (name GND) (type input))))
(libpart (lib scmd2-parts) (part SW_GENERIC)
(description "generic switch")
(fields
(field (name Reference) SW)
(field (name Value) SW_GENERIC)
(field (name Footprint) ~)
(field (name Datasheet) ~))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (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 special)
(uri "C:\\Program Files (x86)\\KiCad\\share\\library\\special.lib"))
(library (logical interface)
(uri "C:\\Program Files (x86)\\KiCad\\share\\library\\interface.lib"))
(library (logical atmel)
(uri "C:\\Program Files (x86)\\KiCad\\share\\library\\atmel.lib"))
(library (logical texas_other)
(uri "C:\\Program Files (x86)\\KiCad\\share\\library\\contrib\\texas_other.lib"))
(library (logical op177)
(uri op177.lib))
(library (logical miniusb)
(uri "C:\\Program Files (x86)\\KiCad\\share\\library\\contrib\\miniusb.lib"))
(library (logical scmd2-parts)
(uri scmd2-parts.lib)))
(nets
(net (code 1) (name "")
(node (ref R15) (pin 1))
(node (ref U5) (pin 6))
(node (ref R13) (pin 2))
(node (ref C12) (pin 2)))
(net (code 2) (name VEE)
(node (ref R10) (pin 2))
(node (ref SW1) (pin 2))
(node (ref C6) (pin 1))
(node (ref U2) (pin 4))
(node (ref C9) (pin 1))
(node (ref U7) (pin 4))
(node (ref U5) (pin 4))
(node (ref C17) (pin 1))
(node (ref C14) (pin 1))
(node (ref U1) (pin 4))
(node (ref U6) (pin 4))
(node (ref U3) (pin 2))
(node (ref C3) (pin 2)))
(net (code 3) (name "")
(node (ref C15) (pin 2))
(node (ref U6) (pin 6))
(node (ref R16) (pin 1))
(node (ref R14) (pin 2)))
(net (code 4) (name GND)
(node (ref SW2) (pin 2))
(node (ref U6) (pin 3))
(node (ref C9) (pin 2))
(node (ref C8) (pin 2))
(node (ref U2) (pin 3))
(node (ref D5) (pin 1))
(node (ref C19) (pin 2))
(node (ref D3) (pin K))
(node (ref J4) (pin 5))
(node (ref C11) (pin 2))
(node (ref R12) (pin 2))
(node (ref U4) (pin 2))
(node (ref U3) (pin 3))
(node (ref Q1) (pin 1))
(node (ref C18) (pin 2))
(node (ref C20) (pin 2))
(node (ref C22) (pin 2))
(node (ref C23) (pin 2))
(node (ref C10) (pin 2))
(node (ref C2) (pin 2))
(node (ref IC1) (pin 22))
(node (ref IC1) (pin 8))
(node (ref C1) (pin 2))
(node (ref C21) (pin 1))
(node (ref U8) (pin 21))
(node (ref RV1) (pin 1))
(node (ref D6) (pin 2))
(node (ref U8) (pin 7))
(node (ref U8) (pin 25))
(node (ref U8) (pin 26))
(node (ref J2) (pin 6))
(node (ref U8) (pin 18))
(node (ref U1) (pin 3))
(node (ref C5) (pin 2))
(node (ref C6) (pin 2))
(node (ref U5) (pin 3))
(node (ref C13) (pin 2))
(node (ref C14) (pin 2))
(node (ref D7) (pin 1))
(node (ref D8) (pin 1))
(node (ref C16) (pin 2))
(node (ref C17) (pin 2))
(node (ref D4) (pin 1)))
(net (code 5) (name /CH-D)
(node (ref IC1) (pin 26))
(node (ref D8) (pin 2))
(node (ref R16) (pin 2)))
(net (code 6) (name /CH-B)
(node (ref R15) (pin 2))
(node (ref D7) (pin 2))
(node (ref IC1) (pin 24)))
(net (code 7) (name /SC1)
(node (ref J3) (pin 2))
(node (ref R2) (pin 1))
(node (ref C4) (pin 1))
(node (ref U1) (pin 2)))
(net (code 8) (name /SC2)
(node (ref U5) (pin 2))
(node (ref R13) (pin 1))
(node (ref C12) (pin 1))
(node (ref J3) (pin 4)))
(net (code 9) (name /SC3)
(node (ref R3) (pin 1))
(node (ref C7) (pin 1))
(node (ref J3) (pin 6))
(node (ref U2) (pin 2)))
(net (code 10) (name VDD)
(node (ref U2) (pin 7))
(node (ref C8) (pin 1))
(node (ref U1) (pin 7))
(node (ref R4) (pin 1))
(node (ref D2) (pin 2))
(node (ref U3) (pin 1))
(node (ref C3) (pin 1))
(node (ref U7) (pin 7))
(node (ref C16) (pin 1))
(node (ref U6) (pin 7))
(node (ref C13) (pin 1))
(node (ref U5) (pin 7))
(node (ref C5) (pin 1)))
(net (code 11) (name "")
(node (ref U1) (pin 6))
(node (ref R5) (pin 1))
(node (ref C4) (pin 2))
(node (ref R2) (pin 2)))
(net (code 12) (name /CH-A)
(node (ref D4) (pin 2))
(node (ref IC1) (pin 23))
(node (ref R5) (pin 2)))
(net (code 13) (name /SC4)
(node (ref U6) (pin 2))
(node (ref R14) (pin 1))
(node (ref J3) (pin 8))
(node (ref C15) (pin 1)))
(net (code 14) (name "")
(node (ref IC1) (pin 16)))
(net (code 15) (name /DSR)
(node (ref U8) (pin 9))
(node (ref IC1) (pin 4)))
(net (code 16) (name /TXD)
(node (ref U8) (pin 5))
(node (ref IC1) (pin 3)))
(net (code 17) (name /RXD)
(node (ref U8) (pin 1))
(node (ref IC1) (pin 2)))
(net (code 18) (name "")
(node (ref J1) (pin 3)))
(net (code 19) (name "")
(node (ref IC1) (pin 27)))
(net (code 20) (name "")
(node (ref IC1) (pin 28)))
(net (code 21) (name "")
(node (ref IC1) (pin 6)))
(net (code 22) (name "")
(node (ref IC1) (pin 11)))
(net (code 23) (name "")
(node (ref IC1) (pin 12)))
(net (code 24) (name "")
(node (ref U8) (pin 19)))
(net (code 25) (name "")
(node (ref U8) (pin 27)))
(net (code 26) (name "")
(node (ref U8) (pin 28)))
(net (code 27) (name "")
(node (ref U8) (pin 17))
(node (ref C20) (pin 1)))
(net (code 28) (name "")
(node (ref U8) (pin 12)))
(net (code 29) (name +5V)
(node (ref D1) (pin 2))
(node (ref IC1) (pin 7))
(node (ref IC1) (pin 20))
(node (ref R17) (pin 2))
(node (ref R9) (pin 1))
(node (ref U8) (pin 4))
(node (ref J2) (pin 2))
(node (ref R1) (pin 1))
(node (ref C19) (pin 1))
(node (ref C23) (pin 1))
(node (ref L1) (pin 2))
(node (ref C22) (pin 1))
(node (ref U8) (pin 20))
(node (ref C21) (pin 2)))
(net (code 30) (name "")
(node (ref J4) (pin 4)))
(net (code 31) (name "")
(node (ref SW1) (pin 1))
(node (ref J1) (pin 2)))
(net (code 32) (name "")
(node (ref U8) (pin 14)))
(net (code 33) (name "")
(node (ref U8) (pin 13)))
(net (code 34) (name "")
(node (ref U8) (pin 22)))
(net (code 35) (name "")
(node (ref U8) (pin 23)))
(net (code 36) (name "")
(node (ref U8) (pin 6)))
(net (code 37) (name "")
(node (ref U8) (pin 10)))
(net (code 38) (name "")
(node (ref U8) (pin 2)))
(net (code 39) (name "")
(node (ref U8) (pin 11)))
(net (code 40) (name "")
(node (ref U8) (pin 3)))
(net (code 41) (name "")
(node (ref L1) (pin 1))
(node (ref C18) (pin 1))
(node (ref J4) (pin 1)))
(net (code 42) (name "")
(node (ref U8) (pin 16))
(node (ref J4) (pin 2)))
(net (code 43) (name "")
(node (ref U8) (pin 15))
(node (ref J4) (pin 3)))
(net (code 44) (name "")
(node (ref R11) (pin 2))
(node (ref R12) (pin 1))
(node (ref U4) (pin 1)))
(net (code 45) (name /AREF)
(node (ref R9) (pin 2))
(node (ref IC1) (pin 21))
(node (ref R11) (pin 1))
(node (ref U4) (pin 3)))
(net (code 46) (name /MISO)
(node (ref J2) (pin 1))
(node (ref IC1) (pin 18)))
(net (code 47) (name /SCK)
(node (ref J2) (pin 3))
(node (ref IC1) (pin 19)))
(net (code 48) (name /RESET)
(node (ref R1) (pin 2))
(node (ref D1) (pin 1))
(node (ref J2) (pin 5))
(node (ref IC1) (pin 1))
(node (ref C1) (pin 1)))
(net (code 49) (name /MOSI)
(node (ref J2) (pin 4))
(node (ref IC1) (pin 17)))
(net (code 50) (name /A-PWR)
(node (ref IC1) (pin 5))
(node (ref Q1) (pin 3)))
(net (code 51) (name "")
(node (ref D3) (pin A1))
(node (ref R7) (pin 2)))
(net (code 52) (name /LED-R)
(node (ref IC1) (pin 13))
(node (ref R8) (pin 1)))
(net (code 53) (name "")
(node (ref R8) (pin 2))
(node (ref D3) (pin A2)))
(net (code 54) (name /LED-G)
(node (ref IC1) (pin 14))
(node (ref R7) (pin 1)))
(net (code 55) (name /CH-C)
(node (ref D5) (pin 2))
(node (ref R6) (pin 2))
(node (ref IC1) (pin 25)))
(net (code 56) (name "")
(node (ref J1) (pin 1))
(node (ref D2) (pin 1)))
(net (code 57) (name /XTAL2)
(node (ref C10) (pin 1))
(node (ref IC1) (pin 10))
(node (ref X1) (pin 1)))
(net (code 58) (name /XTAL1)
(node (ref C2) (pin 1))
(node (ref X1) (pin 2))
(node (ref IC1) (pin 9)))
(net (code 59) (name "")
(node (ref R17) (pin 1))
(node (ref SW2) (pin 1))
(node (ref IC1) (pin 15)))
(net (code 60) (name "")
(node (ref J3) (pin 3))
(node (ref J3) (pin 1))
(node (ref U7) (pin 6))
(node (ref U7) (pin 2))
(node (ref J3) (pin 5))
(node (ref J3) (pin 7)))
(net (code 61) (name "")
(node (ref U2) (pin 6))
(node (ref R6) (pin 1))
(node (ref C7) (pin 2))
(node (ref R3) (pin 2)))
(net (code 62) (name "")
(node (ref C11) (pin 1))
(node (ref U7) (pin 3))
(node (ref RV1) (pin 2)))
(net (code 63) (name "")
(node (ref R10) (pin 1))
(node (ref RV1) (pin 3))
(node (ref D6) (pin 1)))
(net (code 64) (name "")
(node (ref Q1) (pin 2))
(node (ref R4) (pin 2)))))