-
Notifications
You must be signed in to change notification settings - Fork 96
/
RBoard.net
1567 lines (1567 loc) · 59 KB
/
RBoard.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 C:\Users\phili\OneDrive\Electrical\JLCPCB\RBoard\RBoard.sch)
(date "11/11/2020 21:41:04")
(tool "Eeschema (5.1.7)-1")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title)
(company)
(rev)
(date)
(source RBoard.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 2) (name /Power/) (tstamps /5F83BB42/)
(title_block
(title)
(company)
(rev)
(date)
(source Power.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 3) (name /Microcontroller/) (tstamps /5F83BC83/)
(title_block
(title)
(company)
(rev)
(date)
(source MCU.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 4) (name /Sensors/) (tstamps /5F83C004/)
(title_block
(title)
(company)
(rev)
(date)
(source Sensors.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 5) (name /Connectors/) (tstamps /5F83C1A4/)
(title_block
(title)
(company)
(rev)
(date)
(source Connectors.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref H1)
(value MountingHole)
(footprint MountingHole:MountingHole_3.2mm_M3)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole) (description "Mounting Hole without connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5FB1AA99))
(comp (ref H2)
(value MountingHole)
(footprint MountingHole:MountingHole_3.2mm_M3)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole) (description "Mounting Hole without connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5FB1AE5C))
(comp (ref H3)
(value MountingHole)
(footprint MountingHole:MountingHole_3.2mm_M3)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole) (description "Mounting Hole without connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5FB1B3B8))
(comp (ref H4)
(value MountingHole)
(footprint MountingHole:MountingHole_3.2mm_M3)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole) (description "Mounting Hole without connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5FB1B9E2))
(comp (ref F100)
(value 250mA)
(footprint Fuse:Fuse_1206_3216Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C70068))
(libsource (lib Device) (part Polyfuse_Small) (description "Resettable fuse, polymeric positive temperature coefficient, small symbol"))
(sheetpath (names /Power/) (tstamps /5F83BB42/))
(tstamp 5FA2BE0D))
(comp (ref Q100)
(value AO3401A)
(footprint Package_TO_SOT_SMD:SOT-23)
(datasheet http://www.aosmd.com/pdfs/datasheet/AO3401A.pdf)
(fields
(field (name "LCSC Part #") C15127))
(libsource (lib Transistor_FET) (part AO3401A) (description "-4.0A Id, -30V Vds, P-Channel MOSFET, SOT-23"))
(sheetpath (names /Power/) (tstamps /5F83BB42/))
(tstamp 5FA2CCBC))
(comp (ref D100)
(value B5819W)
(footprint Diode_SMD:D_SOD-123)
(datasheet ~)
(fields
(field (name "LCSC Part #") C8598))
(libsource (lib Device) (part D_Schottky_Small) (description "Schottky diode, small symbol"))
(sheetpath (names /Power/) (tstamps /5F83BB42/))
(tstamp 5FA2FF8B))
(comp (ref FB100)
(value "600 @ 600 MHz")
(footprint Inductor_SMD:L_0805_2012Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C1017))
(libsource (lib Device) (part Ferrite_Bead_Small) (description "Ferrite bead, small symbol"))
(sheetpath (names /Power/) (tstamps /5F83BB42/))
(tstamp 5FA32FCD))
(comp (ref C100)
(value 10u)
(footprint Capacitor_SMD:C_1206_3216Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C13585))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /Power/) (tstamps /5F83BB42/))
(tstamp 5FA34021))
(comp (ref U100)
(value MP2359DJ-LF-Z)
(footprint Package_TO_SOT_SMD:SOT-23-6)
(fields
(field (name "LCSC Part #") C14259))
(libsource (lib MP2359) (part MP2359DJ-LF-Z) (description ""))
(sheetpath (names /Power/) (tstamps /5F83BB42/))
(tstamp 5FA36C92))
(comp (ref R100)
(value 100k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C25803))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /Power/) (tstamps /5F83BB42/))
(tstamp 5FA38596))
(comp (ref R101)
(value 68k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C23231))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /Power/) (tstamps /5F83BB42/))
(tstamp 5FA38B29))
(comp (ref D101)
(value B5819W)
(footprint Diode_SMD:D_SOD-123)
(datasheet ~)
(fields
(field (name "LCSC Part #") C8598))
(libsource (lib Device) (part D_Schottky_Small) (description "Schottky diode, small symbol"))
(sheetpath (names /Power/) (tstamps /5F83BB42/))
(tstamp 5FA3A147))
(comp (ref C101)
(value 10n)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C57112))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /Power/) (tstamps /5F83BB42/))
(tstamp 5FA3AE3A))
(comp (ref L101)
(value 10u)
(footprint Inductor_SMD:L_Sunlord_MWSA0518_5.4x5.2mm)
(datasheet ~)
(fields
(field (name "LCSC Part #") C139506))
(libsource (lib Device) (part L_Small) (description "Inductor, small symbol"))
(sheetpath (names /Power/) (tstamps /5F83BB42/))
(tstamp 5FA3C9ED))
(comp (ref C102)
(value 10u)
(footprint Capacitor_SMD:C_1206_3216Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C13585))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /Power/) (tstamps /5F83BB42/))
(tstamp 5FA3D87E))
(comp (ref C103)
(value 10u)
(footprint Capacitor_SMD:C_1206_3216Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C13585))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /Power/) (tstamps /5F83BB42/))
(tstamp 5FA3DFA7))
(comp (ref R102)
(value 47k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C25819))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /Power/) (tstamps /5F83BB42/))
(tstamp 5FA3ED5D))
(comp (ref R103)
(value 15k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C22809))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /Power/) (tstamps /5F83BB42/))
(tstamp 5FA41DAB))
(comp (ref R104)
(value 270)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C22966))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /Power/) (tstamps /5F83BB42/))
(tstamp 5FA43B20))
(comp (ref D102)
(value GREEN)
(footprint LED_SMD:LED_0603_1608Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C72043))
(libsource (lib Device) (part LED_Small) (description "Light emitting diode, small symbol"))
(sheetpath (names /Power/) (tstamps /5F83BB42/))
(tstamp 5FA490DC))
(comp (ref R105)
(value 1k5)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C22843))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /Power/) (tstamps /5F83BB42/))
(tstamp 5FA4A941))
(comp (ref U200)
(value STM32F405RGT6)
(footprint Package_QFP:LQFP-64_10x10mm_P0.5mm)
(datasheet http://www.st.com/st-web-ui/static/active/en/resource/technical/document/datasheet/DM00037051.pdf)
(fields
(field (name "LCSC Part #") C15742))
(libsource (lib MCU_ST_STM32F4) (part STM32F405RGTx) (description "ARM Cortex-M4 MCU, 1024KB flash, 128KB RAM, 168MHz, 1.8-3.6V, 51 GPIO, LQFP-64"))
(sheetpath (names /Microcontroller/) (tstamps /5F83BC83/))
(tstamp 5F88A5CF))
(comp (ref U201)
(value W25N01GVZEIG)
(footprint WinbondFlash:W25N01GVZEIG)
(fields
(field (name "LCSC Part #") C88868))
(libsource (lib RBoard-rescue) (part W25N01GVZEIG-SchmillipKiCADLibrary) (description ""))
(sheetpath (names /Microcontroller/) (tstamps /5F83BC83/))
(tstamp 5F88A5D5))
(comp (ref R209)
(value 10k)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C25744))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /Microcontroller/) (tstamps /5F83BC83/))
(tstamp 5F88A5EF))
(comp (ref R210)
(value 10k)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C25744))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /Microcontroller/) (tstamps /5F83BC83/))
(tstamp 5F88A5F5))
(comp (ref C213)
(value 100n)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C1525))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /Microcontroller/) (tstamps /5F83BC83/))
(tstamp 5F88A613))
(comp (ref C209)
(value 2u2)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C23630))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /Microcontroller/) (tstamps /5F83BC83/))
(tstamp 5F88A64E))
(comp (ref C208)
(value 2u2)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C23630))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /Microcontroller/) (tstamps /5F83BC83/))
(tstamp 5F88A654))
(comp (ref C200)
(value 4u7)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C19666))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /Microcontroller/) (tstamps /5F83BC83/))
(tstamp 5F88A670))
(comp (ref C201)
(value 100n)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C1525))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /Microcontroller/) (tstamps /5F83BC83/))
(tstamp 5F88A676))
(comp (ref C202)
(value 100n)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C1525))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /Microcontroller/) (tstamps /5F83BC83/))
(tstamp 5F88A67C))
(comp (ref C203)
(value 100n)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C1525))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /Microcontroller/) (tstamps /5F83BC83/))
(tstamp 5F88A682))
(comp (ref C204)
(value 100n)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C1525))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /Microcontroller/) (tstamps /5F83BC83/))
(tstamp 5F88A688))
(comp (ref C205)
(value 100n)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C1525))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /Microcontroller/) (tstamps /5F83BC83/))
(tstamp 5F88A68E))
(comp (ref FB200)
(value "600 @ 600 MHz")
(footprint Inductor_SMD:L_0805_2012Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C1017))
(libsource (lib Device) (part Ferrite_Bead_Small) (description "Ferrite bead, small symbol"))
(sheetpath (names /Microcontroller/) (tstamps /5F83BC83/))
(tstamp 5F88A6C2))
(comp (ref C206)
(value 1u)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C52923))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /Microcontroller/) (tstamps /5F83BC83/))
(tstamp 5F88A6D0))
(comp (ref C207)
(value 10n)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C15195))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /Microcontroller/) (tstamps /5F83BC83/))
(tstamp 5F88A6D8))
(comp (ref Y200)
(value 16MHz)
(footprint Crystal:Crystal_SMD_3225-4Pin_3.2x2.5mm)
(datasheet ~)
(fields
(field (name "LCSC Part #") C13738))
(libsource (lib Device) (part Crystal_GND24_Small) (description "Four pin crystal, GND on pins 2 and 4, small symbol"))
(sheetpath (names /Microcontroller/) (tstamps /5F83BC83/))
(tstamp 5F88A6EC))
(comp (ref R200)
(value 47)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C25118))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /Microcontroller/) (tstamps /5F83BC83/))
(tstamp 5F88A6F2))
(comp (ref C211)
(value 12p)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C1547))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /Microcontroller/) (tstamps /5F83BC83/))
(tstamp 5F88A6FA))
(comp (ref C210)
(value 12p)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C1547))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /Microcontroller/) (tstamps /5F83BC83/))
(tstamp 5F88A700))
(comp (ref R203)
(value 10k)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C25744))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /Microcontroller/) (tstamps /5F83BC83/))
(tstamp 5F88A745))
(comp (ref SW200)
(value SW_SPDT)
(footprint Button_Switch_SMD:SW_SPDT_PCM12)
(datasheet ~)
(libsource (lib Switch) (part SW_SPDT) (description "Switch, single pole double throw"))
(sheetpath (names /Microcontroller/) (tstamps /5F83BC83/))
(tstamp 5F88A756))
(comp (ref R201)
(value 10k)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C25744))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /Microcontroller/) (tstamps /5F83BC83/))
(tstamp 5F88A75C))
(comp (ref D200)
(value RED)
(footprint LED_SMD:LED_0603_1608Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C2286))
(libsource (lib Device) (part LED_Small) (description "Light emitting diode, small symbol"))
(sheetpath (names /Microcontroller/) (tstamps /5F83BC83/))
(tstamp 5F88A774))
(comp (ref R202)
(value 1k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C21190))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /Microcontroller/) (tstamps /5F83BC83/))
(tstamp 5F88A77E))
(comp (ref D201)
(value 19-237/R6GHBHC-A01/2T)
(footprint RGB_LED:19-237-R6GHBHC-A01-2T)
(datasheet ~)
(fields
(field (name "LCSC Part #") C60105))
(libsource (lib Device) (part LED_RGBA) (description "RGB LED, red/green/blue/anode"))
(sheetpath (names /Microcontroller/) (tstamps /5F83BC83/))
(tstamp 5F88A7A4))
(comp (ref R206)
(value 1k)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C11702))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /Microcontroller/) (tstamps /5F83BC83/))
(tstamp 5F88A7B2))
(comp (ref R207)
(value 1k)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C11702))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /Microcontroller/) (tstamps /5F83BC83/))
(tstamp 5F88A7B8))
(comp (ref R208)
(value 1k)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C11702))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /Microcontroller/) (tstamps /5F83BC83/))
(tstamp 5F88A7BE))
(comp (ref R204)
(value 2k2)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C25879))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /Microcontroller/) (tstamps /5F83BC83/))
(tstamp 5FA0C180))
(comp (ref R205)
(value 2k2)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C25879))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /Microcontroller/) (tstamps /5F83BC83/))
(tstamp 5FA0F979))
(comp (ref C212)
(value 100n)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C1525))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /Microcontroller/) (tstamps /5F83BC83/))
(tstamp 5FAD76A7))
(comp (ref U300)
(value BMP280)
(footprint Package_LGA:Bosch_LGA-8_2x2.5mm_P0.65mm_ClockwisePinNumbering)
(datasheet https://ae-bst.resource.bosch.com/media/_tech/media/datasheets/BST-BMP280-DS001.pdf)
(fields
(field (name "LCSC Part #") C233787))
(libsource (lib Sensor_Pressure) (part BMP280) (description "Absolute Barometric Pressure Sensor, LGA-8"))
(sheetpath (names /Sensors/) (tstamps /5F83C004/))
(tstamp 5F8494F2))
(comp (ref C300)
(value 100n)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C1525))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /Sensors/) (tstamps /5F83C004/))
(tstamp 5F849512))
(comp (ref C301)
(value 100n)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C1525))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /Sensors/) (tstamps /5F83C004/))
(tstamp 5F849524))
(comp (ref U301)
(value BMI088)
(footprint BMI088:BMI088)
(fields
(field (name "LCSC Part #") C194919))
(libsource (lib BMI088) (part BMI088) (description ""))
(sheetpath (names /Sensors/) (tstamps /5F83C004/))
(tstamp 5F859412))
(comp (ref C302)
(value 100n)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C1525))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /Sensors/) (tstamps /5F83C004/))
(tstamp 5F85941F))
(comp (ref C303)
(value 100n)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C1525))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /Sensors/) (tstamps /5F83C004/))
(tstamp 5F859431))
(comp (ref J403)
(value Conn_01x04)
(footprint Connector_Molex:Molex_PicoBlade_53048-0410_1x04_P1.25mm_Horizontal)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x04) (description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /Connectors/) (tstamps /5F83C1A4/))
(tstamp 5F9B7819))
(comp (ref R404)
(value 22)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C25092))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /Connectors/) (tstamps /5F83C1A4/))
(tstamp 5F9BBE2C))
(comp (ref R405)
(value 22)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C25092))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /Connectors/) (tstamps /5F83C1A4/))
(tstamp 5F9BE62D))
(comp (ref J404)
(value Conn_01x04)
(footprint Connector_Molex:Molex_PicoBlade_53048-0410_1x04_P1.25mm_Horizontal)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x04) (description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /Connectors/) (tstamps /5F83C1A4/))
(tstamp 5F9C271B))
(comp (ref R406)
(value 22)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C25092))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /Connectors/) (tstamps /5F83C1A4/))
(tstamp 5F9C272D))
(comp (ref R407)
(value 22)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C25092))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /Connectors/) (tstamps /5F83C1A4/))
(tstamp 5F9C2733))
(comp (ref J405)
(value Conn_01x04)
(footprint Connector_Molex:Molex_PicoBlade_53048-0410_1x04_P1.25mm_Horizontal)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x04) (description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /Connectors/) (tstamps /5F83C1A4/))
(tstamp 5F9C9C48))
(comp (ref R408)
(value 22)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C25092))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /Connectors/) (tstamps /5F83C1A4/))
(tstamp 5F9C9C5A))
(comp (ref R409)
(value 22)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C25092))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /Connectors/) (tstamps /5F83C1A4/))
(tstamp 5F9C9C60))
(comp (ref J406)
(value Conn_01x04)
(footprint Connector_Molex:Molex_PicoBlade_53048-0410_1x04_P1.25mm_Horizontal)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x04) (description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /Connectors/) (tstamps /5F83C1A4/))
(tstamp 5F9CA8B0))
(comp (ref R410)
(value 22)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C25092))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /Connectors/) (tstamps /5F83C1A4/))
(tstamp 5F9CA8C2))
(comp (ref R411)
(value 22)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C25092))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /Connectors/) (tstamps /5F83C1A4/))
(tstamp 5F9CA8C8))
(comp (ref J407)
(value Conn_01x04)
(footprint Connector_Molex:Molex_PicoBlade_53048-0410_1x04_P1.25mm_Horizontal)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x04) (description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /Connectors/) (tstamps /5F83C1A4/))
(tstamp 5F9D7211))
(comp (ref R412)
(value 22)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C25092))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /Connectors/) (tstamps /5F83C1A4/))
(tstamp 5F9D7223))
(comp (ref R413)
(value 22)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C25092))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /Connectors/) (tstamps /5F83C1A4/))
(tstamp 5F9D7229))
(comp (ref J408)
(value Conn_01x04)
(footprint Connector_Molex:Molex_PicoBlade_53048-0410_1x04_P1.25mm_Horizontal)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x04) (description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /Connectors/) (tstamps /5F83C1A4/))
(tstamp 5F9DE1D7))
(comp (ref R414)
(value 22)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C25092))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /Connectors/) (tstamps /5F83C1A4/))
(tstamp 5F9DE1E9))
(comp (ref R415)
(value 22)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C25092))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /Connectors/) (tstamps /5F83C1A4/))
(tstamp 5F9DE1EF))
(comp (ref J401)
(value SWD)
(footprint Connector_PinHeader_1.27mm:PinHeader_2x05_P1.27mm_Vertical_SMD)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_02x05_Odd_Even) (description "Generic connector, double row, 02x05, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /Connectors/) (tstamps /5F83C1A4/))
(tstamp 5F9E5195))
(comp (ref R400)
(value 22)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C25092))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /Connectors/) (tstamps /5F83C1A4/))
(tstamp 5F9E5DB6))
(comp (ref R401)
(value 22)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C25092))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /Connectors/) (tstamps /5F83C1A4/))
(tstamp 5F9E6B3C))
(comp (ref R402)
(value 22)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C25092))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /Connectors/) (tstamps /5F83C1A4/))
(tstamp 5F9E8128))
(comp (ref R403)
(value 22)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C25092))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /Connectors/) (tstamps /5F83C1A4/))
(tstamp 5F9E8A2F))
(comp (ref C400)
(value 100n)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name "LCSC Part #") C1525))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /Connectors/) (tstamps /5F83C1A4/))
(tstamp 5F9E9596))
(comp (ref J402)
(value USB_B_Micro)
(footprint Connector_USB:USB_Micro-B_Wuerth_629105150521)
(datasheet ~)
(libsource (lib RBoard-rescue) (part USB_B_Micro-Connector) (description ""))
(sheetpath (names /Connectors/) (tstamps /5F83C1A4/))
(tstamp 5F9F2004))
(comp (ref J400)
(value Conn_01x02)
(footprint Connector_Molex:Molex_PicoBlade_53048-0210_1x02_P1.25mm_Horizontal)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x02) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /Connectors/) (tstamps /5F83C1A4/))
(tstamp 5F9FA5B6)))
(libparts
(libpart (lib BMI088) (part BMI088)
(fields
(field (name Reference) U)
(field (name Value) BMI088))
(pins
(pin (num 1) (name INT2) (type output))
(pin (num 2) (name NC) (type unspc))
(pin (num 3) (name VDD) (type power_in))
(pin (num 4) (name GNDA) (type power_in))
(pin (num 5) (name CSB2) (type input))
(pin (num 6) (name GNDIO) (type power_in))
(pin (num 7) (name PS) (type input))
(pin (num 8) (name SCK) (type input))
(pin (num 9) (name SDI) (type input))
(pin (num 10) (name SDO2) (type output))
(pin (num 11) (name VDDIO) (type power_in))
(pin (num 12) (name INT3) (type output))
(pin (num 13) (name INT4) (type output))
(pin (num 14) (name CSB1) (type input))
(pin (num 15) (name SDO1) (type output))
(pin (num 16) (name INT1) (type output))))
(libpart (lib Connector_Generic) (part Conn_01x02)
(description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x02))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))))
(libpart (lib Connector_Generic) (part Conn_01x04)
(description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x04))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))
(pin (num 4) (name Pin_4) (type passive))))
(libpart (lib Connector_Generic) (part Conn_02x05_Odd_Even)
(description "Generic connector, double row, 02x05, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_2x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_02x05_Odd_Even))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))
(pin (num 4) (name Pin_4) (type passive))
(pin (num 5) (name Pin_5) (type passive))
(pin (num 6) (name Pin_6) (type passive))
(pin (num 7) (name Pin_7) (type passive))
(pin (num 8) (name Pin_8) (type passive))
(pin (num 9) (name Pin_9) (type passive))
(pin (num 10) (name Pin_10) (type passive))))
(libpart (lib Device) (part C_Small)
(description "Unpolarized capacitor, small symbol")
(docs ~)
(footprints
(fp C_*))
(fields
(field (name Reference) C)
(field (name Value) C_Small))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Device) (part Crystal_GND24_Small)
(description "Four pin crystal, GND on pins 2 and 4, small symbol")
(docs ~)
(footprints
(fp Crystal*))
(fields
(field (name Reference) Y)
(field (name Value) Crystal_GND24_Small))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))
(pin (num 3) (name 3) (type passive))
(pin (num 4) (name 4) (type passive))))
(libpart (lib Device) (part D_Schottky_Small)
(description "Schottky diode, small symbol")
(docs ~)
(footprints
(fp TO-???*)
(fp *_Diode_*)
(fp *SingleDiode*)
(fp D_*))
(fields
(field (name Reference) D)
(field (name Value) D_Schottky_Small))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib Device) (part Ferrite_Bead_Small)
(description "Ferrite bead, small symbol")
(docs ~)
(footprints
(fp Inductor_*)
(fp L_*)
(fp *Ferrite*))
(fields
(field (name Reference) FB)
(field (name Value) Ferrite_Bead_Small))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Device) (part LED_RGBA)
(description "RGB LED, red/green/blue/anode")
(docs ~)
(footprints
(fp LED*)
(fp LED_SMD:*)
(fp LED_THT:*))
(fields
(field (name Reference) D)
(field (name Value) LED_RGBA))
(pins
(pin (num 1) (name RK) (type passive))
(pin (num 2) (name GK) (type passive))
(pin (num 3) (name BK) (type passive))
(pin (num 4) (name A) (type passive))))
(libpart (lib Device) (part LED_Small)
(description "Light emitting diode, small symbol")
(docs ~)
(footprints
(fp LED*)
(fp LED_SMD:*)
(fp LED_THT:*))
(fields
(field (name Reference) D)
(field (name Value) LED_Small))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib Device) (part L_Small)
(description "Inductor, small symbol")
(docs ~)
(footprints
(fp Choke_*)
(fp *Coil*)
(fp Inductor_*)
(fp L_*))
(fields
(field (name Reference) L)
(field (name Value) L_Small))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Device) (part Polyfuse_Small)
(description "Resettable fuse, polymeric positive temperature coefficient, small symbol")
(docs ~)
(footprints
(fp *polyfuse*)
(fp *PTC*))
(fields
(field (name Reference) F)
(field (name Value) Polyfuse_Small))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Device) (part R_Small)
(description "Resistor, small symbol")
(docs ~)
(footprints
(fp R_*))
(fields
(field (name Reference) R)
(field (name Value) R_Small))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib MCU_ST_STM32F4) (part STM32F405RGTx)
(description "ARM Cortex-M4 MCU, 1024KB flash, 128KB RAM, 168MHz, 1.8-3.6V, 51 GPIO, LQFP-64")
(docs http://www.st.com/st-web-ui/static/active/en/resource/technical/document/datasheet/DM00037051.pdf)
(footprints
(fp LQFP*10x10mm*P0.5mm*))
(fields
(field (name Reference) U)
(field (name Value) STM32F405RGTx)
(field (name Footprint) Package_QFP:LQFP-64_10x10mm_P0.5mm))
(pins
(pin (num 1) (name VBAT) (type power_in))
(pin (num 2) (name PC13) (type BiDi))
(pin (num 3) (name PC14) (type BiDi))
(pin (num 4) (name PC15) (type BiDi))
(pin (num 5) (name PH0) (type input))