-
Notifications
You must be signed in to change notification settings - Fork 2
/
automation-pcb.net
1380 lines (1380 loc) · 44.9 KB
/
automation-pcb.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 /home/steven/Dropbox/current/electronics/automation/automation-pcb/automation-pcb.sch)
(date "Mon 18 Mar 2013 07:56:21 PM EDT")
(tool "eeschema (2013-mar-04)-testing"))
(components
(comp (ref IC1)
(value ATMEGA328P-A)
(footprint TQFP32)
(libsource (lib atmel) (part ATMEGA328P-A))
(sheetpath (names /) (tstamps /))
(tstamp 51223F8C))
(comp (ref R4)
(value 12k)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 51224689))
(comp (ref R1)
(value 300)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 51224698))
(comp (ref X1)
(value 25MHz)
(libsource (lib device) (part CRYSTAL))
(sheetpath (names /) (tstamps /))
(tstamp 5122474F))
(comp (ref C11)
(value 18pF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5122475E))
(comp (ref C14)
(value 18pF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5122476D))
(comp (ref R9)
(value 1M)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5122477C))
(comp (ref R11)
(value 10K)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 512258A1))
(comp (ref U1)
(value W5100)
(footprint MODULE)
(datasheet DOCUMENTATION)
(libsource (lib W5100) (part W5100))
(sheetpath (names /) (tstamps /))
(tstamp 5122447A))
(comp (ref R10)
(value 10K)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5122613D))
(comp (ref R3)
(value 330)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 51226401))
(comp (ref R2)
(value 330)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 51226418))
(comp (ref U2)
(value MAGJACK)
(footprint MODULE)
(datasheet DOCUMENTATION)
(libsource (lib MagJack) (part MAGJACK))
(sheetpath (names /) (tstamps /))
(tstamp 51226744))
(comp (ref C9)
(value 0.1uF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 51226C43))
(comp (ref C12)
(value 0.1uF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 51226F3E))
(comp (ref C7)
(value 0.1uF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 51227131))
(comp (ref D12)
(value LED)
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 5122735F))
(comp (ref D13)
(value LED)
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 5122736C))
(comp (ref D14)
(value LED)
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 51227598))
(comp (ref D15)
(value LED)
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 5122759E))
(comp (ref C20)
(value 0.1uF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 51228773))
(comp (ref R12)
(value 10k)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 51228837))
(comp (ref L2)
(value "1uH, 250mA")
(libsource (lib device) (part INDUCTOR_SMALL))
(sheetpath (names /) (tstamps /))
(tstamp 51228C7E))
(comp (ref C2)
(value 0.1uF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 51228F94))
(comp (ref C6)
(value 0.1uF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 51228FA7))
(comp (ref C8)
(value 0.1uF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 51228FAD))
(comp (ref L1)
(value "1uH, 250mA")
(libsource (lib device) (part INDUCTOR_SMALL))
(sheetpath (names /) (tstamps /))
(tstamp 51229377))
(comp (ref C3)
(value 10uF/16V)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5122937D))
(comp (ref C5)
(value 0.01uF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 512293A1))
(comp (ref C1)
(value 10uF/16V)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 512298CC))
(comp (ref C13)
(value 0.1uF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 51229EEE))
(comp (ref C15)
(value 0.1uF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5122A17B))
(comp (ref C16)
(value 0.1uF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5122A181))
(comp (ref C17)
(value 0.1uF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5122A187))
(comp (ref P1)
(value CONN_3X2)
(libsource (lib conn) (part CONN_3X2))
(sheetpath (names /) (tstamps /))
(tstamp 5122A51F))
(comp (ref U3)
(value SI3402)
(footprint MODULE)
(datasheet DOCUMENTATION)
(libsource (lib SI3402) (part SI3402))
(sheetpath (names /) (tstamps /))
(tstamp 5122C457))
(comp (ref U6)
(value TLV431)
(footprint MODULE)
(datasheet DOCUMENTATION)
(libsource (lib TLV431) (part TLV431))
(sheetpath (names /) (tstamps /))
(tstamp 5122D195))
(comp (ref T1)
(value TRANSFO_FA2924)
(libsource (lib transfo_fa2924) (part TRANSFO_FA2924))
(sheetpath (names /) (tstamps /))
(tstamp 5122DACC))
(comp (ref U5)
(value PS2911)
(footprint MODULE)
(datasheet DOCUMENTATION)
(libsource (lib PS2911) (part PS2911))
(sheetpath (names /) (tstamps /))
(tstamp 5122DD01))
(comp (ref R17)
(value 100)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5122E6EF))
(comp (ref C34)
(value 0.22uF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5122EB0C))
(comp (ref C33)
(value 0.1uF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5122F350))
(comp (ref R18)
(value 4.99k)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5122F5BE))
(comp (ref C31)
(value 1uF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5122FAAE))
(comp (ref C43)
(value 15nF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5122FE11))
(comp (ref R26)
(value 10k)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5122FE20))
(comp (ref R27)
(value 12k)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5122FFF2))
(comp (ref R20)
(value 2.05k)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5123029C))
(comp (ref R28)
(value 20k)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5123038F))
(comp (ref C45)
(value 560pF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5123039C))
(comp (ref R25)
(value 3.01k)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 512303A2))
(comp (ref D11)
(value PDS1040)
(libsource (lib device) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 51230F88))
(comp (ref R19)
(value 10)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 51230F97))
(comp (ref C40)
(value 470pF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 51230FA6))
(comp (ref L7)
(value 1uH)
(libsource (lib device) (part INDUCTOR_SMALL))
(sheetpath (names /) (tstamps /))
(tstamp 5123151F))
(comp (ref C44)
(value 1000uF)
(libsource (lib device) (part CP1))
(sheetpath (names /) (tstamps /))
(tstamp 51231761))
(comp (ref C42)
(value 100uF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 512317A7))
(comp (ref D7)
(value 1N4148W)
(libsource (lib device) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 51231CBD))
(comp (ref D8)
(value DFLT15A)
(libsource (lib device) (part ZENER))
(sheetpath (names /) (tstamps /))
(tstamp 51231CCC))
(comp (ref R14)
(value 25.5k)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 512324AA))
(comp (ref R13)
(value 127)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 512327E2))
(comp (ref C25)
(value 0.1uF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 512327F1))
(comp (ref C36)
(value 1000pF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 512335A7))
(comp (ref C39)
(value 1000pF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 51243C39))
(comp (ref C26)
(value 1uF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 51243E94))
(comp (ref C28)
(value 12uF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 51243EA1))
(comp (ref C30)
(value 1uF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 51243EB1))
(comp (ref C32)
(value 1uF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 51243EB7))
(comp (ref P4)
(value CONN_6)
(libsource (lib conn) (part CONN_6))
(sheetpath (names /) (tstamps /))
(tstamp 5125430D))
(comp (ref C41)
(value 0.1uF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 512559ED))
(comp (ref R15)
(value 2.2k)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 512590F7))
(comp (ref R16)
(value 2.2k)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 51259104))
(comp (ref U4)
(value 24AA025E48)
(footprint MODULE)
(datasheet DOCUMENTATION)
(libsource (lib 24AA025E48) (part 24AA025E48))
(sheetpath (names /) (tstamps /))
(tstamp 51259478))
(comp (ref C35)
(value 0.1uF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5125ACAF))
(comp (ref P2)
(value CONN_10)
(libsource (lib conn) (part CONN_10))
(sheetpath (names /) (tstamps /))
(tstamp 5125C012))
(comp (ref P3)
(value CONN_6)
(libsource (lib conn) (part CONN_6))
(sheetpath (names /) (tstamps /))
(tstamp 5125C58A))
(comp (ref C18)
(value 0.1uF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5125D218))
(comp (ref C19)
(value 0.1uF)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5125D21E))
(comp (ref RP2)
(value 470)
(libsource (lib device) (part R_PACK4))
(sheetpath (names /) (tstamps /))
(tstamp 5146265F))
(comp (ref CP2)
(value C_PACK4)
(libsource (lib c_pack4) (part C_PACK4))
(sheetpath (names /) (tstamps /))
(tstamp 51461FD1))
(comp (ref CP1)
(value C_PACK4)
(libsource (lib c_pack4) (part C_PACK4))
(sheetpath (names /) (tstamps /))
(tstamp 51461FDE))
(comp (ref U7)
(value BAV99)
(footprint MODULE)
(datasheet DOCUMENTATION)
(libsource (lib BAV99) (part BAV99))
(sheetpath (names /) (tstamps /))
(tstamp 5146424D))
(comp (ref U8)
(value BAV99)
(footprint MODULE)
(datasheet DOCUMENTATION)
(libsource (lib BAV99) (part BAV99))
(sheetpath (names /) (tstamps /))
(tstamp 5146425A))
(comp (ref IP1)
(value I_PACK4)
(libsource (lib c_pack4) (part C_PACK4))
(sheetpath (names /) (tstamps /))
(tstamp 51465821))
(comp (ref RP1)
(value 49.9)
(libsource (lib r_pack2) (part R_PACK2))
(sheetpath (names /) (tstamps /))
(tstamp 5147A9DE))
(comp (ref RP3)
(value 49.9)
(libsource (lib r_pack2) (part R_PACK2))
(sheetpath (names /) (tstamps /))
(tstamp 5147A9EB)))
(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 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 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 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 R_PACK4)
(description "4 resistors Pack")
(fields
(field (name Reference) RP)
(field (name Value) R_PACK4)
(field (name Footprint) ~)
(field (name Datasheet) ~))
(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 R4) (type passive))
(pin (num 6) (name R3) (type passive))
(pin (num 7) (name R2) (type passive))
(pin (num 8) (name R1) (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 conn) (part CONN_10)
(description "Symbole general de connecteur")
(fields
(field (name Reference) P)
(field (name Value) CONN_10))
(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))))
(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_6)
(description "ymbole general de connecteur")
(fields
(field (name Reference) P)
(field (name Value) CONN_6))
(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 atmel) (part ATMEGA168A-A)
(description "ATMEGA168A, TQFP32, 16k Flash, 1kB SRAM, 512B EEPROM")
(docs http://www.atmel.com/dyn/resources/prod_documents/doc8271.pdf)
(fields
(field (name Reference) IC)
(field (name Value) ATMEGA168A-A)
(field (name Footprint) TQFP32))
(pins
(pin (num 1) (name "(PCINT19/OC2B/INT1)PD3") (type BiDi))
(pin (num 2) (name "(PCINT20/XCK/T0)PD4") (type BiDi))
(pin (num 3) (name GND) (type power_in))
(pin (num 4) (name VCC) (type power_in))
(pin (num 5) (name GND) (type power_in))
(pin (num 6) (name VCC) (type power_in))
(pin (num 7) (name "(PCINT6/XTAL1/TOSC1)PB6") (type BiDi))
(pin (num 8) (name "(PCINT7/XTAL2/TOSC2)PB7") (type BiDi))
(pin (num 9) (name "(PCINT21/OC0B/T1)PD5") (type BiDi))
(pin (num 10) (name "(PCINT22/OC0A/AIN0)PD6") (type BiDi))
(pin (num 11) (name "(PCINT23/AIN1)PD7") (type BiDi))
(pin (num 12) (name "(PCINT0/CLKO/ICP1)PB0") (type BiDi))
(pin (num 13) (name "(PCINT1/OC1A)PB1") (type BiDi))
(pin (num 14) (name "(PCINT2/OC1B/~SS~)PB2") (type BiDi))
(pin (num 15) (name "(PCINT3/OC2A/MOSI)PB3") (type BiDi))
(pin (num 16) (name "(PCINT4/MISO)PB4") (type BiDi))
(pin (num 17) (name "(PCINT5/SCK)PB5") (type BiDi))
(pin (num 18) (name AVCC) (type power_in))
(pin (num 19) (name ADC6) (type input))
(pin (num 20) (name AREF) (type BiDi))
(pin (num 21) (name GND) (type power_in))
(pin (num 22) (name ADC7) (type input))
(pin (num 23) (name "(PCINT8/ADC0)PC0") (type BiDi))
(pin (num 24) (name "(PCINT9/ADC1)PC1") (type BiDi))
(pin (num 25) (name "(PCINT10/ADC2)PC2") (type BiDi))
(pin (num 26) (name "(PCINT11/ADC3)PC3") (type BiDi))
(pin (num 27) (name "(PCINT12/SDA/ADC4)PC4") (type BiDi))
(pin (num 28) (name "(PCINT14/SCL/ADC5)PC5") (type BiDi))
(pin (num 29) (name "(PCINT14/~RESET~)PC6") (type BiDi))
(pin (num 30) (name "(PCINT16/RXD)PD0") (type BiDi))
(pin (num 31) (name "(PCINT17/TXD)PD1") (type BiDi))
(pin (num 32) (name "(PCINT18/INT0)PD2") (type BiDi))))
(libpart (lib W5100) (part W5100)
(fields
(field (name Reference) U)
(field (name Value) W5100)
(field (name Footprint) MODULE)
(field (name Datasheet) DOCUMENTATION))
(pins
(pin (num 1) (name RSET_BG) (type input))
(pin (num 2) (name VCC3V3A) (type input))
(pin (num 3) (name NC) (type input))
(pin (num 4) (name GNDA) (type input))
(pin (num 5) (name RXIP) (type input))
(pin (num 6) (name RXIN) (type input))
(pin (num 7) (name VCC1V8A) (type input))
(pin (num 8) (name TXOP) (type input))
(pin (num 9) (name TXON) (type input))
(pin (num 10) (name GNDA) (type input))
(pin (num 11) (name 1V8_OUT) (type input))
(pin (num 12) (name VCC3V3D) (type input))
(pin (num 13) (name GNDD) (type input))
(pin (num 14) (name GNDD) (type input))
(pin (num 15) (name VCC1V8D) (type input))
(pin (num 16) (name VCC1V8D) (type input))
(pin (num 17) (name GNDD) (type input))
(pin (num 18) (name VCC3V3D) (type input))
(pin (num 19) (name DATA7) (type input))
(pin (num 20) (name DATA6) (type input))
(pin (num 21) (name DATA5) (type input))
(pin (num 22) (name DATA4) (type input))
(pin (num 23) (name DATA3) (type input))
(pin (num 24) (name DATA2) (type input))
(pin (num 25) (name DATA1) (type input))
(pin (num 26) (name DATA0) (type input))
(pin (num 27) (name MISO) (type input))
(pin (num 28) (name MOSI) (type input))
(pin (num 29) (name /SCS) (type input))
(pin (num 30) (name SCLK) (type input))
(pin (num 31) (name SEN) (type input))
(pin (num 32) (name GNDD) (type input))
(pin (num 33) (name VCC1V8D) (type input))
(pin (num 34) (name TEST_MODE3) (type input))
(pin (num 35) (name TEST_MODE2) (type input))
(pin (num 36) (name TEST_MODE1) (type input))
(pin (num 37) (name TEST_MODE0) (type input))
(pin (num 38) (name ADDR14) (type input))
(pin (num 39) (name ADDR13) (type input))
(pin (num 40) (name ADDR12) (type input))
(pin (num 41) (name ADDR11) (type input))
(pin (num 42) (name ADDR10) (type input))
(pin (num 43) (name GNDD) (type input))
(pin (num 44) (name VCC3V3D) (type input))
(pin (num 45) (name ADDR9) (type input))
(pin (num 46) (name ADDR8) (type input))
(pin (num 47) (name ADDR7) (type input))
(pin (num 48) (name ADDR6) (type input))
(pin (num 49) (name ADDR5) (type input))
(pin (num 50) (name ADDR4) (type input))
(pin (num 51) (name ADDR3) (type input))
(pin (num 52) (name ADDR2) (type input))
(pin (num 53) (name ADDR1) (type input))
(pin (num 54) (name ADDR0) (type input))
(pin (num 55) (name /CS) (type input))
(pin (num 56) (name /INT) (type input))
(pin (num 57) (name /WR) (type input))
(pin (num 58) (name /RD) (type input))
(pin (num 59) (name /RESET) (type input))
(pin (num 60) (name NC) (type input))
(pin (num 61) (name NC) (type input))
(pin (num 62) (name NC) (type input))
(pin (num 63) (name OPMODE0) (type input))
(pin (num 64) (name OPMODE1) (type input))
(pin (num 65) (name OPMODE2) (type input))
(pin (num 66) (name LINKLED) (type input))
(pin (num 67) (name SPDLED) (type input))
(pin (num 68) (name GNDD) (type input))
(pin (num 69) (name VCC1V8D) (type input))
(pin (num 70) (name FDXLED) (type input))
(pin (num 71) (name COLLED) (type input))
(pin (num 72) (name RXLED) (type input))
(pin (num 73) (name TXLED) (type input))
(pin (num 74) (name VCC1V8A) (type input))
(pin (num 75) (name XTLN) (type input))
(pin (num 76) (name XTLP) (type input))
(pin (num 77) (name GNDA) (type input))
(pin (num 78) (name NC) (type input))
(pin (num 79) (name NC) (type input))
(pin (num 80) (name NC) (type input))))
(libpart (lib MagJack) (part MagJack)
(fields
(field (name Reference) U)
(field (name Value) MagJack)
(field (name Footprint) MODULE)
(field (name Datasheet) DOCUMENTATION))
(pins
(pin (num 1) (name RD+) (type input))
(pin (num 2) (name TD+) (type input))
(pin (num 3) (name NC) (type input))
(pin (num 4) (name NC) (type input))
(pin (num 5) (name RXCT) (type input))
(pin (num 6) (name SPARE1) (type input))
(pin (num 7) (name CT) (type input))
(pin (num 8) (name RD-) (type input))
(pin (num 9) (name TD-) (type input))
(pin (num 10) (name TXCT) (type input))
(pin (num 11) (name SPARE2) (type input))
(pin (num 12) (name Yellow_A) (type input))
(pin (num 13) (name Yellow_K) (type input))
(pin (num 14) (name Green_K) (type input))
(pin (num 15) (name Green_A) (type input))))
(libpart (lib SI3402) (part SI3402)
(fields
(field (name Reference) U)
(field (name Value) SI3402)
(field (name Footprint) MODULE)
(field (name Datasheet) DOCUMENTATION))
(pins
(pin (num 1) (name EROUT) (type input))
(pin (num 2) (name SSFT) (type input))
(pin (num 3) (name VDD) (type input))
(pin (num 4) (name ISOSSFT) (type input))
(pin (num 5) (name /PLOSS) (type input))
(pin (num 6) (name RDET) (type input))
(pin (num 7) (name HSO) (type input))
(pin (num 8) (name RCL) (type input))
(pin (num 9) (name VNEG) (type input))
(pin (num 10) (name SP2) (type input))
(pin (num 11) (name SP1) (type input))
(pin (num 12) (name VPOSF) (type input))
(pin (num 13) (name CT2) (type input))
(pin (num 14) (name CT1) (type input))
(pin (num 15) (name VSSA) (type input))
(pin (num 16) (name VPOSS) (type input))
(pin (num 17) (name VSS1) (type input))
(pin (num 18) (name SWO) (type input))
(pin (num 19) (name VSS2) (type input))
(pin (num 20) (name FB) (type input))))
(libpart (lib TLV431) (part TLV431)
(fields
(field (name Reference) U)
(field (name Value) TLV431)
(field (name Footprint) MODULE)
(field (name Datasheet) DOCUMENTATION))
(pins
(pin (num 1) (name REF) (type input))
(pin (num 2) (name CATHODE) (type input))
(pin (num 3) (name ANODE) (type input))))
(libpart (lib c_pack4) (part C_PACK4)
(fields
(field (name Reference) CP)
(field (name Value) C_PACK4)
(field (name Footprint) ~)
(field (name Datasheet) ~))
(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 R4) (type passive))
(pin (num 6) (name R3) (type passive))
(pin (num 7) (name R2) (type passive))
(pin (num 8) (name R1) (type passive))))
(libpart (lib transfo_fa2924) (part TRANSFO_FA2924)
(fields
(field (name Reference) T)
(field (name Value) TRANSFO_FA2924)
(field (name Footprint) ~)
(field (name Datasheet) ~))
(pins
(pin (num 1) (name IN+) (type passive))
(pin (num 2) (name IN-) (type passive))
(pin (num 7) (name OUT1A) (type passive))
(pin (num 8) (name OUT2A) (type passive))
(pin (num 9) (name OUT1B) (type passive))
(pin (num 10) (name OUT2B) (type passive))))
(libpart (lib PS2911) (part PS2911)
(fields
(field (name Reference) U)
(field (name Value) PS2911)
(field (name Footprint) MODULE)
(field (name Datasheet) DOCUMENTATION))
(pins
(pin (num 1) (name ANODE) (type input))
(pin (num 2) (name CATHODE) (type input))
(pin (num 3) (name EMITTER) (type input))
(pin (num 4) (name COLLECTOR) (type input))))
(libpart (lib 24AA025E48) (part 24AA025E48)
(fields
(field (name Reference) U)
(field (name Value) 24AA025E48)
(field (name Footprint) MODULE)
(field (name Datasheet) DOCUMENTATION))
(pins
(pin (num 1) (name SCL) (type input))
(pin (num 2) (name Vss) (type input))
(pin (num 3) (name SDA) (type input))
(pin (num 4) (name A1) (type input))
(pin (num 5) (name A0) (type input))
(pin (num 6) (name Vcc) (type input))))
(libpart (lib BAV99) (part BAV99)
(fields
(field (name Reference) U)
(field (name Value) BAV99)
(field (name Footprint) MODULE)
(field (name Datasheet) DOCUMENTATION))
(pins
(pin (num 1) (name P1_A) (type input))
(pin (num 2) (name P1_C) (type input))
(pin (num 3) (name P2_M) (type input))
(pin (num 4) (name P2_A) (type input))
(pin (num 5) (name P2_K) (type input))
(pin (num 6) (name P1_M) (type input))))
(libpart (lib r_pack2) (part R_PACK2)
(fields
(field (name Reference) RP)
(field (name Value) R_PACK2)
(field (name Footprint) ~)
(field (name Datasheet) ~))
(pins
(pin (num 1) (name P1) (type passive))
(pin (num 2) (name P2) (type passive))
(pin (num 3) (name R2) (type passive))
(pin (num 4) (name R1) (type passive)))))
(libraries
(library (logical device)
(uri /usr/share/kicad/library/device.lib))
(library (logical conn)
(uri /usr/share/kicad/library/conn.lib))
(library (logical atmel)
(uri /usr/share/kicad/library/atmel.lib))
(library (logical c_pack4)
(uri c_pack4.lib))
(library (logical W5100)
(uri W5100.lib))
(library (logical MagJack)
(uri MagJack.lib))
(library (logical SI3402)
(uri SI3402.lib))
(library (logical TLV431)
(uri TLV431.lib))
(library (logical transfo_fa2924)
(uri transfo_fa2924.lib))
(library (logical PS2911)
(uri PS2911.lib))
(library (logical 24AA025E48)
(uri 24AA025E48.lib))
(library (logical BAV99)
(uri BAV99.lib))
(library (logical r_pack2)
(uri r_pack2.lib)))
(nets
(net (code 1) (name SCK)
(node (ref U1) (pin 30))
(node (ref IC1) (pin 17))
(node (ref P1) (pin 3)))
(net (code 2) (name MISO)
(node (ref IC1) (pin 16))
(node (ref U1) (pin 27))
(node (ref P1) (pin 1)))
(net (code 3) (name MOSI)
(node (ref P1) (pin 4))
(node (ref U1) (pin 28))
(node (ref IC1) (pin 15)))
(net (code 4) (name SS)
(node (ref U1) (pin 29))
(node (ref IC1) (pin 14)))
(net (code 5) (name 1V8A)
(node (ref C13) (pin 1))
(node (ref L2) (pin 1))
(node (ref U1) (pin 7))
(node (ref U1) (pin 74)))
(net (code 6) (name TXON)
(node (ref U1) (pin 9))
(node (ref U2) (pin 9))
(node (ref RP1) (pin 4)))
(net (code 7) (name "")
(node (ref U2) (pin 12))
(node (ref R3) (pin 1)))
(net (code 8) (name "")
(node (ref U2) (pin 15))
(node (ref R2) (pin 1)))
(net (code 9) (name INT)
(node (ref U1) (pin 56)))
(net (code 10) (name "")
(node (ref R10) (pin 1))
(node (ref U1) (pin 31)))
(net (code 11) (name FDXLED)
(node (ref U1) (pin 70))
(node (ref D15) (pin 2)))
(net (code 12) (name COLLED)
(node (ref D14) (pin 2))
(node (ref U1) (pin 71)))
(net (code 13) (name RXLED)
(node (ref U1) (pin 72))
(node (ref D13) (pin 2)))
(net (code 14) (name TXLED)
(node (ref D12) (pin 2))
(node (ref U1) (pin 73)))
(net (code 15) (name "")
(node (ref R20) (pin 2))
(node (ref U5) (pin 1)))
(net (code 16) (name "")
(node (ref U3) (pin 7))
(node (ref U3) (pin 17))
(node (ref U3) (pin 19)))
(net (code 17) (name "")
(node (ref D11) (pin 1))
(node (ref T1) (pin 8))
(node (ref C40) (pin 1))
(node (ref T1) (pin 7)))
(net (code 18) (name "")
(node (ref U6) (pin 2))
(node (ref U5) (pin 2))
(node (ref C43) (pin 1)))
(net (code 19) (name "")
(node (ref C31) (pin 1))
(node (ref U3) (pin 4)))
(net (code 20) (name +1.8V)
(node (ref C2) (pin 1))
(node (ref C6) (pin 1))
(node (ref U1) (pin 15))
(node (ref U1) (pin 69))
(node (ref C8) (pin 1))
(node (ref L2) (pin 2))
(node (ref U1) (pin 11))
(node (ref U1) (pin 33))
(node (ref U1) (pin 16)))
(net (code 21) (name "")
(node (ref U3) (pin 1))
(node (ref R17) (pin 1))
(node (ref U5) (pin 4))
(node (ref R18) (pin 2)))
(net (code 22) (name "")
(node (ref R18) (pin 1))
(node (ref C33) (pin 1))
(node (ref U3) (pin 3)))
(net (code 23) (name "")
(node (ref R4) (pin 1))
(node (ref R1) (pin 2)))
(net (code 24) (name "")
(node (ref U1) (pin 1))
(node (ref R4) (pin 2)))
(net (code 25) (name V1+)
(node (ref U3) (pin 11))
(node (ref CP2) (pin 1))
(node (ref IP1) (pin 8))