-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbobuino.net
1107 lines (1107 loc) · 40.4 KB
/
bobuino.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 D:/ELECTRONIQUE/Kicad/projet/Arduino/bobuino/bobuino.sch)
(date "20/08/2017 22:19:34")
(tool "Eeschema 4.0.6")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title)
(company)
(rev)
(date)
(source bobuino.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 2) (name /bobuino1/) (tstamps /553D168E/)
(title_block
(title)
(company)
(rev)
(date)
(source bobuino1.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref U1)
(value ATMEGA1284-A)
(footprint Housings_QFP:TQFP-44_10x10mm_Pitch0.8mm)
(libsource (lib bobuino-cache) (part ATMEGA1284-A))
(sheetpath (names /bobuino1/) (tstamps /553D168E/))
(tstamp 55299207))
(comp (ref X1)
(value 16Mhz)
(footprint Crystals:Crystal_HC49-U_Vertical)
(libsource (lib bobuino-cache) (part CRYSTAL))
(sheetpath (names /bobuino1/) (tstamps /553D168E/))
(tstamp 552A99F4))
(comp (ref C2)
(value 22p)
(footprint Capacitors_SMD:C_0805)
(libsource (lib device) (part C))
(sheetpath (names /bobuino1/) (tstamps /553D168E/))
(tstamp 552A9A77))
(comp (ref C1)
(value 22p)
(footprint Capacitors_SMD:C_0805)
(libsource (lib device) (part C))
(sheetpath (names /bobuino1/) (tstamps /553D168E/))
(tstamp 552A9AC0))
(comp (ref SHIELD1)
(value ARDUINO_SHIELD_R3)
(footprint _LaurentPerso:ARDUINO_SHIELD_R3)
(libsource (lib _LaurentPerso) (part ARDUINO_SHIELD_R3))
(sheetpath (names /bobuino1/) (tstamps /553D168E/))
(tstamp 552AAECF))
(comp (ref U2)
(value CH340G)
(footprint SMD_Packages:SO-16-N)
(libsource (lib _LaurentPerso) (part CH340G))
(sheetpath (names /bobuino1/) (tstamps /553D168E/))
(tstamp 552AD9D7))
(comp (ref X2)
(value 12Mhz)
(footprint Crystals:Crystal_HC49-U_Vertical)
(libsource (lib bobuino-cache) (part CRYSTAL))
(sheetpath (names /bobuino1/) (tstamps /553D168E/))
(tstamp 552ADB4E))
(comp (ref C3)
(value 22p)
(footprint Capacitors_SMD:C_0805)
(libsource (lib device) (part C))
(sheetpath (names /bobuino1/) (tstamps /553D168E/))
(tstamp 552ADC7C))
(comp (ref C4)
(value 22p)
(footprint Capacitors_SMD:C_0805)
(libsource (lib device) (part C))
(sheetpath (names /bobuino1/) (tstamps /553D168E/))
(tstamp 552ADD41))
(comp (ref CON1)
(value USB-MINI-B)
(footprint Connect:USB_Mini-B)
(libsource (lib bobuino-cache) (part USB-MINI-B))
(sheetpath (names /bobuino1/) (tstamps /553D168E/))
(tstamp 552AE0A8))
(comp (ref C5)
(value 100n)
(footprint Capacitors_SMD:C_0805)
(libsource (lib device) (part C))
(sheetpath (names /bobuino1/) (tstamps /553D168E/))
(tstamp 552AE3B6))
(comp (ref R1)
(value 1k)
(footprint Resistors_SMD:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /bobuino1/) (tstamps /553D168E/))
(tstamp 552AFA99))
(comp (ref R2)
(value 1k)
(footprint Resistors_SMD:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /bobuino1/) (tstamps /553D168E/))
(tstamp 552AFAC4))
(comp (ref R3)
(value 1k)
(footprint Resistors_SMD:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /bobuino1/) (tstamps /553D168E/))
(tstamp 552AFD80))
(comp (ref R4)
(value 1k)
(footprint Resistors_SMD:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /bobuino1/) (tstamps /553D168E/))
(tstamp 552AFDF5))
(comp (ref D2)
(value TX)
(footprint LEDs:LED-0805)
(libsource (lib bobuino-rescue) (part LED-RESCUE-bobuino))
(sheetpath (names /bobuino1/) (tstamps /553D168E/))
(tstamp 552AFE1C))
(comp (ref D1)
(value RX)
(footprint LEDs:LED-0805)
(libsource (lib bobuino-rescue) (part LED-RESCUE-bobuino))
(sheetpath (names /bobuino1/) (tstamps /553D168E/))
(tstamp 552AFE53))
(comp (ref R5)
(value 1k)
(footprint Resistors_SMD:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /bobuino1/) (tstamps /553D168E/))
(tstamp 552C2E11))
(comp (ref D3)
(value L)
(footprint LEDs:LED-0805)
(libsource (lib bobuino-rescue) (part LED-RESCUE-bobuino))
(sheetpath (names /bobuino1/) (tstamps /553D168E/))
(tstamp 552C2EEA))
(comp (ref R6)
(value 10k)
(footprint Resistors_SMD:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /bobuino1/) (tstamps /553D168E/))
(tstamp 552C3C7E))
(comp (ref C6)
(value 100n)
(footprint Capacitors_SMD:C_0805)
(libsource (lib device) (part C))
(sheetpath (names /bobuino1/) (tstamps /553D168E/))
(tstamp 552C3CD9))
(comp (ref Reset1)
(value SW_PUSH)
(footprint Buttons_Switches_SMD:SW_SPST_PTS645)
(libsource (lib bobuino-cache) (part SW_PUSH))
(sheetpath (names /bobuino1/) (tstamps /553D168E/))
(tstamp 552C4489))
(comp (ref C7)
(value 100n)
(footprint Capacitors_SMD:C_0805)
(libsource (lib device) (part C))
(sheetpath (names /bobuino1/) (tstamps /553D168E/))
(tstamp 552C59E5))
(comp (ref P2)
(value CONN_02X03)
(footprint Pin_Headers:Pin_Header_Straight_2x03)
(libsource (lib conn) (part CONN_02X03))
(sheetpath (names /bobuino1/) (tstamps /553D168E/))
(tstamp 552ECCF9))
(comp (ref ??1)
(value uSD_CARD)
(footprint _LaurentPerso:MicroSD_alliexpress)
(libsource (lib _LaurentPerso) (part uSD_CARD))
(sheetpath (names /bobuino1/) (tstamps /553D168E/))
(tstamp 552ED8B4))
(comp (ref P1)
(value LCD5110)
(footprint _LaurentPerso:LCD5110_ali)
(libsource (lib _LaurentPerso) (part LCD5110))
(sheetpath (names /bobuino1/) (tstamps /553D168E/))
(tstamp 552ED8FD))
(comp (ref P3)
(value CONN_02X04)
(footprint Pin_Headers:Pin_Header_Straight_2x04)
(libsource (lib conn) (part CONN_02X04))
(sheetpath (names /bobuino1/) (tstamps /553D168E/))
(tstamp 552EE496))
(comp (ref R8)
(value 1k)
(footprint Resistors_SMD:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /bobuino1/) (tstamps /553D168E/))
(tstamp 552EE5A9))
(comp (ref R7)
(value 1k)
(footprint Resistors_SMD:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /bobuino1/) (tstamps /553D168E/))
(tstamp 552EE636))
(comp (ref R9)
(value 1k)
(footprint Resistors_SMD:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /bobuino1/) (tstamps /553D168E/))
(tstamp 552EE6AF))
(comp (ref U4)
(value AP1117)
(footprint SMD_Packages:SOT-223)
(libsource (lib regul) (part AP1117))
(sheetpath (names /bobuino1/) (tstamps /553D168E/))
(tstamp 552EE6F0))
(comp (ref U3)
(value AP1117)
(footprint SMD_Packages:SOT-223)
(libsource (lib regul) (part AP1117))
(sheetpath (names /bobuino1/) (tstamps /553D168E/))
(tstamp 552EE8C8))
(comp (ref C11)
(value 47u)
(footprint Capacitors_Tantalum_SMD:TantalC_SizeB_EIA-3528_Reflow)
(libsource (lib device) (part CP1))
(sheetpath (names /bobuino1/) (tstamps /553D168E/))
(tstamp 552EED51))
(comp (ref C10)
(value 10u)
(footprint Capacitors_Tantalum_SMD:TantalC_SizeA_EIA-3216_Reflow)
(libsource (lib device) (part CP1))
(sheetpath (names /bobuino1/) (tstamps /553D168E/))
(tstamp 552EED8A))
(comp (ref C8)
(value 10u)
(footprint Capacitors_Tantalum_SMD:TantalC_SizeA_EIA-3216_Reflow)
(libsource (lib device) (part CP1))
(sheetpath (names /bobuino1/) (tstamps /553D168E/))
(tstamp 552F0FE8))
(comp (ref C9)
(value 47u)
(footprint Capacitors_Tantalum_SMD:TantalC_SizeB_EIA-3528_Reflow)
(libsource (lib device) (part CP1))
(sheetpath (names /bobuino1/) (tstamps /553D168E/))
(tstamp 552F1027))
(comp (ref U5)
(value 4050)
(footprint SMD_Packages:SO-16-N)
(libsource (lib cmos4000) (part 4050))
(sheetpath (names /bobuino1/) (tstamps /553D168E/))
(tstamp 552F449F))
(comp (ref S1)
(value ENCODEUR_rotatif)
(footprint _LaurentPerso:ENCODEUR_rotatif)
(libsource (lib _LaurentPerso) (part ENCODEUR_rotatif))
(sheetpath (names /bobuino1/) (tstamps /553D168E/))
(tstamp 5530E4A8))
(comp (ref R10)
(value 1k)
(footprint Resistors_SMD:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /bobuino1/) (tstamps /553D168E/))
(tstamp 5530F72D))
(comp (ref C12)
(value 100n)
(footprint Capacitors_SMD:C_0805)
(libsource (lib device) (part C))
(sheetpath (names /bobuino1/) (tstamps /553D168E/))
(tstamp 55316DEA))
(comp (ref C13)
(value 100n)
(footprint Capacitors_SMD:C_0805)
(libsource (lib device) (part C))
(sheetpath (names /bobuino1/) (tstamps /553D168E/))
(tstamp 55316FFA))
(comp (ref C14)
(value 10u)
(footprint Capacitors_Tantalum_SMD:TantalC_SizeA_EIA-3216_Reflow)
(libsource (lib device) (part CP1))
(sheetpath (names /bobuino1/) (tstamps /553D168E/))
(tstamp 553171C9))
(comp (ref P4)
(value power)
(footprint Socket_Strips:Socket_Strip_Straight_1x04)
(libsource (lib conn) (part CONN_01X04))
(sheetpath (names /bobuino1/) (tstamps /553D168E/))
(tstamp 5531A78F))
(comp (ref F1)
(value FUSE)
(footprint Fuse_Holders_and_Fuses:Fuse_SMD1206_Reflow)
(libsource (lib bobuino-cache) (part FUSE))
(sheetpath (names /bobuino1/) (tstamps /553D168E/))
(tstamp 553537F0))
(comp (ref R11)
(value 10k)
(footprint Resistors_SMD:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /bobuino1/) (tstamps /553D168E/))
(tstamp 5536B842))
(comp (ref R12)
(value 10k)
(footprint Resistors_SMD:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /bobuino1/) (tstamps /553D168E/))
(tstamp 5536B8BD))
(comp (ref R13)
(value 10k)
(footprint Resistors_SMD:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /bobuino1/) (tstamps /553D168E/))
(tstamp 5536B8F6))
(comp (ref R14)
(value 10k)
(footprint Resistors_SMD:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /bobuino1/) (tstamps /553D168E/))
(tstamp 5536B94D))
(comp (ref C15)
(value 10u)
(footprint Capacitors_Tantalum_SMD:TantalC_SizeA_EIA-3216_Reflow)
(libsource (lib device) (part CP1))
(sheetpath (names /bobuino1/) (tstamps /553D168E/))
(tstamp 5536CA55))
(comp (ref R16)
(value 10k)
(footprint Resistors_SMD:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /bobuino1/) (tstamps /553D168E/))
(tstamp 55378D12))
(comp (ref R17)
(value 10k)
(footprint Resistors_SMD:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /bobuino1/) (tstamps /553D168E/))
(tstamp 55378D33))
(comp (ref R15)
(value 0)
(footprint Resistors_SMD:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /bobuino1/) (tstamps /553D168E/))
(tstamp 553791D6))
(comp (ref Q1)
(value BSS138)
(footprint Housings_SOT-23_SOT-143_TSOT-6:SOT-23)
(libsource (lib transistors) (part BSS138))
(sheetpath (names /bobuino1/) (tstamps /553D168E/))
(tstamp 5538216A))
(comp (ref D4)
(value 1N5819)
(footprint Diodes_SMD:Diode-SMA_Standard)
(libsource (lib device) (part D_Schottky))
(sheetpath (names /bobuino1/) (tstamps /553D168E/))
(tstamp 553D176F))
(comp (ref P5)
(value CONN_01X03)
(footprint Pin_Headers:Pin_Header_Straight_1x03)
(libsource (lib conn) (part CONN_01X03))
(sheetpath (names /bobuino1/) (tstamps /553D168E/))
(tstamp 554633CB))
(comp (ref D5)
(value 1N4148)
(footprint Diodes_SMD:SOD-123)
(libsource (lib device) (part D))
(sheetpath (names /bobuino1/) (tstamps /553D168E/))
(tstamp 56A968C3)))
(libparts
(libpart (lib cmos4000) (part 4050)
(description "Hex Buffer")
(fields
(field (name Reference) U)
(field (name Value) 4050))
(pins
(pin (num 1) (name VCC) (type power_in))
(pin (num 2) (name ~) (type output))
(pin (num 3) (name ~) (type input))
(pin (num 4) (name ~) (type output))
(pin (num 5) (name ~) (type input))
(pin (num 6) (name ~) (type output))
(pin (num 7) (name ~) (type input))
(pin (num 8) (name VSS) (type power_in))
(pin (num 9) (name ~) (type input))
(pin (num 10) (name ~) (type output))
(pin (num 11) (name ~) (type input))
(pin (num 12) (name ~) (type output))
(pin (num 14) (name ~) (type input))
(pin (num 15) (name ~) (type output))))
(libpart (lib regul) (part AP1117)
(aliases
(alias AP111715)
(alias AP111718)
(alias AP111725)
(alias AP111733)
(alias AP111750))
(description "1A Low Dropout regulator, positive, adjustable output, NRND")
(docs http://www.diodes.com/datasheets/AP1117.pdf)
(footprints
(fp SOT-223*))
(fields
(field (name Reference) U)
(field (name Value) AP1117)
(field (name Footprint) TO_SOT_Packages_SMD:SOT-223))
(pins
(pin (num 1) (name GND/ADJ) (type power_in))
(pin (num 2) (name VO) (type power_out))
(pin (num 3) (name VI) (type power_in))
(pin (num 4) (name VO) (type power_out))))
(libpart (lib _LaurentPerso) (part ARDUINO_SHIELD_R3)
(footprints
(fp ARDUINO_SHIELD_R3))
(fields
(field (name Reference) SHIELD)
(field (name Value) ARDUINO_SHIELD_R3))
(pins
(pin (num 0) (name 0) (type BiDi))
(pin (num 1) (name 1) (type BiDi))
(pin (num 2) (name 2) (type BiDi))
(pin (num 3) (name 3) (type BiDi))
(pin (num 4) (name 4) (type BiDi))
(pin (num 5) (name 5) (type BiDi))
(pin (num 5V) (name 5V) (type power_in))
(pin (num 6) (name 6) (type BiDi))
(pin (num 7) (name 7) (type BiDi))
(pin (num 8) (name 8) (type BiDi))
(pin (num 9) (name 9) (type BiDi))
(pin (num 10) (name 10) (type BiDi))
(pin (num 11) (name 11) (type BiDi))
(pin (num 12) (name 12) (type BiDi))
(pin (num 13) (name 13) (type BiDi))
(pin (num 3V3) (name 3V3) (type power_in))
(pin (num AD0) (name AD0) (type BiDi))
(pin (num AD1) (name AD1) (type BiDi))
(pin (num AD2) (name AD2) (type BiDi))
(pin (num AD3) (name AD3) (type BiDi))
(pin (num AD4) (name AD4) (type BiDi))
(pin (num AD5) (name AD5) (type BiDi))
(pin (num AREF) (name AREF) (type power_in))
(pin (num GND1) (name GND1) (type power_in))
(pin (num GND2) (name GND2) (type power_in))
(pin (num GND3) (name GND3) (type power_in))
(pin (num IORE) (name IOREF) (type input))
(pin (num NC) (name NC) (type input))
(pin (num RST) (name RST) (type input))
(pin (num SCL) (name SCL) (type input))
(pin (num SDA) (name SDA) (type input))
(pin (num V_IN) (name V_IN) (type power_in))))
(libpart (lib bobuino-cache) (part ATMEGA1284-A)
(aliases
(alias ATMEGA164A-A)
(alias ATMEGA164PA-A)
(alias ATMEGA324A-A)
(alias ATMEGA324PA-A)
(alias ATMEGA644A-A)
(alias ATMEGA644PA-A)
(alias ATMEGA1284P-A))
(fields
(field (name Reference) IC)
(field (name Value) ATMEGA1284-A)
(field (name Footprint) TQFP44))
(pins
(pin (num 1) (name "(PCINT13/MOSI)PB5") (type BiDi))
(pin (num 2) (name "(PCINT14/MISO)PB6") (type BiDi))
(pin (num 3) (name "(PCINT15/SCK)PB7") (type BiDi))
(pin (num 4) (name ~RESET) (type input))
(pin (num 5) (name VCC) (type power_in))
(pin (num 6) (name GND) (type power_in))
(pin (num 7) (name XTAL2) (type BiDi))
(pin (num 8) (name XTAL1) (type BiDi))
(pin (num 9) (name "(PCINT24/RXD0)PD0") (type BiDi))
(pin (num 10) (name "(PCINT25/TXD0)PD1") (type BiDi))
(pin (num 11) (name "(PCINT26/RXD1/INT0)PD2") (type BiDi))
(pin (num 12) (name "(PCINT27/TXD1/INT1)PD3") (type BiDi))
(pin (num 13) (name "(PCINT28/XCK1/OC1B)PD4") (type BiDi))
(pin (num 14) (name "(PCINT294/OC1A)PD5") (type BiDi))
(pin (num 15) (name "(PCINT30/OC2B/ICP)PD6") (type BiDi))
(pin (num 16) (name "(PCINT31/OC2A)PD7") (type BiDi))
(pin (num 17) (name VCC) (type power_in))
(pin (num 18) (name GND) (type power_in))
(pin (num 19) (name "(PCINT16/SCL)PC0") (type BiDi))
(pin (num 20) (name "(PCINT17/SDA)PC1") (type BiDi))
(pin (num 21) (name "(PCINT18/TCK)PC2") (type BiDi))
(pin (num 22) (name "(PCINT19/TMS)PC3") (type BiDi))
(pin (num 23) (name "(PCINT20/TDO)PC4") (type BiDi))
(pin (num 24) (name "(PCINT21/TDI)PC5") (type BiDi))
(pin (num 25) (name "(PCINT22/TOSC1)PC6") (type BiDi))
(pin (num 26) (name "(PCINT23/TOSC2)PC7") (type BiDi))
(pin (num 27) (name AVCC) (type power_in))
(pin (num 28) (name GND) (type power_in))
(pin (num 29) (name AREF) (type power_in))
(pin (num 30) (name "(PCINT7/ADC7)PA7") (type BiDi))
(pin (num 31) (name "(PCINT6/ADC6)PA6") (type BiDi))
(pin (num 32) (name "(PCINT5/ADC5)PA5") (type BiDi))
(pin (num 33) (name "(PCINT4/ADC4)PA4") (type BiDi))
(pin (num 34) (name "(PCINT3/ADC3)PA3") (type BiDi))
(pin (num 35) (name "(PCINT2/ADC2)PA2") (type BiDi))
(pin (num 36) (name "(PCINT1/ADC1)PA1") (type BiDi))
(pin (num 37) (name "(PCINT0/ADC0)PA0") (type BiDi))
(pin (num 38) (name VCC) (type power_in))
(pin (num 39) (name GND) (type power_in))
(pin (num 40) (name "(PCINT8/T0/XCK)PB0") (type BiDi))
(pin (num 41) (name "(PCINT9/CLKO/T1)PB1") (type BiDi))
(pin (num 42) (name "(PCINT10/AIN0/INT2)PB2") (type BiDi))
(pin (num 43) (name "(PCINT11/AIN1/OC0)PB3") (type BiDi))
(pin (num 44) (name "(PCINT12/OC0B/~SS~)PB4") (type BiDi))))
(libpart (lib transistors) (part BSS138)
(aliases
(alias 2N7002))
(description "50V Vds, 0.22A Id, N-Channel MOSFET, SOT-23")
(docs http://www.fairchildsemi.com/ds/BS/BSS138.pdf)
(footprints
(fp SOT-23*))
(fields
(field (name Reference) Q)
(field (name Value) BSS138)
(field (name Footprint) TO_SOT_Packages_SMD:SOT-23))
(pins
(pin (num 1) (name G) (type passive))
(pin (num 2) (name S) (type passive))
(pin (num 3) (name D) (type passive))))
(libpart (lib device) (part C)
(description "Unpolarized capacitor")
(footprints
(fp C_*))
(fields
(field (name Reference) C)
(field (name Value) C))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib _LaurentPerso) (part CH340G)
(footprints
(fp SOP16))
(fields
(field (name Reference) U)
(field (name Value) CH340G))
(pins
(pin (num 1) (name GND) (type output))
(pin (num 2) (name TX) (type output))
(pin (num 3) (name RX) (type input))
(pin (num 4) (name V3) (type input))
(pin (num 5) (name D+) (type input))
(pin (num 6) (name D-) (type input))
(pin (num 7) (name XI) (type input))
(pin (num 8) (name XO) (type output))
(pin (num 9) (name CTS) (type input))
(pin (num 10) (name DSR) (type input))
(pin (num 11) (name RI) (type input))
(pin (num 12) (name DCD) (type input))
(pin (num 13) (name DTR) (type output))
(pin (num 14) (name RTS) (type output))
(pin (num 15) (name RS232) (type input))
(pin (num 16) (name VCC) (type output))))
(libpart (lib conn) (part CONN_01X03)
(description "Connector, single row, 01x03, pin header")
(footprints
(fp Pin_Header_Straight_1X*)
(fp Pin_Header_Angled_1X*)
(fp Socket_Strip_Straight_1X*)
(fp Socket_Strip_Angled_1X*))
(fields
(field (name Reference) J)
(field (name Value) CONN_01X03))
(pins
(pin (num 1) (name P1) (type passive))
(pin (num 2) (name P2) (type passive))
(pin (num 3) (name P3) (type passive))))
(libpart (lib conn) (part CONN_01X04)
(description "Connector, single row, 01x04, pin header")
(footprints
(fp Pin_Header_Straight_1X*)
(fp Pin_Header_Angled_1X*)
(fp Socket_Strip_Straight_1X*)
(fp Socket_Strip_Angled_1X*))
(fields
(field (name Reference) J)
(field (name Value) CONN_01X04))
(pins
(pin (num 1) (name P1) (type passive))
(pin (num 2) (name P2) (type passive))
(pin (num 3) (name P3) (type passive))
(pin (num 4) (name P4) (type passive))))
(libpart (lib conn) (part CONN_02X03)
(description "Connector, double row, 02x03, pin header")
(footprints
(fp Pin_Header_Straight_2X*)
(fp Pin_Header_Angled_2X*)
(fp Socket_Strip_Straight_2X*)
(fp Socket_Strip_Angled_2X*)
(fp IDC_Header_Straight_*))
(fields
(field (name Reference) J)
(field (name Value) CONN_02X03))
(pins
(pin (num 1) (name P1) (type passive))
(pin (num 2) (name P2) (type passive))
(pin (num 3) (name P3) (type passive))
(pin (num 4) (name P4) (type passive))
(pin (num 5) (name P5) (type passive))
(pin (num 6) (name P6) (type passive))))
(libpart (lib conn) (part CONN_02X04)
(description "Connector, double row, 02x04, pin header")
(footprints
(fp Pin_Header_Straight_2X*)
(fp Pin_Header_Angled_2X*)
(fp Socket_Strip_Straight_2X*)
(fp Socket_Strip_Angled_2X*)
(fp IDC_Header_Straight_*))
(fields
(field (name Reference) J)
(field (name Value) CONN_02X04))
(pins
(pin (num 1) (name P1) (type passive))
(pin (num 2) (name P2) (type passive))
(pin (num 3) (name P3) (type passive))
(pin (num 4) (name P4) (type passive))
(pin (num 5) (name P5) (type passive))
(pin (num 6) (name P6) (type passive))
(pin (num 7) (name P7) (type passive))
(pin (num 8) (name P8) (type passive))))
(libpart (lib device) (part CP1)
(description "Polarised capacitor")
(footprints
(fp CP_*))
(fields
(field (name Reference) C)
(field (name Value) CP1))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib bobuino-cache) (part CRYSTAL)
(fields
(field (name Reference) X)
(field (name Value) CRYSTAL))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib device) (part D)
(description Diode)
(footprints
(fp TO-???*)
(fp *SingleDiode)
(fp *_Diode_*)
(fp *SingleDiode*)
(fp D_*))
(fields
(field (name Reference) D)
(field (name Value) D))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib device) (part D_Schottky)
(description "Schottky diode")
(footprints
(fp TO-???*)
(fp *SingleDiode)
(fp *_Diode_*)
(fp *SingleDiode*)
(fp D_*))
(fields
(field (name Reference) D)
(field (name Value) D_Schottky))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib _LaurentPerso) (part ENCODEUR_rotatif)
(fields
(field (name Reference) S)
(field (name Value) ENCODEUR_rotatif))
(pins
(pin (num 1) (name G) (type input))
(pin (num 2) (name A) (type input))
(pin (num 3) (name B) (type input))
(pin (num 4) (name SW1) (type input))
(pin (num 5) (name SW2) (type input))))
(libpart (lib bobuino-cache) (part FUSE)
(fields
(field (name Reference) F)
(field (name Value) FUSE))
(pins
(pin (num 1) (name ~) (type input))
(pin (num 2) (name ~) (type input))))
(libpart (lib _LaurentPerso) (part LCD5110)
(footprints
(fp LCD5110))
(fields
(field (name Reference) P)
(field (name Value) LCD5110))
(pins
(pin (num CLK) (name CLK) (type input))
(pin (num CS) (name CS) (type input))
(pin (num DC) (name DC) (type input))
(pin (num DIN) (name DIN) (type input))
(pin (num GND) (name GND) (type input))
(pin (num LED) (name LED) (type input))
(pin (num RST) (name RST) (type input))
(pin (num VCC) (name VCC) (type input))))
(libpart (lib bobuino-rescue) (part LED-RESCUE-bobuino)
(footprints
(fp LED-3MM)
(fp LED-5MM)
(fp LED-10MM)
(fp LED-0603)
(fp LED-0805)
(fp LED-1206)
(fp LEDV))
(fields
(field (name Reference) D)
(field (name Value) LED-RESCUE-bobuino))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib device) (part R)
(description Resistor)
(footprints
(fp R_*)
(fp R_*))
(fields
(field (name Reference) R)
(field (name Value) R))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib bobuino-cache) (part SW_PUSH)
(fields
(field (name Reference) SW)
(field (name Value) SW_PUSH))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib bobuino-cache) (part USB-MINI-B)
(aliases
(alias USB-MICRO-B))
(footprints
(fp USB-Mini-B-Jack))
(fields
(field (name Reference) CON)
(field (name Value) USB-MINI-B))
(pins
(pin (num 1) (name VBUS) (type power_in))
(pin (num 2) (name D-) (type BiDi))
(pin (num 3) (name D+) (type BiDi))
(pin (num 4) (name ID) (type BiDi))
(pin (num 5) (name GND) (type power_in))
(pin (num 6) (name SHELL1) (type passive))
(pin (num 7) (name SHELL2) (type passive))
(pin (num 8) (name SHELL3) (type passive))
(pin (num 9) (name SHELL4) (type passive))))
(libpart (lib _LaurentPerso) (part uSD_CARD)
(footprints
(fp MicroSD_Alliexpress))
(fields
(field (name Reference) ??)
(field (name Value) uSD_CARD))
(pins
(pin (num 1) (name DAT2/RSV:1) (type BiDi))
(pin (num 2) (name DAT3/CD/CS:2) (type BiDi))
(pin (num 3) (name CMD/DI/MOSI:3) (type BiDi))
(pin (num 4) (name VDD/VCC:4) (type power_in))
(pin (num 5) (name CLK:5) (type BiDi))
(pin (num 6) (name VSS/VSS2:6) (type power_in))
(pin (num 7) (name DAT0/DO/MISO:7) (type BiDi))
(pin (num 8) (name DAT1/RSV:8) (type BiDi))
(pin (num 9) (name cd) (type BiDi)))))
(libraries
(library (logical transistors)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library\\transistors.lib"))
(library (logical _LaurentPerso)
(uri D:\ELECTRONIQUE\Kicad\library\_LaurentPerso.lib))
(library (logical bobuino-cache)
(uri D:\ELECTRONIQUE\Kicad\projet\Arduino\bobuino\bobuino-cache.lib))
(library (logical conn)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library\\conn.lib"))
(library (logical bobuino-rescue)
(uri D:\ELECTRONIQUE\Kicad\projet\Arduino\bobuino\bobuino-rescue.lib))
(library (logical device)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library\\device.lib"))
(library (logical regul)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library\\regul.lib"))
(library (logical cmos4000)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library\\cmos4000.lib")))
(nets
(net (code 1) (name /bobuino1/A4)
(node (ref U1) (pin 34))
(node (ref SHIELD1) (pin AD4)))
(net (code 2) (name /bobuino1/A5)
(node (ref SHIELD1) (pin AD5))
(node (ref U1) (pin 35)))
(net (code 3) (name /bobuino1/A3)
(node (ref SHIELD1) (pin AD3))
(node (ref U1) (pin 33)))
(net (code 4) (name "Net-(CON1-Pad3)")
(node (ref CON1) (pin 3))
(node (ref U2) (pin 5)))
(net (code 5) (name /bobuino1/D3_TX1)
(node (ref SHIELD1) (pin 3))
(node (ref R7) (pin 2))
(node (ref U1) (pin 12)))
(net (code 6) (name /bobuino1/D13_SCK)
(node (ref R12) (pin 2))
(node (ref SHIELD1) (pin 13))
(node (ref R5) (pin 1))
(node (ref U1) (pin 3))
(node (ref U5) (pin 5))
(node (ref P2) (pin 3)))
(net (code 7) (name /bobuino1/D12_MISO)
(node (ref P2) (pin 1))
(node (ref U1) (pin 2))
(node (ref ??1) (pin 7))
(node (ref SHIELD1) (pin 12)))
(net (code 8) (name /bobuino1/D11_MOSI)
(node (ref R11) (pin 2))
(node (ref U5) (pin 3))
(node (ref SHIELD1) (pin 11))
(node (ref P2) (pin 4))
(node (ref U1) (pin 1)))
(net (code 9) (name /bobuino1/D10_SS)
(node (ref SHIELD1) (pin 10))
(node (ref R13) (pin 2))
(node (ref U5) (pin 7))
(node (ref U1) (pin 44)))
(net (code 10) (name /bobuino1/D9)
(node (ref SHIELD1) (pin 9))
(node (ref U1) (pin 15)))
(net (code 11) (name /bobuino1/D8)
(node (ref SHIELD1) (pin 8))
(node (ref U1) (pin 14)))
(net (code 12) (name /bobuino1/D7)
(node (ref SHIELD1) (pin 7))
(node (ref U1) (pin 43)))
(net (code 13) (name /bobuino1/D6)
(node (ref U1) (pin 42))
(node (ref SHIELD1) (pin 6)))
(net (code 14) (name /bobuino1/D5)
(node (ref U1) (pin 41))
(node (ref SHIELD1) (pin 5)))
(net (code 15) (name /bobuino1/D4)
(node (ref U1) (pin 40))
(node (ref SHIELD1) (pin 4)))
(net (code 16) (name /bobuino1/D2_RX1)
(node (ref U1) (pin 11))
(node (ref SHIELD1) (pin 2))
(node (ref R8) (pin 2)))
(net (code 17) (name /bobuino1/D1_TX0)
(node (ref U1) (pin 10))
(node (ref R2) (pin 1))
(node (ref R4) (pin 1))
(node (ref SHIELD1) (pin 1)))
(net (code 18) (name /bobuino1/D0_RX0)
(node (ref U1) (pin 9))
(node (ref R1) (pin 1))
(node (ref SHIELD1) (pin 0)))
(net (code 19) (name /bobuino1/RST)
(node (ref D5) (pin 2))
(node (ref SHIELD1) (pin RST))
(node (ref R6) (pin 2))
(node (ref C6) (pin 1))
(node (ref Reset1) (pin 2))
(node (ref U1) (pin 4))
(node (ref P2) (pin 5)))
(net (code 20) (name /bobuino1/A0)
(node (ref SHIELD1) (pin AD0))
(node (ref U1) (pin 30)))
(net (code 21) (name /bobuino1/A1)
(node (ref U1) (pin 31))
(node (ref SHIELD1) (pin AD1)))
(net (code 22) (name /bobuino1/A2)
(node (ref U1) (pin 32))
(node (ref SHIELD1) (pin AD2)))
(net (code 23) (name /bobuino1/D23_SDA)
(node (ref SHIELD1) (pin SDA))
(node (ref U1) (pin 20)))
(net (code 24) (name "Net-(D1-Pad1)")
(node (ref D1) (pin 1))
(node (ref R4) (pin 2)))
(net (code 25) (name "Net-(D2-Pad1)")
(node (ref D2) (pin 1))
(node (ref R3) (pin 2)))
(net (code 26) (name "Net-(D3-Pad2)")
(node (ref D3) (pin 2))
(node (ref R5) (pin 2)))
(net (code 27) (name /bobuino1/DTR)
(node (ref U2) (pin 13))
(node (ref C6) (pin 2)))
(net (code 28) (name "Net-(P3-Pad6)")
(node (ref P3) (pin 6)))
(net (code 29) (name "Net-(SHIELD1-PadNC)")
(node (ref SHIELD1) (pin NC)))
(net (code 30) (name "Net-(??1-Pad8)")
(node (ref ??1) (pin 8)))
(net (code 31) (name "Net-(??1-Pad1)")
(node (ref ??1) (pin 1)))
(net (code 32) (name "Net-(U2-Pad15)")
(node (ref U2) (pin 15)))
(net (code 33) (name "Net-(U2-Pad9)")
(node (ref U2) (pin 9)))
(net (code 34) (name "Net-(U2-Pad10)")
(node (ref U2) (pin 10)))
(net (code 35) (name "Net-(U2-Pad11)")
(node (ref U2) (pin 11)))
(net (code 36) (name "Net-(U2-Pad12)")
(node (ref U2) (pin 12)))
(net (code 37) (name "Net-(U2-Pad14)")
(node (ref U2) (pin 14)))
(net (code 38) (name "Net-(CON1-Pad4)")
(node (ref CON1) (pin 4)))
(net (code 39) (name "Net-(P3-Pad3)")
(node (ref P3) (pin 3)))
(net (code 40) (name "Net-(P3-Pad5)")
(node (ref P3) (pin 5)))
(net (code 41) (name "Net-(SHIELD1-PadV_IN)")
(node (ref SHIELD1) (pin V_IN)))
(net (code 42) (name /bobuino1/A7)
(node (ref U1) (pin 37))
(node (ref P4) (pin 3)))
(net (code 43) (name /bobuino1/A6)
(node (ref U1) (pin 36))
(node (ref S1) (pin 5)))
(net (code 44) (name +5V)
(node (ref R12) (pin 1))
(node (ref R11) (pin 1))
(node (ref SHIELD1) (pin 5V))
(node (ref SHIELD1) (pin IORE))
(node (ref D4) (pin 1))
(node (ref U2) (pin 16))
(node (ref U1) (pin 17))
(node (ref U1) (pin 27))
(node (ref U1) (pin 38))
(node (ref U1) (pin 5))
(node (ref C15) (pin 1))
(node (ref R14) (pin 1))
(node (ref R13) (pin 1))
(node (ref R6) (pin 1))
(node (ref C10) (pin 1))
(node (ref U3) (pin 3))
(node (ref U4) (pin 3))
(node (ref D1) (pin 2))
(node (ref D2) (pin 2))
(node (ref C12) (pin 1))
(node (ref C8) (pin 1))
(node (ref C14) (pin 1))
(node (ref P4) (pin 2))
(node (ref C13) (pin 1))
(node (ref P2) (pin 2))
(node (ref D5) (pin 1))
(node (ref P5) (pin 3)))
(net (code 45) (name /bobuino1/D31)
(node (ref U1) (pin 16))
(node (ref Q1) (pin 1))
(node (ref R16) (pin 1)))
(net (code 46) (name "Net-(Q1-Pad3)")
(node (ref R15) (pin 1))
(node (ref R17) (pin 2))
(node (ref Q1) (pin 3)))
(net (code 47) (name "Net-(P1-PadLED)")
(node (ref R15) (pin 2))
(node (ref P1) (pin LED)))
(net (code 48) (name /bobuino1/D25)
(node (ref U1) (pin 22))
(node (ref S1) (pin 2)))
(net (code 49) (name /bobuino1/D27)
(node (ref U1) (pin 24))
(node (ref ??1) (pin 9)))
(net (code 50) (name /bobuino1/D28)
(node (ref U5) (pin 9))
(node (ref R14) (pin 2))
(node (ref U1) (pin 25)))
(net (code 51) (name /bobuino1/D29)
(node (ref U1) (pin 26))
(node (ref U5) (pin 11)))
(net (code 52) (name /bobuino1/D30)
(node (ref U5) (pin 14))
(node (ref U1) (pin 13)))
(net (code 53) (name /bobuino1/D24)
(node (ref S1) (pin 3))
(node (ref U1) (pin 21)))
(net (code 54) (name /bobuino1/D22_SCL)
(node (ref U1) (pin 19))
(node (ref SHIELD1) (pin SCL)))
(net (code 55) (name "Net-(CON1-Pad2)")
(node (ref CON1) (pin 2))
(node (ref U2) (pin 6)))
(net (code 56) (name "Net-(CON1-Pad1)")
(node (ref F1) (pin 1))
(node (ref CON1) (pin 1)))
(net (code 57) (name /bobuino1/D26)
(node (ref U1) (pin 23))
(node (ref P5) (pin 2)))
(net (code 58) (name /bobuino1/AREF)
(node (ref U1) (pin 29))
(node (ref C7) (pin 1))
(node (ref SHIELD1) (pin AREF)))
(net (code 59) (name "Net-(R10-Pad1)")
(node (ref R10) (pin 1))
(node (ref R9) (pin 2)))
(net (code 60) (name "Net-(??1-Pad3)")
(node (ref P1) (pin DIN))
(node (ref ??1) (pin 3))
(node (ref U5) (pin 2)))
(net (code 61) (name "Net-(??1-Pad5)")
(node (ref ??1) (pin 5))
(node (ref P1) (pin CLK))
(node (ref U5) (pin 4)))