forked from ciaa/Ponchos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOscilloscopio.net
1293 lines (1293 loc) · 48.4 KB
/
Oscilloscopio.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/diego/git/github/Ponchos/Osciloscopio/Oscilloscopio.sch)
(date "mié 21 dic 2016 15:43:31 ART")
(tool "Eeschema 4.0.2+dfsg1-2~bpo8+1-stable")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title "Poncho Osciloscopio")
(company "Proyecto CIAA - COMPUTADORA INDUSTRIAL ABIERTA ARGENTINA")
(rev 1.0)
(date 2015-10-06)
(source Oscilloscopio.sch)
(comment (number 1) (value https://github.com/ciaa/Ponchos/tree/master/modelos/doc))
(comment (number 2) (value "Autores y Licencia del template (Diego Brengi - UNLaM)"))
(comment (number 3) (value "Autor Nicolás Dassieu Blanchet - Curso Diseño de PCB del CESE - Ver directorio \"doc\" "))
(comment (number 4) (value "CÓDIGO PONCHO:"))))
(sheet (number 2) (name /Power/) (tstamps /579AD17E/)
(title_block
(title "Poncho Osciloscopio")
(company "Proyecto CIAA - COMPUTADORA INDUSTRIAL ABIERTA ARGENTINA")
(rev 1.0)
(date)
(source power.sch)
(comment (number 1) (value https://github.com/ciaa/Ponchos/tree/master/modelos/doc))
(comment (number 2) (value "Autores y Licencia del template (Diego Brengi - UNLaM)"))
(comment (number 3) (value "Autor Nicolás Dassieu Blanchet - Curso Diseño de PCB del CESE - Ver directorio \"doc\" "))
(comment (number 4) (value "CÓDIGO PONCHO:"))))
(sheet (number 3) (name /Osciloscopio/) (tstamps /579AD191/)
(title_block
(title "Poncho Osciloscopio")
(company "Proyecto CIAA - COMPUTADORA INDUSTRIAL ABIERTA ARGENTINA")
(rev 1.0)
(date)
(source osciloscopio.sch)
(comment (number 1) (value https://github.com/ciaa/Ponchos/tree/master/modelos/doc))
(comment (number 2) (value "Autores y Licencia del template (Diego Brengi - UNLaM)"))
(comment (number 3) (value "Autor Nicolás Dassieu Blanchet - Curso Diseño de PCB del CESE - Ver directorio \"doc\" "))
(comment (number 4) (value "CÓDIGO PONCHO:"))))
(sheet (number 4) (name /Display/) (tstamps /579AD1AC/)
(title_block
(title "Poncho Osciloscopio")
(company "Proyecto CIAA - COMPUTADORA INDUSTRIAL ABIERTA ARGENTINA")
(rev 1.0)
(date)
(source Display.sch)
(comment (number 1) (value https://github.com/ciaa/Ponchos/tree/master/modelos/doc))
(comment (number 2) (value "Autores y Licencia del template (Diego Brengi - UNLaM)"))
(comment (number 3) (value "Autor Nicolás Dassieu Blanchet - Curso Diseño de PCB del CESE - Ver directorio \"doc\" "))
(comment (number 4) (value "CÓDIGO PONCHO:"))))
(sheet (number 5) (name "/Conector del Poncho/") (tstamps /560A0C15/)
(title_block
(title "Poncho Osciloscopio")
(company "Proyecto CIAA - COMPUTADORA INDUSTRIAL ABIERTA ARGENTINA")
(rev 1.0)
(date 2015-10-06)
(source conector_poncho.sch)
(comment (number 1) (value https://github.com/ciaa/Ponchos/tree/master/modelos/doc))
(comment (number 2) (value "Autores y Licencia del template (Diego Brengi - UNLaM)"))
(comment (number 3) (value "Autor Nicolás Dassieu Blanchet - Curso Diseño de PCB del CESE - Ver directorio \"doc\" "))
(comment (number 4) (value "CÓDIGO PONCHO:")))))
(components
(comp (ref F1)
(value FIDUCIAL)
(footprint osc:Fiducial_1mm)
(fields
(field (name Descripcion) FIDUCIAL))
(libsource (lib osc) (part FIDUCIAL))
(sheetpath (names /) (tstamps /))
(tstamp 579AF5DB))
(comp (ref F2)
(value FIDUCIAL)
(footprint osc:Fiducial_1mm)
(fields
(field (name Descripcion) FIDUCIAL))
(libsource (lib osc) (part FIDUCIAL))
(sheetpath (names /) (tstamps /))
(tstamp 579AF5E3))
(comp (ref F3)
(value FIDUCIAL)
(footprint osc:Fiducial_1mm)
(fields
(field (name Descripcion) FIDUCIAL))
(libsource (lib osc) (part FIDUCIAL))
(sheetpath (names /) (tstamps /))
(tstamp 579AF5EB))
(comp (ref U1)
(value MAX232)
(footprint osc:DIP-16_W7.62mm_LongPads)
(fields
(field (name Digikey#) 296-1402-5-ND)
(field (name Manf#) MAX232N)
(field (name Manf) "Texas Instruments"))
(libsource (lib osc) (part MAX232))
(sheetpath (names /Power/) (tstamps /579AD17E/))
(tstamp 5782FB9E))
(comp (ref FB2)
(value HZ0805E601R-10)
(footprint osc:R_0805_HandSoldering)
(fields
(field (name Digikey#) 240-2399-1-ND)
(field (name Manf#) HZ0805E601R-10)
(field (name Manf) "Laird-Signal Integrity Products"))
(libsource (lib Oscilloscopio-cache) (part FILTER))
(sheetpath (names /Power/) (tstamps /579AD17E/))
(tstamp 5782FBA5))
(comp (ref FB1)
(value HZ0805E601R-10)
(footprint osc:R_0805_HandSoldering)
(fields
(field (name Digikey#) 240-2399-1-ND)
(field (name Manf#) "HZ0805E601R-10 ")
(field (name Manf) "Laird-Signal Integrity Products"))
(libsource (lib Oscilloscopio-cache) (part FILTER))
(sheetpath (names /Power/) (tstamps /579AD17E/))
(tstamp 5782FBAC))
(comp (ref U3)
(value 79L05)
(footprint osc:TO-92_Inline_Wide)
(fields
(field (name Digikey#) 296-31456-1-ND)
(field (name Manf#) MC79L05ACLPR)
(field (name Manf) "Texas Instruments"))
(libsource (lib osc) (part 79L05))
(sheetpath (names /Power/) (tstamps /579AD17E/))
(tstamp 5782FC1A))
(comp (ref U2)
(value 78L05)
(footprint osc:TO-92_Inline_Wide)
(fields
(field (name Digikey#) 296-1365-1-ND)
(field (name Manf#) UA78L05ACLPR)
(field (name Manf) "Texas Instruments"))
(libsource (lib osc) (part 78L05))
(sheetpath (names /Power/) (tstamps /579AD17E/))
(tstamp 5782FC21))
(comp (ref C6)
(value 100nF)
(footprint osc:C_0805_HandSoldering)
(fields
(field (name Digikey#) 1276-6468-1-ND)
(field (name Manf#) CL21B104KBFNNNG)
(field (name Manf) "Samsung Electro-Mechanics America, Inc."))
(libsource (lib Oscilloscopio-cache) (part C))
(sheetpath (names /Power/) (tstamps /579AD17E/))
(tstamp 5782FC2F))
(comp (ref C3)
(value 1uF)
(footprint osc:C_Radial_D5_L11_P2)
(fields
(field (name Digikey#) 732-8851-1-ND)
(field (name Manf#) 860020672005)
(field (name Manf) "Wurth Electronics Inc"))
(libsource (lib Oscilloscopio-cache) (part CP))
(sheetpath (names /Power/) (tstamps /579AD17E/))
(tstamp 578C4364))
(comp (ref C1)
(value 1uF)
(footprint osc:C_Radial_D5_L11_P2)
(fields
(field (name Digikey#) 732-8851-1-ND)
(field (name Manf#) 860020672005)
(field (name Manf) "Wurth Electronics Inc"))
(libsource (lib Oscilloscopio-cache) (part CP))
(sheetpath (names /Power/) (tstamps /579AD17E/))
(tstamp 578C4807))
(comp (ref C2)
(value 1uF)
(footprint osc:C_Radial_D5_L11_P2)
(fields
(field (name Digikey#) 732-8851-1-ND)
(field (name Manf#) 860020672005)
(field (name Manf) "Wurth Electronics Inc"))
(libsource (lib Oscilloscopio-cache) (part CP))
(sheetpath (names /Power/) (tstamps /579AD17E/))
(tstamp 578C4A92))
(comp (ref C4)
(value 1uF)
(footprint osc:C_Radial_D5_L11_P2)
(fields
(field (name Digikey#) 732-8851-1-ND)
(field (name Manf#) 860020672005)
(field (name Manf) "Wurth Electronics Inc"))
(libsource (lib Oscilloscopio-cache) (part CP))
(sheetpath (names /Power/) (tstamps /579AD17E/))
(tstamp 578C4C52))
(comp (ref C5)
(value 1uF)
(footprint osc:C_Radial_D5_L11_P2)
(fields
(field (name Digikey#) 732-8851-1-ND)
(field (name Manf#) 860020672005)
(field (name Manf) "Wurth Electronics Inc"))
(libsource (lib Oscilloscopio-cache) (part CP))
(sheetpath (names /Power/) (tstamps /579AD17E/))
(tstamp 578C4CAD))
(comp (ref C7)
(value 100nF)
(footprint osc:C_0805_HandSoldering)
(fields
(field (name Digikey#) 1276-6468-1-ND)
(field (name Manf#) CL21B104KBFNNNG)
(field (name Manf) "Samsung Electro-Mechanics America, Inc."))
(libsource (lib Oscilloscopio-cache) (part C))
(sheetpath (names /Power/) (tstamps /579AD17E/))
(tstamp 578C675F))
(comp (ref C8)
(value 100nF)
(footprint osc:C_0805_HandSoldering)
(fields
(field (name Digikey#) 1276-6468-1-ND)
(field (name Manf#) CL21B104KBFNNNG)
(field (name Manf) "Samsung Electro-Mechanics America, Inc."))
(libsource (lib Oscilloscopio-cache) (part C))
(sheetpath (names /Power/) (tstamps /579AD17E/))
(tstamp 578C684D))
(comp (ref C9)
(value 100nF)
(footprint osc:C_0805_HandSoldering)
(fields
(field (name Digikey#) 1276-6468-1-ND)
(field (name Manf#) CL21B104KBFNNNG)
(field (name Manf) "Samsung Electro-Mechanics America, Inc."))
(libsource (lib Oscilloscopio-cache) (part C))
(sheetpath (names /Power/) (tstamps /579AD17E/))
(tstamp 578C6A02))
(comp (ref R1)
(value 10k)
(footprint osc:R_0805_HandSoldering)
(fields
(field (name Digikey#) RMCF0805JG10K0CT-ND)
(field (name Manf#) RMCF0805JG10K0)
(field (name Manf) "Stackpole Electronics Inc."))
(libsource (lib Oscilloscopio-cache) (part R))
(sheetpath (names /Osciloscopio/) (tstamps /579AD191/))
(tstamp 57834259))
(comp (ref U5)
(value CD4066)
(footprint osc:DIP-14_W7.62mm_LongPads)
(fields
(field (name Digikey#) 296-2061-5-ND)
(field (name Manf#) CD4066BE)
(field (name Manf) "Texas Instruments"))
(libsource (lib osc) (part CD4066))
(sheetpath (names /Osciloscopio/) (tstamps /579AD191/))
(tstamp 57834263))
(comp (ref U4)
(value TL082)
(footprint osc:DIP-8_W7.62mm_LongPads)
(fields
(field (name Digikey#) 296-1781-5-ND)
(field (name Manf#) TL082IP)
(field (name Manf) "Texas Instruments"))
(libsource (lib osc) (part TL082))
(sheetpath (names /Osciloscopio/) (tstamps /579AD191/))
(tstamp 5783428B))
(comp (ref Q3)
(value BC557)
(footprint osc:TO-92_Inline_Wide)
(fields
(field (name Digikey#) BC557BTACT-ND)
(field (name Manf#) BC557BTA)
(field (name Manf) "Fairchild Semiconductor"))
(libsource (lib Oscilloscopio-cache) (part Q_PNP_CBE))
(sheetpath (names /Osciloscopio/) (tstamps /579AD191/))
(tstamp 578342AD))
(comp (ref R6)
(value 910k)
(footprint osc:R_0805_HandSoldering)
(fields
(field (name Digikey#) RMCF0805JT910KCT-ND)
(field (name Manf#) RMCF0805JT910K)
(field (name Manf) "Stackpole Electronics Inc."))
(libsource (lib Oscilloscopio-cache) (part R))
(sheetpath (names /Osciloscopio/) (tstamps /579AD191/))
(tstamp 578342B4))
(comp (ref R7)
(value 100k)
(footprint osc:R_0805_HandSoldering)
(fields
(field (name Digikey#) RMCF0805JT100KCT-ND)
(field (name Manf#) RMCF0805JT100K)
(field (name Manf) "Stackpole Electronics Inc."))
(libsource (lib Oscilloscopio-cache) (part R))
(sheetpath (names /Osciloscopio/) (tstamps /579AD191/))
(tstamp 578342BB))
(comp (ref D1)
(value BAT54)
(footprint osc:SOT-323)
(fields
(field (name Digikey#) 568-11592-1-ND)
(field (name Manf#) BAT54W,135)
(field (name Manf) "NXP Semiconductors"))
(libsource (lib Oscilloscopio-cache) (part D_Schottky_Small))
(sheetpath (names /Osciloscopio/) (tstamps /579AD191/))
(tstamp 578342C8))
(comp (ref D2)
(value BAT54)
(footprint osc:SOT-323)
(fields
(field (name Digikey#) 568-11592-1-ND)
(field (name Manf#) BAT54W,135)
(field (name Manf) "NXP Semiconductors"))
(libsource (lib Oscilloscopio-cache) (part D_Schottky_Small))
(sheetpath (names /Osciloscopio/) (tstamps /579AD191/))
(tstamp 578342DB))
(comp (ref R3)
(value 100k)
(footprint osc:R_0805_HandSoldering)
(fields
(field (name Digikey#) RMCF0805JT100KCT-ND)
(field (name Manf#) RMCF0805JT100K)
(field (name Manf) "Stackpole Electronics Inc."))
(libsource (lib Oscilloscopio-cache) (part R))
(sheetpath (names /Osciloscopio/) (tstamps /579AD191/))
(tstamp 5783430E))
(comp (ref R13)
(value 18k)
(footprint osc:R_0805_HandSoldering)
(fields
(field (name Digikey#) RMCF0805JT18K0CT-ND)
(field (name Manf#) RMCF0805JT18K0)
(field (name Manf) "Stackpole Electronics Inc."))
(libsource (lib Oscilloscopio-cache) (part R))
(sheetpath (names /Osciloscopio/) (tstamps /579AD191/))
(tstamp 57834315))
(comp (ref R14)
(value 5k6)
(footprint osc:R_0805_HandSoldering)
(fields
(field (name Digikey#) RMCF0805JT5K60CT-ND)
(field (name Manf#) RMCF0805JT5K60)
(field (name Manf) "Stackpole Electronics Inc."))
(libsource (lib Oscilloscopio-cache) (part R))
(sheetpath (names /Osciloscopio/) (tstamps /579AD191/))
(tstamp 5783431C))
(comp (ref R15)
(value 1k8)
(footprint osc:R_0805_HandSoldering)
(fields
(field (name Digikey#) RMCF0805JT1K80CT-ND)
(field (name Manf#) RMCF0805JT1K80)
(field (name Manf) "Stackpole Electronics Inc."))
(libsource (lib Oscilloscopio-cache) (part R))
(sheetpath (names /Osciloscopio/) (tstamps /579AD191/))
(tstamp 57834323))
(comp (ref R9)
(value 47k)
(footprint osc:R_0805_HandSoldering)
(fields
(field (name Digikey#) RMCF0805JT47K0CT-ND)
(field (name Manf#) RMCF0805JT47K0)
(field (name Manf) "Stackpole Electronics Inc."))
(libsource (lib Oscilloscopio-cache) (part R))
(sheetpath (names /Osciloscopio/) (tstamps /579AD191/))
(tstamp 5783432A))
(comp (ref R11)
(value 47k)
(footprint osc:R_0805_HandSoldering)
(fields
(field (name Digikey#) RMCF0805JT47K0CT-ND)
(field (name Manf#) RMCF0805JT47K0)
(field (name Manf) "Stackpole Electronics Inc."))
(libsource (lib Oscilloscopio-cache) (part R))
(sheetpath (names /Osciloscopio/) (tstamps /579AD191/))
(tstamp 57834337))
(comp (ref R10)
(value 47k)
(footprint osc:R_0805_HandSoldering)
(fields
(field (name Digikey#) RMCF0805JT47K0CT-ND)
(field (name Manf#) RMCF0805JT47K0)
(field (name Manf) "Stackpole Electronics Inc."))
(libsource (lib Oscilloscopio-cache) (part R))
(sheetpath (names /Osciloscopio/) (tstamps /579AD191/))
(tstamp 5783433E))
(comp (ref R8)
(value 47k)
(footprint osc:R_0805_HandSoldering)
(fields
(field (name Digikey#) RMCF0805JT47K0CT-ND)
(field (name Manf#) RMCF0805JT47K0)
(field (name Manf) "Stackpole Electronics Inc."))
(libsource (lib Oscilloscopio-cache) (part R))
(sheetpath (names /Osciloscopio/) (tstamps /579AD191/))
(tstamp 57834345))
(comp (ref R12)
(value 56k)
(footprint osc:R_0805_HandSoldering)
(fields
(field (name Digikey#) RMCF0805JT56K0CT-ND)
(field (name Manf#) RMCF0805JT56K0)
(field (name Manf) "Stackpole Electronics Inc."))
(libsource (lib Oscilloscopio-cache) (part R))
(sheetpath (names /Osciloscopio/) (tstamps /579AD191/))
(tstamp 57834356))
(comp (ref Q4)
(value BC557)
(footprint osc:TO-92_Inline_Wide)
(fields
(field (name Digikey#) BC557BTACT-ND)
(field (name Manf#) BC557BTA)
(field (name Manf) "Fairchild Semiconductor"))
(libsource (lib Oscilloscopio-cache) (part Q_PNP_CBE))
(sheetpath (names /Osciloscopio/) (tstamps /579AD191/))
(tstamp 5783436A))
(comp (ref Q1)
(value BC557)
(footprint osc:TO-92_Inline_Wide)
(fields
(field (name Digikey#) BC557BTACT-ND)
(field (name Manf#) BC557BTA)
(field (name Manf) "Fairchild Semiconductor"))
(libsource (lib Oscilloscopio-cache) (part Q_PNP_CBE))
(sheetpath (names /Osciloscopio/) (tstamps /579AD191/))
(tstamp 57834377))
(comp (ref R4)
(value 100k)
(footprint osc:R_0805_HandSoldering)
(fields
(field (name Digikey#) RMCF0805JT100KCT-ND)
(field (name Manf#) RMCF0805JT100K)
(field (name Manf) "Stackpole Electronics Inc."))
(libsource (lib Oscilloscopio-cache) (part R))
(sheetpath (names /Osciloscopio/) (tstamps /579AD191/))
(tstamp 57834384))
(comp (ref R5)
(value 100k)
(footprint osc:R_0805_HandSoldering)
(fields
(field (name Digikey#) RMCF0805JT100KCT-ND)
(field (name Manf#) RMCF0805JT100K)
(field (name Manf) "Stackpole Electronics Inc."))
(libsource (lib Oscilloscopio-cache) (part R))
(sheetpath (names /Osciloscopio/) (tstamps /579AD191/))
(tstamp 5783438B))
(comp (ref R2)
(value 100k)
(footprint osc:R_0805_HandSoldering)
(fields
(field (name Digikey#) RMCF0805JT100KCT-ND)
(field (name Manf#) RMCF0805JT100K)
(field (name Manf) "Stackpole Electronics Inc."))
(libsource (lib Oscilloscopio-cache) (part R))
(sheetpath (names /Osciloscopio/) (tstamps /579AD191/))
(tstamp 57834392))
(comp (ref R16)
(value 150k)
(footprint osc:R_0805_HandSoldering)
(fields
(field (name Digikey#) RMCF0805JT150KCT-ND)
(field (name Manf#) RMCF0805JT150K)
(field (name Manf) "Stackpole Electronics Inc."))
(libsource (lib Oscilloscopio-cache) (part R))
(sheetpath (names /Osciloscopio/) (tstamps /579AD191/))
(tstamp 578343FA))
(comp (ref R17)
(value 56k)
(footprint osc:R_0805_HandSoldering)
(fields
(field (name Digikey#) RMCF0805JT56K0CT-ND)
(field (name Manf#) RMCF0805JT56K0)
(field (name Manf) "Stackpole Electronics Inc."))
(libsource (lib Oscilloscopio-cache) (part R))
(sheetpath (names /Osciloscopio/) (tstamps /579AD191/))
(tstamp 57834413))
(comp (ref D3)
(value BAT54)
(footprint osc:SOT-323)
(fields
(field (name Digikey#) 568-11592-1-ND)
(field (name Manf#) "BAT54W,135 ")
(field (name Manf) "NXP Semiconductors"))
(libsource (lib Oscilloscopio-cache) (part D_Schottky_Small))
(sheetpath (names /Osciloscopio/) (tstamps /579AD191/))
(tstamp 57834422))
(comp (ref D4)
(value BAT54)
(footprint osc:SOT-323)
(fields
(field (name Digikey#) "568-11592-1-ND ")
(field (name Manf#) BAT54W,135)
(field (name Manf) "NXP Semiconductors"))
(libsource (lib Oscilloscopio-cache) (part D_Schottky_Small))
(sheetpath (names /Osciloscopio/) (tstamps /579AD191/))
(tstamp 57834429))
(comp (ref R19)
(value 56k)
(footprint osc:R_0805_HandSoldering)
(fields
(field (name Digikey#) RMCF0805JT56K0CT-ND)
(field (name Manf#) RMCF0805JT56K0)
(field (name Manf) "Stackpole Electronics Inc."))
(libsource (lib Oscilloscopio-cache) (part R))
(sheetpath (names /Osciloscopio/) (tstamps /579AD191/))
(tstamp 5783443A))
(comp (ref RV1)
(value 10k)
(footprint osc:Potentiometer_Alps-RK16-single)
(fields
(field (name Mouser#) 688-RK1631110TBK)
(field (name Manf#) RK1631110TBK)
(field (name Manf) ALPS))
(libsource (lib Oscilloscopio-cache) (part POT))
(sheetpath (names /Osciloscopio/) (tstamps /579AD191/))
(tstamp 5783E8B4))
(comp (ref P1)
(value BNC)
(footprint osc:BNC_Socket_TYCO-AMP_LargePads)
(fields
(field (name Digikey#) A32244-ND)
(field (name Manf#) 5227161-1)
(field (name Manf) "TE Connectivity AMP Connectors"))
(libsource (lib Oscilloscopio-cache) (part BNC))
(sheetpath (names /Osciloscopio/) (tstamps /579AD191/))
(tstamp 578305B2))
(comp (ref Q2)
(value BC557)
(footprint osc:TO-92_Inline_Wide)
(fields
(field (name Digikey#) BC557BTACT-ND)
(field (name Manf#) BC557BTA)
(field (name Manf) "Fairchild Semiconductor"))
(libsource (lib Oscilloscopio-cache) (part Q_PNP_CBE))
(sheetpath (names /Osciloscopio/) (tstamps /579AD191/))
(tstamp 5783435D))
(comp (ref C14)
(value 100nF)
(footprint osc:C_0805_HandSoldering)
(fields
(field (name Digikey#) 1276-6468-1-ND)
(field (name Manf#) CL21B104KBFNNNG)
(field (name Manf) "Samsung Electro-Mechanics America, Inc."))
(libsource (lib Oscilloscopio-cache) (part C))
(sheetpath (names /Osciloscopio/) (tstamps /579AD191/))
(tstamp 578C7A7F))
(comp (ref C12)
(value 100nF)
(footprint osc:C_0805_HandSoldering)
(fields
(field (name Digikey#) 1276-6468-1-ND)
(field (name Manf#) CL21B104KBFNNNG)
(field (name Manf) "Samsung Electro-Mechanics America, Inc."))
(libsource (lib Oscilloscopio-cache) (part C))
(sheetpath (names /Osciloscopio/) (tstamps /579AD191/))
(tstamp 578C86F6))
(comp (ref C11)
(value 100nF)
(footprint osc:C_0805_HandSoldering)
(fields
(field (name Digikey#) 1276-6468-1-ND)
(field (name Manf#) CL21B104KBFNNNG)
(field (name Manf) "Samsung Electro-Mechanics America, Inc."))
(libsource (lib Oscilloscopio-cache) (part C))
(sheetpath (names /Osciloscopio/) (tstamps /579AD191/))
(tstamp 578C8762))
(comp (ref C10)
(value 100nF)
(footprint osc:C_0805_HandSoldering)
(fields
(field (name Digikey#) 1276-6468-1-ND)
(field (name Manf#) CL21B104KBFNNNG)
(field (name Manf) "Samsung Electro-Mechanics America, Inc."))
(libsource (lib Oscilloscopio-cache) (part C))
(sheetpath (names /Osciloscopio/) (tstamps /579AD191/))
(tstamp 578C8BC5))
(comp (ref RV2)
(value 150k)
(footprint osc:Potentiometer_Bourns_3296W_3-8Zoll_Inline_ScrewUp)
(fields
(field (name Digikey#) 490-2889-ND)
(field (name Manf#) PV36W503C01B00)
(field (name Manf) "Bourns Inc."))
(libsource (lib Oscilloscopio-cache) (part POT))
(sheetpath (names /Osciloscopio/) (tstamps /579AD191/))
(tstamp 579B66A3))
(comp (ref D5)
(value Display)
(footprint osc:Display)
(fields
(field (name Digikey#) S7042-ND)
(field (name Manf#) PPPC091LFBN-RC)
(field (name Manf) "Sullins Connector Solutions"))
(libsource (lib osc) (part Display))
(sheetpath (names /Display/) (tstamps /579AD1AC/))
(tstamp 57846210))
(comp (ref R20)
(value 33)
(footprint osc:R_0805_HandSoldering)
(fields
(field (name Digikey#) RMCF0805JT33R0CT-ND)
(field (name Manf#) RMCF0805JT33R0)
(field (name Manf) "Stackpole Electronics Inc."))
(libsource (lib Oscilloscopio-cache) (part R))
(sheetpath (names /Display/) (tstamps /579AD1AC/))
(tstamp 5785A7C4))
(comp (ref R21)
(value 33)
(footprint osc:R_0805_HandSoldering)
(fields
(field (name Digikey#) RMCF0805JT33R0CT-ND)
(field (name Manf#) RMCF0805JT33R0)
(field (name Manf) "Stackpole Electronics Inc."))
(libsource (lib Oscilloscopio-cache) (part R))
(sheetpath (names /Display/) (tstamps /579AD1AC/))
(tstamp 5785A851))
(comp (ref R22)
(value 33)
(footprint osc:R_0805_HandSoldering)
(fields
(field (name Digikey#) RMCF0805JT33R0CT-ND)
(field (name Manf#) RMCF0805JT33R0)
(field (name Manf) "Stackpole Electronics Inc."))
(libsource (lib Oscilloscopio-cache) (part R))
(sheetpath (names /Display/) (tstamps /579AD1AC/))
(tstamp 5785A870))
(comp (ref R23)
(value 33)
(footprint osc:R_0805_HandSoldering)
(fields
(field (name Digikey#) RMCF0805JT33R0CT-ND)
(field (name Manf#) RMCF0805JT33R0))
(libsource (lib Oscilloscopio-cache) (part R))
(sheetpath (names /Display/) (tstamps /579AD1AC/))
(tstamp 5785A89A))
(comp (ref R24)
(value 33)
(footprint osc:R_0805_HandSoldering)
(fields
(field (name Digikey#) RMCF0805JT33R0CT-ND)
(field (name Manf#) RMCF0805JT33R0)
(field (name Manf) "Stackpole Electronics Inc."))
(libsource (lib Oscilloscopio-cache) (part R))
(sheetpath (names /Display/) (tstamps /579AD1AC/))
(tstamp 5785A8CB))
(comp (ref R25)
(value 33)
(footprint osc:R_0805_HandSoldering)
(fields
(field (name Digikey#) RMCF0805JT33R0CT-ND)
(field (name Manf#) RMCF0805JT33R0)
(field (name Manf) "Stackpole Electronics Inc."))
(libsource (lib Oscilloscopio-cache) (part R))
(sheetpath (names /Display/) (tstamps /579AD1AC/))
(tstamp 5785A8E1))
(comp (ref R26)
(value 33)
(footprint osc:R_0805_HandSoldering)
(fields
(field (name Digikey#) RMCF0805JT33R0CT-ND)
(field (name Manf#) RMCF0805JT33R0)
(field (name Manf) "Stackpole Electronics Inc."))
(libsource (lib Oscilloscopio-cache) (part R))
(sheetpath (names /Display/) (tstamps /579AD1AC/))
(tstamp 5785A93A))
(comp (ref XA1)
(value Conn_Poncho2P_2x_20x2)
(footprint osc:poncho_grande)
(fields
(field (name Manf) "Sullins Connector Solutions")
(field (name Manf#) PEC20DAAN)
(field (name Digikey#) S2012E-20-ND))
(libsource (lib Oscilloscopio-cache) (part Conn_Poncho2P_2x_20x2))
(sheetpath (names "/Conector del Poncho/") (tstamps /560A0C15/))
(tstamp 560C5732)))
(libparts
(libpart (lib osc) (part 78L05)
(fields
(field (name Reference) U)
(field (name Value) 78L05))
(pins
(pin (num 1) (name Vo) (type power_out))
(pin (num 2) (name GND) (type power_in))
(pin (num 3) (name Vi) (type power_in))))
(libpart (lib osc) (part 79L05)
(fields
(field (name Reference) U)
(field (name Value) 79L05))
(pins
(pin (num 1) (name Vo) (type power_out))
(pin (num 2) (name GND) (type power_in))
(pin (num 3) (name Vi) (type power_in))))
(libpart (lib Oscilloscopio-cache) (part BNC)
(footprints
(fp BNC_*)
(fp bnc)
(fp bnc-*))
(fields
(field (name Reference) P)
(field (name Value) BNC))
(pins
(pin (num 1) (name In) (type passive))
(pin (num 2) (name Ext) (type passive))))
(libpart (lib Oscilloscopio-cache) (part C)
(footprints
(fp C?)
(fp C_????_*)
(fp C_????)
(fp SMD*_c)
(fp Capacitor*))
(fields
(field (name Reference) C)
(field (name Value) C))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib osc) (part CD4066)
(fields
(field (name Reference) U)
(field (name Value) CD4066))
(pins
(pin (num 1) (name A) (type passive))
(pin (num 2) (name B) (type passive))
(pin (num 3) (name B) (type passive))
(pin (num 4) (name A) (type passive))
(pin (num 5) (name C) (type input))
(pin (num 6) (name C) (type input))
(pin (num 7) (name VSS) (type power_in))
(pin (num 8) (name A) (type passive))
(pin (num 9) (name B) (type passive))
(pin (num 10) (name B) (type passive))
(pin (num 11) (name A) (type passive))
(pin (num 12) (name C) (type input))
(pin (num 13) (name C) (type input))
(pin (num 14) (name VDD) (type power_in))))
(libpart (lib Oscilloscopio-cache) (part CP)
(footprints
(fp CP*)
(fp Elko*)
(fp TantalC*)
(fp C*elec)
(fp c_elec*)
(fp SMD*_Pol))
(fields
(field (name Reference) C)
(field (name Value) CP))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Oscilloscopio-cache) (part Conn_Poncho2P_2x_20x2)
(fields
(field (name Reference) XA)
(field (name Value) Conn_Poncho2P_2x_20x2))
(pins
(pin (num 1) (name +3.3V) (type power_out))
(pin (num 2) (name +5V) (type power_out))
(pin (num 3) (name RESET) (type input))
(pin (num 4) (name GND) (type passive))
(pin (num 5) (name ISP) (type passive))
(pin (num 6) (name WAKEUP) (type input))
(pin (num 7) (name GNDA) (type passive))
(pin (num 8) (name GNDA) (type passive))
(pin (num 9) (name ADC3) (type passive))
(pin (num 10) (name GNDA) (type passive))
(pin (num 11) (name ADC2) (type passive))
(pin (num 12) (name GNDA) (type passive))
(pin (num 13) (name ADC1) (type passive))
(pin (num 14) (name GNDA) (type passive))
(pin (num 15) (name DAC) (type passive))
(pin (num 16) (name GNDA) (type passive))
(pin (num 17) (name VDDA) (type power_out))
(pin (num 18) (name GNDA) (type passive))
(pin (num 19) (name i2cSDA) (type passive))
(pin (num 20) (name GND) (type passive))
(pin (num 21) (name i2cSCL) (type passive))
(pin (num 22) (name GND) (type passive))
(pin (num 23) (name rs232RXD) (type passive))
(pin (num 24) (name GND) (type passive))
(pin (num 25) (name rs232TXD) (type passive))
(pin (num 26) (name GND) (type passive))
(pin (num 27) (name canRD) (type passive))
(pin (num 28) (name GND) (type passive))
(pin (num 29) (name canTD) (type passive))
(pin (num 30) (name GND) (type passive))
(pin (num 31) (name tecCOL1) (type passive))
(pin (num 32) (name GND) (type passive))
(pin (num 33) (name tecF0) (type passive))
(pin (num 34) (name tecCOL2) (type passive))
(pin (num 35) (name tecF3) (type passive))
(pin (num 36) (name tecF1) (type passive))
(pin (num 37) (name tecF2) (type passive))
(pin (num 38) (name GND) (type passive))
(pin (num 39) (name tecCOL0) (type passive))
(pin (num 40) (name GND) (type passive))
(pin (num 41) (name +3.3V) (type power_out))
(pin (num 42) (name +5V) (type power_out))
(pin (num 43) (name GND) (type passive))
(pin (num 44) (name ethRXD1) (type passive))
(pin (num 45) (name GND) (type passive))
(pin (num 46) (name ethTXEN) (type passive))
(pin (num 47) (name GND) (type passive))
(pin (num 48) (name ethMDC) (type passive))
(pin (num 49) (name ethRXD0) (type passive))
(pin (num 50) (name ethCRS) (type passive))
(pin (num 51) (name GND) (type passive))
(pin (num 52) (name ethMDIO) (type passive))
(pin (num 53) (name GND) (type passive))
(pin (num 54) (name ethTXD0) (type passive))
(pin (num 55) (name ethRCLCK) (type passive))
(pin (num 56) (name ethTXD1) (type passive))
(pin (num 57) (name GND) (type passive))
(pin (num 58) (name spiMISO) (type passive))
(pin (num 59) (name GND) (type passive))
(pin (num 60) (name spiSCK) (type passive))
(pin (num 61) (name spiMOSI) (type passive))
(pin (num 62) (name lcd4) (type passive))
(pin (num 63) (name lcdEN) (type passive))
(pin (num 64) (name lcdRS) (type passive))
(pin (num 65) (name GND) (type passive))
(pin (num 66) (name lcd3) (type passive))
(pin (num 67) (name GND) (type passive))
(pin (num 68) (name lcd2) (type passive))
(pin (num 69) (name GPIO0) (type passive))
(pin (num 70) (name lcd1) (type passive))
(pin (num 71) (name GPIO2) (type passive))
(pin (num 72) (name GPIO1) (type passive))
(pin (num 73) (name GPIO4) (type passive))
(pin (num 74) (name GPIO3) (type passive))
(pin (num 75) (name GPIO6) (type passive))
(pin (num 76) (name GPIO5) (type passive))
(pin (num 77) (name GND) (type passive))
(pin (num 78) (name GPIO7) (type passive))
(pin (num 79) (name GND) (type passive))
(pin (num 80) (name GPIO8) (type passive))))
(libpart (lib Oscilloscopio-cache) (part D_Schottky_Small)
(footprints
(fp Diode_*)
(fp D-Pak_TO252AA)
(fp *SingleDiode)
(fp *SingleDiode*)
(fp *_Diode_*))
(fields
(field (name Reference) D)
(field (name Value) D_Schottky_Small))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib osc) (part Display)
(fields
(field (name Reference) D)
(field (name Value) Display))
(pins
(pin (num 1) (name Vcc) (type input))
(pin (num 2) (name GND) (type input))
(pin (num 3) (name CS) (type input))
(pin (num 4) (name Rst) (type input))
(pin (num 5) (name C/D) (type input))
(pin (num 6) (name MOSI) (type input))
(pin (num 7) (name SCK) (type input))
(pin (num 8) (name LED) (type input))
(pin (num 9) (name MISO) (type input))
(pin (num 10) (name M1) (type input))
(pin (num 11) (name M2) (type input))
(pin (num 12) (name M3) (type input))
(pin (num 13) (name M4) (type input))))
(libpart (lib osc) (part FIDUCIAL)
(fields
(field (name Reference) F)
(field (name Value) FIDUCIAL)
(field (name Descripcion) FIDUCIAL))
(pins
(pin (num 1) (name 1) (type NotConnected))))
(libpart (lib Oscilloscopio-cache) (part FILTER)
(fields
(field (name Reference) FB)
(field (name Value) FILTER))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib osc) (part MAX232)
(fields
(field (name Reference) U)
(field (name Value) MAX232))
(pins
(pin (num 1) (name C1+) (type passive))
(pin (num 2) (name V+) (type power_out))
(pin (num 3) (name C1-) (type passive))
(pin (num 4) (name C2+) (type passive))
(pin (num 5) (name C2-) (type passive))
(pin (num 6) (name V-) (type power_out))
(pin (num 7) (name T2OUT) (type output))
(pin (num 8) (name R2IN) (type input))
(pin (num 9) (name R2OUT) (type output))
(pin (num 10) (name T2IN) (type input))
(pin (num 11) (name T1IN) (type input))
(pin (num 12) (name R1OUT) (type output))
(pin (num 13) (name R1IN) (type input))
(pin (num 14) (name T1OUT) (type output))
(pin (num 15) (name GND) (type power_in))
(pin (num 16) (name Vcc) (type power_in))))
(libpart (lib Oscilloscopio-cache) (part POT)
(fields
(field (name Reference) RV)
(field (name Value) POT))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))
(pin (num 3) (name 3) (type passive))))
(libpart (lib Oscilloscopio-cache) (part Q_PNP_CBE)
(fields
(field (name Reference) Q)
(field (name Value) Q_PNP_CBE))
(pins
(pin (num 1) (name C) (type passive))
(pin (num 2) (name B) (type input))
(pin (num 3) (name E) (type passive))))
(libpart (lib Oscilloscopio-cache) (part R)
(footprints
(fp R_*)
(fp Resistor_*))
(fields
(field (name Reference) R)
(field (name Value) R))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib osc) (part TL082)
(fields
(field (name Reference) U)
(field (name Value) TL082))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name -) (type passive))
(pin (num 3) (name +) (type passive))
(pin (num 4) (name Vss) (type passive))
(pin (num 5) (name +) (type passive))
(pin (num 6) (name -) (type passive))
(pin (num 7) (name ~) (type passive))
(pin (num 8) (name Vcc) (type power_in)))))
(libraries
(library (logical Oscilloscopio-cache)
(uri /home/diego/git/github/Ponchos/Osciloscopio/Oscilloscopio-cache.lib))
(library (logical osc)
(uri lib/osc.lib)))
(nets
(net (code 1) (name "/Conector del Poncho/ADC3")
(node (ref XA1) (pin 9)))
(net (code 2) (name /Osciloscopio/GAIN2)
(node (ref XA1) (pin 69))
(node (ref R4) (pin 2)))
(net (code 3) (name /Osciloscopio/GAIN3)
(node (ref R5) (pin 2))
(node (ref XA1) (pin 71)))
(net (code 4) (name "/Conector del Poncho/GPIO4")
(node (ref XA1) (pin 73)))
(net (code 5) (name /Display/SCK)
(node (ref XA1) (pin 60))
(node (ref R20) (pin 2)))
(net (code 6) (name /Osciloscopio/GAIN1)
(node (ref R3) (pin 2))
(node (ref XA1) (pin 72)))
(net (code 7) (name /Osciloscopio/AC_DC)
(node (ref R2) (pin 2))
(node (ref XA1) (pin 74)))
(net (code 8) (name "/Conector del Poncho/GPIO5")
(node (ref XA1) (pin 76))
(node (ref R25) (pin 2)))
(net (code 9) (name "/Conector del Poncho/MISO")
(node (ref XA1) (pin 58))
(node (ref R26) (pin 1)))
(net (code 10) (name "/Conector del Poncho/ADC2")
(node (ref R19) (pin 1))
(node (ref D4) (pin 1))
(node (ref D3) (pin 2))
(node (ref XA1) (pin 11)))
(net (code 11) (name "/Conector del Poncho/ADC1")
(node (ref RV1) (pin 2))
(node (ref C14) (pin 1))
(node (ref XA1) (pin 13)))
(net (code 13) (name "/Conector del Poncho/MOSI")
(node (ref R21) (pin 2))
(node (ref XA1) (pin 61)))
(net (code 14) (name /Display/CS)
(node (ref XA1) (pin 80))
(node (ref R22) (pin 2)))
(net (code 15) (name "/Conector del Poncho/GPIO7")
(node (ref XA1) (pin 78))
(node (ref R24) (pin 2)))
(net (code 16) (name /Display/C/D)
(node (ref R23) (pin 2))
(node (ref XA1) (pin 75)))
(net (code 17) (name "Net-(F3-Pad1)")
(node (ref F3) (pin 1)))
(net (code 18) (name "Net-(F2-Pad1)")
(node (ref F2) (pin 1)))
(net (code 19) (name "Net-(F1-Pad1)")
(node (ref F1) (pin 1)))
(net (code 20) (name +3.3VADC)
(node (ref XA1) (pin 17))
(node (ref D3) (pin 1))
(node (ref RV1) (pin 1)))
(net (code 21) (name "Net-(XA1-Pad62)")
(node (ref XA1) (pin 62)))
(net (code 22) (name +3.3V)
(node (ref XA1) (pin 1)))
(net (code 23) (name "Net-(XA1-Pad52)")
(node (ref XA1) (pin 52)))
(net (code 24) (name "Net-(XA1-Pad70)")
(node (ref XA1) (pin 70)))
(net (code 25) (name "Net-(XA1-Pad50)")
(node (ref XA1) (pin 50)))