-
Notifications
You must be signed in to change notification settings - Fork 6
/
Nano_PB.net
2309 lines (2309 loc) · 84 KB
/
Nano_PB.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/amr/Documentos/KiCad/Nano-Play-Board/Nano_PB.sch)
(date "dom 05 mar 2017 23:59:19 CET")
(tool "Eeschema no-vcs-found-24a9003~58~ubuntu14.04.1")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title "Nano Play Board")
(company NanoPlayBoard)
(rev V.0.4)
(date 2017-01-25)
(source Nano_PB.sch)
(comment (number 1) (value "Creada por Antonio Morales"))
(comment (number 2) (value "Web del proyecto http://nanoplayboard.org"))
(comment (number 3) (value "Documentación en https://github.com/AntonioMR/Nano-Play-Board"))
(comment (number 4) (value "Nano Play Board"))))
(sheet (number 2) (name /Control/) (tstamps /5793CA6B/)
(title_block
(title "Control de la placa")
(company NanoPlayBoard)
(rev V.0.4)
(date 2017-01-25)
(source Control.sch)
(comment (number 1) (value "Creada por Antonio Morales"))
(comment (number 2) (value "Web del proyecto http://nanoplayboard.org"))
(comment (number 3) (value "Documentación en https://github.com/AntonioMR/Nano-Play-Board"))
(comment (number 4) (value "Nano Play Board"))))
(sheet (number 3) (name /Alimentacion/) (tstamps /5793C398/)
(title_block
(title "Etapa de alimentación")
(company NanoPlayBoard)
(rev V.0.4)
(date 2017-01-25)
(source Alimentacion.sch)
(comment (number 1) (value "Creada por Antonio Morales"))
(comment (number 2) (value "Web del proyecto http://nanoplayboard.org"))
(comment (number 3) (value "Documentación en https://github.com/AntonioMR/Nano-Play-Board"))
(comment (number 4) (value "Nano Play Board"))))
(sheet (number 4) (name /ExpansorGPIO/) (tstamps /587FC15A/)
(title_block
(title "Expansor de GPIO's")
(company NanoPlayBoard)
(rev V.0.4)
(date 2017-01-25)
(source ExpansorGPIO.sch)
(comment (number 1) (value "Creada por Antonio Morales"))
(comment (number 2) (value "Web del proyecto http://nanoplayboard.org"))
(comment (number 3) (value "Documentación en https://github.com/AntonioMR/Nano-Play-Board"))
(comment (number 4) (value "Nano Play Board"))))
(sheet (number 5) (name "/Matriz Led/") (tstamps /57939A23/)
(title_block
(title "Matriz de LED's")
(company NanoPlayBoard)
(rev V.0.4)
(date 2017-01-25)
(source Matriz_Led.sch)
(comment (number 1) (value "Creada por Antonio Morales"))
(comment (number 2) (value "Web del proyecto http://nanoplayboard.org"))
(comment (number 3) (value "Documentación en https://github.com/AntonioMR/Nano-Play-Board"))
(comment (number 4) (value "Nano Play Board"))))
(sheet (number 6) (name /Bluetooth/) (tstamps /5794B6BE/)
(title_block
(title "Puerto de expansión para Bluetooth")
(company NanoPlayBoard)
(rev V.0.4)
(date 2017-01-25)
(source Bluetooth.sch)
(comment (number 1) (value "Creada por Antonio Morales"))
(comment (number 2) (value "Web del proyecto http://nanoplayboard.org"))
(comment (number 3) (value "Documentación en https://github.com/AntonioMR/Nano-Play-Board"))
(comment (number 4) (value "Nano Play Board"))))
(sheet (number 7) (name /Servo/) (tstamps /5793F6CB/)
(title_block
(title "Puerto de expansión para servomotores")
(company NanoPlayBoard)
(rev V.0.4)
(date 2017-01-25)
(source Servo.sch)
(comment (number 1) (value "Creada por Antonio Morales"))
(comment (number 2) (value "Web del proyecto http://nanoplayboard.org"))
(comment (number 3) (value "Documentación en https://github.com/AntonioMR/Nano-Play-Board"))
(comment (number 4) (value "Nano Play Board"))))
(sheet (number 8) (name /Led_RGB/) (tstamps /5793D145/)
(title_block
(title "Led RGB")
(company NanoPlayBoard)
(rev V.0.4)
(date 2017-01-25)
(source Led_RGB.sch)
(comment (number 1) (value "Creada por Antonio Morales"))
(comment (number 2) (value "Web del proyecto http://nanoplayboard.org"))
(comment (number 3) (value "Documentación en https://github.com/AntonioMR/Nano-Play-Board"))
(comment (number 4) (value "Nano Play Board"))))
(sheet (number 9) (name /dth11/) (tstamps /57993DAA/)
(title_block
(title "Sensor de Temperatura y Humedad")
(company NanoPlayBoard)
(rev V.0.4)
(date 2017-01-25)
(source DTH11.sch)
(comment (number 1) (value "Creada por Antonio Morales"))
(comment (number 2) (value "Web del proyecto http://nanoplayboard.org"))
(comment (number 3) (value "Documentación en https://github.com/AntonioMR/Nano-Play-Board"))
(comment (number 4) (value "Nano Play Board"))))
(sheet (number 10) (name /Ultrasonido/) (tstamps /5793F6EC/)
(title_block
(title "Puerto de expansión para sensor por ultrasonidos")
(company NanoPlayBoard)
(rev V.0.4)
(date 2017-01-25)
(source Ultrasonido.sch)
(comment (number 1) (value "Creada por Antonio Morales"))
(comment (number 2) (value "Web del proyecto http://nanoplayboard.org"))
(comment (number 3) (value "Documentación en https://github.com/AntonioMR/Nano-Play-Board"))
(comment (number 4) (value "Nano Play Board"))))
(sheet (number 11) (name /Potenciometro/) (tstamps /5793F58E/)
(title_block
(title Potenciometro)
(company NanoPlayBoard)
(rev V.0.4)
(date 2017-01-25)
(source Potenciometro.sch)
(comment (number 1) (value "Creada por Antonio Morales"))
(comment (number 2) (value "Web del proyecto http://nanoplayboard.org"))
(comment (number 3) (value "Documentación en https://github.com/AntonioMR/Nano-Play-Board"))
(comment (number 4) (value "Nano Play Board"))))
(sheet (number 12) (name /Pulsadores/) (tstamps /5793F670/)
(title_block
(title "Bloque de pulsadores")
(company NanoPlayBoard)
(rev V.0.4)
(date 2017-01-25)
(source Pulsadores.sch)
(comment (number 1) (value "Creada por Antonio Morales"))
(comment (number 2) (value "Web del proyecto http://nanoplayboard.org"))
(comment (number 3) (value "Documentación en https://github.com/AntonioMR/Nano-Play-Board"))
(comment (number 4) (value "Nano Play Board"))))
(sheet (number 13) (name /Acelerometro/) (tstamps /5794B93F/)
(title_block
(title "Acelerometro 3 ejes")
(company NanoPlayBoard)
(rev V.0.4)
(date 2017-01-25)
(source Acelerometro.sch)
(comment (number 1) (value "Creada por Antonio Morales"))
(comment (number 2) (value "Web del proyecto http://nanoplayboard.org"))
(comment (number 3) (value "Documentación en https://github.com/AntonioMR/Nano-Play-Board"))
(comment (number 4) (value "Nano Play Board"))))
(sheet (number 14) (name /Buzzer/) (tstamps /5793DF2F/)
(title_block
(title Buzzer)
(company NanoPlayBoard)
(rev V.0.4)
(date 2017-01-25)
(source Buzzer.sch)
(comment (number 1) (value "Creada por Antonio Morales"))
(comment (number 2) (value "Web del proyecto http://nanoplayboard.org"))
(comment (number 3) (value "Documentación en https://github.com/AntonioMR/Nano-Play-Board"))
(comment (number 4) (value "Nano Play Board"))))
(sheet (number 15) (name /LDR/) (tstamps /5793F283/)
(title_block
(title "Sensor LDR")
(company NanoPlayBoard)
(rev V.0.4)
(date 2017-01-25)
(source LDR.sch)
(comment (number 1) (value "Creada por Antonio Morales"))
(comment (number 2) (value "Web del proyecto http://nanoplayboard.org"))
(comment (number 3) (value "Documentación en https://github.com/AntonioMR/Nano-Play-Board"))
(comment (number 4) (value "Nano Play Board"))))
(sheet (number 16) (name /Encoder/) (tstamps /579DE89E/)
(title_block
(title "Encoder bicanal")
(company NanoPlayBoard)
(rev V.0.4)
(date 2017-01-25)
(source Encoder.sch)
(comment (number 1) (value "Creada por Antonio Morales"))
(comment (number 2) (value "Web del proyecto http://nanoplayboard.org"))
(comment (number 3) (value "Documentación en https://github.com/AntonioMR/Nano-Play-Board"))
(comment (number 4) (value "Nano Play Board"))))
(sheet (number 17) (name /Infrarrojos/) (tstamps /5870CC54/)
(title_block
(title "Detectores de infrarrojos")
(company NanoPlayBoard)
(rev V.0.4)
(date 2017-01-25)
(source Infrarrojos.sch)
(comment (number 1) (value "Creada por Antonio Morales"))
(comment (number 2) (value "Web del proyecto http://nanoplayboard.org"))
(comment (number 3) (value "Documentación en https://github.com/AntonioMR/Nano-Play-Board"))
(comment (number 4) (value "Nano Play Board")))))
(components
(comp (ref U1)
(value Arduino_Nano)
(footprint Arduino:Arduino_Nano)
(libsource (lib Arduino) (part Arduino_Nano))
(sheetpath (names /Control/) (tstamps /5793CA6B/))
(tstamp 5793CBB2))
(comp (ref CON1)
(value BARREL_JACK)
(footprint Conectores:Barrel_Jack_Hembra_CLIFF_FC68148)
(fields
(field (name Fabricante) cliff)
(field (name Ref) FC68148)
(field (name Provedor) tme)
(field (name Ref_Proveedor) FC68148))
(libsource (lib conn) (part BARREL_JACK))
(sheetpath (names /Alimentacion/) (tstamps /5793C398/))
(tstamp 5793C6A3))
(comp (ref D1)
(value 15MQ040N)
(footprint Diodos:DO-214AC)
(fields
(field (name Fabricante) VISHAY)
(field (name Ref) 15MQ040N)
(field (name Provedor) TME)
(field (name Ref_Proveedor) 15MQ040NTRPBF))
(libsource (lib device) (part D))
(sheetpath (names /Alimentacion/) (tstamps /5793C398/))
(tstamp 5793C6B0))
(comp (ref C1)
(value 0,33u)
(footprint Capacitors_ThroughHole:C_Radial_D5_L11_P2)
(fields
(field (name Fabricante) NICHICON)
(field (name Ref) UVZ1H330MDD)
(field (name Provedor) TME)
(field (name Ref_Proveedor) UVZ1H330MDD))
(libsource (lib device) (part CP1))
(sheetpath (names /Alimentacion/) (tstamps /5793C398/))
(tstamp 5793C6BD))
(comp (ref C2)
(value 0,33u)
(footprint Capacitors_ThroughHole:C_Radial_D5_L11_P2)
(fields
(field (name Fabricante) NICHICON)
(field (name Ref) UVZ1H330MDD)
(field (name Provedor) TME)
(field (name Ref_Proveedor) UVZ1H330MDD))
(libsource (lib device) (part CP1))
(sheetpath (names /Alimentacion/) (tstamps /5793C398/))
(tstamp 5793C6CA))
(comp (ref U2)
(value LM7805CT)
(footprint TO_SOT_Packages_THT:TO-220_Neutral123_Vertical_LargePads)
(fields
(field (name Fabricante) "FAIRCHILD SEMICONDUCTOR")
(field (name Ref) LM7805CT)
(field (name Provedor) TME)
(field (name Ref_Proveedor) LM7805CT))
(libsource (lib regul) (part LM7805CT))
(sheetpath (names /Alimentacion/) (tstamps /5793C398/))
(tstamp 5793C70E))
(comp (ref U3)
(value MCP23017)
(footprint Housings_SSOP:SSOP-28_5.3x10.2mm_Pitch0.65mm)
(libsource (lib microchip) (part MCP23017))
(sheetpath (names /ExpansorGPIO/) (tstamps /587FC15A/))
(tstamp 587FC163))
(comp (ref C3)
(value 100n)
(footprint Capacitors_SMD:C_0805)
(fields
(field (name Fabricante) SAMSUNG)
(field (name Ref) CL21B104KBCNNNC)
(field (name Provedor) TME)
(field (name Ref_Proveedor) CL21B104KBCNNNC))
(libsource (lib device) (part C))
(sheetpath (names /ExpansorGPIO/) (tstamps /587FC15A/))
(tstamp 587FCD03))
(comp (ref R47)
(value 10K)
(footprint Resistencias:R_0805)
(fields
(field (name Fabricante) VISHAY)
(field (name Ref) CRCW080510K0FKEA)
(field (name Potencia) 1/8W)
(field (name Tolerancia) 1%)
(field (name Provedor) TME)
(field (name Ref_Proveedor) CRCW080510K0FKEA))
(libsource (lib device) (part R))
(sheetpath (names /ExpansorGPIO/) (tstamps /587FC15A/))
(tstamp 58813226))
(comp (ref Q8)
(value SMBT3904)
(footprint TO_SOT_Packages_SMD:SOT-23)
(datasheet http://www.tme.eu/es/Document/8d2056bc00a948a3e5aafff5d125a908/SMBT3904E6327.pdf)
(fields
(field (name Fabricante) "INFINEON TECHNOLOGIES")
(field (name Ref) SMBT3904E6327)
(field (name Provedor) tme)
(field (name Ref_Proveedor) SMBT3904E6327))
(libsource (lib transistors) (part BC849))
(sheetpath (names /ExpansorGPIO/) (tstamps /587FC15A/))
(tstamp 58814A90))
(comp (ref R49)
(value 1K)
(footprint Resistencias:R_0805)
(fields
(field (name Fabricante) VISHAY)
(field (name Ref) CRCW08051K00FKEA)
(field (name Potencia) 1/8W)
(field (name Tolerancia) 1%)
(field (name Provedor) TME)
(field (name Ref_Proveedor) CRCW08051K00FKEA))
(libsource (lib device) (part R))
(sheetpath (names /ExpansorGPIO/) (tstamps /587FC15A/))
(tstamp 58814D9F))
(comp (ref R48)
(value 47K)
(footprint Resistencias:R_0805)
(fields
(field (name Fabricante) VISHAY)
(field (name Ref) CRCW08051K00FKEA)
(field (name Potencia) 1/8W)
(field (name Tolerancia) 1%)
(field (name Provedor) TME)
(field (name Ref_Proveedor) CRCW08051K00FKEA))
(libsource (lib device) (part R))
(sheetpath (names /ExpansorGPIO/) (tstamps /587FC15A/))
(tstamp 58814F15))
(comp (ref U5)
(value Matriz_5x7)
(footprint Leds:Matriz_Led_7X5)
(fields
(field (name Fabricante) WENRUN)
(field (name Ref) LMD07057BUE-101A)
(field (name Provedor) TME)
(field (name Ref_Proveedor) LMD07057BUE-101A))
(libsource (lib matriz_led) (part Matriz_5x7_Anodo_Filas))
(sheetpath (names "/Matriz Led/") (tstamps /57939A23/))
(tstamp 5793BD4E))
(comp (ref R1)
(value 120)
(footprint Resistencias:R_0805)
(fields
(field (name Fabricante) VISHAY)
(field (name Ref) CRCW0805120RFKTABC)
(field (name Potencia) 1/8W)
(field (name Tolerancia) 1%)
(field (name Provedor) TME)
(field (name Ref_Proveedor) CRCW0805120RFKTABC))
(libsource (lib device) (part R))
(sheetpath (names "/Matriz Led/") (tstamps /57939A23/))
(tstamp 5793BD61))
(comp (ref R2)
(value 120)
(footprint Resistencias:R_0805)
(fields
(field (name Fabricante) VISHAY)
(field (name Ref) CRCW0805120RFKTABC)
(field (name Potencia) 1/8W)
(field (name Tolerancia) 1%)
(field (name Provedor) TME)
(field (name Ref_Proveedor) CRCW0805120RFKTABC))
(libsource (lib device) (part R))
(sheetpath (names "/Matriz Led/") (tstamps /57939A23/))
(tstamp 5793BE17))
(comp (ref R4)
(value 120)
(footprint Resistencias:R_0805)
(fields
(field (name Fabricante) VISHAY)
(field (name Ref) CRCW0805120RFKTABC)
(field (name Potencia) 1/8W)
(field (name Tolerancia) 1%)
(field (name Provedor) TME)
(field (name Ref_Proveedor) CRCW0805120RFKTABC))
(libsource (lib device) (part R))
(sheetpath (names "/Matriz Led/") (tstamps /57939A23/))
(tstamp 5793BE24))
(comp (ref R6)
(value 120)
(footprint Resistencias:R_0805)
(fields
(field (name Fabricante) VISHAY)
(field (name Ref) CRCW0805120RFKTABC)
(field (name Potencia) 1/8W)
(field (name Tolerancia) 1%)
(field (name Provedor) TME)
(field (name Ref_Proveedor) CRCW0805120RFKTABC))
(libsource (lib device) (part R))
(sheetpath (names "/Matriz Led/") (tstamps /57939A23/))
(tstamp 5793BE31))
(comp (ref R3)
(value 120)
(footprint Resistencias:R_0805)
(fields
(field (name Fabricante) VISHAY)
(field (name Ref) CRCW0805120RFKTABC)
(field (name Potencia) 1/8W)
(field (name Tolerancia) 1%)
(field (name Provedor) TME)
(field (name Ref_Proveedor) CRCW0805120RFKTABC))
(libsource (lib device) (part R))
(sheetpath (names "/Matriz Led/") (tstamps /57939A23/))
(tstamp 5793BE3E))
(comp (ref R5)
(value 120)
(footprint Resistencias:R_0805)
(fields
(field (name Fabricante) VISHAY)
(field (name Ref) CRCW0805120RFKTABC)
(field (name Potencia) 1/8W)
(field (name Tolerancia) 1%)
(field (name Provedor) TME)
(field (name Ref_Proveedor) CRCW0805120RFKTABC))
(libsource (lib device) (part R))
(sheetpath (names "/Matriz Led/") (tstamps /57939A23/))
(tstamp 5793BE4B))
(comp (ref R7)
(value 120)
(footprint Resistencias:R_0805)
(fields
(field (name Fabricante) VISHAY)
(field (name Ref) CRCW0805120RFKTABC)
(field (name Potencia) 1/8W)
(field (name Tolerancia) 1%)
(field (name Provedor) TME)
(field (name Ref_Proveedor) CRCW0805120RFKTABC))
(libsource (lib device) (part R))
(sheetpath (names "/Matriz Led/") (tstamps /57939A23/))
(tstamp 5793BE58))
(comp (ref R8)
(value 1K)
(footprint Resistencias:R_0805)
(fields
(field (name Fabricante) VISHAY)
(field (name Ref) CRCW08051K00FKEA)
(field (name Potencia) 1/8W)
(field (name Tolerancia) 1%)
(field (name Provedor) TME)
(field (name Ref_Proveedor) CRCW08051K00FKEA))
(libsource (lib device) (part R))
(sheetpath (names "/Matriz Led/") (tstamps /57939A23/))
(tstamp 5793BE65))
(comp (ref R9)
(value 1K)
(footprint Resistencias:R_0805)
(fields
(field (name Fabricante) VISHAY)
(field (name Ref) CRCW08051K00FKEA)
(field (name Potencia) 1/8W)
(field (name Tolerancia) 1%)
(field (name Provedor) TME)
(field (name Ref_Proveedor) CRCW08051K00FKEA))
(libsource (lib device) (part R))
(sheetpath (names "/Matriz Led/") (tstamps /57939A23/))
(tstamp 5793BE72))
(comp (ref R10)
(value 1K)
(footprint Resistencias:R_0805)
(fields
(field (name Fabricante) VISHAY)
(field (name Ref) CRCW08051K00FKEA)
(field (name Potencia) 1/8W)
(field (name Tolerancia) 1%)
(field (name Provedor) TME)
(field (name Ref_Proveedor) CRCW08051K00FKEA))
(libsource (lib device) (part R))
(sheetpath (names "/Matriz Led/") (tstamps /57939A23/))
(tstamp 5793BE7F))
(comp (ref R11)
(value 1K)
(footprint Resistencias:R_0805)
(fields
(field (name Fabricante) VISHAY)
(field (name Ref) CRCW08051K00FKEA)
(field (name Potencia) 1/8W)
(field (name Tolerancia) 1%)
(field (name Provedor) TME)
(field (name Ref_Proveedor) CRCW08051K00FKEA))
(libsource (lib device) (part R))
(sheetpath (names "/Matriz Led/") (tstamps /57939A23/))
(tstamp 5793BE8C))
(comp (ref R12)
(value 1K)
(footprint Resistencias:R_0805)
(fields
(field (name Fabricante) VISHAY)
(field (name Ref) CRCW08051K00FKEA)
(field (name Potencia) 1/8W)
(field (name Tolerancia) 1%)
(field (name Provedor) TME)
(field (name Ref_Proveedor) CRCW08051K00FKEA))
(libsource (lib device) (part R))
(sheetpath (names "/Matriz Led/") (tstamps /57939A23/))
(tstamp 5793BE99))
(comp (ref Q1)
(value SMBT3904)
(footprint TO_SOT_Packages_SMD:SOT-23)
(datasheet http://www.tme.eu/es/Document/8d2056bc00a948a3e5aafff5d125a908/SMBT3904E6327.pdf)
(fields
(field (name Fabricante) "INFINEON TECHNOLOGIES")
(field (name Ref) SMBT3904E6327)
(field (name Provedor) tme)
(field (name Ref_Proveedor) SMBT3904E6327))
(libsource (lib transistors) (part BC849))
(sheetpath (names "/Matriz Led/") (tstamps /57939A23/))
(tstamp 5797F26B))
(comp (ref Q2)
(value SMBT3904)
(footprint TO_SOT_Packages_SMD:SOT-23)
(datasheet http://www.tme.eu/es/Document/8d2056bc00a948a3e5aafff5d125a908/SMBT3904E6327.pdf)
(fields
(field (name Fabricante) "INFINEON TECHNOLOGIES")
(field (name Ref) SMBT3904E6327)
(field (name Provedor) tme)
(field (name Ref_Proveedor) SMBT3904E6327))
(libsource (lib transistors) (part BC849))
(sheetpath (names "/Matriz Led/") (tstamps /57939A23/))
(tstamp 5797F59C))
(comp (ref Q3)
(value SMBT3904)
(footprint TO_SOT_Packages_SMD:SOT-23)
(datasheet http://www.tme.eu/es/Document/8d2056bc00a948a3e5aafff5d125a908/SMBT3904E6327.pdf)
(fields
(field (name Fabricante) "INFINEON TECHNOLOGIES")
(field (name Ref) SMBT3904E6327)
(field (name Provedor) tme)
(field (name Ref_Proveedor) SMBT3904E6327))
(libsource (lib transistors) (part BC849))
(sheetpath (names "/Matriz Led/") (tstamps /57939A23/))
(tstamp 5797F60D))
(comp (ref Q4)
(value SMBT3904)
(footprint TO_SOT_Packages_SMD:SOT-23)
(datasheet http://www.tme.eu/es/Document/8d2056bc00a948a3e5aafff5d125a908/SMBT3904E6327.pdf)
(fields
(field (name Fabricante) "INFINEON TECHNOLOGIES")
(field (name Ref) SMBT3904E6327)
(field (name Provedor) tme)
(field (name Ref_Proveedor) SMBT3904E6327))
(libsource (lib transistors) (part BC849))
(sheetpath (names "/Matriz Led/") (tstamps /57939A23/))
(tstamp 5797F681))
(comp (ref Q5)
(value SMBT3904)
(footprint TO_SOT_Packages_SMD:SOT-23)
(datasheet http://www.tme.eu/es/Document/8d2056bc00a948a3e5aafff5d125a908/SMBT3904E6327.pdf)
(fields
(field (name Fabricante) "INFINEON TECHNOLOGIES")
(field (name Ref) SMBT3904E6327)
(field (name Provedor) tme)
(field (name Ref_Proveedor) SMBT3904E6327))
(libsource (lib transistors) (part BC849))
(sheetpath (names "/Matriz Led/") (tstamps /57939A23/))
(tstamp 5797F6F8))
(comp (ref P2)
(value CONN_01X06)
(footprint Socket_Strips:Socket_Strip_Straight_1x06)
(fields
(field (name Fabricante) NINIGI)
(field (name Ref) ZL262-6SG)
(field (name Provedor) TME)
(field (name Ref_Proveedor) ZL262-6SG))
(libsource (lib conn) (part CONN_01X06))
(sheetpath (names /Bluetooth/) (tstamps /5794B6BE/))
(tstamp 5794D384))
(comp (ref R13)
(value 1K)
(footprint Resistencias:R_0805)
(fields
(field (name Fabricante) VISHAY)
(field (name Ref) CRCW08051K00FKEA)
(field (name Provedor) TME)
(field (name Ref_Proveedor) CRCW08051K00FKEA))
(libsource (lib device) (part R))
(sheetpath (names /Bluetooth/) (tstamps /5794B6BE/))
(tstamp 5794D4BE))
(comp (ref R14)
(value 2K)
(footprint Resistencias:R_0805)
(fields
(field (name Fabricante) VISHAY)
(field (name Ref) CRCW08052K00FKTABC)
(field (name Provedor) TME)
(field (name Ref_Proveedor) CRCW08052K00FKTABC))
(libsource (lib device) (part R))
(sheetpath (names /Bluetooth/) (tstamps /5794B6BE/))
(tstamp 5794D4FD))
(comp (ref P3)
(value CONN_01X01)
(footprint Socket_Strips:Socket_Strip_Straight_1x01)
(fields
(field (name Fabricante) NINIGI)
(field (name Ref) ZL262-40SG)
(field (name Provedor) TME)
(field (name Ref_Proveedor) ZL262-40SG))
(libsource (lib conn) (part CONN_01X01))
(sheetpath (names /Bluetooth/) (tstamps /5794B6BE/))
(tstamp 5795457D))
(comp (ref P1)
(value CONN_02X04)
(footprint Socket_Strips:Socket_Strip_Straight_2x04)
(fields
(field (name Fabricante) ninigi)
(field (name Ref) ZL262-8DG)
(field (name Provedor) tme)
(field (name Ref_Proveedor) ZL262-8DG))
(libsource (lib conn) (part CONN_02X04))
(sheetpath (names /Bluetooth/) (tstamps /5794B6BE/))
(tstamp 586D7832))
(comp (ref C5)
(value 47u)
(footprint Capacitors_SMD:C_1206)
(datasheet http://www.tme.eu/es/Document/e3e731e59cc68b1ab6d46b158bb05733/MURATA_GRM.pdf)
(fields
(field (name Fabricante) murata)
(field (name Ref) GRM31CR61A476ME15L)
(field (name Provedor) tme)
(field (name Ref_Proveedor) GRM31CR61A476ME15L))
(libsource (lib device) (part CP1))
(sheetpath (names /Bluetooth/) (tstamps /5794B6BE/))
(tstamp 586D78F0))
(comp (ref P4)
(value CONN_01X03)
(footprint Pin_Headers:Pin_Header_Straight_1x03_Pitch2.54mm)
(fields
(field (name Fabricante) "TE CONNECTIVITY")
(field (name Ref) 4-103321-8)
(field (name Provedor) TME)
(field (name Ref_Proveedor) 4-103321-8))
(libsource (lib conn) (part CONN_01X03))
(sheetpath (names /Servo/) (tstamps /5793F6CB/))
(tstamp 5794EA47))
(comp (ref P5)
(value CONN_01X03)
(footprint Pin_Headers:Pin_Header_Straight_1x03_Pitch2.54mm)
(fields
(field (name Fabricante) "TE CONNECTIVITY")
(field (name Ref) 4-103321-8)
(field (name Provedor) TME)
(field (name Ref_Proveedor) 4-103321-8))
(libsource (lib conn) (part CONN_01X03))
(sheetpath (names /Servo/) (tstamps /5793F6CB/))
(tstamp 5794EAA8))
(comp (ref P6)
(value CONN_01X03)
(footprint Pin_Headers:Pin_Header_Straight_1x03_Pitch2.54mm)
(fields
(field (name Fabricante) "TE CONNECTIVITY")
(field (name Ref) 4-103321-8)
(field (name Provedor) TME)
(field (name Ref_Proveedor) 4-103321-8))
(libsource (lib conn) (part CONN_01X03))
(sheetpath (names /Servo/) (tstamps /5793F6CB/))
(tstamp 586D53FE))
(comp (ref P7)
(value CONN_01X03)
(footprint Pin_Headers:Pin_Header_Straight_1x03_Pitch2.54mm)
(fields
(field (name Fabricante) "TE CONNECTIVITY")
(field (name Ref) 4-103321-8)
(field (name Provedor) TME)
(field (name Ref_Proveedor) 4-103321-8))
(libsource (lib conn) (part CONN_01X03))
(sheetpath (names /Servo/) (tstamps /5793F6CB/))
(tstamp 586D547C))
(comp (ref R19)
(value 10K)
(footprint Resistencias:R_0805)
(fields
(field (name Fabricante) VISHAY)
(field (name Ref) CRCW080510K0FKEA)
(field (name Potencia) 1/8W)
(field (name Tolerancia) 1%)
(field (name Provedor) TME)
(field (name Ref_Proveedor) CRCW080510K0FKEA))
(libsource (lib device) (part R))
(sheetpath (names /Servo/) (tstamps /5793F6CB/))
(tstamp 58700D4F))
(comp (ref R18)
(value 10K)
(footprint Resistencias:R_0805)
(fields
(field (name Fabricante) VISHAY)
(field (name Ref) CRCW080510K0FKEA)
(field (name Potencia) 1/8W)
(field (name Tolerancia) 1%)
(field (name Provedor) TME)
(field (name Ref_Proveedor) CRCW080510K0FKEA))
(libsource (lib device) (part R))
(sheetpath (names /Servo/) (tstamps /5793F6CB/))
(tstamp 58700ECF))
(comp (ref R16)
(value 10K)
(footprint Resistencias:R_0805)
(fields
(field (name Fabricante) VISHAY)
(field (name Ref) CRCW080510K0FKEA)
(field (name Potencia) 1/8W)
(field (name Tolerancia) 1%)
(field (name Provedor) TME)
(field (name Ref_Proveedor) CRCW080510K0FKEA))
(libsource (lib device) (part R))
(sheetpath (names /Servo/) (tstamps /5793F6CB/))
(tstamp 5870102D))
(comp (ref R17)
(value 10K)
(footprint Resistencias:R_0805)
(fields
(field (name Fabricante) VISHAY)
(field (name Ref) CRCW080510K0FKEA)
(field (name Potencia) 1/8W)
(field (name Tolerancia) 1%)
(field (name Provedor) TME)
(field (name Ref_Proveedor) CRCW080510K0FKEA))
(libsource (lib device) (part R))
(sheetpath (names /Servo/) (tstamps /5793F6CB/))
(tstamp 5870117D))
(comp (ref C7)
(value 100n)
(footprint Capacitors_SMD:C_0805)
(fields
(field (name Fabricante) SAMSUNG)
(field (name Ref) CL21B104KBCNNNC)
(field (name Provedor) TME)
(field (name Ref_Proveedor) CL21B104KBCNNNC))
(libsource (lib device) (part C))
(sheetpath (names /Servo/) (tstamps /5793F6CB/))
(tstamp 58701807))
(comp (ref U6)
(value PCA9634)
(footprint Housings_SSOP:TSSOP-20_4.4x6.5mm_Pitch0.65mm)
(libsource (lib Interfaces) (part PCA9634))
(sheetpath (names /Servo/) (tstamps /5793F6CB/))
(tstamp 58BCA6EE))
(comp (ref Led1)
(value Led_RGB)
(footprint Leds:LED_RGB_5mm_G_B_COM_R_Anodo_comun)
(fields
(field (name Fabricante) OPTOSUPPLY)
(field (name Ref) OSTAMA5B31A)
(field (name Provedor) TME)
(field (name Ref_Proveedor) OSTAMA5B31A))
(libsource (lib matriz_led) (part Led_RGB_Anodo_Comun))
(sheetpath (names /Led_RGB/) (tstamps /5793D145/))
(tstamp 5793DB3A))
(comp (ref R20)
(value 120)
(footprint Resistencias:R_0805)
(fields
(field (name Fabricante) VISHAY)
(field (name Ref) CRCW0805120RFKTABC)
(field (name Potencia) 1/8W)
(field (name Tolerancia) 1%)
(field (name Provedor) TME)
(field (name Ref_Proveedor) CRCW0805120RFKTABC))
(libsource (lib device) (part R))
(sheetpath (names /Led_RGB/) (tstamps /5793D145/))
(tstamp 586FFCBB))
(comp (ref R21)
(value 120)
(footprint Resistencias:R_0805)
(fields
(field (name Fabricante) VISHAY)
(field (name Ref) CRCW0805120RFKTABC)
(field (name Potencia) 1/8W)
(field (name Tolerancia) 1%)
(field (name Provedor) TME)
(field (name Ref_Proveedor) CRCW0805120RFKTABC))
(libsource (lib device) (part R))
(sheetpath (names /Led_RGB/) (tstamps /5793D145/))
(tstamp 586FFD77))
(comp (ref R22)
(value 120)
(footprint Resistencias:R_0805)
(fields
(field (name Fabricante) VISHAY)
(field (name Ref) CRCW0805120RFKTABC)
(field (name Potencia) 1/8W)
(field (name Tolerancia) 1%)
(field (name Provedor) TME)
(field (name Ref_Proveedor) CRCW0805120RFKTABC))
(libsource (lib device) (part R))
(sheetpath (names /Led_RGB/) (tstamps /5793D145/))
(tstamp 586FFDA0))
(comp (ref P8)
(value CONN_01X03)
(footprint Socket_Strips:Socket_Strip_Straight_1x03)
(fields
(field (name Fabricante) NINIGI)
(field (name Ref) ZL262-40SG)
(field (name Provedor) TME)
(field (name Ref_Proveedor) ZL262-40SG))
(libsource (lib conn) (part CONN_01X03))
(sheetpath (names /dth11/) (tstamps /57993DAA/))
(tstamp 57993F2D))
(comp (ref R23)
(value 4K7)
(footprint Resistencias:R_0805)
(fields
(field (name Fabricante) VISHAY)
(field (name Ref) CRCW08054K70FKEA)
(field (name Potencia) 1/8W)
(field (name Tolerancia) 1%)
(field (name Provedor) TME)
(field (name Ref_Proveedor) CRCW08054K70FKEA))
(libsource (lib device) (part R))
(sheetpath (names /dth11/) (tstamps /57993DAA/))
(tstamp 57993FBE))
(comp (ref P9)
(value CONN_01X04)
(footprint Socket_Strips:Socket_Strip_Straight_1x04)
(libsource (lib conn) (part CONN_01X04))
(sheetpath (names /dth11/) (tstamps /57993DAA/))
(tstamp 586D7C99))
(comp (ref P10)
(value CONN_01X04)
(footprint Socket_Strips:Socket_Strip_Straight_1x04)
(fields
(field (name Fabricante) NINIGI)
(field (name Ref) ZL262-4SG)
(field (name Provedor) TME)
(field (name Ref_Proveedor) ZL262-4SG))
(libsource (lib conn) (part CONN_01X04))
(sheetpath (names /Ultrasonido/) (tstamps /5793F6EC/))
(tstamp 57950AD5))
(comp (ref RV1)
(value 10K)
(footprint Potenciometros:ALP_RK09K111)
(fields
(field (name Fabricante) ALPS)
(field (name Ref) RK09K1110A0J)
(field (name Potencia) 0,05W)
(field (name Tolerancia) 20%)
(field (name Provedor) RS)
(field (name Ref_Proveedor) 729-3622))
(libsource (lib device) (part POT))
(sheetpath (names /Potenciometro/) (tstamps /5793F58E/))
(tstamp 58BA27E0))
(comp (ref R24)
(value 10K)
(footprint Resistencias:R_0805)
(fields
(field (name Fabricante) VISHAY)
(field (name Ref) CRCW080510K0FKEA)
(field (name Potencia) 1/8W)
(field (name Tolerancia) 1%)
(field (name Provedor) TME)
(field (name Ref_Proveedor) CRCW080510K0FKEA))
(libsource (lib device) (part R))
(sheetpath (names /Pulsadores/) (tstamps /5793F670/))
(tstamp 57951783))
(comp (ref R25)
(value 10K)
(footprint Resistencias:R_0805)
(fields
(field (name Fabricante) VISHAY)
(field (name Ref) CRCW080510K0FKEA)
(field (name Potencia) 1/8W)
(field (name Tolerancia) 1%)
(field (name Provedor) TME)
(field (name Ref_Proveedor) CRCW080510K0FKEA))
(libsource (lib device) (part R))
(sheetpath (names /Pulsadores/) (tstamps /5793F670/))
(tstamp 579517BD))
(comp (ref R26)
(value 10K)
(footprint Resistencias:R_0805)
(fields
(field (name Fabricante) VISHAY)
(field (name Ref) CRCW080510K0FKEA)
(field (name Potencia) 1/8W)
(field (name Tolerancia) 1%)
(field (name Provedor) TME)
(field (name Ref_Proveedor) CRCW080510K0FKEA))
(libsource (lib device) (part R))
(sheetpath (names /Pulsadores/) (tstamps /5793F670/))
(tstamp 579517EC))
(comp (ref R27)
(value 10K)
(footprint Resistencias:R_0805)
(fields
(field (name Fabricante) VISHAY)
(field (name Ref) CRCW080510K0FKEA)
(field (name Potencia) 1/8W)
(field (name Tolerancia) 1%)
(field (name Provedor) TME)
(field (name Ref_Proveedor) CRCW080510K0FKEA))
(libsource (lib device) (part R))
(sheetpath (names /Pulsadores/) (tstamps /5793F670/))
(tstamp 5795181A))
(comp (ref R28)
(value 10M)
(footprint Resistencias:R_0805)
(fields
(field (name Fabricante) VISHAY)
(field (name Ref) CRCW080510K0FKEA)
(field (name Potencia) 1/8W)
(field (name Tolerancia) 1%)
(field (name Provedor) TME)
(field (name Ref_Proveedor) CRCW080510K0FKEA))
(libsource (lib device) (part R))
(sheetpath (names /Pulsadores/) (tstamps /5793F670/))
(tstamp 58814022))
(comp (ref R29)
(value 10M)
(footprint Resistencias:R_0805)
(fields
(field (name Fabricante) VISHAY)
(field (name Ref) CRCW080510K0FKEA)
(field (name Potencia) 1/8W)
(field (name Tolerancia) 1%)
(field (name Provedor) TME)
(field (name Ref_Proveedor) CRCW080510K0FKEA))
(libsource (lib device) (part R))
(sheetpath (names /Pulsadores/) (tstamps /5793F670/))
(tstamp 5881402F))
(comp (ref R30)
(value 10M)
(footprint Resistencias:R_0805)
(fields
(field (name Fabricante) VISHAY)
(field (name Ref) CRCW080510K0FKEA)
(field (name Potencia) 1/8W)
(field (name Tolerancia) 1%)
(field (name Provedor) TME)
(field (name Ref_Proveedor) CRCW080510K0FKEA))
(libsource (lib device) (part R))
(sheetpath (names /Pulsadores/) (tstamps /5793F670/))
(tstamp 5881403C))
(comp (ref R31)
(value 10M)
(footprint Resistencias:R_0805)
(fields
(field (name Fabricante) VISHAY)
(field (name Ref) CRCW080510K0FKEA)
(field (name Potencia) 1/8W)
(field (name Tolerancia) 1%)
(field (name Provedor) TME)
(field (name Ref_Proveedor) CRCW080510K0FKEA))
(libsource (lib device) (part R))
(sheetpath (names /Pulsadores/) (tstamps /5793F670/))
(tstamp 58814049))
(comp (ref P13)
(value CONN_01X01)
(footprint Conectores:Pad_Conector_Cocodrilo)
(libsource (lib conn) (part CONN_01X01))
(sheetpath (names /Pulsadores/) (tstamps /5793F670/))
(tstamp 5881449F))
(comp (ref P14)
(value CONN_01X01)
(footprint Conectores:Pad_Conector_Cocodrilo)
(libsource (lib conn) (part CONN_01X01))
(sheetpath (names /Pulsadores/) (tstamps /5793F670/))
(tstamp 5881452C))
(comp (ref P15)
(value CONN_01X01)
(footprint Conectores:Pad_Conector_Cocodrilo)
(libsource (lib conn) (part CONN_01X01))
(sheetpath (names /Pulsadores/) (tstamps /5793F670/))
(tstamp 58814566))
(comp (ref P16)
(value CONN_01X01)
(footprint Conectores:Pad_Conector_Cocodrilo)
(libsource (lib conn) (part CONN_01X01))
(sheetpath (names /Pulsadores/) (tstamps /5793F670/))
(tstamp 588145A3))
(comp (ref P17)
(value CONN_01X01)
(footprint Conectores:Pad_Conector_Cocodrilo)
(libsource (lib conn) (part CONN_01X01))
(sheetpath (names /Pulsadores/) (tstamps /5793F670/))
(tstamp 5882959B))
(comp (ref SW2)
(value Arriba)
(footprint Relays_and_Contacts:CANAL_ELECTRONIC_DTSM-31N-B)
(fields
(field (name Fabricante) "CANAL ELECTRONIC")
(field (name Ref) DTSM-31N-B)
(field (name Provedor) TME)
(field (name Ref_Proveedor) DTSM-31N-B))
(libsource (lib Reles) (part Pulsador_2p))
(sheetpath (names /Pulsadores/) (tstamps /5793F670/))
(tstamp 58BA188A))
(comp (ref SW1)
(value Izquierda)
(footprint Relays_and_Contacts:CANAL_ELECTRONIC_DTSM-31N-B)
(fields
(field (name Fabricante) "CANAL ELECTRONIC")
(field (name Ref) DTSM-31N-B)
(field (name Provedor) TME)
(field (name Ref_Proveedor) DTSM-31N-B))
(libsource (lib Reles) (part Pulsador_2p))
(sheetpath (names /Pulsadores/) (tstamps /5793F670/))
(tstamp 58BA1ED6))
(comp (ref SW3)
(value Abajo)
(footprint Relays_and_Contacts:CANAL_ELECTRONIC_DTSM-31N-B)
(fields
(field (name Fabricante) "CANAL ELECTRONIC")
(field (name Ref) DTSM-31N-B)
(field (name Provedor) TME)
(field (name Ref_Proveedor) DTSM-31N-B))
(libsource (lib Reles) (part Pulsador_2p))
(sheetpath (names /Pulsadores/) (tstamps /5793F670/))
(tstamp 58BA2079))