-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRatibroombroom.net
1946 lines (1946 loc) · 71.4 KB
/
Ratibroombroom.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\Toshiba\Downloads\Ratibroombroom-feature-routing\Ratibroombroom-feature-routing\Ratibroombroom.sch)
(date "17/10/2020 11:56:13")
(tool "Eeschema (5.1.5)-3")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title)
(company)
(rev)
(date)
(source Ratibroombroom.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref C1)
(value 1u)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(fields
(field (name MFR) 0603B105K100CT))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5E1CC763))
(comp (ref C2)
(value 1u)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(fields
(field (name MFR) 0603B105K100CT))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5E1CCAC4))
(comp (ref R3)
(value 10k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name MFR) CR0603FA1002G))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E1DE3D0))
(comp (ref D1)
(value LED)
(footprint LED_SMD:LED_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5E1DE863))
(comp (ref J1)
(value Conn_01x02_Male)
(footprint Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical)
(datasheet ~)
(fields
(field (name MFR) "B2B-XH-A(LF)(SN)"))
(libsource (lib Connector) (part Conn_01x02_Male) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E1E00CF))
(comp (ref R1)
(value 47k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name MFR) WR06X2612FTL))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E1E234D))
(comp (ref R2)
(value 26.1k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name MFR) WR06X2612FTL))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E1E2714))
(comp (ref U1)
(value AZ1117-3.3)
(footprint Package_TO_SOT_SMD:SOT-223-3_TabPin2)
(datasheet https://www.diodes.com/assets/Datasheets/AZ1117.pdf)
(fields
(field (name MFR) AZ1117H-3.3TRE1))
(libsource (lib Regulator_Linear) (part AZ1117-3.3) (description "1A 20V Fixed LDO Linear Regulator, 3.3V, SOT-89/SOT-223/TO-220/TO-252/TO-263"))
(sheetpath (names /) (tstamps /))
(tstamp 5E1F32A7))
(comp (ref Q5)
(value PT12-21B/TR8)
(footprint Ratibroombroom:PT12-21B-TR8)
(datasheet ~)
(fields
(field (name MFR) PT12-21B/TR8))
(libsource (lib Device) (part Q_Photo_NPN_EC) (description "NPN phototransistor, emitter/collector"))
(sheetpath (names /) (tstamps /))
(tstamp 5E207189))
(comp (ref R7)
(value 20K)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name MFR) RK73H1JTTD2002F))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E205A86))
(comp (ref C3)
(value 1u)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(fields
(field (name MFR) 0603B105K100CT))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5E2B8E76))
(comp (ref R6)
(value 47R)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name MFR) CR0603FA47R0G))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E2ADFAA))
(comp (ref R4)
(value 100)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name MFR) WR06X1000FTL))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E23A17B))
(comp (ref R5)
(value 100k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name MFR) CR0603FA1003G))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E239C5D))
(comp (ref Q1)
(value IRLML6344)
(footprint Package_TO_SOT_SMD:SOT-23)
(datasheet ~)
(fields
(field (name MFR) IRLML6344TRPBF))
(libsource (lib Device) (part Q_NMOS_GSD) (description "N-MOSFET transistor, gate/source/drain"))
(sheetpath (names /) (tstamps /))
(tstamp 5E2366B7))
(comp (ref D2)
(value SFH4045N)
(footprint Ratibroombroom:SFH4045N)
(datasheet ~)
(fields
(field (name MFR) SFH4045N))
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5E2356F0))
(comp (ref Q6)
(value PT12-21B/TR8)
(footprint Ratibroombroom:PT12-21B-TR8)
(datasheet ~)
(fields
(field (name MFR) PT12-21B/TR8))
(libsource (lib Device) (part Q_Photo_NPN_EC) (description "NPN phototransistor, emitter/collector"))
(sheetpath (names /) (tstamps /))
(tstamp 5E2EA5D0))
(comp (ref R11)
(value 20K)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name MFR) RK73H1JTTD2002F))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E2EA5F0))
(comp (ref C4)
(value 1u)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(fields
(field (name MFR) 0603B105K100CT))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5E2EA613))
(comp (ref R10)
(value 47R)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name MFR) CR0603FA47R0G))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E2EA627))
(comp (ref R8)
(value 100)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name MFR) WR06X1000FTL))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E2EA644))
(comp (ref R9)
(value 100k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name MFR) CR0603FA1003G))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E2EA64E))
(comp (ref Q2)
(value IRLML6344)
(footprint Package_TO_SOT_SMD:SOT-23)
(datasheet ~)
(fields
(field (name MFR) IRLML6344TRPBF))
(libsource (lib Device) (part Q_NMOS_GSD) (description "N-MOSFET transistor, gate/source/drain"))
(sheetpath (names /) (tstamps /))
(tstamp 5E2EA658))
(comp (ref D3)
(value SFH4045N)
(footprint Ratibroombroom:SFH4045N)
(datasheet ~)
(fields
(field (name MFR) SFH4045N))
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5E2EA662))
(comp (ref Q7)
(value PT12-21B/TR8)
(footprint Ratibroombroom:PT12-21B-TR8)
(datasheet ~)
(fields
(field (name MFR) PT12-21B/TR8))
(libsource (lib Device) (part Q_Photo_NPN_EC) (description "NPN phototransistor, emitter/collector"))
(sheetpath (names /) (tstamps /))
(tstamp 5E3044A2))
(comp (ref R15)
(value 20K)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name MFR) RK73H1JTTD2002F))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E3044C2))
(comp (ref C5)
(value 1u)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(fields
(field (name MFR) 0603B105K100CT))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5E3044E6))
(comp (ref R14)
(value 47R)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name MFR) CR0603FA47R0G))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E3044FA))
(comp (ref R12)
(value 100)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name MFR) WR06X1000FTL))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E304517))
(comp (ref R13)
(value 100k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name MFR) CR0603FA1003G))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E304521))
(comp (ref Q3)
(value IRLML6344)
(footprint Package_TO_SOT_SMD:SOT-23)
(datasheet ~)
(fields
(field (name MFR) IRLML6344TRPBF))
(libsource (lib Device) (part Q_NMOS_GSD) (description "N-MOSFET transistor, gate/source/drain"))
(sheetpath (names /) (tstamps /))
(tstamp 5E30452B))
(comp (ref D4)
(value SFH4045N)
(footprint Ratibroombroom:SFH4045N)
(datasheet ~)
(fields
(field (name MFR) SFH4045N))
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5E304535))
(comp (ref Q8)
(value PT12-21B/TR8)
(footprint Ratibroombroom:PT12-21B-TR8)
(datasheet ~)
(fields
(field (name MFR) PT12-21B/TR8))
(libsource (lib Device) (part Q_Photo_NPN_EC) (description "NPN phototransistor, emitter/collector"))
(sheetpath (names /) (tstamps /))
(tstamp 5E304541))
(comp (ref R19)
(value 20K)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name MFR) RK73H1JTTD2002F))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E304561))
(comp (ref C6)
(value 1u)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(fields
(field (name MFR) 0603B105K100CT))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5E304584))
(comp (ref R18)
(value 47R)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name MFR) CR0603FA47R0G))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E304598))
(comp (ref R16)
(value 100)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name MFR) WR06X1000FTL))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E3045B5))
(comp (ref R17)
(value 100k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name MFR) CR0603FA1003G))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E3045BF))
(comp (ref Q4)
(value IRLML6344)
(footprint Package_TO_SOT_SMD:SOT-23)
(datasheet ~)
(fields
(field (name MFR) IRLML6344TRPBF))
(libsource (lib Device) (part Q_NMOS_GSD) (description "N-MOSFET transistor, gate/source/drain"))
(sheetpath (names /) (tstamps /))
(tstamp 5E3045C9))
(comp (ref D5)
(value SFH4045N)
(footprint Ratibroombroom:SFH4045N)
(datasheet ~)
(fields
(field (name MFR) SFH4045N))
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5E3045D3))
(comp (ref C7)
(value 100n)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(fields
(field (name MFR) 0603B104K160CT))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5E394384))
(comp (ref C8)
(value 10u)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(fields
(field (name MFR) 0603X106K100NT))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5E3E861A))
(comp (ref U4)
(value MPU-9250)
(footprint Package_DFN_QFN:QFN-24-1EP_3x3mm_P0.4mm_EP1.75x1.6mm)
(datasheet https://store.invensense.com/datasheets/invensense/MPU9250REV1.0.pdf)
(fields
(field (name MFR) MPU-9250))
(libsource (lib Sensor_Motion) (part MPU-9250) (description "InvenSense 9-Axis Motion Sensor, Accelerometer, Gyroscope, Compass, I2C/SPI"))
(sheetpath (names /) (tstamps /))
(tstamp 5E46651B))
(comp (ref C13)
(value 100n)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(fields
(field (name MFR) 0603B104K160CT))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5E467260))
(comp (ref C11)
(value 10n)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(fields
(field (name MFR) C0603X7R103MDTS))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5E4720DA))
(comp (ref C12)
(value 100n)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(fields
(field (name MFR) 0603B104K160CT))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5E4AA22B))
(comp (ref Q10)
(value S8050)
(footprint Package_TO_SOT_SMD:SOT-23)
(datasheet ~)
(fields
(field (name MFR) S8050-J3Y))
(libsource (lib Device) (part Q_NPN_BEC) (description "NPN transistor, base/emitter/collector"))
(sheetpath (names /) (tstamps /))
(tstamp 5E4C1C50))
(comp (ref BZ1)
(value MLT5020)
(footprint Ratibroombroom:MLT-5020)
(datasheet ~)
(fields
(field (name MFR) MLT-5020))
(libsource (lib Device) (part Buzzer) (description "Buzzer, polarized"))
(sheetpath (names /) (tstamps /))
(tstamp 5E4C2727))
(comp (ref D6)
(value 1N4148)
(footprint Diode_SMD:D_SOD-323)
(datasheet ~)
(fields
(field (name MFR) 1N4148WS))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5E4C3AE6))
(comp (ref R24)
(value 10k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name MFR) CR0603FA1002G))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E4C4F91))
(comp (ref R21)
(value 100)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name MFR) WR06X1000FTL))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E51EE8B))
(comp (ref R22)
(value 10k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name MFR) CR0603FA1002G))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E51EE95))
(comp (ref Q9)
(value IRLML6344)
(footprint Package_TO_SOT_SMD:SOT-23)
(datasheet ~)
(fields
(field (name MFR) IRLML6344TRPBF))
(libsource (lib Device) (part Q_NMOS_GSD) (description "N-MOSFET transistor, gate/source/drain"))
(sheetpath (names /) (tstamps /))
(tstamp 5E51EE9F))
(comp (ref J2)
(value Conn_01x02_Male)
(footprint Ratibroombroom:Pad_SMD_2P_1x3mm)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Male) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E52E427))
(comp (ref D7)
(value LED)
(footprint LED_SMD:LED_0603_1608Metric)
(datasheet ~)
(fields
(field (name MFR) LTW-C193DS5)
(field (name Note) White))
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5E24C25A))
(comp (ref R23)
(value 100)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name MFR) WR06X1000FTL))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E262F25))
(comp (ref D8)
(value LED)
(footprint LED_SMD:LED_0603_1608Metric)
(datasheet ~)
(fields
(field (name MFR) 19-217/R6C-AL1M2VY/3T)
(field (name Note) Red))
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5E26A354))
(comp (ref R25)
(value 100)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name MFR) WR06X1000FTL))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E26A36A))
(comp (ref R26)
(value 100)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name MFR) WR06X1000FTL))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E27113E))
(comp (ref D9)
(value LED)
(footprint LED_SMD:LED_0603_1608Metric)
(datasheet ~)
(fields
(field (name MFR) ORH-G36G)
(field (name Note) Green))
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5E271128))
(comp (ref R27)
(value 100)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name MFR) WR06X1000FTL))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E2895C1))
(comp (ref D10)
(value LED)
(footprint LED_SMD:LED_0603_1608Metric)
(datasheet ~)
(fields
(field (name MFR) 19-217/BHC-ZL1M2RY/3T)
(field (name Note) Blue))
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5E2895CC))
(comp (ref SW2)
(value B3U)
(footprint Button_Switch_SMD:SW_SPST_B3U-1000P)
(datasheet ~)
(fields
(field (name MFR) B3U-1000P))
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5E296CA2))
(comp (ref U5)
(value STM32F405RGTx)
(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 MFR) STM32F405RGT6))
(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 /) (tstamps /))
(tstamp 5E2B81F1))
(comp (ref Y1)
(value 8MHZ)
(footprint Crystal:Crystal_SMD_5032-4Pin_5.0x3.2mm)
(datasheet ~)
(fields
(field (name MFR) XVGCELNANF-8.000))
(libsource (lib Device) (part Crystal_GND24) (description "Four pin crystal, GND on pins 2 and 4"))
(sheetpath (names /) (tstamps /))
(tstamp 5E316544))
(comp (ref C14)
(value 20p)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(fields
(field (name MFR) CL10C200JB8NNNC))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5E318CC6))
(comp (ref C15)
(value 20p)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(fields
(field (name MFR) CL10C200JB8NNNC))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5E31CA45))
(comp (ref C16)
(value 10n)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(fields
(field (name MFR) C0603X7R103MDTS))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5E39B8A7))
(comp (ref C19)
(value 100n)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(fields
(field (name MFR) 0603B104K160CT))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5E4578EB))
(comp (ref C20)
(value 100n)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(fields
(field (name MFR) 0603B104K160CT))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5E69A078))
(comp (ref C21)
(value 1u)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(fields
(field (name MFR) 0603B105K100CT))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5E6A4BF4))
(comp (ref C24)
(value 100n)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(fields
(field (name MFR) 0603B104K160CT))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5E73D223))
(comp (ref C25)
(value 100n)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(fields
(field (name MFR) 0603B104K160CT))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5E74FCAE))
(comp (ref C26)
(value 100n)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(fields
(field (name MFR) 0603B104K160CT))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5E75F3C0))
(comp (ref C17)
(value 2.2u)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(fields
(field (name MFR) CL10B225KP8NNNC))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5E783E82))
(comp (ref C22)
(value 100n)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(fields
(field (name MFR) 0603B104K160CT))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5E7CB8F1))
(comp (ref C23)
(value 4.7u)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(fields
(field (name MFR) 0603B475K100NT))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5E7CB910))
(comp (ref J5)
(value Conn_01x02_Male)
(footprint Ratibroombroom:Pad_SMD_2P_1x3mm)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Male) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5EE36DC1))
(comp (ref J6)
(value Conn_01x02_Male)
(footprint Ratibroombroom:Pad_SMD_2P_1x3mm)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Male) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5EE37AE0))
(comp (ref C18)
(value 2.2u)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(fields
(field (name MFR) CL10B225KP8NNNC))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5E772EEB))
(comp (ref J10)
(value Conn_01x04_Male)
(footprint Ratibroombroom:Pad_SMD_4P_1x1.5mm)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x04_Male) (description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5F4BE547))
(comp (ref J8)
(value Conn_01x04_Male)
(footprint Ratibroombroom:Pad_SMD_4P_1x3mm)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x04_Male) (description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5F5F6BD3))
(comp (ref J9)
(value Conn_01x04_Male)
(footprint Ratibroombroom:Pad_SMD_4P_1x3mm)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x04_Male) (description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5F68027E))
(comp (ref J11)
(value Conn_01x04_Male)
(footprint Ratibroombroom:Pad_SMD_4P_1x1.5mm)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x04_Male) (description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5F6A8701))
(comp (ref SW1)
(value B3U)
(footprint Button_Switch_SMD:SW_SPST_B3U-1000P)
(datasheet ~)
(fields
(field (name MFR) B3U-1000P))
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5E2A0E8E))
(comp (ref C27)
(value 10n)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(fields
(field (name MFR) C0603X7R103MDTS))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5E2A0EA5))
(comp (ref U8)
(value L6932D1.2TR)
(footprint Package_SO:SO-8_5.3x6.2mm_P1.27mm)
(datasheet https://www.st.com/resource/en/datasheet/l6932.pdf)
(fields
(field (name MFR) L6932D1.2TR))
(libsource (lib schematic_sybmols) (part L6932D1.2TR) (description "2A 1.2-5V HIGH PERFORMANCE ULDO LINEAR REGULATOR"))
(sheetpath (names /) (tstamps /))
(tstamp 5E2CC934))
(comp (ref R28)
(value 5.6k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name MFR) RTT035601BTP))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E3A84DB))
(comp (ref R29)
(value 1.8k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name MFR) 0603WAD1801T5E))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E3A916D))
(comp (ref C29)
(value 10u)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(fields
(field (name MFR) 0603X106K100NT))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5E43CEC2))
(comp (ref C28)
(value 10u)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(fields
(field (name MFR) 0603X106K100NT))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5E440B7B))
(comp (ref JP1)
(value Jumper_NC_Dual)
(footprint Jumper:SolderJumper-3_P1.3mm_Open_RoundedPad1.0x1.5mm_NumberLabels)
(datasheet ~)
(libsource (lib Device) (part Jumper_NC_Dual) (description "Dual jumper, normally closed"))
(sheetpath (names /) (tstamps /))
(tstamp 5E52620C))
(comp (ref U9)
(value L6932D1.2TR)
(footprint Package_SO:SO-8_5.3x6.2mm_P1.27mm)
(datasheet https://www.st.com/resource/en/datasheet/l6932.pdf)
(fields
(field (name MFR) L6932D1.2TR))
(libsource (lib schematic_sybmols) (part L6932D1.2TR) (description "2A 1.2-5V HIGH PERFORMANCE ULDO LINEAR REGULATOR"))
(sheetpath (names /) (tstamps /))
(tstamp 5E5C6DB4))
(comp (ref R30)
(value 5.6k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name MFR) RTT035601BTP))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E5C6DE0))
(comp (ref R31)
(value 1.8k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name MFR) 0603WAD1801T5E))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E5C6DEA))
(comp (ref C31)
(value 10u)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(fields
(field (name MFR) 0603X106K100NT))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5E5C6E08))
(comp (ref C30)
(value 10u)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(fields
(field (name MFR) 0603X106K100NT))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5E5C6E12))
(comp (ref JP2)
(value Jumper_NC_Dual)
(footprint Jumper:SolderJumper-3_P1.3mm_Open_RoundedPad1.0x1.5mm_NumberLabels)
(datasheet ~)
(libsource (lib Device) (part Jumper_NC_Dual) (description "Dual jumper, normally closed"))
(sheetpath (names /) (tstamps /))
(tstamp 5E5C6E3B))
(comp (ref C9)
(value 100n)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(fields
(field (name MFR) 0603B104K160CT))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5EF3C438))
(comp (ref C10)
(value 10u)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(fields
(field (name MFR) 0603X106K100NT))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5EF3C457))
(comp (ref R33)
(value 10k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name MFR) CR0603FA1002G))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E2DCD69))
(comp (ref R32)
(value 10k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name MFR) CR0603FA1002G))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E2DCFAB))
(comp (ref Q11)
(value IRF7416PbF)
(footprint Package_SO:SO-8_5.3x6.2mm_P1.27mm)
(datasheet https://www.infineon.com/dgdl/irf7416pbf.pdf)
(fields
(field (name MFR) IRF7416TRPBF))
(libsource (lib schematic_sybmols) (part IRF7416PbF) (description "P-MOSFET transistor"))
(sheetpath (names /) (tstamps /))
(tstamp 5E3D0E06))
(comp (ref SW3)
(value PCM12)
(footprint Button_Switch_SMD:SW_SPDT_PCM12)
(fields
(field (name MFR) PCM12SMTR))
(libsource (lib Switch) (part SW_DPDT_x2) (description "Switch, dual pole double throw, separate symbols"))
(sheetpath (names /) (tstamps /))
(tstamp 5E4FD4B8))
(comp (ref R34)
(value 10k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name MFR) CR0603FA1002G))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E9E7180))
(comp (ref U6)
(value AS5145B-HSST)
(footprint Package_SO:SSOP-16_5.3x6.2mm_P0.65mm)
(datasheet https://ams.com/documents/20143/36005/AS5145_DS000398_1-00.pdf)
(fields
(field (name MFR) AS5145B-HSSM))
(libsource (lib schematic_sybmols) (part AS5145B-HSST) (description "12-Bit Programmable Magnetic Rotary Encoder"))
(sheetpath (names /) (tstamps /))
(tstamp 5EAF0CC4))
(comp (ref C32)
(value 100n)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(fields
(field (name MFR) 0603B104K160CT))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5E2B5CA8))
(comp (ref U3)
(value AS5145B-HSST)
(footprint Package_SO:SSOP-16_5.3x6.2mm_P0.65mm)
(datasheet https://ams.com/documents/20143/36005/AS5145_DS000398_1-00.pdf)
(fields
(field (name MFR) AS5145B-HSSM))
(libsource (lib schematic_sybmols) (part AS5145B-HSST) (description "12-Bit Programmable Magnetic Rotary Encoder"))
(sheetpath (names /) (tstamps /))
(tstamp 5EAEFBC7))
(comp (ref C33)
(value 100n)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(fields
(field (name MFR) 0603B104K160CT))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5E3254DE))
(comp (ref U7)
(value DRV8835)
(footprint Package_SON:WSON-12-1EP_3x2mm_P0.5mm_EP1x2.65_ThermalVias)
(fields
(field (name MFR) DRV8835DSSR))
(libsource (lib schematic_sybmols) (part DRV8835) (description "Dual Low-Voltage H-Bridge IC"))
(sheetpath (names /) (tstamps /))
(tstamp 5EF3C465))
(comp (ref U2)
(value DRV8835)
(footprint Package_SON:WSON-12-1EP_3x2mm_P0.5mm_EP1x2.65_ThermalVias)
(fields
(field (name MFR) DRV8835DSSR))
(libsource (lib schematic_sybmols) (part DRV8835) (description "Dual Low-Voltage H-Bridge IC"))
(sheetpath (names /) (tstamps /))
(tstamp 5E38884F))
(comp (ref J3)
(value Conn_01x10_Male)
(footprint Connector_PinHeader_1.27mm:PinHeader_2x05_P1.27mm_Vertical)