-
Notifications
You must be signed in to change notification settings - Fork 5
/
FHNW-Pro4E-FS19T8-3DPrinterBoard-STM32.net
4259 lines (4259 loc) · 172 KB
/
FHNW-Pro4E-FS19T8-3DPrinterBoard-STM32.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\simon\Documents\KiCAD\FHNW-Pro4E-FS19T8-3DPrinterBoard-STM32\FHNW-Pro4E-FS19T8-3DPrinterBoard-STM32.sch)
(date "13/05/2019 10:19:16")
(tool "Eeschema (5.1.0)-1")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title "3D Printer Board STM32F103")
(company "FHNW University of Applied Sciences")
(rev 1.1)
(date 2019-05-10)
(source FHNW-Pro4E-FS19T8-3DPrinterBoard-STM32.sch)
(comment (number 1) (value "EIT Pro4 FS19 Team 8"))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 2) (name /appendix_STM32F103/) (tstamps /5CA3954A/)
(title_block
(title "STM32f103 Controller")
(company "FHNW University of Applied Sciences")
(rev 1.1)
(date 2019-05-10)
(source appendix_STM32F103.sch)
(comment (number 1) (value "EIT Pro4 FS19 Team 8"))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 3) (name /appendix_ESP32/) (tstamps /5CA395A8/)
(title_block
(title "ESP32 Wroom Module")
(company "FHNW University of Applied Sciences")
(rev 1.1)
(date 2019-05-10)
(source appendix_ESP32.sch)
(comment (number 1) (value "EIT Pro4 FS19 Team 8"))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 4) (name /appendix_TMC2660_X/) (tstamps /5CA3FF44/)
(title_block
(title "TMC2660 Stepper Drivers")
(company "FHNW University of Applied Sciences")
(rev 1.1)
(date 2019-05-10)
(source appendix_TMC2660_X.sch)
(comment (number 1) (value "EIT Pro4 FS19 Team 8"))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 5) (name /appendix_UART_USB/) (tstamps /5CA3CC17/)
(title_block
(title "USB to UART Interface")
(company "FHNW University of Applied Sciences")
(rev 1.1)
(date 2019-05-10)
(source appendix_UART_USB.sch)
(comment (number 1) (value "EIT Pro4 FS19 Team 8"))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 6) (name /appendix_SENSORS_POWER/) (tstamps /5CA39F21/)
(title_block
(title "Power and Sensor Connectors")
(company "FHNW University of Applied Sciences")
(rev 1.1)
(date 2019-05-10)
(source appendix_SENSORS_POWER.sch)
(comment (number 1) (value "EIT Pro4 FS19 Team 8"))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref D101)
(value "Shottky STPS1L30A")
(footprint Diodes_SMD:D_SMB)
(datasheet ~)
(libsource (lib Device) (part D_Schottky) (description "Schottky diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5CA6A134))
(comp (ref C101)
(value 100uF)
(footprint Capacitors_SMD:C_1812)
(datasheet ~)
(libsource (lib Device) (part CP) (description "Polarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5CA6A16C))
(comp (ref L101)
(value "47uH DO3316-473")
(footprint Inductors_SMD:L_Fastron_PISN_Handsoldering)
(datasheet ~)
(libsource (lib Device) (part L) (description Inductor))
(sheetpath (names /) (tstamps /))
(tstamp 5CA6A172))
(comp (ref C102)
(value 330uF)
(footprint Capacitors_SMD:C_1812)
(datasheet ~)
(libsource (lib Device) (part CP) (description "Polarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5CA6A178))
(comp (ref C103)
(value 0.01uF/50V)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5CA6A17E))
(comp (ref J101)
(value Screw_Terminal_01x02)
(footprint Connectors_Terminal_Blocks:TerminalBlock_Altech_AK300-2_P5.00mm)
(datasheet ~)
(libsource (lib Connector) (part Screw_Terminal_01x02) (description "Generic screw terminal, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5CD68AD6))
(comp (ref U101)
(value LM2675M-3.3)
(footprint Package_SO:SOIC-8_3.9x4.9mm_P1.27mm)
(datasheet http://www.ti.com/lit/ds/symlink/lm2675.pdf)
(libsource (lib Regulator_Switching) (part LM2675M-3.3) (description "3.3V, 1A Step-Down Voltage Regulator, SO-8"))
(sheetpath (names /) (tstamps /))
(tstamp 5CA6A12A))
(comp (ref R101)
(value 330R)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5CB6A127))
(comp (ref D102)
(value LED_GRN)
(footprint LED_SMD:LED_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5CB6AB63))
(comp (ref FB101)
(value Ferrite)
(footprint Resistors_SMD:R_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part Ferrite_Bead_Small) (description "Ferrite bead, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5CC0148F))
(comp (ref FB102)
(value Ferrite)
(footprint Resistors_SMD:R_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part Ferrite_Bead_Small) (description "Ferrite bead, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5CC0728E))
(comp (ref C106)
(value 100n)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5CC0B14E))
(comp (ref C104)
(value 100n)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5CB61CA6))
(comp (ref D103)
(value "Shottky STPS1L30A")
(footprint Diodes_SMD:D_SMB)
(datasheet ~)
(libsource (lib Device) (part D_Schottky) (description "Schottky diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5CC3F964))
(comp (ref C107)
(value 100uF)
(footprint Capacitors_SMD:C_1812)
(datasheet ~)
(libsource (lib Device) (part CP) (description "Polarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5CC3F98D))
(comp (ref L102)
(value "47uH DO3316-473")
(footprint Inductors_SMD:L_Fastron_PISN_Handsoldering)
(datasheet ~)
(libsource (lib Device) (part L) (description Inductor))
(sheetpath (names /) (tstamps /))
(tstamp 5CC3F997))
(comp (ref C108)
(value 330uF)
(footprint Capacitors_SMD:C_1812)
(datasheet ~)
(libsource (lib Device) (part CP) (description "Polarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5CC3F9A1))
(comp (ref C109)
(value 0.01uF/50V)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5CC3F9AB))
(comp (ref U102)
(value LM2675M-5)
(footprint Package_SO:SOIC-8_3.9x4.9mm_P1.27mm)
(datasheet http://www.ti.com/lit/ds/symlink/lm2675.pdf)
(libsource (lib Regulator_Switching) (part LM2675M-5) (description "5V, 1A Step-Down Voltage Regulator, SO-8"))
(sheetpath (names /) (tstamps /))
(tstamp 5CC49DBB))
(comp (ref R102)
(value 330R)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5CC8B422))
(comp (ref D104)
(value LED_GRN)
(footprint LED_SMD:LED_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5CC8B42C))
(comp (ref H101)
(value MountingHole)
(footprint Mounting_Holes:MountingHole_3.2mm_M3_Pad)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole) (description "Mounting Hole without connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5CBF1F93))
(comp (ref H102)
(value MountingHole)
(footprint Mounting_Holes:MountingHole_3.2mm_M3_Pad)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole) (description "Mounting Hole without connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5CBF3649))
(comp (ref H103)
(value MountingHole)
(footprint Mounting_Holes:MountingHole_3.2mm_M3_Pad)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole) (description "Mounting Hole without connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5CBF3A09))
(comp (ref H104)
(value MountingHole)
(footprint Mounting_Holes:MountingHole_3.2mm_M3_Pad)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole) (description "Mounting Hole without connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5CBF3E8E))
(comp (ref T101)
(value BUK963R3-60E)
(footprint Package_TO_SOT_SMD:TO-263-2)
(datasheet http://www.farnell.com/datasheets/2174111.pdf?_ga=2.163468607.22968134.1552994068-1575888051.1538557827)
(libsource (lib FHNW-Pro4E-FS19T8-Library) (part BUK963R3-60E) (description "Logic level N-channel MOSFET in a SOT404 package using TrenchMOS technology"))
(sheetpath (names /) (tstamps /))
(tstamp 5CC929A8))
(comp (ref R103)
(value 100k)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5CCAE006))
(comp (ref D105)
(value BZT52H-B7V5)
(footprint Diodes_SMD:D_SOD-123)
(datasheet ~)
(libsource (lib Device) (part D_Zener) (description "Zener diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5CD1A22D))
(comp (ref F101)
(value Fuse_20A)
(footprint Fuse:Fuseholder_Blade_ATO_Littelfuse_Pudenz_2_Pin)
(datasheet ~)
(libsource (lib Device) (part Fuse) (description Fuse))
(sheetpath (names /) (tstamps /))
(tstamp 5CE8417C))
(comp (ref R104)
(value 10k)
(footprint Resistors_SMD:R_1206)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5CC041F6))
(comp (ref D106)
(value APHBM2012LSURKZGKC)
(footprint FHNW-Pro4E-FS19T8-Library:LED_Kingbright_SMD4_2.0x1.25)
(datasheet ~)
(libsource (lib FHNW-Pro4E-FS19T8-Library) (part APHBM2012LSURKZGKC) (description "Dual LED, cathodes on pins 2 and 4"))
(sheetpath (names /) (tstamps /))
(tstamp 5CC0EDCA))
(comp (ref G102)
(value SYM_FHNW_Logo)
(footprint FHNW-Pro4E-FS19T8-Library:Logo_FHNW_03x05mm)
(libsource (lib FHNW-Pro4E-FS19T8-Library) (part SYM_FHNW_Logo) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5CC56D8C))
(comp (ref G101)
(value SYM_Serial_No)
(footprint FHNW-Pro4E-FS19T8-Library:Label_Serial_Number_6x20)
(libsource (lib FHNW-Pro4E-FS19T8-Library) (part SYM_Serial_No) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5CC57A3F))
(comp (ref LOGO101)
(value OSHW-LOGOM-COPPER)
(footprint Symbols:OSHW-Logo2_9.8x8mm_SilkScreen)
(fields
(field (name Field4) XXX-00000))
(libsource (lib SparkFun-Aesthetics) (part OSHW-LOGOM-COPPER) (description "Open-Source Hardware (OSHW) Logo This logo indicates the piece of hardware it is found on incorporates a OSHW license and/or adheres to the definition of open source hardware found here: <a href=\"http://freedomdefined.org/OSHW\">http://freedomdefined.org/OSHW</a>"))
(sheetpath (names /) (tstamps /))
(tstamp 5CC5A1CC))
(comp (ref C204)
(value 100n)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /appendix_STM32F103/) (tstamps /5CA3954A/))
(tstamp 5CA55090))
(comp (ref C205)
(value 100n)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /appendix_STM32F103/) (tstamps /5CA3954A/))
(tstamp 5CA59D13))
(comp (ref C206)
(value 100n)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /appendix_STM32F103/) (tstamps /5CA3954A/))
(tstamp 5CA5BE7C))
(comp (ref C207)
(value 100n)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /appendix_STM32F103/) (tstamps /5CA3954A/))
(tstamp 5CA5BE9C))
(comp (ref C208)
(value 100n)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /appendix_STM32F103/) (tstamps /5CA3954A/))
(tstamp 5CA5F3B1))
(comp (ref R203)
(value 10k)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /appendix_STM32F103/) (tstamps /5CA3954A/))
(tstamp 5CB89A78))
(comp (ref R204)
(value 10k)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /appendix_STM32F103/) (tstamps /5CA3954A/))
(tstamp 5CB89E62))
(comp (ref R206)
(value 10k)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /appendix_STM32F103/) (tstamps /5CA3954A/))
(tstamp 5CBAA3AC))
(comp (ref R205)
(value 10k)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /appendix_STM32F103/) (tstamps /5CA3954A/))
(tstamp 5CBAEA23))
(comp (ref J201)
(value Micro_SD_Card_Det)
(footprint Connector_Card:microSD_HC_Hirose_DM3AT-SF-PEJM5)
(datasheet https://www.hirose.com/product/en/download_file/key_name/DM3/category/Catalog/doc_file_id/49662/?file_category_id=4&item_id=195&is_series=1)
(libsource (lib Connector) (part Micro_SD_Card_Det) (description "Micro SD Card Socket with card detection pins"))
(sheetpath (names /appendix_STM32F103/) (tstamps /5CA3954A/))
(tstamp 5CA61784))
(comp (ref C209)
(value 100n)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /appendix_STM32F103/) (tstamps /5CA3954A/))
(tstamp 5CA9A5B0))
(comp (ref J204)
(value Conn_ARM_JTAG_SWD_10)
(footprint Connector_PinHeader_1.27mm:PinHeader_2x05_P1.27mm_Vertical_SMD)
(datasheet http://infocenter.arm.com/help/topic/com.arm.doc.ddi0314h/DDI0314H_coresight_components_trm.pdf)
(libsource (lib Connector) (part Conn_ARM_JTAG_SWD_10) (description "Cortex Debug Connector, standard ARM Cortex-M SWD and JTAG interface"))
(sheetpath (names /appendix_STM32F103/) (tstamps /5CA3954A/))
(tstamp 5CE2209B))
(comp (ref C202)
(value 100n)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /appendix_STM32F103/) (tstamps /5CA3954A/))
(tstamp 5CC296A8))
(comp (ref U202)
(value NTS0104PW-Q100J)
(footprint Housings_SSOP:TSSOP-14_4.4x5mm_Pitch0.65mm)
(libsource (lib FHNW-Pro4E-FS19T8-Library) (part NTS0104PW-Q100J) (description "IC TRNSLTR BIDIRECTIONAL"))
(sheetpath (names /appendix_STM32F103/) (tstamps /5CA3954A/))
(tstamp 5CC5D19D))
(comp (ref J202)
(value Conn_02x05_Odd_Even)
(footprint Connector_Multicomp:Multicomp_MC9A12-1034_2x05_P2.54mm_Vertical)
(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 /appendix_STM32F103/) (tstamps /5CA3954A/))
(tstamp 5CC9D0E7))
(comp (ref R212)
(value 100R)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /appendix_STM32F103/) (tstamps /5CA3954A/))
(tstamp 5CD04150))
(comp (ref R210)
(value 100R)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /appendix_STM32F103/) (tstamps /5CA3954A/))
(tstamp 5CD0523F))
(comp (ref R209)
(value 100R)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /appendix_STM32F103/) (tstamps /5CA3954A/))
(tstamp 5CD053EB))
(comp (ref U203)
(value NTS0104PW-Q100J)
(footprint Housings_SSOP:TSSOP-14_4.4x5mm_Pitch0.65mm)
(libsource (lib FHNW-Pro4E-FS19T8-Library) (part NTS0104PW-Q100J) (description "IC TRNSLTR BIDIRECTIONAL"))
(sheetpath (names /appendix_STM32F103/) (tstamps /5CA3954A/))
(tstamp 5CC4D1DE))
(comp (ref R216)
(value 10k)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /appendix_STM32F103/) (tstamps /5CA3954A/))
(tstamp 5CCE5B07))
(comp (ref C203)
(value 100n)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /appendix_STM32F103/) (tstamps /5CA3954A/))
(tstamp 5CCE5F42))
(comp (ref R215)
(value 10k)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /appendix_STM32F103/) (tstamps /5CA3954A/))
(tstamp 5CD320F9))
(comp (ref R214)
(value 10k)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /appendix_STM32F103/) (tstamps /5CA3954A/))
(tstamp 5CD356B0))
(comp (ref R213)
(value 10k)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /appendix_STM32F103/) (tstamps /5CA3954A/))
(tstamp 5CD359E8))
(comp (ref R208)
(value 10k)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /appendix_STM32F103/) (tstamps /5CA3954A/))
(tstamp 5CD35CF0))
(comp (ref R207)
(value 10k)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /appendix_STM32F103/) (tstamps /5CA3954A/))
(tstamp 5CD5953D))
(comp (ref C210)
(value 100n)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /appendix_STM32F103/) (tstamps /5CA3954A/))
(tstamp 5CC15821))
(comp (ref C211)
(value 100n)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /appendix_STM32F103/) (tstamps /5CA3954A/))
(tstamp 5CC1583F))
(comp (ref C212)
(value 100n)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /appendix_STM32F103/) (tstamps /5CA3954A/))
(tstamp 5CCB464D))
(comp (ref C213)
(value 100n)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /appendix_STM32F103/) (tstamps /5CA3954A/))
(tstamp 5CCB466B))
(comp (ref R217)
(value 100R)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /appendix_STM32F103/) (tstamps /5CA3954A/))
(tstamp 5CDCD7F7))
(comp (ref R202)
(value 330R)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /appendix_STM32F103/) (tstamps /5CA3954A/))
(tstamp 5CDABFCE))
(comp (ref D201)
(value LED_GRN)
(footprint LED_SMD:LED_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /appendix_STM32F103/) (tstamps /5CA3954A/))
(tstamp 5CDABFD4))
(comp (ref J203)
(value Conn_02x20_Odd_Even)
(footprint Connector_PinHeader_2.54mm:PinHeader_2x20_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_02x20_Odd_Even) (description "Generic connector, double row, 02x20, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /appendix_STM32F103/) (tstamps /5CA3954A/))
(tstamp 5CCA330B))
(comp (ref C214)
(value 10n)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /appendix_STM32F103/) (tstamps /5CA3954A/))
(tstamp 5CE6D10B))
(comp (ref R218)
(value 330R)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /appendix_STM32F103/) (tstamps /5CA3954A/))
(tstamp 5CEF3625))
(comp (ref D202)
(value LED_YEL)
(footprint LED_SMD:LED_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /appendix_STM32F103/) (tstamps /5CA3954A/))
(tstamp 5CEF362F))
(comp (ref R219)
(value 330R)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /appendix_STM32F103/) (tstamps /5CA3954A/))
(tstamp 5CF13CB8))
(comp (ref D203)
(value LED_YEL)
(footprint LED_SMD:LED_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /appendix_STM32F103/) (tstamps /5CA3954A/))
(tstamp 5CF13CC2))
(comp (ref C217)
(value 1u)
(footprint Capacitors_SMD:C_1210)
(datasheet ~)
(libsource (lib Device) (part CP) (description "Polarized capacitor"))
(sheetpath (names /appendix_STM32F103/) (tstamps /5CA3954A/))
(tstamp 5CEED6D0))
(comp (ref SW202)
(value SW_Push)
(footprint Buttons_Switches_SMD:SW_SPST_KMR2)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /appendix_STM32F103/) (tstamps /5CA3954A/))
(tstamp 5CFFF2E3))
(comp (ref C215)
(value 100n)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /appendix_STM32F103/) (tstamps /5CA3954A/))
(tstamp 5CFFF2ED))
(comp (ref R233)
(value 10k)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /appendix_STM32F103/) (tstamps /5CA3954A/))
(tstamp 5CFFF30B))
(comp (ref SW203)
(value SW_Push)
(footprint Buttons_Switches_SMD:SW_SPST_KMR2)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /appendix_STM32F103/) (tstamps /5CA3954A/))
(tstamp 5D051793))
(comp (ref C216)
(value 100n)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /appendix_STM32F103/) (tstamps /5CA3954A/))
(tstamp 5D05179D))
(comp (ref R234)
(value 10k)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /appendix_STM32F103/) (tstamps /5CA3954A/))
(tstamp 5D0517BA))
(comp (ref C218)
(value 10u)
(footprint Capacitors_SMD:C_1210)
(datasheet ~)
(libsource (lib Device) (part CP) (description "Polarized capacitor"))
(sheetpath (names /appendix_STM32F103/) (tstamps /5CA3954A/))
(tstamp 5D104A19))
(comp (ref R227)
(value 0R)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /appendix_STM32F103/) (tstamps /5CA3954A/))
(tstamp 5D27ADD7))
(comp (ref R229)
(value 0R)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /appendix_STM32F103/) (tstamps /5CA3954A/))
(tstamp 5D27B53C))
(comp (ref U201)
(value STM32F103ZETx)
(footprint Housings_QFP:LQFP-144_20x20mm_Pitch0.5mm)
(datasheet http://www.st.com/st-web-ui/static/active/en/resource/technical/document/datasheet/CD00191185.pdf)
(libsource (lib MCU_ST_STM32F1) (part STM32F103ZETx) (description "ARM Cortex-M3 MCU, 512KB flash, 64KB RAM, 72MHz, 2-3.6V, 114 GPIO, LQFP-144"))
(sheetpath (names /appendix_STM32F103/) (tstamps /5CA3954A/))
(tstamp 5CA44B89))
(comp (ref SW201)
(value SW_Push)
(footprint Buttons_Switches_SMD:SW_SPST_KMR2)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /appendix_STM32F103/) (tstamps /5CA3954A/))
(tstamp 5CC66836))
(comp (ref C201)
(value 100n)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /appendix_STM32F103/) (tstamps /5CA3954A/))
(tstamp 5CC6C462))
(comp (ref R201)
(value 10k)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /appendix_STM32F103/) (tstamps /5CA3954A/))
(tstamp 5CCA083F))
(comp (ref X201)
(value SG-210STF)
(footprint Oscillator:Oscillator_SMD_SeikoEpson_SG210-4Pin_2.5x2.0mm)
(datasheet https://support.epson.biz/td/api/doc_check.php?mode=dl&lang=en&Parts=SG-210STF)
(libsource (lib Oscillator) (part SG-210STF) (description "CMOS Crystal Oscillator SPXO"))
(sheetpath (names /appendix_STM32F103/) (tstamps /5CA3954A/))
(tstamp 5CBE7246))
(comp (ref R230)
(value 10k)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /appendix_STM32F103/) (tstamps /5CA3954A/))
(tstamp 5D139EC3))
(comp (ref R231)
(value 10k)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /appendix_STM32F103/) (tstamps /5CA3954A/))
(tstamp 5D13B3B6))
(comp (ref C219)
(value 10u)
(footprint Capacitors_SMD:C_1210)
(datasheet ~)
(libsource (lib Device) (part CP) (description "Polarized capacitor"))
(sheetpath (names /appendix_STM32F103/) (tstamps /5CA3954A/))
(tstamp 5D7662CB))
(comp (ref C220)
(value 100n)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /appendix_STM32F103/) (tstamps /5CA3954A/))
(tstamp 5D7A4055))
(comp (ref R211)
(value 100R)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /appendix_STM32F103/) (tstamps /5CA3954A/))
(tstamp 5CD05002))
(comp (ref R237)
(value 10k)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /appendix_STM32F103/) (tstamps /5CA3954A/))
(tstamp 5D9F35C7))
(comp (ref D208)
(value BAT54S)
(footprint Package_TO_SOT_SMD:SOT-23)
(datasheet https://www.diodes.com/assets/Datasheets/ds11005.pdf)
(libsource (lib Diode) (part BAT54S) (description "schottky barrier diode"))
(sheetpath (names /appendix_STM32F103/) (tstamps /5CA3954A/))
(tstamp 5DB71461))
(comp (ref D204)
(value BAT54C)
(footprint Package_TO_SOT_SMD:SOT-23)
(datasheet http://www.diodes.com/_files/datasheets/ds11005.pdf)
(libsource (lib Diode) (part BAT54C) (description "dual schottky barrier diode, common cathode"))
(sheetpath (names /appendix_STM32F103/) (tstamps /5CA3954A/))
(tstamp 5DC72C6F))
(comp (ref D205)
(value BAT54A)
(footprint Package_TO_SOT_SMD:SOT-23)
(datasheet http://www.diodes.com/_files/datasheets/ds11005.pdf)
(libsource (lib Diode) (part BAT54A) (description "schottky barrier diode"))
(sheetpath (names /appendix_STM32F103/) (tstamps /5CA3954A/))
(tstamp 5DE2F0B7))
(comp (ref D207)
(value BAT54A)
(footprint Package_TO_SOT_SMD:SOT-23)
(datasheet http://www.diodes.com/_files/datasheets/ds11005.pdf)
(libsource (lib Diode) (part BAT54A) (description "schottky barrier diode"))
(sheetpath (names /appendix_STM32F103/) (tstamps /5CA3954A/))
(tstamp 5E030264))
(comp (ref D206)
(value BAT54C)
(footprint Package_TO_SOT_SMD:SOT-23)
(datasheet http://www.diodes.com/_files/datasheets/ds11005.pdf)
(libsource (lib Diode) (part BAT54C) (description "dual schottky barrier diode, common cathode"))
(sheetpath (names /appendix_STM32F103/) (tstamps /5CA3954A/))
(tstamp 5E02ACA6))
(comp (ref R221)
(value 0R)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /appendix_STM32F103/) (tstamps /5CA3954A/))
(tstamp 5CE16C95))
(comp (ref R220)
(value 0R)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /appendix_STM32F103/) (tstamps /5CA3954A/))
(tstamp 5CE8FA9A))
(comp (ref R236)
(value 10k)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /appendix_STM32F103/) (tstamps /5CA3954A/))
(tstamp 5D9F3EBD))
(comp (ref R222)
(value 0R)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /appendix_STM32F103/) (tstamps /5CA3954A/))
(tstamp 5CCE79DA))
(comp (ref U301)
(value ESP32-WROOM-32)
(footprint RF_Module:ESP32-WROOM-32)
(datasheet https://www.espressif.com/sites/default/files/documentation/esp32-wroom-32_datasheet_en.pdf)
(libsource (lib RF_Module) (part ESP32-WROOM-32) (description "RF Module, ESP32-D0WDQ6 SoC, Wi-Fi 802.11b/g/n, Bluetooth, BLE, 32-bit, 2.7-3.6V, onboard antenna, SMD"))
(sheetpath (names /appendix_ESP32/) (tstamps /5CA395A8/))
(tstamp 5CA47080))
(comp (ref R302)
(value 10k)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /appendix_ESP32/) (tstamps /5CA395A8/))
(tstamp 5CBF31BB))
(comp (ref R303)
(value 10k)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /appendix_ESP32/) (tstamps /5CA395A8/))
(tstamp 5CBF3EA7))
(comp (ref R301)
(value 10k)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /appendix_ESP32/) (tstamps /5CA395A8/))
(tstamp 5CBFAC95))
(comp (ref SW302)
(value SW_Push)
(footprint Buttons_Switches_SMD:SW_SPST_KMR2)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /appendix_ESP32/) (tstamps /5CA395A8/))
(tstamp 5CD80C30))
(comp (ref C302)
(value 100n)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /appendix_ESP32/) (tstamps /5CA395A8/))
(tstamp 5CD80C36))
(comp (ref R304)
(value 10k)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /appendix_ESP32/) (tstamps /5CA395A8/))
(tstamp 5CD80C4C))
(comp (ref SW301)
(value SW_Push)
(footprint Buttons_Switches_SMD:SW_SPST_KMR2)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /appendix_ESP32/) (tstamps /5CA395A8/))
(tstamp 5CD83394))
(comp (ref C301)
(value 100n)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /appendix_ESP32/) (tstamps /5CA395A8/))
(tstamp 5CD8339E))
(comp (ref Q1)
(value 2N3904)
(footprint TO_SOT_Packages_SMD:SOT-23)
(datasheet https://www.fairchildsemi.com/datasheets/2N/2N3904.pdf)
(libsource (lib Transistor_BJT) (part 2N3904) (description "0.2A Ic, 40V Vce, Small Signal NPN Transistor, TO-92"))
(sheetpath (names /appendix_ESP32/) (tstamps /5CA395A8/))
(tstamp 5CBE1CFC))
(comp (ref Q2)
(value 2N3904)
(footprint TO_SOT_Packages_SMD:SOT-23)
(datasheet https://www.fairchildsemi.com/datasheets/2N/2N3904.pdf)
(libsource (lib Transistor_BJT) (part 2N3904) (description "0.2A Ic, 40V Vce, Small Signal NPN Transistor, TO-92"))
(sheetpath (names /appendix_ESP32/) (tstamps /5CA395A8/))
(tstamp 5CBE30DA))
(comp (ref C304)
(value 10u)
(footprint Capacitors_SMD:C_1210)
(datasheet ~)
(libsource (lib Device) (part CP) (description "Polarized capacitor"))
(sheetpath (names /appendix_ESP32/) (tstamps /5CA395A8/))
(tstamp 5D7E31FE))
(comp (ref C303)
(value 100n)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /appendix_ESP32/) (tstamps /5CA395A8/))
(tstamp 5D7E529A))
(comp (ref U602)
(value TMC2660)
(footprint digikey-footprints:TQFP-44_10x10mm)
(datasheet https://www.trinamic.com/products/integrated-circuits/details/tmc2660-pa/)
(libsource (lib FHNW-Pro4E-FS19T8-Library) (part TMC2660) (description "The TMC2660 provides an integrated motor driver solution for Laboratory Automation, 3D-Printing, Scanners and other automated equipment applications."))
(sheetpath (names /appendix_TMC2660_X/) (tstamps /5CA3FF44/))
(tstamp 5CA4002B))
(comp (ref C615)
(value 100n)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /appendix_TMC2660_X/) (tstamps /5CA3FF44/))
(tstamp 5CA40220))
(comp (ref C616)
(value 470n)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /appendix_TMC2660_X/) (tstamps /5CA3FF44/))
(tstamp 5CA404FA))
(comp (ref C612)
(value 100n)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /appendix_TMC2660_X/) (tstamps /5CA3FF44/))
(tstamp 5CA408D9))
(comp (ref R607)
(value 10R)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /appendix_TMC2660_X/) (tstamps /5CA3FF44/))
(tstamp 5CA4095C))
(comp (ref R608)
(value 0R15)
(footprint Resistors_SMD:R_1210)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /appendix_TMC2660_X/) (tstamps /5CA3FF44/))
(tstamp 5CA409CA))
(comp (ref C608)
(value 220n)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /appendix_TMC2660_X/) (tstamps /5CA3FF44/))
(tstamp 5CA4778A))
(comp (ref C610)
(value 100n)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /appendix_TMC2660_X/) (tstamps /5CA3FF44/))
(tstamp 5CA6640C))
(comp (ref R603)
(value 10R)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /appendix_TMC2660_X/) (tstamps /5CA3FF44/))
(tstamp 5CA66412))
(comp (ref R604)
(value 0R15)
(footprint Resistors_SMD:R_1210)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /appendix_TMC2660_X/) (tstamps /5CA3FF44/))
(tstamp 5CA66418))
(comp (ref J602)
(value B4B-XH-A)
(footprint Connector_JST:JST_XH_B4B-XH-A_1x04_P2.50mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x04) (description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /appendix_TMC2660_X/) (tstamps /5CA3FF44/))
(tstamp 5CA56BC7))
(comp (ref C613)
(value 100n)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /appendix_TMC2660_X/) (tstamps /5CA3FF44/))
(tstamp 5CB0426A))
(comp (ref C614)
(value 470n)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /appendix_TMC2660_X/) (tstamps /5CA3FF44/))
(tstamp 5CB04275))
(comp (ref C611)
(value 100n)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /appendix_TMC2660_X/) (tstamps /5CA3FF44/))
(tstamp 5CB04289))
(comp (ref R605)
(value 10R)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /appendix_TMC2660_X/) (tstamps /5CA3FF44/))
(tstamp 5CB04293))
(comp (ref R606)
(value 0R15)
(footprint Resistors_SMD:R_1210)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /appendix_TMC2660_X/) (tstamps /5CA3FF44/))
(tstamp 5CB0429D))
(comp (ref C607)
(value 220n)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /appendix_TMC2660_X/) (tstamps /5CA3FF44/))
(tstamp 5CB042E1))