-
Notifications
You must be signed in to change notification settings - Fork 0
/
dc26.net
9829 lines (9829 loc) · 347 KB
/
dc26.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/mike/source/monero-badge-2018/dc26.sch)
(date "Wed 06 Jun 2018 20:52:52 SAST")
(tool "Eeschema 4.0.6+dfsg1-1")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title)
(company)
(rev)
(date)
(source dc26.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 2) (name "/Power Converter/") (tstamps /5B2CE45B/)
(title_block
(title "Power Converter")
(company)
(rev)
(date)
(source power-converter.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 3) (name "/MPU 6000/") (tstamps /5B2EE5C9/)
(title_block
(title)
(company)
(rev)
(date)
(source mpu6000.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 4) (name /USB/) (tstamps /5B30D6FC/)
(title_block
(title)
(company)
(rev)
(date)
(source USB.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 5) (name "/RGB leds/") (tstamps /5B37849F/)
(title_block
(title)
(company)
(rev)
(date)
(source rgb-leds.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 6) (name /batteries/) (tstamps /5B2B9E1E/)
(title_block
(title Batteries)
(company)
(rev)
(date)
(source batteries.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 7) (name /IR/) (tstamps /5B143D97/)
(title_block
(title)
(company)
(rev)
(date)
(source IR.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref B_SHIFT_2)
(value 74LS165)
(footprint Housings_SSOP:TSSOP-16_4.4x5mm_Pitch0.65mm)
(libsource (lib 74xx) (part 74LS165))
(sheetpath (names /) (tstamps /))
(tstamp 5ACD8894))
(comp (ref B_L1)
(value SW_Push)
(footprint Buttons_Switches_SMD:SW_SPST_EVQQ2)
(libsource (lib switches) (part SW_Push))
(sheetpath (names /) (tstamps /))
(tstamp 5AD0109B))
(comp (ref B_L2)
(value SW_Push)
(footprint Buttons_Switches_SMD:SW_SPST_EVQQ2)
(libsource (lib switches) (part SW_Push))
(sheetpath (names /) (tstamps /))
(tstamp 5AD01D09))
(comp (ref B_L3)
(value SW_Push)
(footprint Buttons_Switches_SMD:SW_SPST_EVQQ2)
(libsource (lib switches) (part SW_Push))
(sheetpath (names /) (tstamps /))
(tstamp 5AD026C3))
(comp (ref B_L4)
(value SW_Push)
(footprint Buttons_Switches_SMD:SW_SPST_EVQQ2)
(libsource (lib switches) (part SW_Push))
(sheetpath (names /) (tstamps /))
(tstamp 5AD026C9))
(comp (ref B_R1)
(value SW_Push)
(footprint Buttons_Switches_SMD:SW_SPST_EVQQ2)
(libsource (lib switches) (part SW_Push))
(sheetpath (names /) (tstamps /))
(tstamp 5AD0311F))
(comp (ref B_R2)
(value SW_Push)
(footprint Buttons_Switches_SMD:SW_SPST_EVQQ2)
(libsource (lib switches) (part SW_Push))
(sheetpath (names /) (tstamps /))
(tstamp 5AD03125))
(comp (ref B_R3)
(value SW_Push)
(footprint Buttons_Switches_SMD:SW_SPST_EVQQ2)
(libsource (lib switches) (part SW_Push))
(sheetpath (names /) (tstamps /))
(tstamp 5AD0312B))
(comp (ref B_R4)
(value SW_Push)
(footprint Buttons_Switches_SMD:SW_SPST_EVQQ2)
(libsource (lib switches) (part SW_Push))
(sheetpath (names /) (tstamps /))
(tstamp 5AD03131))
(comp (ref B_START1)
(value SW_Push)
(footprint Buttons_Switches_SMD:SW_SPST_EVQQ2)
(libsource (lib switches) (part SW_Push))
(sheetpath (names /) (tstamps /))
(tstamp 5AD08197))
(comp (ref B_SELECT1)
(value SW_Push)
(footprint Buttons_Switches_SMD:SW_SPST_EVQQ2)
(libsource (lib switches) (part SW_Push))
(sheetpath (names /) (tstamps /))
(tstamp 5AD0819D))
(comp (ref R4)
(value 10k)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5AD1B49D))
(comp (ref R5)
(value 10k)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5AD1D491))
(comp (ref R6)
(value 10k)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5AD1DE63))
(comp (ref R7)
(value 10k)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5AD1DE69))
(comp (ref R8)
(value 10k)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5AD1E8F7))
(comp (ref R9)
(value 10k)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5AD1E8FD))
(comp (ref R10)
(value 10k)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5AD1E903))
(comp (ref R11)
(value 10k)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5AD1E909))
(comp (ref R12)
(value 10k)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5AD1F33F))
(comp (ref R13)
(value 10k)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5AD1F345))
(comp (ref STM32F405)
(value STM32F405RGTx)
(footprint Housings_QFP:LQFP-64_10x10mm_Pitch0.5mm)
(libsource (lib stm32) (part STM32F405RGTx))
(sheetpath (names /) (tstamps /))
(tstamp 5B04ADF4))
(comp (ref C25)
(value 22pF)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5B0E4F68))
(comp (ref C24)
(value 22pF)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5B0EA4C9))
(comp (ref C27)
(value 2u2)
(footprint Capacitors_SMD:C_0805)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5B0F0674))
(comp (ref C26)
(value 2u2)
(footprint Capacitors_SMD:C_0805)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5B0F0E4F))
(comp (ref C31)
(value 0.1pF)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5B0F893C))
(comp (ref C30)
(value 0.1pF)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5B0FBB5D))
(comp (ref C28)
(value 0.1pF)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5B0FEB02))
(comp (ref C29)
(value 0.1pF)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5B0FF2D8))
(comp (ref R15)
(value 10k)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5B11A261))
(comp (ref SW_RESET1)
(value SW_SPST)
(footprint Buttons_Switches_SMD:SW_SPST_EVQPE1)
(libsource (lib switches) (part SW_SPST))
(sheetpath (names /) (tstamps /))
(tstamp 5B124F65))
(comp (ref R14)
(value 10k)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5B13141A))
(comp (ref SW_BOOT0)
(value SW_SPST)
(footprint Buttons_Switches_SMD:SW_SPST_EVQPE1)
(libsource (lib switches) (part SW_SPST))
(sheetpath (names /) (tstamps /))
(tstamp 5B134E7B))
(comp (ref SWDCLK1)
(value PGM-SWDCLK)
(footprint Measurement_Points:Measurement_Point_Round-SMD-Pad_Small)
(libsource (lib device) (part TEST))
(sheetpath (names /) (tstamps /))
(tstamp 5B1B5199))
(comp (ref SWDIO1)
(value PGM-SWDIO)
(footprint Measurement_Points:Measurement_Point_Round-SMD-Pad_Small)
(libsource (lib device) (part TEST))
(sheetpath (names /) (tstamps /))
(tstamp 5B1B59E8))
(comp (ref PGND1)
(value PGM-GND)
(footprint Measurement_Points:Measurement_Point_Round-SMD-Pad_Small)
(libsource (lib device) (part TEST))
(sheetpath (names /) (tstamps /))
(tstamp 5B1B6C72))
(comp (ref NRST1)
(value NRST)
(footprint Measurement_Points:Measurement_Point_Round-SMD-Pad_Small)
(libsource (lib device) (part TEST))
(sheetpath (names /) (tstamps /))
(tstamp 5B1CE2A2))
(comp (ref BT0)
(value BOOT0)
(footprint Measurement_Points:Measurement_Point_Round-SMD-Pad_Small)
(libsource (lib device) (part TEST))
(sheetpath (names /) (tstamps /))
(tstamp 5B1D1428))
(comp (ref C32)
(value 0.1pF)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5B1E126A))
(comp (ref BLD1)
(value BTN-LD)
(footprint Measurement_Points:Measurement_Point_Round-SMD-Pad_Small)
(libsource (lib device) (part TEST))
(sheetpath (names /) (tstamps /))
(tstamp 5B100C70))
(comp (ref BCLK1)
(value BTN-CLK)
(footprint Measurement_Points:Measurement_Point_Round-SMD-Pad_Small)
(libsource (lib device) (part TEST))
(sheetpath (names /) (tstamps /))
(tstamp 5B101294))
(comp (ref BDATA1)
(value BTN-DATA)
(footprint Measurement_Points:Measurement_Point_Round-SMD-Pad_Small)
(libsource (lib device) (part TEST))
(sheetpath (names /) (tstamps /))
(tstamp 5B101492))
(comp (ref BGND2)
(value BTN-GND)
(footprint Measurement_Points:Measurement_Point_Round-SMD-Pad_Small)
(libsource (lib device) (part TEST))
(sheetpath (names /) (tstamps /))
(tstamp 5B105815))
(comp (ref Y1)
(value Crystal)
(footprint Crystals:Crystal_SMD_5032-2pin_5.0x3.2mm)
(libsource (lib device) (part Crystal))
(sheetpath (names /) (tstamps /))
(tstamp 5B113127))
(comp (ref B_SHIFT_1)
(value 74LS165)
(footprint Housings_SSOP:TSSOP-16_4.4x5mm_Pitch0.65mm)
(libsource (lib 74xx) (part 74LS165))
(sheetpath (names /) (tstamps /))
(tstamp 5ACD7519))
(comp (ref PC0)
(value PC0)
(footprint Measurement_Points:Measurement_Point_Round-SMD-Pad_Small)
(libsource (lib device) (part TEST))
(sheetpath (names /) (tstamps /))
(tstamp 5B18C803))
(comp (ref PC1)
(value PC1)
(footprint Measurement_Points:Measurement_Point_Round-SMD-Pad_Small)
(libsource (lib device) (part TEST))
(sheetpath (names /) (tstamps /))
(tstamp 5B18CBEF))
(comp (ref PC2)
(value PC2)
(footprint Measurement_Points:Measurement_Point_Round-SMD-Pad_Small)
(libsource (lib device) (part TEST))
(sheetpath (names /) (tstamps /))
(tstamp 5B18CDDE))
(comp (ref PC3)
(value PC3)
(footprint Measurement_Points:Measurement_Point_Round-SMD-Pad_Small)
(libsource (lib device) (part TEST))
(sheetpath (names /) (tstamps /))
(tstamp 5B18CFCB))
(comp (ref PC4)
(value PC4)
(footprint Measurement_Points:Measurement_Point_Round-SMD-Pad_Small)
(libsource (lib device) (part TEST))
(sheetpath (names /) (tstamps /))
(tstamp 5B18D66C))
(comp (ref PC5)
(value PC5)
(footprint Measurement_Points:Measurement_Point_Round-SMD-Pad_Small)
(libsource (lib device) (part TEST))
(sheetpath (names /) (tstamps /))
(tstamp 5B18D71D))
(comp (ref PC6)
(value PC6)
(footprint Measurement_Points:Measurement_Point_Round-SMD-Pad_Small)
(libsource (lib device) (part TEST))
(sheetpath (names /) (tstamps /))
(tstamp 5B18D7D1))
(comp (ref PC7)
(value PC7)
(footprint Measurement_Points:Measurement_Point_Round-SMD-Pad_Small)
(libsource (lib device) (part TEST))
(sheetpath (names /) (tstamps /))
(tstamp 5B18D888))
(comp (ref PC8)
(value PC8)
(footprint Measurement_Points:Measurement_Point_Round-SMD-Pad_Small)
(libsource (lib device) (part TEST))
(sheetpath (names /) (tstamps /))
(tstamp 5B18EA2E))
(comp (ref IRTXF1)
(value IRTXF)
(footprint Measurement_Points:Measurement_Point_Round-SMD-Pad_Small)
(libsource (lib device) (part TEST))
(sheetpath (names /) (tstamps /))
(tstamp 5B18EC54))
(comp (ref IRRXF1)
(value IRRXF)
(footprint Measurement_Points:Measurement_Point_Round-SMD-Pad_Small)
(libsource (lib device) (part TEST))
(sheetpath (names /) (tstamps /))
(tstamp 5B18ED19))
(comp (ref VBAT-DIV1)
(value 5k-10k)
(footprint TO_SOT_Packages_SMD:SOT-23)
(libsource (lib device) (part Voltage_Divider))
(sheetpath (names /) (tstamps /))
(tstamp 5B15AEF3))
(comp (ref C2)
(value 0.1uF)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5B15C038))
(comp (ref BATT-BUCK1)
(value LM2596S-5)
(footprint TO_SOT_Packages_SMD:TO-263-5_TabPin3)
(libsource (lib dc-dc) (part LM2596S-5))
(sheetpath (names "/Power Converter/") (tstamps /5B2CE45B/))
(tstamp 5B2D2C26))
(comp (ref SW_PWRON1)
(value SW_SPST)
(footprint Buttons_Switches_SMD:SW_SPST_EVQPE1)
(libsource (lib switches) (part SW_SPST))
(sheetpath (names "/Power Converter/") (tstamps /5B2CE45B/))
(tstamp 5B2D2C2D))
(comp (ref BATT-BUCK-INDUC1)
(value 44uH)
(footprint DR74-330-R:INDM7676X435N)
(libsource (lib device) (part L))
(sheetpath (names "/Power Converter/") (tstamps /5B2CE45B/))
(tstamp 5B2D2C3C))
(comp (ref BATT-BUCK-COUT1)
(value 220uF)
(footprint Capacitors_SMD:CP_Elec_10x10.5)
(libsource (lib device) (part CP))
(sheetpath (names "/Power Converter/") (tstamps /5B2CE45B/))
(tstamp 5B2D2C5C))
(comp (ref BATT-BUCK-CIN1)
(value 100uF)
(footprint Capacitors_SMD:CP_Elec_10x10.5)
(libsource (lib device) (part CP))
(sheetpath (names "/Power Converter/") (tstamps /5B2CE45B/))
(tstamp 5B2D2C71))
(comp (ref BATT-BUCK-PULLUP1)
(value 10k)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R_Small))
(sheetpath (names "/Power Converter/") (tstamps /5B2CE45B/))
(tstamp 5B2D2C80))
(comp (ref JBBEN1)
(value BUCK-EN)
(footprint Connect:GS2)
(libsource (lib conn) (part GS2))
(sheetpath (names "/Power Converter/") (tstamps /5B2CE45B/))
(tstamp 5B2D2C8C))
(comp (ref BBEN1)
(value BUCK-EN)
(footprint Measurement_Points:Measurement_Point_Round-SMD-Pad_Small)
(libsource (lib device) (part TEST))
(sheetpath (names "/Power Converter/") (tstamps /5B2CE45B/))
(tstamp 5B2D2C9C))
(comp (ref BIN1)
(value BT-IN)
(footprint Measurement_Points:Measurement_Point_Round-SMD-Pad_Small)
(libsource (lib device) (part TEST))
(sheetpath (names "/Power Converter/") (tstamps /5B2CE45B/))
(tstamp 5B2D2CAC))
(comp (ref BGND1)
(value BT-GND)
(footprint Measurement_Points:Measurement_Point_Round-SMD-Pad_Small)
(libsource (lib device) (part TEST))
(sheetpath (names "/Power Converter/") (tstamps /5B2CE45B/))
(tstamp 5B2D2CB5))
(comp (ref REG_3V3)
(value TC1262-33VDB)
(footprint TO_SOT_Packages_SMD:SOT-223)
(libsource (lib regul) (part TC1262-33VDB))
(sheetpath (names "/Power Converter/") (tstamps /5B2CE45B/))
(tstamp 5B2DAE2F))
(comp (ref R17)
(value 470R)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R))
(sheetpath (names "/Power Converter/") (tstamps /5B2CE45B/))
(tstamp 5B2DAE48))
(comp (ref PWR_3V3)
(value LED)
(footprint LEDs:LED_0603)
(libsource (lib device) (part LED))
(sheetpath (names "/Power Converter/") (tstamps /5B2CE45B/))
(tstamp 5B2DAE55))
(comp (ref C33)
(value 4u7)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part CP1))
(sheetpath (names "/Power Converter/") (tstamps /5B2CE45B/))
(tstamp 5B2DAE5C))
(comp (ref C34)
(value 4u7)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part CP1))
(sheetpath (names "/Power Converter/") (tstamps /5B2CE45B/))
(tstamp 5B2DAE63))
(comp (ref BATT-BUCK-SCHOTT1)
(value D_Schottky)
(footprint digikey-footprints:DO-214AB)
(libsource (lib device) (part D_Schottky))
(sheetpath (names "/Power Converter/") (tstamps /5B2CE45B/))
(tstamp 5B10C288))
(comp (ref R20)
(value 470R)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R))
(sheetpath (names "/Power Converter/") (tstamps /5B2CE45B/))
(tstamp 5B16EDFC))
(comp (ref PWR_5V1)
(value LED)
(footprint LEDs:LED_0603)
(libsource (lib device) (part LED))
(sheetpath (names "/Power Converter/") (tstamps /5B2CE45B/))
(tstamp 5B16EE08))
(comp (ref MPU6000)
(value MPU-6000)
(footprint Housings_DFN_QFN:QFN-24_4x4mm_Pitch0.5mm)
(libsource (lib sensors) (part MPU-6000))
(sheetpath (names "/MPU 6000/") (tstamps /5B2EE5C9/))
(tstamp 5B2F4E9F))
(comp (ref C37)
(value 0.1uF)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C_Small))
(sheetpath (names "/MPU 6000/") (tstamps /5B2EE5C9/))
(tstamp 5B360DDD))
(comp (ref C38)
(value 10nF)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C_Small))
(sheetpath (names "/MPU 6000/") (tstamps /5B2EE5C9/))
(tstamp 5B360E5E))
(comp (ref C36)
(value 10nF)
(footprint Capacitors_SMD:C_0603)
(libsource (lib device) (part C_Small))
(sheetpath (names "/MPU 6000/") (tstamps /5B2EE5C9/))
(tstamp 5B361055))
(comp (ref MCS1)
(value M-CS)
(footprint Measurement_Points:Measurement_Point_Round-SMD-Pad_Small)
(libsource (lib device) (part TEST))
(sheetpath (names "/MPU 6000/") (tstamps /5B2EE5C9/))
(tstamp 5B3F20EC))
(comp (ref MSCLK1)
(value M-SCLK)
(footprint Measurement_Points:Measurement_Point_Round-SMD-Pad_Small)
(libsource (lib device) (part TEST))
(sheetpath (names "/MPU 6000/") (tstamps /5B2EE5C9/))
(tstamp 5B3F20FE))
(comp (ref MMISO1)
(value M-MISO)
(footprint Measurement_Points:Measurement_Point_Round-SMD-Pad_Small)
(libsource (lib device) (part TEST))
(sheetpath (names "/MPU 6000/") (tstamps /5B2EE5C9/))
(tstamp 5B3F2136))
(comp (ref MMOSI1)
(value M-MOSI)
(footprint Measurement_Points:Measurement_Point_Round-SMD-Pad_Small)
(libsource (lib device) (part TEST))
(sheetpath (names "/MPU 6000/") (tstamps /5B2EE5C9/))
(tstamp 5B3F216D))
(comp (ref MINT1)
(value M-INT1)
(footprint Measurement_Points:Measurement_Point_Round-SMD-Pad_Small)
(libsource (lib device) (part TEST))
(sheetpath (names "/MPU 6000/") (tstamps /5B2EE5C9/))
(tstamp 5B3F2199))
(comp (ref F405_USB1)
(value USB_OTG)
(footprint digikey-footprints:USB_Micro_B_Female_10118192)
(libsource (lib conn) (part USB_OTG))
(sheetpath (names /USB/) (tstamps /5B30D6FC/))
(tstamp 5B312B3B))
(comp (ref R18)
(value 22)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R_Small))
(sheetpath (names /USB/) (tstamps /5B30D6FC/))
(tstamp 5B312B42))
(comp (ref R19)
(value 22)
(footprint Resistors_SMD:R_0603)
(libsource (lib device) (part R_Small))
(sheetpath (names /USB/) (tstamps /5B30D6FC/))
(tstamp 5B312B49))
(comp (ref C35)
(value 4U7)
(footprint Capacitors_Tantalum_SMD:CP_Tantalum_Case-A_EIA-3216-18_Reflow)
(libsource (lib device) (part CP1))
(sheetpath (names /USB/) (tstamps /5B30D6FC/))
(tstamp 5B312B50))
(comp (ref UID1)
(value USB-ID)
(footprint Measurement_Points:Measurement_Point_Round-SMD-Pad_Small)
(libsource (lib device) (part TEST))
(sheetpath (names /USB/) (tstamps /5B30D6FC/))
(tstamp 5B312B63))
(comp (ref JUID1)
(value USB-ID)
(footprint Connect:GS2)
(libsource (lib conn) (part GS2))
(sheetpath (names /USB/) (tstamps /5B30D6FC/))
(tstamp 5B312B6A))
(comp (ref JUVCC1)
(value USB-VCC)
(footprint Connect:GS2)
(libsource (lib conn) (part GS2))
(sheetpath (names /USB/) (tstamps /5B30D6FC/))
(tstamp 5B312B71))
(comp (ref D1)
(value APA102)
(footprint gsg-modules:APA102-2020)
(libsource (lib gsg-symbols) (part APA102))
(sheetpath (names "/RGB leds/") (tstamps /5B37849F/))
(tstamp 5B3B9CB7))
(comp (ref D25)
(value APA102)
(footprint gsg-modules:APA102-2020)
(libsource (lib gsg-symbols) (part APA102))
(sheetpath (names "/RGB leds/") (tstamps /5B37849F/))
(tstamp 5B3B9CCA))
(comp (ref D49)
(value APA102)
(footprint gsg-modules:APA102-2020)
(libsource (lib gsg-symbols) (part APA102))
(sheetpath (names "/RGB leds/") (tstamps /5B37849F/))
(tstamp 5B3B9CDD))
(comp (ref D73)
(value APA102)
(footprint gsg-modules:APA102-2020)
(libsource (lib gsg-symbols) (part APA102))
(sheetpath (names "/RGB leds/") (tstamps /5B37849F/))
(tstamp 5B3B9CF0))
(comp (ref D97)
(value APA102)
(footprint gsg-modules:APA102-2020)
(libsource (lib gsg-symbols) (part APA102))
(sheetpath (names "/RGB leds/") (tstamps /5B37849F/))
(tstamp 5B3B9D03))
(comp (ref D121)
(value APA102)
(footprint gsg-modules:APA102-2020)
(libsource (lib gsg-symbols) (part APA102))
(sheetpath (names "/RGB leds/") (tstamps /5B37849F/))
(tstamp 5B3B9D16))
(comp (ref D145)
(value APA102)
(footprint gsg-modules:APA102-2020)
(libsource (lib gsg-symbols) (part APA102))
(sheetpath (names "/RGB leds/") (tstamps /5B37849F/))
(tstamp 5B3B9D29))
(comp (ref D169)
(value APA102)
(footprint gsg-modules:APA102-2020)
(libsource (lib gsg-symbols) (part APA102))
(sheetpath (names "/RGB leds/") (tstamps /5B37849F/))
(tstamp 5B3B9D3C))
(comp (ref D193)
(value APA102)
(footprint gsg-modules:APA102-2020)
(libsource (lib gsg-symbols) (part APA102))
(sheetpath (names "/RGB leds/") (tstamps /5B37849F/))
(tstamp 5B3B9D4F))
(comp (ref D217)
(value APA102)
(footprint gsg-modules:APA102-2020)
(libsource (lib gsg-symbols) (part APA102))
(sheetpath (names "/RGB leds/") (tstamps /5B37849F/))
(tstamp 5B3B9D62))
(comp (ref D241)
(value APA102)
(footprint gsg-modules:APA102-2020)
(libsource (lib gsg-symbols) (part APA102))
(sheetpath (names "/RGB leds/") (tstamps /5B37849F/))
(tstamp 5B3B9D75))
(comp (ref D265)
(value APA102)
(footprint gsg-modules:APA102-2020)
(libsource (lib gsg-symbols) (part APA102))
(sheetpath (names "/RGB leds/") (tstamps /5B37849F/))
(tstamp 5B3B9D88))
(comp (ref D289)
(value APA102)
(footprint gsg-modules:APA102-2020)
(libsource (lib gsg-symbols) (part APA102))
(sheetpath (names "/RGB leds/") (tstamps /5B37849F/))
(tstamp 5B3B9D9B))
(comp (ref D313)
(value APA102)
(footprint gsg-modules:APA102-2020)
(libsource (lib gsg-symbols) (part APA102))
(sheetpath (names "/RGB leds/") (tstamps /5B37849F/))
(tstamp 5B3B9DAE))
(comp (ref D337)
(value APA102)
(footprint gsg-modules:APA102-2020)
(libsource (lib gsg-symbols) (part APA102))
(sheetpath (names "/RGB leds/") (tstamps /5B37849F/))
(tstamp 5B3B9DC1))
(comp (ref D361)
(value APA102)
(footprint gsg-modules:APA102-2020)
(libsource (lib gsg-symbols) (part APA102))
(sheetpath (names "/RGB leds/") (tstamps /5B37849F/))
(tstamp 5B3B9DD4))
(comp (ref D385)
(value APA102)
(footprint gsg-modules:APA102-2020)
(libsource (lib gsg-symbols) (part APA102))
(sheetpath (names "/RGB leds/") (tstamps /5B37849F/))
(tstamp 5B3B9DE7))
(comp (ref D409)
(value APA102)
(footprint gsg-modules:APA102-2020)
(libsource (lib gsg-symbols) (part APA102))
(sheetpath (names "/RGB leds/") (tstamps /5B37849F/))
(tstamp 5B3B9DFA))
(comp (ref D433)
(value APA102)
(footprint gsg-modules:APA102-2020)
(libsource (lib gsg-symbols) (part APA102))
(sheetpath (names "/RGB leds/") (tstamps /5B37849F/))
(tstamp 5B3B9E0D))
(comp (ref D457)
(value APA102)
(footprint gsg-modules:APA102-2020)
(libsource (lib gsg-symbols) (part APA102))
(sheetpath (names "/RGB leds/") (tstamps /5B37849F/))
(tstamp 5B3B9E20))
(comp (ref D481)
(value APA102)
(footprint gsg-modules:APA102-2020)
(libsource (lib gsg-symbols) (part APA102))
(sheetpath (names "/RGB leds/") (tstamps /5B37849F/))
(tstamp 5B3B9E33))
(comp (ref D505)
(value APA102)
(footprint gsg-modules:APA102-2020)
(libsource (lib gsg-symbols) (part APA102))
(sheetpath (names "/RGB leds/") (tstamps /5B37849F/))
(tstamp 5B3B9E46))
(comp (ref D529)
(value APA102)
(footprint gsg-modules:APA102-2020)
(libsource (lib gsg-symbols) (part APA102))
(sheetpath (names "/RGB leds/") (tstamps /5B37849F/))
(tstamp 5B3B9E59))
(comp (ref D553)
(value APA102)
(footprint gsg-modules:APA102-2020)
(libsource (lib gsg-symbols) (part APA102))
(sheetpath (names "/RGB leds/") (tstamps /5B37849F/))
(tstamp 5B3B9E6C))
(comp (ref D2)
(value APA102)
(footprint gsg-modules:APA102-2020)
(libsource (lib gsg-symbols) (part APA102))
(sheetpath (names "/RGB leds/") (tstamps /5B37849F/))
(tstamp 5B3B9E7F))
(comp (ref D26)
(value APA102)
(footprint gsg-modules:APA102-2020)
(libsource (lib gsg-symbols) (part APA102))
(sheetpath (names "/RGB leds/") (tstamps /5B37849F/))
(tstamp 5B3B9E92))
(comp (ref D50)
(value APA102)
(footprint gsg-modules:APA102-2020)
(libsource (lib gsg-symbols) (part APA102))
(sheetpath (names "/RGB leds/") (tstamps /5B37849F/))
(tstamp 5B3B9EA5))
(comp (ref D74)
(value APA102)
(footprint gsg-modules:APA102-2020)
(libsource (lib gsg-symbols) (part APA102))
(sheetpath (names "/RGB leds/") (tstamps /5B37849F/))
(tstamp 5B3B9EB8))
(comp (ref D98)
(value APA102)
(footprint gsg-modules:APA102-2020)
(libsource (lib gsg-symbols) (part APA102))
(sheetpath (names "/RGB leds/") (tstamps /5B37849F/))
(tstamp 5B3B9ECB))
(comp (ref D122)
(value APA102)
(footprint gsg-modules:APA102-2020)
(libsource (lib gsg-symbols) (part APA102))
(sheetpath (names "/RGB leds/") (tstamps /5B37849F/))
(tstamp 5B3B9EDE))
(comp (ref D146)
(value APA102)
(footprint gsg-modules:APA102-2020)
(libsource (lib gsg-symbols) (part APA102))
(sheetpath (names "/RGB leds/") (tstamps /5B37849F/))
(tstamp 5B3B9EF1))
(comp (ref D170)
(value APA102)
(footprint gsg-modules:APA102-2020)
(libsource (lib gsg-symbols) (part APA102))
(sheetpath (names "/RGB leds/") (tstamps /5B37849F/))
(tstamp 5B3B9F04))
(comp (ref D194)
(value APA102)
(footprint gsg-modules:APA102-2020)
(libsource (lib gsg-symbols) (part APA102))
(sheetpath (names "/RGB leds/") (tstamps /5B37849F/))
(tstamp 5B3B9F17))
(comp (ref D218)
(value APA102)
(footprint gsg-modules:APA102-2020)
(libsource (lib gsg-symbols) (part APA102))
(sheetpath (names "/RGB leds/") (tstamps /5B37849F/))
(tstamp 5B3B9F2A))
(comp (ref D242)
(value APA102)
(footprint gsg-modules:APA102-2020)
(libsource (lib gsg-symbols) (part APA102))
(sheetpath (names "/RGB leds/") (tstamps /5B37849F/))
(tstamp 5B3B9F3D))
(comp (ref D266)
(value APA102)
(footprint gsg-modules:APA102-2020)
(libsource (lib gsg-symbols) (part APA102))
(sheetpath (names "/RGB leds/") (tstamps /5B37849F/))
(tstamp 5B3B9F50))
(comp (ref D290)
(value APA102)
(footprint gsg-modules:APA102-2020)
(libsource (lib gsg-symbols) (part APA102))
(sheetpath (names "/RGB leds/") (tstamps /5B37849F/))
(tstamp 5B3B9F63))
(comp (ref D314)
(value APA102)
(footprint gsg-modules:APA102-2020)
(libsource (lib gsg-symbols) (part APA102))
(sheetpath (names "/RGB leds/") (tstamps /5B37849F/))
(tstamp 5B3B9F76))
(comp (ref D338)
(value APA102)
(footprint gsg-modules:APA102-2020)
(libsource (lib gsg-symbols) (part APA102))
(sheetpath (names "/RGB leds/") (tstamps /5B37849F/))
(tstamp 5B3B9F89))
(comp (ref D362)
(value APA102)
(footprint gsg-modules:APA102-2020)
(libsource (lib gsg-symbols) (part APA102))
(sheetpath (names "/RGB leds/") (tstamps /5B37849F/))
(tstamp 5B3B9F9C))
(comp (ref D386)
(value APA102)
(footprint gsg-modules:APA102-2020)
(libsource (lib gsg-symbols) (part APA102))
(sheetpath (names "/RGB leds/") (tstamps /5B37849F/))
(tstamp 5B3B9FAF))
(comp (ref D410)
(value APA102)
(footprint gsg-modules:APA102-2020)
(libsource (lib gsg-symbols) (part APA102))
(sheetpath (names "/RGB leds/") (tstamps /5B37849F/))
(tstamp 5B3B9FC2))
(comp (ref D434)
(value APA102)
(footprint gsg-modules:APA102-2020)
(libsource (lib gsg-symbols) (part APA102))
(sheetpath (names "/RGB leds/") (tstamps /5B37849F/))
(tstamp 5B3B9FD5))
(comp (ref D458)
(value APA102)
(footprint gsg-modules:APA102-2020)
(libsource (lib gsg-symbols) (part APA102))
(sheetpath (names "/RGB leds/") (tstamps /5B37849F/))
(tstamp 5B3B9FE8))
(comp (ref D482)
(value APA102)
(footprint gsg-modules:APA102-2020)
(libsource (lib gsg-symbols) (part APA102))
(sheetpath (names "/RGB leds/") (tstamps /5B37849F/))
(tstamp 5B3B9FFB))
(comp (ref D506)
(value APA102)
(footprint gsg-modules:APA102-2020)
(libsource (lib gsg-symbols) (part APA102))
(sheetpath (names "/RGB leds/") (tstamps /5B37849F/))
(tstamp 5B3BA00E))
(comp (ref D530)
(value APA102)
(footprint gsg-modules:APA102-2020)
(libsource (lib gsg-symbols) (part APA102))
(sheetpath (names "/RGB leds/") (tstamps /5B37849F/))
(tstamp 5B3BA021))
(comp (ref D554)
(value APA102)
(footprint gsg-modules:APA102-2020)
(libsource (lib gsg-symbols) (part APA102))
(sheetpath (names "/RGB leds/") (tstamps /5B37849F/))
(tstamp 5B3BA034))
(comp (ref D3)
(value APA102)
(footprint gsg-modules:APA102-2020)
(libsource (lib gsg-symbols) (part APA102))
(sheetpath (names "/RGB leds/") (tstamps /5B37849F/))
(tstamp 5B3BA047))
(comp (ref D27)
(value APA102)
(footprint gsg-modules:APA102-2020)
(libsource (lib gsg-symbols) (part APA102))
(sheetpath (names "/RGB leds/") (tstamps /5B37849F/))
(tstamp 5B3BA05A))
(comp (ref D51)
(value APA102)
(footprint gsg-modules:APA102-2020)
(libsource (lib gsg-symbols) (part APA102))
(sheetpath (names "/RGB leds/") (tstamps /5B37849F/))
(tstamp 5B3BA06D))
(comp (ref D75)
(value APA102)
(footprint gsg-modules:APA102-2020)
(libsource (lib gsg-symbols) (part APA102))
(sheetpath (names "/RGB leds/") (tstamps /5B37849F/))
(tstamp 5B3BA080))
(comp (ref D99)
(value APA102)
(footprint gsg-modules:APA102-2020)
(libsource (lib gsg-symbols) (part APA102))
(sheetpath (names "/RGB leds/") (tstamps /5B37849F/))
(tstamp 5B3BA093))
(comp (ref D123)
(value APA102)
(footprint gsg-modules:APA102-2020)
(libsource (lib gsg-symbols) (part APA102))
(sheetpath (names "/RGB leds/") (tstamps /5B37849F/))
(tstamp 5B3BA0A6))
(comp (ref D147)
(value APA102)
(footprint gsg-modules:APA102-2020)
(libsource (lib gsg-symbols) (part APA102))
(sheetpath (names "/RGB leds/") (tstamps /5B37849F/))
(tstamp 5B3BA0B9))
(comp (ref D171)
(value APA102)
(footprint gsg-modules:APA102-2020)
(libsource (lib gsg-symbols) (part APA102))
(sheetpath (names "/RGB leds/") (tstamps /5B37849F/))
(tstamp 5B3BA0CC))
(comp (ref D195)
(value APA102)
(footprint gsg-modules:APA102-2020)
(libsource (lib gsg-symbols) (part APA102))
(sheetpath (names "/RGB leds/") (tstamps /5B37849F/))
(tstamp 5B3BA0DF))
(comp (ref D219)
(value APA102)
(footprint gsg-modules:APA102-2020)
(libsource (lib gsg-symbols) (part APA102))
(sheetpath (names "/RGB leds/") (tstamps /5B37849F/))
(tstamp 5B3BA0F2))
(comp (ref D243)
(value APA102)
(footprint gsg-modules:APA102-2020)
(libsource (lib gsg-symbols) (part APA102))
(sheetpath (names "/RGB leds/") (tstamps /5B37849F/))
(tstamp 5B3BA105))
(comp (ref D267)
(value APA102)
(footprint gsg-modules:APA102-2020)
(libsource (lib gsg-symbols) (part APA102))
(sheetpath (names "/RGB leds/") (tstamps /5B37849F/))