-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathserver_lader.net
1144 lines (1144 loc) · 38.3 KB
/
server_lader.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/philipp/Dokumente/dev/server_lader/server_lader.sch)
(date "Mo 01 Dez 2014 23:41:01 CET")
(tool "Eeschema (2014-11-30 BZR 5308)-product"))
(components
(comp (ref IC1)
(value ATMEGA168PA-A)
(footprint SMD_Packages:TQFP-32)
(libsource (lib atmel) (part ATMEGA168PA-A))
(sheetpath (names /) (tstamps /))
(tstamp 545FB3DD))
(comp (ref P3)
(value CONN_02X03)
(footprint toni:micro_match3x2)
(libsource (lib conn) (part CONN_02X03))
(sheetpath (names /) (tstamps /))
(tstamp 545FB82D))
(comp (ref P7)
(value UART)
(footprint Sockets_MOLEX_KK-System:Socket_MOLEX-KK-RM2-54mm_Lock_4pin_straight)
(libsource (lib conn) (part CONN_01X04))
(sheetpath (names /) (tstamps /))
(tstamp 545FBACF))
(comp (ref D1)
(value "ZENER 5,6V")
(footprint Diodes_SMD:Diode-Universal-SMA-SMB_Handsoldering)
(libsource (lib device) (part ZENER))
(sheetpath (names /) (tstamps /))
(tstamp 545FE433))
(comp (ref R1)
(value 1k)
(footprint SMD_Packages:SMD-0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 545FE7C4))
(comp (ref C4)
(value 100nF)
(footprint SMD_Packages:SMD-0402)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 545FE861))
(comp (ref P10)
(value DISPLAY_STECKER)
(footprint toni:micro_match5x2)
(libsource (lib conn) (part CONN_02X05))
(sheetpath (names /) (tstamps /))
(tstamp 54601125))
(comp (ref U5)
(value TPS7A4901)
(footprint toni:MSOP-8_power_pad)
(libsource (lib server_lader-cache) (part TPS7A4901))
(sheetpath (names /) (tstamps /))
(tstamp 54629C4B))
(comp (ref R14)
(value 33k)
(footprint SMD_Packages:SMD-0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 54629E8F))
(comp (ref R15)
(value 10k)
(footprint SMD_Packages:SMD-0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 54629EFA))
(comp (ref C19)
(value 10nF)
(footprint SMD_Packages:SMD-0402)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 54629CFA))
(comp (ref C18)
(value 10nF)
(footprint SMD_Packages:SMD-0402)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5462A0B7))
(comp (ref C17)
(value 10uF)
(footprint SMD_Packages:SMD-1206)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5462A271))
(comp (ref C21)
(value 10uF)
(footprint SMD_Packages:SMD-1206)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5462A430))
(comp (ref C1)
(value 100nF)
(footprint SMD_Packages:SMD-0402)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5462A945))
(comp (ref C5)
(value 1uF)
(footprint SMD_Packages:SMD-0603)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5462AB07))
(comp (ref C2)
(value 100nF)
(footprint SMD_Packages:SMD-0402)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5462AC6A))
(comp (ref C3)
(value 100nF)
(footprint SMD_Packages:SMD-0402)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5462AD56))
(comp (ref U6)
(value OPA827)
(footprint SMD_Packages:SSOP-8)
(libsource (lib linear) (part TL071))
(sheetpath (names /) (tstamps /))
(tstamp 54629CF8))
(comp (ref U4)
(value RD-0512D)
(footprint toni:RD-xx12D)
(libsource (lib server_lader-cache) (part RD-0512D))
(sheetpath (names /) (tstamps /))
(tstamp 5462A69F))
(comp (ref IC2)
(value DAC8560)
(footprint Housings_SSOP:MSOP-8_3x3mm_Pitch0.65mm)
(libsource (lib server_lader-cache) (part DAC8560))
(sheetpath (names /) (tstamps /))
(tstamp 5462BFB9))
(comp (ref U3)
(value ADUM3441)
(footprint Housings_SOIC:SOIC-16_7.5x10.3mm_Pitch1.27mm)
(libsource (lib server_lader-cache) (part ADUM3441))
(sheetpath (names /) (tstamps /))
(tstamp 5462CAA6))
(comp (ref C14)
(value 1uF)
(footprint SMD_Packages:SMD-0603)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5462C075))
(comp (ref C16)
(value 100nF)
(footprint SMD_Packages:SMD-0402)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5462C2DF))
(comp (ref C15)
(value 100nF)
(footprint SMD_Packages:SMD-0402)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5462C429))
(comp (ref C12)
(value 100nF)
(footprint SMD_Packages:SMD-0402)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 54641D95))
(comp (ref C13)
(value 100nF)
(footprint SMD_Packages:SMD-0402)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 54641FE6))
(comp (ref R16)
(value R_FB)
(footprint SMD_Packages:SMD-0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 54644588))
(comp (ref R13)
(value R_G1)
(footprint SMD_Packages:SMD-0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 546446D7))
(comp (ref R12)
(value R_G2)
(footprint SMD_Packages:SMD-0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 54644B94))
(comp (ref R8)
(value 1k)
(footprint SMD_Packages:SMD-0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5464E205))
(comp (ref R7)
(value 15k)
(footprint SMD_Packages:SMD-0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5464E48C))
(comp (ref R10)
(value R)
(footprint SMD_Packages:SMD-0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5464EC74))
(comp (ref R9)
(value R)
(footprint SMD_Packages:SMD-0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5464EC7A))
(comp (ref P8)
(value CONN_01X01)
(footprint Connect:SIL-1)
(libsource (lib conn) (part CONN_01X01))
(sheetpath (names /) (tstamps /))
(tstamp 5464F19A))
(comp (ref P1)
(value 5V_Vbatt)
(footprint Sockets_MOLEX_KK-System:Socket_MOLEX-KK-RM2-54mm_Lock_3pin_straight)
(libsource (lib conn) (part CONN_01X03))
(sheetpath (names /) (tstamps /))
(tstamp 5464F2B3))
(comp (ref C7)
(value 100nF)
(footprint SMD_Packages:SMD-0402)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5464F6FD))
(comp (ref C9)
(value 100nF)
(footprint SMD_Packages:SMD-0402)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5464F710))
(comp (ref C6)
(value 100nF)
(footprint SMD_Packages:SMD-0402)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5464F729))
(comp (ref SP1)
(value SPEAKER)
(footprint toni:Buzzer_AI-1027-TWT-5V-R)
(libsource (lib device) (part SPEAKER))
(sheetpath (names /) (tstamps /))
(tstamp 54651C1E))
(comp (ref P5)
(value IP+)
(footprint toni:power_terminal)
(libsource (lib conn) (part CONN_01X01))
(sheetpath (names /) (tstamps /))
(tstamp 54652A54))
(comp (ref P6)
(value IP-)
(footprint toni:power_terminal)
(libsource (lib conn) (part CONN_01X01))
(sheetpath (names /) (tstamps /))
(tstamp 54652C7D))
(comp (ref U1)
(value ACS758)
(footprint toni:ACS758_PFF)
(libsource (lib server_lader-cache) (part ACS758))
(sheetpath (names /) (tstamps /))
(tstamp 546550F4))
(comp (ref C11)
(value 100nF)
(footprint SMD_Packages:SMD-0402)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 54656004))
(comp (ref P2)
(value DISPLAY_STECKER)
(footprint toni:micro_match5x2)
(libsource (lib conn) (part CONN_02X05))
(sheetpath (names /) (tstamps /))
(tstamp 54656C94))
(comp (ref P9)
(value Drehrad)
(footprint Sockets_MOLEX_KK-System:Socket_MOLEX-KK-RM2-54mm_Lock_6pin_straight)
(libsource (lib conn) (part CONN_01X06))
(sheetpath (names /) (tstamps /))
(tstamp 54658C91))
(comp (ref C8)
(value 100nF)
(footprint SMD_Packages:SMD-0402)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 54659B99))
(comp (ref R11)
(value 1k)
(footprint SMD_Packages:SMD-0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 54659E1B))
(comp (ref C10)
(value 1uF)
(footprint SMD_Packages:SMD-0603)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5465A59C))
(comp (ref R4)
(value 20k)
(footprint SMD_Packages:SMD-0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5465B300))
(comp (ref R5)
(value 20k)
(footprint SMD_Packages:SMD-0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5465C199))
(comp (ref U2)
(value LTV-356T)
(footprint toni:SO-4)
(libsource (lib opto) (part OPTO-TRANSISTOR4))
(sheetpath (names /) (tstamps /))
(tstamp 5465CA00))
(comp (ref P11)
(value on/off)
(footprint Sockets_MOLEX_KK-System:Socket_MOLEX-KK-RM2-54mm_Lock_3pin_straight)
(libsource (lib conn) (part CONN_01X03))
(sheetpath (names /) (tstamps /))
(tstamp 5465CFD0))
(comp (ref R6)
(value 1k)
(footprint SMD_Packages:SMD-0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 54653AE7))
(comp (ref D2)
(value LED)
(footprint SMD_Packages:SMD-0603)
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 54653C35))
(comp (ref R2)
(value 200R)
(footprint SMD_Packages:SMD-0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 54656562))
(comp (ref DISP1)
(value EA_DOG-M)
(footprint toni:EA_DOG-M_DISP)
(libsource (lib server_lader-cache) (part EA_DOG-M))
(sheetpath (names /) (tstamps /))
(tstamp 54658A3E))
(comp (ref F1)
(value FUSE)
(footprint toni:fuse_holder_Schurther)
(libsource (lib device) (part FUSE))
(sheetpath (names /) (tstamps /))
(tstamp 54659420))
(comp (ref R3)
(value R)
(footprint SMD_Packages:SMD-0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5465BAC2))
(comp (ref C22)
(value 100nF)
(footprint SMD_Packages:SMD-0402)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5465C97B))
(comp (ref C23)
(value 100nF)
(footprint SMD_Packages:SMD-0402)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5465CB51))
(comp (ref P12)
(value A_regulation_out)
(footprint Sockets_MOLEX_KK-System:Socket_MOLEX-KK-RM2-54mm_Lock_3pin_straight)
(libsource (lib conn) (part CONN_01X03))
(sheetpath (names /) (tstamps /))
(tstamp 5465D981))
(comp (ref C20)
(value C_comp)
(footprint SMD_Packages:SMD-0603)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 546609C8))
(comp (ref P4)
(value I2C)
(footprint Sockets_MOLEX_KK-System:Socket_MOLEX-KK-RM2-54mm_Lock_4pin_straight)
(libsource (lib conn) (part CONN_01X04))
(sheetpath (names /) (tstamps /))
(tstamp 546575D6))
(comp (ref R17)
(value 10k)
(footprint SMD_Packages:SMD-0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 546588C7))
(comp (ref C24)
(value 1uF)
(footprint SMD_Packages:SMD-0603)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5465917C))
(comp (ref Y1)
(value RESONATEUR)
(footprint toni:CerOsc_3,2x1,3)
(libsource (lib server_lader-cache) (part RESONATEUR))
(sheetpath (names /) (tstamps /))
(tstamp 54667D59))
(comp (ref C25)
(value 100nF)
(footprint SMD_Packages:SMD-0603)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5466D39F))
(comp (ref C26)
(value C)
(footprint SMD_Packages:SMD-0603)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5466D714))
(comp (ref C27)
(value 100nF)
(footprint SMD_Packages:SMD-0402)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5467C6D4))
(comp (ref R20)
(value 1k)
(footprint SMD_Packages:SMD-0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5467BC23))
(comp (ref R21)
(value 1k)
(footprint SMD_Packages:SMD-0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5467BCF3))
(comp (ref R18)
(value 4,7k)
(footprint SMD_Packages:SMD-0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5467CCF6))
(comp (ref R19)
(value 4,7k)
(footprint SMD_Packages:SMD-0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5467CE54))
(comp (ref U7)
(value LM4040)
(footprint SMD_Packages:SOT-23)
(libsource (lib server_lader-cache) (part LM4040))
(sheetpath (names /) (tstamps /))
(tstamp 5468E7A2)))
(libparts
(libpart (lib conn) (part CONN_01X01)
(footprints
(fp Pin_Header_Straight_1X01)
(fp Pin_Header_Angled_1X01)
(fp Socket_Strip_Straight_1X01)
(fp Socket_Strip_Angled_1X01))
(fields
(field (name Reference) P)
(field (name Value) CONN_01X01))
(pins
(pin (num 1) (name P1) (type passive))))
(libpart (lib conn) (part CONN_01X03)
(footprints
(fp Pin_Header_Straight_1X03)
(fp Pin_Header_Angled_1X03)
(fp Socket_Strip_Straight_1X03)
(fp Socket_Strip_Angled_1X03))
(fields
(field (name Reference) P)
(field (name Value) CONN_01X03))
(pins
(pin (num 1) (name P1) (type passive))
(pin (num 2) (name P2) (type passive))
(pin (num 3) (name P3) (type passive))))
(libpart (lib conn) (part CONN_01X04)
(footprints
(fp Pin_Header_Straight_1X04)
(fp Pin_Header_Angled_1X04)
(fp Socket_Strip_Straight_1X04)
(fp Socket_Strip_Angled_1X04))
(fields
(field (name Reference) P)
(field (name Value) CONN_01X04))
(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))))
(libpart (lib conn) (part CONN_01X06)
(footprints
(fp Pin_Header_Straight_1X06)
(fp Pin_Header_Angled_1X06)
(fp Socket_Strip_Straight_1X06)
(fp Socket_Strip_Angled_1X06))
(fields
(field (name Reference) P)
(field (name Value) CONN_01X06))
(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))))
(libpart (lib conn) (part CONN_02X03)
(footprints
(fp Pin_Header_Straight_2X03)
(fp Pin_Header_Angled_2X03)
(fp Socket_Strip_Straight_2X03)
(fp Socket_Strip_Angled_2X03))
(fields
(field (name Reference) P)
(field (name Value) CONN_02X03))
(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))))
(libpart (lib conn) (part CONN_02X05)
(footprints
(fp Pin_Header_Straight_2X05)
(fp Pin_Header_Angled_2X05)
(fp Socket_Strip_Straight_2X05)
(fp Socket_Strip_Angled_2X05))
(fields
(field (name Reference) P)
(field (name Value) CONN_02X05))
(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 linear) (part TL071)
(aliases
(alias TL081))
(description "Op amp.")
(docs op_amps/tl071.pdf)
(fields
(field (name Reference) U)
(field (name Value) TL071))
(pins
(pin (num 2) (name -) (type input))
(pin (num 3) (name +) (type input))
(pin (num 4) (name V-) (type passive))
(pin (num 6) (name ~) (type output))
(pin (num 7) (name V+) (type passive))))
(libpart (lib server_lader-cache) (part ACS758)
(fields
(field (name Reference) U)
(field (name Value) ACS758))
(pins
(pin (num 1) (name VCC) (type power_in))
(pin (num 2) (name GND) (type power_in))
(pin (num 3) (name VIOUT) (type output))
(pin (num 4) (name IP+) (type passive))
(pin (num 5) (name IP-) (type passive))))
(libpart (lib server_lader-cache) (part ADUM3441)
(fields
(field (name Reference) U)
(field (name Value) ADUM3441))
(pins
(pin (num 1) (name Vdd1) (type power_in))
(pin (num 2) (name GND1) (type power_in))
(pin (num 3) (name VIA) (type input))
(pin (num 4) (name VIB) (type input))
(pin (num 5) (name VIC) (type input))
(pin (num 6) (name VOD) (type input))
(pin (num 7) (name VE1) (type input))
(pin (num 8) (name GND1) (type power_in))
(pin (num 9) (name GND2) (type power_in))
(pin (num 10) (name VE2) (type input))
(pin (num 11) (name VID) (type input))
(pin (num 12) (name VOC) (type output))
(pin (num 13) (name VOB) (type output))
(pin (num 14) (name VOA) (type output))
(pin (num 15) (name GND2) (type power_in))
(pin (num 16) (name VDD2) (type power_in))))
(libpart (lib server_lader-cache) (part DAC8560)
(fields
(field (name Reference) IC)
(field (name Value) DAC8560))
(pins
(pin (num 1) (name Vcc) (type power_in))
(pin (num 2) (name Vref) (type input))
(pin (num 3) (name V_FB) (type output))
(pin (num 4) (name V_out) (type power_out))
(pin (num 5) (name ~Sync) (type input))
(pin (num 6) (name SClk) (type input))
(pin (num 7) (name D_in) (type input))
(pin (num 8) (name GND) (type power_in))))
(libpart (lib server_lader-cache) (part EA_DOG-M)
(fields
(field (name Reference) DISP)
(field (name Value) EA_DOG-M))
(pins
(pin (num 21) (name CAP1N) (type BiDi))
(pin (num 22) (name CAP1P) (type BiDi))
(pin (num 23) (name PSB) (type input))
(pin (num 24) (name VOUT) (type BiDi))
(pin (num 25) (name VIN) (type input))
(pin (num 26) (name VDD) (type power_in))
(pin (num 27) (name VSS) (type power_in))
(pin (num 28) (name D7) (type input))
(pin (num 29) (name D6) (type input))
(pin (num 30) (name D5) (type input))
(pin (num 31) (name D4) (type input))
(pin (num 32) (name D3) (type input))
(pin (num 33) (name D2) (type input))
(pin (num 34) (name D1) (type input))
(pin (num 35) (name D0) (type input))
(pin (num 36) (name E) (type input))
(pin (num 37) (name RW) (type input))
(pin (num 38) (name CSB) (type input))
(pin (num 39) (name RS) (type input))
(pin (num 40) (name RESET) (type input))))
(libpart (lib server_lader-cache) (part LM4040)
(fields
(field (name Reference) U)
(field (name Value) LM4040))
(pins
(pin (num 1) (name V+) (type BiDi))
(pin (num 2) (name GND) (type BiDi))
(pin (num 3) (name NC) (type NotConnected))))
(libpart (lib server_lader-cache) (part RD-0512D)
(fields
(field (name Reference) U)
(field (name Value) RD-0512D))
(pins
(pin (num 1) (name +Vin) (type power_in))
(pin (num 2) (name -Vin) (type power_in))
(pin (num 4) (name -Vout) (type power_out))
(pin (num 5) (name Com) (type power_out))
(pin (num 6) (name +Vout) (type power_out))))
(libpart (lib server_lader-cache) (part RESONATEUR)
(fields
(field (name Reference) Y)
(field (name Value) RESONATEUR))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))
(pin (num 3) (name 3) (type passive))))
(libpart (lib server_lader-cache) (part TPS7A4901)
(fields
(field (name Reference) U)
(field (name Value) TPS7A4901))
(pins
(pin (num 1) (name OUT) (type power_out))
(pin (num 2) (name FB) (type input))
(pin (num 3) (name NC) (type NotConnected))
(pin (num 4) (name GND) (type power_in))
(pin (num 5) (name EN) (type input))
(pin (num 6) (name NR/SS) (type passive))
(pin (num 7) (name DNC) (type NotConnected))
(pin (num 8) (name IN) (type power_in))
(pin (num 9) (name POWERPAD) (type input))))
(libpart (lib device) (part FUSE)
(fields
(field (name Reference) F)
(field (name Value) FUSE))
(pins
(pin (num 1) (name ~) (type input))
(pin (num 2) (name ~) (type input))))
(libpart (lib opto) (part OPTO-TRANSISTOR4)
(fields
(field (name Reference) U)
(field (name Value) OPTO-TRANSISTOR4))
(pins
(pin (num 1) (name A) (type input))
(pin (num 2) (name K) (type input))
(pin (num 3) (name E) (type output))
(pin (num 4) (name C) (type output))))
(libpart (lib atmel) (part ATMEGA168A-A)
(aliases
(alias ATMEGA48A-A)
(alias ATMEGA48PA-A)
(alias ATMEGA88A-A)
(alias ATMEGA88PA-A)
(alias ATMEGA168PA-A)
(alias ATMEGA328-A)
(alias ATMEGA328P-A))
(description "ATMEGA168A, TQFP32, 16k Flash, 1kB SRAM, 512B EEPROM")
(docs http://www.atmel.com/images/atmel-8271-8-bit-avr-microcontroller-atmega48a-48pa-88a-88pa-168a-168pa-328-328p_datasheet.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 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))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib device) (part SPEAKER)
(fields
(field (name Reference) SP)
(field (name Value) SPEAKER))
(pins
(pin (num 1) (name 1) (type input))
(pin (num 2) (name 2) (type input))))
(libpart (lib device) (part ZENER)
(description "Diode zener")
(footprints
(fp D?)
(fp SO*)
(fp SM*))
(fields
(field (name Reference) D)
(field (name Value) ZENER))
(pins
(pin (num 1) (name A) (type passive))
(pin (num 2) (name K) (type passive))))
(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))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib device) (part LED)
(footprints
(fp LED-3MM)
(fp LED-5MM)
(fp LED-10MM)
(fp LED-0603)
(fp LED-0805)
(fp LED-1206)
(fp LEDV))
(fields
(field (name Reference) D)
(field (name Value) LED))
(pins
(pin (num 1) (name A) (type passive))
(pin (num 2) (name K) (type passive)))))
(libraries
(library (logical linear)
(uri /usr/local/share/kicad/library/linear.lib))
(library (logical server_lader-cache)
(uri /home/philipp/Dokumente/dev/server_lader/server_lader-cache.lib))
(library (logical opto)
(uri /usr/local/share/kicad/library/opto.lib))
(library (logical atmel)
(uri /usr/local/share/kicad/library/atmel.lib))
(library (logical conn)
(uri /usr/local/share/kicad/library/conn.lib))
(library (logical device)
(uri /usr/local/share/kicad/library/device.lib)))
(nets
(net (code 1) (name GND)
(node (ref C27) (pin 2))
(node (ref P4) (pin 1))
(node (ref C24) (pin 2))
(node (ref Y1) (pin 2))
(node (ref U7) (pin 2))
(node (ref P10) (pin 5))
(node (ref C2) (pin 2))
(node (ref C3) (pin 2))
(node (ref C1) (pin 2))
(node (ref C5) (pin 2))
(node (ref IC1) (pin 19))
(node (ref C11) (pin 2))
(node (ref C8) (pin 2))
(node (ref R11) (pin 2))
(node (ref C10) (pin 2))
(node (ref P9) (pin 1))
(node (ref C25) (pin 2))
(node (ref C26) (pin 2))
(node (ref C7) (pin 2))
(node (ref SP1) (pin 2))
(node (ref P1) (pin 1))
(node (ref U3) (pin 2))
(node (ref U4) (pin 2))
(node (ref U3) (pin 8))
(node (ref C12) (pin 2))
(node (ref IC1) (pin 3))
(node (ref IC1) (pin 5))
(node (ref IC1) (pin 21))
(node (ref D1) (pin 1))
(node (ref P7) (pin 1))
(node (ref C4) (pin 2))
(node (ref P3) (pin 6))
(node (ref R8) (pin 2))
(node (ref R10) (pin 2))
(node (ref C9) (pin 2))
(node (ref C6) (pin 2))
(node (ref DISP1) (pin 27))
(node (ref P2) (pin 5))
(node (ref U2) (pin 2))
(node (ref DISP1) (pin 23))
(node (ref DISP1) (pin 37))
(node (ref U1) (pin 2))
(node (ref D2) (pin 2)))
(net (code 2) (name VCC)
(node (ref R18) (pin 1))
(node (ref P3) (pin 2))
(node (ref F1) (pin 2))
(node (ref R1) (pin 1))
(node (ref P4) (pin 4))
(node (ref D1) (pin 2))
(node (ref C7) (pin 1))
(node (ref C9) (pin 1))
(node (ref P2) (pin 1))
(node (ref R4) (pin 1))
(node (ref R5) (pin 1))
(node (ref C6) (pin 1))
(node (ref C27) (pin 1))
(node (ref DISP1) (pin 32))
(node (ref DISP1) (pin 40))
(node (ref C1) (pin 1))
(node (ref DISP1) (pin 31))
(node (ref DISP1) (pin 36))
(node (ref DISP1) (pin 26))
(node (ref DISP1) (pin 30))
(node (ref C3) (pin 1))
(node (ref P10) (pin 1))
(node (ref DISP1) (pin 33))
(node (ref DISP1) (pin 35))
(node (ref DISP1) (pin 24))
(node (ref C2) (pin 1))
(node (ref DISP1) (pin 25))
(node (ref IC1) (pin 6))
(node (ref IC1) (pin 4))
(node (ref R19) (pin 1))
(node (ref P7) (pin 4))
(node (ref IC1) (pin 18))
(node (ref C5) (pin 1))
(node (ref DISP1) (pin 34))
(node (ref C12) (pin 1))
(node (ref U4) (pin 1))
(node (ref P9) (pin 6))
(node (ref C11) (pin 1))
(node (ref U1) (pin 1))
(node (ref U3) (pin 1))
(node (ref C8) (pin 1))
(node (ref U3) (pin 7)))
(net (code 3) (name "Net-(D2-Pad1)")
(node (ref R6) (pin 1))
(node (ref D2) (pin 1)))
(net (code 4) (name /on)
(node (ref R2) (pin 1))
(node (ref U2) (pin 1)))
(net (code 5) (name /SS_DAC)
(node (ref U3) (pin 3))
(node (ref R4) (pin 2))
(node (ref IC1) (pin 14)))
(net (code 6) (name "Net-(P11-Pad1)")
(node (ref P11) (pin 1))
(node (ref U2) (pin 3)))
(net (code 7) (name "Net-(P11-Pad2)")
(node (ref U2) (pin 4))
(node (ref P11) (pin 3))
(node (ref P11) (pin 2)))
(net (code 8) (name +12V)
(node (ref U4) (pin 6))
(node (ref U6) (pin 7))
(node (ref C22) (pin 1))
(node (ref U5) (pin 8))
(node (ref C17) (pin 1))
(node (ref U5) (pin 5)))
(net (code 9) (name "Net-(F1-Pad1)")
(node (ref F1) (pin 1))
(node (ref P1) (pin 2)))
(net (code 10) (name "Net-(IC1-Pad11)")
(node (ref IC1) (pin 11))
(node (ref R3) (pin 1)))
(net (code 11) (name "Net-(R3-Pad2)")
(node (ref SP1) (pin 1))
(node (ref R3) (pin 2)))
(net (code 12) (name -12V)
(node (ref C23) (pin 2))
(node (ref U6) (pin 4))
(node (ref U4) (pin 4)))
(net (code 13) (name AGND)
(node (ref C17) (pin 2))
(node (ref IC2) (pin 8))
(node (ref C21) (pin 2))
(node (ref U5) (pin 4))
(node (ref C18) (pin 2))
(node (ref U5) (pin 9))
(node (ref R15) (pin 2))
(node (ref C23) (pin 1))
(node (ref C16) (pin 2))
(node (ref C14) (pin 2))
(node (ref P12) (pin 1))
(node (ref R13) (pin 1))
(node (ref U3) (pin 9))
(node (ref C22) (pin 2))
(node (ref C15) (pin 2))
(node (ref U3) (pin 15))
(node (ref C13) (pin 2))
(node (ref U4) (pin 5)))
(net (code 14) (name /RS_D)
(node (ref DISP1) (pin 39))
(node (ref P2) (pin 9)))
(net (code 15) (name "Net-(P12-Pad3)")
(node (ref P12) (pin 3)))
(net (code 16) (name /V_current)
(node (ref R16) (pin 1))
(node (ref U6) (pin 6))
(node (ref C20) (pin 1))
(node (ref P12) (pin 2)))
(net (code 17) (name "Net-(DISP1-Pad21)")
(node (ref DISP1) (pin 21)))
(net (code 18) (name "Net-(DISP1-Pad22)")
(node (ref DISP1) (pin 22)))
(net (code 19) (name "Net-(IC1-Pad22)")
(node (ref IC1) (pin 22)))
(net (code 20) (name /CSB_D)
(node (ref DISP1) (pin 38))
(node (ref P2) (pin 10)))
(net (code 21) (name /MOSI_D)
(node (ref P2) (pin 6))
(node (ref DISP1) (pin 28)))
(net (code 22) (name /MISO_D)
(node (ref P2) (pin 7)))
(net (code 23) (name /SCK_D)
(node (ref P2) (pin 8))
(node (ref DISP1) (pin 29)))
(net (code 24) (name /A_D)
(node (ref P2) (pin 2))
(node (ref P9) (pin 2)))
(net (code 25) (name /B_D)
(node (ref P2) (pin 3))
(node (ref P9) (pin 3)))
(net (code 26) (name /S_D)
(node (ref C10) (pin 1))
(node (ref P2) (pin 4))
(node (ref P9) (pin 4)))
(net (code 27) (name "Net-(P6-Pad1)")
(node (ref P6) (pin 1))
(node (ref U1) (pin 5)))
(net (code 28) (name "Net-(R17-Pad2)")
(node (ref U1) (pin 3))
(node (ref R17) (pin 2)))
(net (code 29) (name "Net-(P5-Pad1)")
(node (ref P5) (pin 1))
(node (ref U1) (pin 4)))
(net (code 30) (name "Net-(P9-Pad5)")
(node (ref P9) (pin 5))
(node (ref R11) (pin 1)))