-
Notifications
You must be signed in to change notification settings - Fork 4
/
PBC_TP_Final_JMena.net
2244 lines (2244 loc) · 90.8 KB
/
PBC_TP_Final_JMena.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/jamm/Escritorio/PBC_TP_Final_JMena/PBC_TP_Final_JMena/PBC_TP_Final_JMena.sch)
(date "mar 09 oct 2018 10:35:37 -05")
(tool "Eeschema 5.0.0-fee4fd1~66~ubuntu18.04.1")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title "PBC TP Final - Tarjeta de Expanción GEO-HCAL ")
(company "GEO Technologies")
(rev "RG 1.0")
(date 14/06/18)
(source PBC_TP_Final_JMena.sch)
(comment (number 1) (value "Autor: Jairo Mena"))
(comment (number 2) (value "Versión: 1.0"))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 2) (name "/Fuente de Poder/") (tstamps /5BA8FAE3/)
(title_block
(title "PBC TP Final - Tarjeta de Expanción GEO-HCAL ")
(company "GEO Technologies")
(rev "RG 1.0")
(date 14/06/18)
(source power.sch)
(comment (number 1) (value "Autor: Jairo Mena"))
(comment (number 2) (value "Versión: 1.0"))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 3) (name "/Conversión Analogo-Digital/") (tstamps /5BA8FB15/)
(title_block
(title "PBC TP Final - Tarjeta de Expanción GEO-HCAL ")
(company "GEO Technologies")
(rev "RG 1.0")
(date 14/06/18)
(source adc.sch)
(comment (number 1) (value "Autor: Jairo Mena"))
(comment (number 2) (value "Versión: 1.0"))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 4) (name "/Interfaz de Usuario/") (tstamps /5BA8FB5C/)
(title_block
(title "PBC TP Final - Tarjeta de Expanción GEO-HCAL ")
(company "GEO Technologies")
(rev "RG 1.0")
(date 14/06/18)
(source userinterface.sch)
(comment (number 1) (value "Autor: Jairo Mena"))
(comment (number 2) (value "Versión: 1.0"))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 5) (name /Comunicación/) (tstamps /5BA8FCF6/)
(title_block
(title "PBC TP Final - Tarjeta de Expanción GEO-HCAL ")
(company "GEO Technologies")
(rev "RG 1.0")
(date 14/06/18)
(source comm.sch)
(comment (number 1) (value "Autor: Jairo Mena"))
(comment (number 2) (value "Versión: 1.0"))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 6) (name "/Puertos de Entrada y Salida/") (tstamps /5BA8FCC3/)
(title_block
(title "PBC TP Final - Tarjeta de Expanción GEO-HCAL ")
(company "GEO Technologies")
(rev "RG 1.0")
(date 14/06/18)
(source io.sch)
(comment (number 1) (value "Autor: Jairo Mena"))
(comment (number 2) (value "Versión: 1.0"))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref MH101)
(value MountingHole)
(footprint MountingHole:MountingHole_2.5mm)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole) (description "Mounting Hole without connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5BB0B7F0))
(comp (ref MH102)
(value MountingHole)
(footprint MountingHole:MountingHole_2.5mm)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole) (description "Mounting Hole without connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5BB0B901))
(comp (ref MH103)
(value MountingHole)
(footprint MountingHole:MountingHole_2.5mm)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole) (description "Mounting Hole without connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5BB0B93D))
(comp (ref MH104)
(value MountingHole)
(footprint MountingHole:MountingHole_2.5mm)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole) (description "Mounting Hole without connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5BB0B985))
(comp (ref U201)
(value NCP1117-5.0_SOT223)
(footprint Package_TO_SOT_SMD:SOT-223-3_TabPin2)
(datasheet http://www.onsemi.com/pub_link/Collateral/NCP1117-D.PDF)
(libsource (lib Regulator_Linear) (part NCP1117-5.0_SOT223) (description "1A Low drop-out regulator, Fixed Output 5V, SOT-223"))
(sheetpath (names "/Fuente de Poder/") (tstamps /5BA8FAE3/))
(tstamp 5BA90226))
(comp (ref C201)
(value 10uF)
(footprint Capacitor_SMD:C_1206_3216Metric_Pad1.42x1.75mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/Fuente de Poder/") (tstamps /5BA8FAE3/))
(tstamp 5BA90465))
(comp (ref C202)
(value 10uF)
(footprint Capacitor_SMD:C_1206_3216Metric_Pad1.42x1.75mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part CP) (description "Polarised capacitor"))
(sheetpath (names "/Fuente de Poder/") (tstamps /5BA8FAE3/))
(tstamp 5BA904CF))
(comp (ref U202)
(value LM1084-3.3)
(footprint Package_TO_SOT_SMD:TO-263-3_TabPin2)
(datasheet http://www.ti.com/lit/ds/symlink/lm1084.pdf)
(libsource (lib Regulator_Linear) (part LM1084-3.3) (description "5A 27V Linear Regulator, Fixed Output 3.3V, TO-220/TO-263"))
(sheetpath (names "/Fuente de Poder/") (tstamps /5BA8FAE3/))
(tstamp 5BA90A3F))
(comp (ref C203)
(value 10uF)
(footprint Capacitor_SMD:C_1206_3216Metric_Pad1.42x1.75mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/Fuente de Poder/") (tstamps /5BA8FAE3/))
(tstamp 5BA90BED))
(comp (ref C204)
(value 10uF)
(footprint Capacitor_SMD:C_1206_3216Metric_Pad1.42x1.75mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part CP) (description "Polarised capacitor"))
(sheetpath (names "/Fuente de Poder/") (tstamps /5BA8FAE3/))
(tstamp 5BA90C5C))
(comp (ref J201)
(value Barrel_Jack)
(footprint Connector_BarrelJack:BarrelJack_CUI_PJ-102AH_Horizontal)
(datasheet ~)
(libsource (lib Connector) (part Barrel_Jack) (description "DC Barrel Jack"))
(sheetpath (names "/Fuente de Poder/") (tstamps /5BA8FAE3/))
(tstamp 5BA91513))
(comp (ref L203)
(value Ferrite_Bead)
(footprint Inductor_SMD:L_1206_3216Metric_Pad1.42x1.75mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part Ferrite_Bead) (description "Ferrite bead"))
(sheetpath (names "/Fuente de Poder/") (tstamps /5BA8FAE3/))
(tstamp 5BA942CC))
(comp (ref L201)
(value Ferrite_Bead)
(footprint Inductor_SMD:L_1206_3216Metric_Pad1.42x1.75mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part Ferrite_Bead) (description "Ferrite bead"))
(sheetpath (names "/Fuente de Poder/") (tstamps /5BA8FAE3/))
(tstamp 5BA943FF))
(comp (ref L205)
(value Ferrite_Bead)
(footprint Inductor_SMD:L_1206_3216Metric_Pad1.42x1.75mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part Ferrite_Bead) (description "Ferrite bead"))
(sheetpath (names "/Fuente de Poder/") (tstamps /5BA8FAE3/))
(tstamp 5BA9444E))
(comp (ref L202)
(value Ferrite_Bead)
(footprint Inductor_SMD:L_1206_3216Metric_Pad1.42x1.75mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part Ferrite_Bead) (description "Ferrite bead"))
(sheetpath (names "/Fuente de Poder/") (tstamps /5BA8FAE3/))
(tstamp 5BA944F9))
(comp (ref R201)
(value 220)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Fuente de Poder/") (tstamps /5BA8FAE3/))
(tstamp 5BA9C3BB))
(comp (ref D201)
(value LED)
(footprint LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part LED) (description "LED generic"))
(sheetpath (names "/Fuente de Poder/") (tstamps /5BA8FAE3/))
(tstamp 5BA9C8A2))
(comp (ref SW201)
(value SW_DIP_x01)
(footprint Button_Switch_SMD:SW_SPST_EVQPE1)
(libsource (lib Switch) (part SW_DIP_x01) (description "1x DIP Switch, Single Pole Single Throw (SPST) switch, small symbol"))
(sheetpath (names "/Fuente de Poder/") (tstamps /5BA8FAE3/))
(tstamp 5BAA6A7A))
(comp (ref L204)
(value Ferrite_Bead)
(footprint Inductor_SMD:L_1206_3216Metric_Pad1.42x1.75mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part Ferrite_Bead) (description "Ferrite bead"))
(sheetpath (names "/Fuente de Poder/") (tstamps /5BA8FAE3/))
(tstamp 5BAE89A6))
(comp (ref U303)
(value ADS7828)
(footprint Package_SO:TSSOP-16_4.4x5mm_P0.65mm)
(datasheet http://www.ti.com/lit/ds/symlink/ads7828.pdf)
(libsource (lib Analog_ADC) (part ADS7828) (description "12-Bits, 8-Channels, ADC, I2C, TSSOP-16"))
(sheetpath (names "/Conversión Analogo-Digital/") (tstamps /5BA8FB15/))
(tstamp 5BB230C5))
(comp (ref U301)
(value LM324)
(footprint Package_SO:SOIC-14_3.9x8.7mm_P1.27mm)
(datasheet http://www.ti.com/lit/ds/symlink/lm2902-n.pdf)
(libsource (lib Amplifier_Operational) (part LM324) (description "Low-Power, Quad-Operational Amplifiers, DIP-14/SOIC-14/SSOP-14"))
(sheetpath (names "/Conversión Analogo-Digital/") (tstamps /5BA8FB15/))
(tstamp 5BB233F0))
(comp (ref C301)
(value 1uF)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/Conversión Analogo-Digital/") (tstamps /5BA8FB15/))
(tstamp 5BB2445A))
(comp (ref C302)
(value 1uF)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/Conversión Analogo-Digital/") (tstamps /5BA8FB15/))
(tstamp 5BB244D0))
(comp (ref C303)
(value 1uF)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/Conversión Analogo-Digital/") (tstamps /5BA8FB15/))
(tstamp 5BB24590))
(comp (ref C304)
(value 1uF)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/Conversión Analogo-Digital/") (tstamps /5BA8FB15/))
(tstamp 5BB245D2))
(comp (ref C309)
(value 0.1uF)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/Conversión Analogo-Digital/") (tstamps /5BA8FB15/))
(tstamp 5BB2A8EE))
(comp (ref U302)
(value LM324)
(footprint Package_SO:SOIC-14_3.9x8.7mm_P1.27mm)
(datasheet http://www.ti.com/lit/ds/symlink/lm2902-n.pdf)
(libsource (lib Amplifier_Operational) (part LM324) (description "Low-Power, Quad-Operational Amplifiers, DIP-14/SOIC-14/SSOP-14"))
(sheetpath (names "/Conversión Analogo-Digital/") (tstamps /5BA8FB15/))
(tstamp 5BB2D7B0))
(comp (ref C305)
(value 1uF)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/Conversión Analogo-Digital/") (tstamps /5BA8FB15/))
(tstamp 5BB2D7E1))
(comp (ref C306)
(value 1uF)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/Conversión Analogo-Digital/") (tstamps /5BA8FB15/))
(tstamp 5BB2D7E7))
(comp (ref C307)
(value 1uF)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/Conversión Analogo-Digital/") (tstamps /5BA8FB15/))
(tstamp 5BB2D7ED))
(comp (ref C308)
(value 1uF)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/Conversión Analogo-Digital/") (tstamps /5BA8FB15/))
(tstamp 5BB2D7F3))
(comp (ref C310)
(value 0.1uF)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/Conversión Analogo-Digital/") (tstamps /5BA8FB15/))
(tstamp 5BB2D84D))
(comp (ref C311)
(value 0.1uF)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/Conversión Analogo-Digital/") (tstamps /5BA8FB15/))
(tstamp 5BB3A187))
(comp (ref C312)
(value 1uF)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/Conversión Analogo-Digital/") (tstamps /5BA8FB15/))
(tstamp 5BB3A25D))
(comp (ref R309)
(value 750)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Conversión Analogo-Digital/") (tstamps /5BA8FB15/))
(tstamp 5BB3AA6C))
(comp (ref R310)
(value 750)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Conversión Analogo-Digital/") (tstamps /5BA8FB15/))
(tstamp 5BB3AC58))
(comp (ref U304)
(value MCP1525-TT)
(footprint Package_TO_SOT_SMD:SOT-23)
(datasheet http://ww1.microchip.com/downloads/en/devicedoc/21653b.pdf)
(libsource (lib Reference_Voltage) (part MCP1525-TT) (description "2.5V Voltage Reference, SOT-23"))
(sheetpath (names "/Conversión Analogo-Digital/") (tstamps /5BA8FB15/))
(tstamp 5BB96E78))
(comp (ref C313)
(value 0.1uF)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/Conversión Analogo-Digital/") (tstamps /5BA8FB15/))
(tstamp 5BB9703C))
(comp (ref J301)
(value Conn_01x02_Female)
(footprint Connector_PinHeader_1.27mm:PinHeader_1x02_P1.27mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Female) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names "/Conversión Analogo-Digital/") (tstamps /5BA8FB15/))
(tstamp 5BBFEAAF))
(comp (ref J302)
(value Conn_01x02_Female)
(footprint Connector_PinHeader_1.27mm:PinHeader_1x02_P1.27mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Female) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names "/Conversión Analogo-Digital/") (tstamps /5BA8FB15/))
(tstamp 5BC02C34))
(comp (ref J303)
(value Conn_01x02_Female)
(footprint Connector_PinHeader_1.27mm:PinHeader_1x02_P1.27mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Female) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names "/Conversión Analogo-Digital/") (tstamps /5BA8FB15/))
(tstamp 5BC02FC3))
(comp (ref J304)
(value Conn_01x02_Female)
(footprint Connector_PinHeader_1.27mm:PinHeader_1x02_P1.27mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Female) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names "/Conversión Analogo-Digital/") (tstamps /5BA8FB15/))
(tstamp 5BC03043))
(comp (ref J305)
(value Conn_01x02_Female)
(footprint Connector_PinHeader_1.27mm:PinHeader_1x02_P1.27mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Female) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names "/Conversión Analogo-Digital/") (tstamps /5BA8FB15/))
(tstamp 5BC030B9))
(comp (ref J306)
(value Conn_01x02_Female)
(footprint Connector_PinHeader_1.27mm:PinHeader_1x02_P1.27mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Female) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names "/Conversión Analogo-Digital/") (tstamps /5BA8FB15/))
(tstamp 5BC03139))
(comp (ref J307)
(value Conn_01x02_Female)
(footprint Connector_PinHeader_1.27mm:PinHeader_1x02_P1.27mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Female) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names "/Conversión Analogo-Digital/") (tstamps /5BA8FB15/))
(tstamp 5BC031B9))
(comp (ref J308)
(value Conn_01x02_Female)
(footprint Connector_PinHeader_1.27mm:PinHeader_1x02_P1.27mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Female) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names "/Conversión Analogo-Digital/") (tstamps /5BA8FB15/))
(tstamp 5BC033E5))
(comp (ref R308)
(value 10)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Conversión Analogo-Digital/") (tstamps /5BA8FB15/))
(tstamp 5BB2D80B))
(comp (ref R307)
(value 10)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Conversión Analogo-Digital/") (tstamps /5BA8FB15/))
(tstamp 5BB2D805))
(comp (ref R306)
(value 10)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Conversión Analogo-Digital/") (tstamps /5BA8FB15/))
(tstamp 5BB2D7FF))
(comp (ref R305)
(value 10)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Conversión Analogo-Digital/") (tstamps /5BA8FB15/))
(tstamp 5BB2D7F9))
(comp (ref R304)
(value 10)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Conversión Analogo-Digital/") (tstamps /5BA8FB15/))
(tstamp 5BB24A30))
(comp (ref R303)
(value 10)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Conversión Analogo-Digital/") (tstamps /5BA8FB15/))
(tstamp 5BB2492D))
(comp (ref R302)
(value 10)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Conversión Analogo-Digital/") (tstamps /5BA8FB15/))
(tstamp 5BB248E5))
(comp (ref R301)
(value 10)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Conversión Analogo-Digital/") (tstamps /5BA8FB15/))
(tstamp 5BB24665))
(comp (ref R311)
(value 0)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Conversión Analogo-Digital/") (tstamps /5BA8FB15/))
(tstamp 5BC9AF01))
(comp (ref D401)
(value LED)
(footprint LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part LED) (description "LED generic"))
(sheetpath (names "/Interfaz de Usuario/") (tstamps /5BA8FB5C/))
(tstamp 5BB51893))
(comp (ref R401)
(value 470)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Interfaz de Usuario/") (tstamps /5BA8FB5C/))
(tstamp 5BB5190D))
(comp (ref D402)
(value LED)
(footprint LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part LED) (description "LED generic"))
(sheetpath (names "/Interfaz de Usuario/") (tstamps /5BA8FB5C/))
(tstamp 5BB51F5F))
(comp (ref R402)
(value 470)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Interfaz de Usuario/") (tstamps /5BA8FB5C/))
(tstamp 5BB51F65))
(comp (ref D403)
(value LED)
(footprint LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part LED) (description "LED generic"))
(sheetpath (names "/Interfaz de Usuario/") (tstamps /5BA8FB5C/))
(tstamp 5BB523F4))
(comp (ref R403)
(value 470)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Interfaz de Usuario/") (tstamps /5BA8FB5C/))
(tstamp 5BB523FA))
(comp (ref D404)
(value LED)
(footprint LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part LED) (description "LED generic"))
(sheetpath (names "/Interfaz de Usuario/") (tstamps /5BA8FB5C/))
(tstamp 5BB5241B))
(comp (ref R404)
(value 470)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Interfaz de Usuario/") (tstamps /5BA8FB5C/))
(tstamp 5BB52421))
(comp (ref D405)
(value LED)
(footprint LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part LED) (description "LED generic"))
(sheetpath (names "/Interfaz de Usuario/") (tstamps /5BA8FB5C/))
(tstamp 5BB54EC1))
(comp (ref R405)
(value 470)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Interfaz de Usuario/") (tstamps /5BA8FB5C/))
(tstamp 5BB54EC7))
(comp (ref D406)
(value LED)
(footprint LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part LED) (description "LED generic"))
(sheetpath (names "/Interfaz de Usuario/") (tstamps /5BA8FB5C/))
(tstamp 5BB54EE8))
(comp (ref R406)
(value 470)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Interfaz de Usuario/") (tstamps /5BA8FB5C/))
(tstamp 5BB54EEE))
(comp (ref D407)
(value LED)
(footprint LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part LED) (description "LED generic"))
(sheetpath (names "/Interfaz de Usuario/") (tstamps /5BA8FB5C/))
(tstamp 5BB54F0F))
(comp (ref R407)
(value 470)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Interfaz de Usuario/") (tstamps /5BA8FB5C/))
(tstamp 5BB54F15))
(comp (ref D408)
(value LED)
(footprint LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part LED) (description "LED generic"))
(sheetpath (names "/Interfaz de Usuario/") (tstamps /5BA8FB5C/))
(tstamp 5BB54F36))
(comp (ref R408)
(value 470)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Interfaz de Usuario/") (tstamps /5BA8FB5C/))
(tstamp 5BB54F3C))
(comp (ref SW401)
(value SW_Push)
(footprint Button_Switch_SMD:SW_SPST_B3U-1000P)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names "/Interfaz de Usuario/") (tstamps /5BA8FB5C/))
(tstamp 5BB5D83E))
(comp (ref R409)
(value 1K)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Interfaz de Usuario/") (tstamps /5BA8FB5C/))
(tstamp 5BB5EF16))
(comp (ref SW402)
(value SW_Push)
(footprint Button_Switch_SMD:SW_SPST_B3U-1000P)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names "/Interfaz de Usuario/") (tstamps /5BA8FB5C/))
(tstamp 5BB6D6B2))
(comp (ref R410)
(value 1K)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Interfaz de Usuario/") (tstamps /5BA8FB5C/))
(tstamp 5BB6D6BE))
(comp (ref SW403)
(value SW_Push)
(footprint Button_Switch_SMD:SW_SPST_B3U-1000P)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names "/Interfaz de Usuario/") (tstamps /5BA8FB5C/))
(tstamp 5BB6F1A3))
(comp (ref R411)
(value 1K)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Interfaz de Usuario/") (tstamps /5BA8FB5C/))
(tstamp 5BB6F1AF))
(comp (ref SW404)
(value SW_Push)
(footprint Button_Switch_SMD:SW_SPST_B3U-1000P)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names "/Interfaz de Usuario/") (tstamps /5BA8FB5C/))
(tstamp 5BB6F1BE))
(comp (ref R412)
(value 1K)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Interfaz de Usuario/") (tstamps /5BA8FB5C/))
(tstamp 5BB6F1CA))
(comp (ref SW405)
(value SW_Push)
(footprint Button_Switch_SMD:SW_SPST_B3U-1000P)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names "/Interfaz de Usuario/") (tstamps /5BA8FB5C/))
(tstamp 5BB712DC))
(comp (ref R413)
(value 1K)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Interfaz de Usuario/") (tstamps /5BA8FB5C/))
(tstamp 5BB712E8))
(comp (ref SW406)
(value SW_Push)
(footprint Button_Switch_SMD:SW_SPST_B3U-1000P)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names "/Interfaz de Usuario/") (tstamps /5BA8FB5C/))
(tstamp 5BB712F7))
(comp (ref R414)
(value 1K)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Interfaz de Usuario/") (tstamps /5BA8FB5C/))
(tstamp 5BB71303))
(comp (ref SW407)
(value SW_Push)
(footprint Button_Switch_SMD:SW_SPST_B3U-1000P)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names "/Interfaz de Usuario/") (tstamps /5BA8FB5C/))
(tstamp 5BB71312))
(comp (ref R415)
(value 1K)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Interfaz de Usuario/") (tstamps /5BA8FB5C/))
(tstamp 5BB7131E))
(comp (ref SW408)
(value SW_Push)
(footprint Button_Switch_SMD:SW_SPST_B3U-1000P)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names "/Interfaz de Usuario/") (tstamps /5BA8FB5C/))
(tstamp 5BB7132D))
(comp (ref R416)
(value 1K)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Interfaz de Usuario/") (tstamps /5BA8FB5C/))
(tstamp 5BB71339))
(comp (ref Q401)
(value FDV301N)
(footprint Package_TO_SOT_SMD:SOT-23)
(datasheet ~)
(libsource (lib Device) (part Q_NMOS_GDS) (description "Transistor N-MOSFET with substrate diode (general)"))
(sheetpath (names "/Interfaz de Usuario/") (tstamps /5BA8FB5C/))
(tstamp 5BBFA4E0))
(comp (ref Q402)
(value FDV301N)
(footprint Package_TO_SOT_SMD:SOT-23)
(datasheet ~)
(libsource (lib Device) (part Q_NMOS_GDS) (description "Transistor N-MOSFET with substrate diode (general)"))
(sheetpath (names "/Interfaz de Usuario/") (tstamps /5BA8FB5C/))
(tstamp 5BBFA53C))
(comp (ref Q403)
(value FDV301N)
(footprint Package_TO_SOT_SMD:SOT-23)
(datasheet ~)
(libsource (lib Device) (part Q_NMOS_GDS) (description "Transistor N-MOSFET with substrate diode (general)"))
(sheetpath (names "/Interfaz de Usuario/") (tstamps /5BA8FB5C/))
(tstamp 5BBFA5C7))
(comp (ref Q404)
(value FDV301N)
(footprint Package_TO_SOT_SMD:SOT-23)
(datasheet ~)
(libsource (lib Device) (part Q_NMOS_GDS) (description "Transistor N-MOSFET with substrate diode (general)"))
(sheetpath (names "/Interfaz de Usuario/") (tstamps /5BA8FB5C/))
(tstamp 5BBFA62E))
(comp (ref Q405)
(value FDV301N)
(footprint Package_TO_SOT_SMD:SOT-23)
(datasheet ~)
(libsource (lib Device) (part Q_NMOS_GDS) (description "Transistor N-MOSFET with substrate diode (general)"))
(sheetpath (names "/Interfaz de Usuario/") (tstamps /5BA8FB5C/))
(tstamp 5BBFA749))
(comp (ref Q406)
(value FDV301N)
(footprint Package_TO_SOT_SMD:SOT-23)
(datasheet ~)
(libsource (lib Device) (part Q_NMOS_GDS) (description "Transistor N-MOSFET with substrate diode (general)"))
(sheetpath (names "/Interfaz de Usuario/") (tstamps /5BA8FB5C/))
(tstamp 5BBFA7AC))
(comp (ref Q407)
(value FDV301N)
(footprint Package_TO_SOT_SMD:SOT-23)
(datasheet ~)
(libsource (lib Device) (part Q_NMOS_GDS) (description "Transistor N-MOSFET with substrate diode (general)"))
(sheetpath (names "/Interfaz de Usuario/") (tstamps /5BA8FB5C/))
(tstamp 5BBFA813))
(comp (ref Q408)
(value FDV301N)
(footprint Package_TO_SOT_SMD:SOT-23)
(datasheet ~)
(libsource (lib Device) (part Q_NMOS_GDS) (description "Transistor N-MOSFET with substrate diode (general)"))
(sheetpath (names "/Interfaz de Usuario/") (tstamps /5BA8FB5C/))
(tstamp 5BBFA874))
(comp (ref U601)
(value FT232RL)
(footprint Package_SO:SSOP-28_5.3x10.2mm_P0.65mm)
(datasheet http://www.ftdichip.com/Products/ICs/FT232RL.htm)
(libsource (lib Interface_USB) (part FT232RL) (description "USB to Serial Interface, SSOP-28"))
(sheetpath (names /Comunicación/) (tstamps /5BA8FCF6/))
(tstamp 5BADA0FC))
(comp (ref J601)
(value USB_B_Micro)
(footprint Connector_USB:USB_Micro-B_Wuerth_629105150521)
(datasheet ~)
(libsource (lib Connector) (part USB_B_Micro) (description "USB Micro Type B connector"))
(sheetpath (names /Comunicación/) (tstamps /5BA8FCF6/))
(tstamp 5BADA2E0))
(comp (ref R601)
(value 1K)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Comunicación/) (tstamps /5BA8FCF6/))
(tstamp 5BADA4C9))
(comp (ref R602)
(value 1K)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Comunicación/) (tstamps /5BA8FCF6/))
(tstamp 5BADA59C))
(comp (ref D601)
(value LED)
(footprint LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part LED) (description "LED generic"))
(sheetpath (names /Comunicación/) (tstamps /5BA8FCF6/))
(tstamp 5BADA66F))
(comp (ref D602)
(value LED)
(footprint Connector_Coaxial:SMA_Amphenol_132134-14_Vertical)
(datasheet ~)
(libsource (lib Device) (part LED) (description "LED generic"))
(sheetpath (names /Comunicación/) (tstamps /5BA8FCF6/))
(tstamp 5BADA6ED))
(comp (ref C602)
(value 0.1uF)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Comunicación/) (tstamps /5BA8FCF6/))
(tstamp 5BADA947))
(comp (ref C603)
(value 1uF)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Comunicación/) (tstamps /5BA8FCF6/))
(tstamp 5BADAA23))
(comp (ref C601)
(value 0.1uF)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Comunicación/) (tstamps /5BA8FCF6/))
(tstamp 5BADAAAF))
(comp (ref C606)
(value 0.1uF)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Comunicación/) (tstamps /5BA8FCF6/))
(tstamp 5BADAB51))
(comp (ref U602)
(value MAX3232)
(footprint Package_SO:SOIC-16W_5.3x10.2mm_P1.27mm)
(datasheet https://datasheets.maximintegrated.com/en/ds/MAX3222-MAX3241.pdf)
(libsource (lib Interface_UART) (part MAX3232) (description "3.0V to 5.5V, Low-Power, up to 1Mbps, True RS-232 Transceivers Using Four 0.1μF External Capacitors"))
(sheetpath (names /Comunicación/) (tstamps /5BA8FCF6/))
(tstamp 5BAE7FC6))
(comp (ref C604)
(value 0.1uF)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Comunicación/) (tstamps /5BA8FCF6/))
(tstamp 5BAE8D5C))
(comp (ref C605)
(value 2.2uF)
(footprint Capacitor_SMD:C_1206_3216Metric_Pad1.42x1.75mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Comunicación/) (tstamps /5BA8FCF6/))
(tstamp 5BAE8EC6))
(comp (ref C607)
(value 0.1uF)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Comunicación/) (tstamps /5BA8FCF6/))
(tstamp 5BAE967A))
(comp (ref C608)
(value 0.1uF)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Comunicación/) (tstamps /5BA8FCF6/))
(tstamp 5BAE9758))
(comp (ref C609)
(value 0.1uF)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Comunicación/) (tstamps /5BA8FCF6/))
(tstamp 5BAE98BD))
(comp (ref C610)
(value 0.1uF)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Comunicación/) (tstamps /5BA8FCF6/))
(tstamp 5BAE992B))
(comp (ref J602)
(value DB9_Male)
(footprint Connector_Dsub:DSUB-9_Male_Horizontal_P2.77x2.84mm_EdgePinOffset7.70mm_Housed_MountingHolesOffset9.12mm)
(datasheet " ~")
(libsource (lib Connector) (part DB9_Male) (description "9-pin male D-SUB connector"))
(sheetpath (names /Comunicación/) (tstamps /5BA8FCF6/))
(tstamp 5BB03133))
(comp (ref J505)
(value Conn_01x40_Male)
(footprint Connector_PinHeader_1.00mm:PinHeader_2x20_P1.00mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x40_Male) (description "Generic connector, single row, 01x40, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names "/Puertos de Entrada y Salida/") (tstamps /5BA8FCC3/))
(tstamp 5BAB4230))
(comp (ref J506)
(value Conn_01x40_Male)
(footprint Connector_PinHeader_1.00mm:PinHeader_2x20_P1.00mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x40_Male) (description "Generic connector, single row, 01x40, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names "/Puertos de Entrada y Salida/") (tstamps /5BA8FCC3/))
(tstamp 5BAB42A7))
(comp (ref R501)
(value 1K)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Puertos de Entrada y Salida/") (tstamps /5BA8FCC3/))
(tstamp 5BAB486C))
(comp (ref D501)
(value D_Schottky)
(footprint Diode_SMD:D_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part D_Schottky) (description "Schottky diode"))
(sheetpath (names "/Puertos de Entrada y Salida/") (tstamps /5BA8FCC3/))
(tstamp 5BAB490F))
(comp (ref R502)
(value 1K)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Puertos de Entrada y Salida/") (tstamps /5BA8FCC3/))
(tstamp 5BAB885B))
(comp (ref D502)
(value D_Schottky)
(footprint Diode_SMD:D_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part D_Schottky) (description "Schottky diode"))
(sheetpath (names "/Puertos de Entrada y Salida/") (tstamps /5BA8FCC3/))
(tstamp 5BAB8867))
(comp (ref R503)
(value 1K)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Puertos de Entrada y Salida/") (tstamps /5BA8FCC3/))
(tstamp 5BAB95C8))
(comp (ref D503)
(value D_Schottky)
(footprint Diode_SMD:D_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part D_Schottky) (description "Schottky diode"))
(sheetpath (names "/Puertos de Entrada y Salida/") (tstamps /5BA8FCC3/))
(tstamp 5BAB95D4))
(comp (ref R504)
(value 1K)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Puertos de Entrada y Salida/") (tstamps /5BA8FCC3/))
(tstamp 5BABA986))
(comp (ref D504)
(value D_Schottky)
(footprint Diode_SMD:D_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part D_Schottky) (description "Schottky diode"))
(sheetpath (names "/Puertos de Entrada y Salida/") (tstamps /5BA8FCC3/))
(tstamp 5BABA992))
(comp (ref J504)
(value Conn_01x02)
(footprint Connector_PinHeader_1.27mm:PinHeader_1x02_P1.27mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Female) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names "/Puertos de Entrada y Salida/") (tstamps /5BA8FCC3/))
(tstamp 5BABA9A4))
(comp (ref J503)
(value Conn_01x02)
(footprint Connector_PinHeader_1.27mm:PinHeader_1x02_P1.27mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Female) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names "/Puertos de Entrada y Salida/") (tstamps /5BA8FCC3/))
(tstamp 5BAB95E6))
(comp (ref J502)
(value Conn_01x02)
(footprint Connector_PinHeader_1.27mm:PinHeader_1x02_P1.27mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Female) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names "/Puertos de Entrada y Salida/") (tstamps /5BA8FCC3/))
(tstamp 5BAB8879))
(comp (ref J501)
(value Conn_01x02)
(footprint Connector_PinHeader_1.27mm:PinHeader_1x02_P1.27mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Female) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names "/Puertos de Entrada y Salida/") (tstamps /5BA8FCC3/))
(tstamp 5BAB4AD2))
(comp (ref R509)
(value 1K)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Puertos de Entrada y Salida/") (tstamps /5BA8FCC3/))
(tstamp 5BAD2F13))
(comp (ref R505)
(value 1K)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Puertos de Entrada y Salida/") (tstamps /5BA8FCC3/))
(tstamp 5BAD2FC7))
(comp (ref D505)
(value D_Schottky)
(footprint Diode_SMD:D_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part D_Schottky) (description "Schottky diode"))
(sheetpath (names "/Puertos de Entrada y Salida/") (tstamps /5BA8FCC3/))
(tstamp 5BAD4870))
(comp (ref R510)
(value 1K)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Puertos de Entrada y Salida/") (tstamps /5BA8FCC3/))
(tstamp 5BAEE91B))
(comp (ref R506)
(value 1K)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Puertos de Entrada y Salida/") (tstamps /5BA8FCC3/))
(tstamp 5BAEE921))
(comp (ref D506)
(value D_Schottky)
(footprint Diode_SMD:D_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part D_Schottky) (description "Schottky diode"))
(sheetpath (names "/Puertos de Entrada y Salida/") (tstamps /5BA8FCC3/))
(tstamp 5BAEE927))
(comp (ref R511)
(value 1K)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Puertos de Entrada y Salida/") (tstamps /5BA8FCC3/))