forked from resterampeberlin/TMC-Breakout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
TMC-Breakout.kicad_pcb
22496 lines (22472 loc) · 748 KB
/
TMC-Breakout.kicad_pcb
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
(kicad_pcb (version 20211014) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(title_block
(title "Breakout board for Trinamic TMC2xxx modules")
(date "2023-02-10")
(rev "1.0.0")
(company "Resterampe Berlin ")
(comment 3 "https://creativecommons.org/licenses/by-nc/4.0 ")
(comment 4 "License CC BY-NC 4.0 ")
)
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (color "Purple") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (color "Purple") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "HAL lead-free")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 1)
(scaleselection 1)
(outputdirectory "")
)
)
(net 0 "")
(net 1 "/DIR")
(net 2 "/STEP")
(net 3 "/DCO")
(net 4 "/CFG0")
(net 5 "/CFG3")
(net 6 "/CFG2")
(net 7 "/CFG1")
(net 8 "/~{EN}")
(net 9 "VDD")
(net 10 "GND")
(net 11 "/M2B")
(net 12 "/M2A")
(net 13 "/M1A")
(net 14 "/M1B")
(net 15 "VCC")
(net 16 "/DIAG0")
(net 17 "/DIAG1")
(net 18 "unconnected-(U101-PadVREF)")
(net 19 "Net-(D101-Pad2)")
(net 20 "Net-(D102-Pad1)")
(net 21 "Net-(D103-Pad1)")
(net 22 "Net-(D104-Pad1)")
(net 23 "Net-(D105-Pad1)")
(net 24 "Net-(D106-Pad1)")
(footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 066b4b82-c3e5-4442-8a76-00f6f9303ce8)
(at 125.984 85.99775)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(property "LCSC" "C23138")
(property "Sheetfile" "TMC-Breakout.kicad_sch")
(property "Sheetname" "")
(path "/f6f2fade-8422-49ac-bf7d-df20becbc951")
(attr smd)
(fp_text reference "R106" (at 0 -1.43) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f15d0020-479b-4bb4-94ef-7003a1cf35d5)
)
(fp_text value "330R" (at 0 1.43) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp aeab3b03-d6d4-4efd-a32c-86555efa3688)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") hide
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp e48c898e-118c-4a3d-b8b5-b273a51df214)
)
(fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 9cdc981a-517d-41cc-b66b-668d5fde43ef))
(fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp fea4075e-12e1-4ce3-95db-481aafcc3117))
(fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 09a8d69e-f1df-4430-b499-9163f80de25f))
(fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 4d7fe16c-e5d7-494a-8ef6-2cc8f35855fc))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp a485f01e-6187-49c0-a3c3-a20000d8dacd))
(fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp d986da5e-47e7-4ffd-b801-102d487fb552))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp c0b32d54-1e89-4d79-b1b5-c2d0b6935452))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp cbce7197-bd9e-4938-a6b8-0053b7f93269))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp cf39ac9a-0f09-4c52-9676-b4e35cc3e7f3))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp d9209c7e-2518-4353-8c08-c53f9d0deca8))
(pad "1" smd roundrect (at -0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 24 "Net-(D106-Pad1)") (pintype "passive") (tstamp f033f4a5-1c27-42f4-8d3f-66f82f41bf89))
(pad "2" smd roundrect (at 0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "GND") (pintype "passive") (tstamp c7669f21-0cb9-44f8-aa04-c9b11e84db47))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 2acba801-9ccb-43ba-9411-2c3c801a2e45)
(at 121.158 85.99775 180)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(property "LCSC" "C23138")
(property "Sheetfile" "TMC-Breakout.kicad_sch")
(property "Sheetname" "")
(path "/56025dee-027f-47b6-8b35-eb548888263f")
(attr smd)
(fp_text reference "R103" (at 0 -1.43) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f2a30a5c-2114-4909-9aeb-c7b4f82284fd)
)
(fp_text value "330R" (at 0 1.43) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 14a20335-39d7-42c3-9a73-d9d92f43e0bb)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") hide
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp ba10b2a6-782e-4c62-ac36-bb03f906de24)
)
(fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 53e2fe60-eb2f-47bc-9847-dcf3f2cff7ad))
(fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 7481a6cd-caf7-45a8-a363-cf168da5cc53))
(fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp bf85b187-4f3b-4603-bfcb-d365f38e1aa5))
(fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp c0f6d9dd-aea9-475b-97db-833c4885b1c6))
(fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp de04eee7-121f-4422-b96d-cbd9e2b32777))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp f7ec593a-dee2-4270-9e54-3f5065693baa))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 319c053a-d774-4cff-8004-6e7f7b2c9661))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp ac415278-6802-4781-97a2-2e6906679873))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp bca89ce6-b749-4c81-a99a-ee02c250b673))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp e7c53262-58b4-46c3-8c2e-de10562cd5c2))
(pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 21 "Net-(D103-Pad1)") (pintype "passive") (tstamp 2f1f3ea8-e55f-49b7-a3c1-775e6ffca89f))
(pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "GND") (pintype "passive") (tstamp 2488aa09-a7be-49ed-9459-f8139b9c8d7a))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_SMD:LED_0603_1608Metric_Pad1.05x0.95mm_HandSolder" (layer "F.Cu")
(tedit 5F68FEF1) (tstamp 437698ff-0256-45dc-8029-19f15249785e)
(at 114.808 83.82 -90)
(descr "LED SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "LED handsolder")
(property "LCSC" "C2286")
(property "Sheetfile" "TMC-Breakout.kicad_sch")
(property "Sheetname" "")
(path "/49ed3d05-8f35-49ec-a999-678784b55c5d")
(attr smd)
(fp_text reference "D105" (at 0 -1.43 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ec930092-d0b7-403a-9362-2dc284479e94)
)
(fp_text value "LED" (at 0 1.43 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 92ac8f97-c5ee-4ffb-b462-6713f5a657ab)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") hide
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 1b4b2c9e-d593-4fdb-a38c-7be4717e5d72)
)
(fp_line (start -1.66 0.735) (end 0.8 0.735) (layer "F.SilkS") (width 0.12) (tstamp 8944b4b8-f1e3-4299-9750-5c870101f47e))
(fp_line (start -1.66 -0.735) (end -1.66 0.735) (layer "F.SilkS") (width 0.12) (tstamp db22f7e2-0115-4fee-b23f-dd643f6a9088))
(fp_line (start 0.8 -0.735) (end -1.66 -0.735) (layer "F.SilkS") (width 0.12) (tstamp fd41e474-223b-4eab-aa62-fd41ce37f331))
(fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp a5d5f39a-5a84-44d9-8a71-16468f17ddaf))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp ad4b52c0-7b62-4c7f-a19f-30381085d3fd))
(fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp ea27d9e0-d99e-4019-a310-926e42af9038))
(fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp fa1c4b64-5c09-4fe5-8f9e-42e592be47be))
(fp_line (start -0.8 -0.1) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 35d90e49-e32d-4e64-a6d7-da050c25ffcb))
(fp_line (start -0.5 -0.4) (end -0.8 -0.1) (layer "F.Fab") (width 0.1) (tstamp 61ce9b2b-553f-4fa5-8331-c3cf047d9303))
(fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 8092f33f-f169-447a-a373-d05e82ce7150))
(fp_line (start 0.8 -0.4) (end -0.5 -0.4) (layer "F.Fab") (width 0.1) (tstamp a08849d0-bbe7-478c-b738-465a5db712c0))
(fp_line (start -0.8 0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp d69a9528-ab57-4cfd-9fa2-e2769383a796))
(pad "1" smd roundrect (at -0.875 0 270) (size 1.05 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 23 "Net-(D105-Pad1)") (pinfunction "K") (pintype "passive") (tstamp d73d4057-0575-46bb-b76d-50299c2604f3))
(pad "2" smd roundrect (at 0.875 0 270) (size 1.05 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 17 "/DIAG1") (pinfunction "A") (pintype "passive") (tstamp e8b6e377-18a5-4e75-98f5-6aeb622944f9))
(model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_SMD:LED_0603_1608Metric_Pad1.05x0.95mm_HandSolder" (layer "F.Cu")
(tedit 5F68FEF1) (tstamp 447f79c3-585e-4798-aed8-a4b1dc9d7691)
(at 125.984 83.20375)
(descr "LED SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "LED handsolder")
(property "LCSC" "C2286")
(property "Sheetfile" "TMC-Breakout.kicad_sch")
(property "Sheetname" "")
(path "/2ed47322-be3e-4e77-8d6d-68c82b602220")
(attr smd)
(fp_text reference "D106" (at 0 -1.43) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bc40f6ab-fcf4-438c-9d09-49076ba26c9e)
)
(fp_text value "LED" (at 0 1.43) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7b025bfd-414c-48f7-a068-930f0daef739)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") hide
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 1938c9a3-68e6-463c-b794-65623d85c730)
)
(fp_line (start -1.66 -0.735) (end -1.66 0.735) (layer "F.SilkS") (width 0.12) (tstamp 05327be4-c576-49d7-806d-69d422bd1d7f))
(fp_line (start -1.66 0.735) (end 0.8 0.735) (layer "F.SilkS") (width 0.12) (tstamp a8beec96-e920-4718-bc45-86651dd17ca5))
(fp_line (start 0.8 -0.735) (end -1.66 -0.735) (layer "F.SilkS") (width 0.12) (tstamp c61fab76-616c-4526-9560-b6ec6cde1816))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 4adc9e6d-1204-4a34-a984-7fbd024b59a2))
(fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 7dc89304-6fe8-4cbf-9e16-f3a911ec902f))
(fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 97011c9f-7bd0-4dcb-9103-0ec0d1f64691))
(fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 9dedf019-0e97-4d05-9380-283e8d909c90))
(fp_line (start -0.8 0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 3096fdc7-b590-485e-96dc-bd493ed3a32b))
(fp_line (start -0.8 -0.1) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 40649672-78bf-4f2f-b12f-c511ab12f3d6))
(fp_line (start 0.8 -0.4) (end -0.5 -0.4) (layer "F.Fab") (width 0.1) (tstamp 83566e8f-7b0e-45d7-b724-d06ff158476f))
(fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp a20f3139-4d13-41da-989f-80131ab65911))
(fp_line (start -0.5 -0.4) (end -0.8 -0.1) (layer "F.Fab") (width 0.1) (tstamp edc63854-3c66-4f4c-87df-000928e5de90))
(pad "1" smd roundrect (at -0.875 0) (size 1.05 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 24 "Net-(D106-Pad1)") (pinfunction "K") (pintype "passive") (tstamp 46f5bd23-7ef4-4bcb-aa0c-d1c747f12c15))
(pad "2" smd roundrect (at 0.875 0) (size 1.05 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 15 "VCC") (pinfunction "A") (pintype "passive") (tstamp 48d4fd10-d290-47e2-a67d-1ec84469e647))
(model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 49cc0fb7-be5e-4c1e-b6b9-7377cca199c9)
(at 114.808 97.536 -90)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(property "LCSC" "C23138")
(property "Sheetfile" "TMC-Breakout.kicad_sch")
(property "Sheetname" "")
(path "/8d1c4fa9-65bc-4458-bd71-06239d644dd1")
(attr smd)
(fp_text reference "R104" (at 0 -1.43 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b9ef90d8-d409-4f57-9dd6-f65b0c798935)
)
(fp_text value "330R" (at 0 1.43 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 77479b53-838e-43ee-aa4b-db18d4d8658d)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") hide
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp d9008fe2-2fd5-4a3a-82b1-3a6f5a72f369)
)
(fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 99cf3ff3-1fb4-4eef-924c-06307302f1fb))
(fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp d1aa5ff8-db31-4bb5-8697-4f796341641c))
(fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 07197377-98ad-451d-95df-9d3b25629e9b))
(fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 3f969df4-7ef4-4a2b-9286-c78e2293b367))
(fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp d91e1176-31e6-40e9-9eb4-ad14719bfa40))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp ddcbe82d-8ef4-44c4-a717-f5fff87665fc))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 3791f7d0-ea4d-4d80-9ba4-784e2c09b69b))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 535e513d-a738-4607-97d6-cd291f6d232a))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 64b73b94-7f33-47bc-9c8f-b15c414e5ea9))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 9d80a0ad-7e4b-422a-bd27-2e35a6e87f06))
(pad "1" smd roundrect (at -0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 22 "Net-(D104-Pad1)") (pintype "passive") (tstamp 142c2bcf-9b36-4cc7-878d-1c4c691219ee))
(pad "2" smd roundrect (at 0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "GND") (pintype "passive") (tstamp ce023109-7638-4247-b860-9f6c47ecc8b4))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x08_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp 5a0a4e2a-0874-4bbc-8677-335f118d3699)
(at 129.515 97.79 180)
(descr "Through hole straight pin header, 1x08, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x08 2.54mm single row")
(property "Sheetfile" "TMC-Breakout.kicad_sch")
(property "Sheetname" "")
(path "/2b29a1df-4f19-4c6f-a988-83638bd58afc")
(attr through_hole)
(fp_text reference "J102" (at 0 -2.33 180) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9bfb9a2d-9759-4906-845c-d048dab558d5)
)
(fp_text value "Conn_01x08" (at 0 20.11 180) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f28668fe-0499-440e-85ff-7b431658a673)
)
(fp_text user "${REFERENCE}" (at 0 8.89 270) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8d335a5b-3926-4101-9187-1020604bd096)
)
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 17079745-6725-4481-bfc7-c7bb19ff106d))
(fp_line (start -1.33 1.27) (end -1.33 19.11) (layer "F.SilkS") (width 0.12) (tstamp 20f8fb1a-dd4e-4d41-8e4f-c2b3d7a660fa))
(fp_line (start 1.33 1.27) (end 1.33 19.11) (layer "F.SilkS") (width 0.12) (tstamp 312481c3-7130-439c-b3d9-d5321fbfefd6))
(fp_line (start -1.33 19.11) (end 1.33 19.11) (layer "F.SilkS") (width 0.12) (tstamp 74c0797f-ea36-4749-89e5-00def300311e))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp e2dc3f59-2fd2-4cac-8022-6a114a54f2f5))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp e9c8b75d-677e-4a5a-a329-208e778c3122))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 41c64d09-581c-4398-bdb0-cecdc2dc11e7))
(fp_line (start -1.8 19.55) (end 1.8 19.55) (layer "F.CrtYd") (width 0.05) (tstamp 76506724-9d86-4b87-a765-40fbd52f2cb8))
(fp_line (start 1.8 19.55) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 9bd010f7-b71b-4644-a37d-1e8a695f2c8a))
(fp_line (start -1.8 -1.8) (end -1.8 19.55) (layer "F.CrtYd") (width 0.05) (tstamp fbeb0089-8860-4668-902e-fc6221e77de4))
(fp_line (start 1.27 19.05) (end -1.27 19.05) (layer "F.Fab") (width 0.1) (tstamp 0c67f935-7d44-4650-a9d9-eda51522154c))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 2882ae9f-4944-45b5-961d-f7be290f09d1))
(fp_line (start -1.27 19.05) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 3b66fc09-b3ee-4250-81ed-3c878261ab31))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 62249aae-2e35-4bd7-bc6a-9e14c03d975a))
(fp_line (start 1.27 -1.27) (end 1.27 19.05) (layer "F.Fab") (width 0.1) (tstamp da1bfc2d-ea2d-4ef5-a6c1-e43a15119bdc))
(pad "1" thru_hole rect (at 0 0 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 9 "VDD") (pinfunction "Pin_1") (pintype "passive") (tstamp e517bc6c-c42a-43f4-98f7-44083b9d8ec0))
(pad "2" thru_hole oval (at 0 2.54 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 10 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp f1905932-f29a-4176-933e-6d591980e715))
(pad "3" thru_hole oval (at 0 5.08 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 11 "/M2B") (pinfunction "Pin_3") (pintype "passive") (tstamp d664d1b0-546e-4037-9754-eb8d99e9cfd1))
(pad "4" thru_hole oval (at 0 7.62 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 12 "/M2A") (pinfunction "Pin_4") (pintype "passive") (tstamp 573cd64e-dc7c-4ef4-9614-5ac4abbddace))
(pad "5" thru_hole oval (at 0 10.16 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 13 "/M1A") (pinfunction "Pin_5") (pintype "passive") (tstamp b2ab12a9-68cd-4788-b4f7-9b9307c17d04))
(pad "6" thru_hole oval (at 0 12.7 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 14 "/M1B") (pinfunction "Pin_6") (pintype "passive") (tstamp 86d18e23-738c-4d51-89f3-9d128f981ee4))
(pad "7" thru_hole oval (at 0 15.24 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 15 "VCC") (pinfunction "Pin_7") (pintype "passive") (tstamp 203cce32-0404-41f9-8fc0-4b0047057d8c))
(pad "8" thru_hole oval (at 0 17.78 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 10 "GND") (pinfunction "Pin_8") (pintype "passive") (tstamp 9ba824cf-7f1e-47e3-bc42-1448d07e2932))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x08_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 5f7f91a7-5ac6-46cd-ab96-22a999caacff)
(at 124.714 98.552 180)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(property "LCSC" "C23138")
(property "Sheetfile" "TMC-Breakout.kicad_sch")
(property "Sheetname" "")
(path "/8a33e9ed-f13e-4065-a6d3-0e588dda1f06")
(attr smd)
(fp_text reference "R101" (at 0 -1.43) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 74ca43a5-c8ea-4523-bc9f-2656e23b97b5)
)
(fp_text value "330R" (at 0 1.43) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4c889cd7-9b2a-481a-a3e1-4730cd65ed53)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") hide
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp fcc0d587-ce9b-4a5e-a1f9-535e36a7f627)
)
(fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 85422171-d7e6-4ffd-ba71-a99427edb383))
(fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp ac234c8d-91b7-4a10-8e1d-03bf6177241c))
(fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 6419b231-f67c-401f-b87b-3224ddac0ca4))
(fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 9d83b2f7-273a-482c-92cf-5183c33e6c6c))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp a65279e4-7d71-45ba-bb40-4b4fa59a5b22))
(fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp b7f82dc6-bd77-4b94-a4a4-a659919653d2))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 45adbea8-d73c-40c8-88ab-095b6a89b2ba))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp ae48eefc-6895-41ed-a91a-8e972df24bc3))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp bc04990e-34de-4cfb-b643-244b7846eb9d))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp e06f216c-846a-464a-aaf7-44823c42466a))
(pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 15 "VCC") (pintype "passive") (tstamp c049c862-f1a9-47e7-a2b7-0388a55c4649))
(pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 19 "Net-(D101-Pad2)") (pintype "passive") (tstamp 16e32b7b-6a6e-4556-b522-7c00847fccae))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_SMD:LED_0603_1608Metric_Pad1.05x0.95mm_HandSolder" (layer "F.Cu")
(tedit 5F68FEF1) (tstamp 63ee48f1-83e7-49a2-b43b-5caca14aef53)
(at 121.158 80.518 180)
(descr "LED SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "LED handsolder")
(property "LCSC" "C2286")
(property "Sheetfile" "TMC-Breakout.kicad_sch")
(property "Sheetname" "")
(path "/bc756c09-8ed8-47a3-8efa-d9ad5913edc6")
(attr smd)
(fp_text reference "D102" (at 0 -1.43) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d1425a22-e73b-460f-af0e-7507e435ac5f)
)
(fp_text value "LED" (at 0 1.43) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6eba4ad1-47da-4670-9fbd-441ebb78628f)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") hide
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 7c02053b-05b3-4d2f-9a9e-f42afb6fc1c8)
)
(fp_line (start -1.66 0.735) (end 0.8 0.735) (layer "F.SilkS") (width 0.12) (tstamp 087c4343-e7e6-4c9f-901e-5275f623fb14))
(fp_line (start 0.8 -0.735) (end -1.66 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 610be7ee-f510-4927-abd9-46dd07853b10))
(fp_line (start -1.66 -0.735) (end -1.66 0.735) (layer "F.SilkS") (width 0.12) (tstamp e09ae2c8-fef0-423a-96c1-8fd760118215))
(fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 0b34c9fe-2735-4461-8e48-a3f9931d4044))
(fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 3e44a617-f219-4325-b31d-976128b1aa7a))
(fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp f9532b64-d794-40fe-8afd-3e5aa08ac3da))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp fe89f491-d065-4a37-869a-df67a40f7586))
(fp_line (start -0.5 -0.4) (end -0.8 -0.1) (layer "F.Fab") (width 0.1) (tstamp 54891c36-eeaf-4682-b8cd-06f69f97ea3f))
(fp_line (start -0.8 -0.1) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 736563d6-40c8-43c2-89fc-adbde3ef118b))
(fp_line (start 0.8 -0.4) (end -0.5 -0.4) (layer "F.Fab") (width 0.1) (tstamp 7525e38b-8df0-40b2-b310-eab822b6ed36))
(fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 956e7dde-271f-4872-9661-6c725d758e70))
(fp_line (start -0.8 0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp df059c98-40ee-4b0c-b0e1-442b482d569b))
(pad "1" smd roundrect (at -0.875 0 180) (size 1.05 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 20 "Net-(D102-Pad1)") (pinfunction "K") (pintype "passive") (tstamp 0efbc6d1-312b-4e5d-bf9a-62f1d7466b8f))
(pad "2" smd roundrect (at 0.875 0 180) (size 1.05 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "/DIR") (pinfunction "A") (pintype "passive") (tstamp bdcdfdf8-7fa7-49b2-b28f-4423295573b2))
(model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_SMD:LED_0603_1608Metric_Pad1.05x0.95mm_HandSolder" (layer "F.Cu")
(tedit 5F68FEF1) (tstamp 6fa7077c-d233-4569-9b32-3db1d1cc05ea)
(at 114.808 93.98 90)
(descr "LED SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "LED handsolder")
(property "LCSC" "C2286")
(property "Sheetfile" "TMC-Breakout.kicad_sch")
(property "Sheetname" "")
(path "/1ab65f06-8691-4f48-a2dc-555b109e9686")
(attr smd)
(fp_text reference "D104" (at 0 -1.43 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 671eabf6-7e0a-49f5-b184-a1225f97ea4e)
)
(fp_text value "LED" (at 0 1.43 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0fdd5288-ca3c-43f6-9448-c9ce8b04f34e)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") hide
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 88068272-2d24-47bf-9770-3e59e681d4f0)
)
(fp_line (start 0.8 -0.735) (end -1.66 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 26df8da8-0f18-49d8-a774-03cb2e42e3d3))
(fp_line (start -1.66 0.735) (end 0.8 0.735) (layer "F.SilkS") (width 0.12) (tstamp 6452a10d-ba75-4018-99af-a34694924cc9))
(fp_line (start -1.66 -0.735) (end -1.66 0.735) (layer "F.SilkS") (width 0.12) (tstamp bd89b920-88c9-4863-aebe-ae4eba10a0ff))
(fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 2308cb30-93d6-4618-906c-01f22b79935c))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 6a8a7954-ea3f-4484-ae6b-8ebfd8eeb439))
(fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 89ccc1dd-389c-4a26-a78a-f6dd58b83b4e))
(fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 997c0777-35e6-49b2-9677-01c2f2507772))
(fp_line (start 0.8 -0.4) (end -0.5 -0.4) (layer "F.Fab") (width 0.1) (tstamp 1afa957d-c2bf-47e4-8761-38e12965e809))
(fp_line (start -0.8 0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 45414802-2348-4f5a-8010-3b4e87c25435))
(fp_line (start -0.5 -0.4) (end -0.8 -0.1) (layer "F.Fab") (width 0.1) (tstamp 8d1d0d8a-4a4f-46ac-b230-e4e93382023a))
(fp_line (start -0.8 -0.1) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 95c97437-64c9-4014-81c4-46e7188b4a4d))
(fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp b66f7b03-b22f-4b41-a73b-3fd947f9bca8))
(pad "1" smd roundrect (at -0.875 0 90) (size 1.05 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 22 "Net-(D104-Pad1)") (pinfunction "K") (pintype "passive") (tstamp c4cf3fde-2fde-4aa6-94b9-65d85ebd45ce))
(pad "2" smd roundrect (at 0.875 0 90) (size 1.05 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 16 "/DIAG0") (pinfunction "A") (pintype "passive") (tstamp 4ba04c45-2d1d-49e5-9ff2-3f0611c8166d))
(model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Project Footprints:MODULE_TMC2130_SILENTSTEPSTICK" (layer "F.Cu")
(tedit 63A310FE) (tstamp 6ffbefed-3943-4b21-b425-7ebe7c8c7dbd)
(at 139.7 88.9)
(property "MANUFACTURER" "Trinamic Motion")
(property "Sheetfile" "TMC-Breakout.kicad_sch")
(property "Sheetname" "")
(path "/ba50f8c4-5e18-4f63-b86e-a71437167a77")
(attr through_hole)
(fp_text reference "U101" (at -3.155 -11.489) (layer "F.SilkS") hide
(effects (font (size 1.4 1.4) (thickness 0.15)))
(tstamp 076a5627-6f38-45b6-b710-23f674d08001)
)
(fp_text value "TMC2130_SILENTSTEPSTICK" (at 19.07 11.411) (layer "F.Fab") hide
(effects (font (size 1.4 1.4) (thickness 0.15)))
(tstamp 946be775-4a91-4c04-9273-128b157b01be)
)
(fp_line (start -7.62 -10.16) (end -7.62 10.16) (layer "F.SilkS") (width 0.127) (tstamp 2f25ef79-1fdc-4093-bfef-2949b723ee33))
(fp_line (start 7.62 10.16) (end 7.62 -10.16) (layer "F.SilkS") (width 0.127) (tstamp 4e369553-f166-427c-ac95-a1e610fa8768))
(fp_line (start -7.62 10.16) (end 7.62 10.16) (layer "F.SilkS") (width 0.127) (tstamp 5195cf84-e672-45bd-921a-cf1436940cfc))
(fp_line (start 7.62 -10.16) (end -7.62 -10.16) (layer "F.SilkS") (width 0.127) (tstamp f59bebdd-72fc-4545-aafd-275e2aed15ce))
(fp_circle (center 8.21 -8.89) (end 8.31 -8.89) (layer "F.SilkS") (width 0.2) (fill none) (tstamp 4db2ac84-1625-4676-9882-98ec5db1d56a))
(fp_line (start -7.87 -10.41) (end 7.87 -10.41) (layer "F.CrtYd") (width 0.05) (tstamp 0ef887db-3171-4635-8fa3-3e67e3295ccb))
(fp_line (start 7.87 -10.41) (end 7.87 10.41) (layer "F.CrtYd") (width 0.05) (tstamp 68aec12c-29cd-45c3-9792-a72ffefebd86))
(fp_line (start -7.87 10.41) (end 7.87 10.41) (layer "F.CrtYd") (width 0.05) (tstamp a1e79e07-d3d3-4758-a8f9-863056651778))
(fp_line (start -7.87 -10.41) (end -7.87 10.41) (layer "F.CrtYd") (width 0.05) (tstamp b980b47c-e040-4b0a-84ba-5d1f3045df90))
(fp_line (start -7.62 -10.16) (end -7.62 10.16) (layer "F.Fab") (width 0.127) (tstamp 1db668f4-ac49-4db8-ac82-4976163143f3))
(fp_line (start -7.62 10.16) (end 7.62 10.16) (layer "F.Fab") (width 0.127) (tstamp 962b9483-ec2c-4ad8-8531-53b376fa369a))
(fp_line (start 7.62 -10.16) (end -7.62 -10.16) (layer "F.Fab") (width 0.127) (tstamp d4b71771-4994-4db0-aa0e-f71ed76fe70a))
(fp_line (start 7.62 10.16) (end 7.62 -10.16) (layer "F.Fab") (width 0.127) (tstamp f45b5206-0e30-4297-b905-7d3a60241578))
(fp_circle (center 8.21 -8.89) (end 8.31 -8.89) (layer "F.Fab") (width 0.2) (fill none) (tstamp 3b27ccd2-8313-468b-9aa6-e3da95b52566))
(pad "JP1_1" thru_hole rect (at 6.35 -8.89) (size 1.524 1.524) (drill 1.016) (layers *.Cu *.Mask)
(net 1 "/DIR") (pinfunction "DIR") (pintype "input") (tstamp 5d65d5f6-5781-4239-97ae-42a739101a60))
(pad "JP1_2" thru_hole circle (at 6.35 -6.35) (size 1.524 1.524) (drill 1.016) (layers *.Cu *.Mask)
(net 2 "/STEP") (pinfunction "STEP") (pintype "input") (tstamp 744cebf9-479e-4e61-92e4-dd24ba2bf812))
(pad "JP1_3" thru_hole circle (at 6.35 -3.81) (size 1.524 1.524) (drill 1.016) (layers *.Cu *.Mask)
(net 3 "/DCO") (pinfunction "DC0") (pintype "bidirectional") (tstamp 304d8e63-f207-4151-83f1-71af7f13930e))
(pad "JP1_4" thru_hole circle (at 6.35 -1.27) (size 1.524 1.524) (drill 1.016) (layers *.Cu *.Mask)
(net 4 "/CFG0") (pinfunction "SDO/CFG0") (pintype "bidirectional") (tstamp e8356b3f-e891-4904-b3e7-42f8b6732d5b))
(pad "JP1_5" thru_hole circle (at 6.35 1.27) (size 1.524 1.524) (drill 1.016) (layers *.Cu *.Mask)
(net 5 "/CFG3") (pinfunction "CS/CFG3") (pintype "input") (tstamp 9c046e0c-722d-4101-9d65-8f4f7f208b22))
(pad "JP1_6" thru_hole circle (at 6.35 3.81) (size 1.524 1.524) (drill 1.016) (layers *.Cu *.Mask)
(net 6 "/CFG2") (pinfunction "SCK/CFG2") (pintype "input") (tstamp 6ba2f2b8-80f4-4821-bcbc-045c74711d25))
(pad "JP1_7" thru_hole circle (at 6.35 6.35) (size 1.524 1.524) (drill 1.016) (layers *.Cu *.Mask)
(net 7 "/CFG1") (pinfunction "SDI/CFG1") (pintype "input") (tstamp 7da4fffb-d4ff-4206-a4a2-cc9c735c498a))
(pad "JP1_8" thru_hole circle (at 6.35 8.89) (size 1.524 1.524) (drill 1.016) (layers *.Cu *.Mask)
(net 8 "/~{EN}") (pinfunction "EN") (pintype "input") (tstamp bad85f1b-f91e-4d64-a943-74ed03f5dca6))
(pad "JP2_1" thru_hole rect (at -6.35 8.89) (size 1.524 1.524) (drill 1.016) (layers *.Cu *.Mask)
(net 9 "VDD") (pinfunction "VM") (pintype "power_in") (tstamp 6a82af41-dd0e-45fa-94d2-eb0d17504959))
(pad "JP2_2" thru_hole circle (at -6.35 6.35) (size 1.524 1.524) (drill 1.016) (layers *.Cu *.Mask)
(net 10 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 056be44e-87ca-489f-bde6-106691f4c322))
(pad "JP2_3" thru_hole circle (at -6.35 3.81) (size 1.524 1.524) (drill 1.016) (layers *.Cu *.Mask)
(net 11 "/M2B") (pinfunction "M2B") (pintype "passive") (tstamp d1815e79-80cd-489a-8879-2cb31a4b6b3a))
(pad "JP2_4" thru_hole circle (at -6.35 1.27) (size 1.524 1.524) (drill 1.016) (layers *.Cu *.Mask)
(net 12 "/M2A") (pinfunction "M2A") (pintype "passive") (tstamp 4b323d8b-3264-4877-b03b-9953db766f2b))
(pad "JP2_5" thru_hole circle (at -6.35 -1.27) (size 1.524 1.524) (drill 1.016) (layers *.Cu *.Mask)
(net 13 "/M1A") (pinfunction "M1A") (pintype "passive") (tstamp 988fef71-ee98-4384-9f54-1235b232733b))
(pad "JP2_6" thru_hole circle (at -6.35 -3.81) (size 1.524 1.524) (drill 1.016) (layers *.Cu *.Mask)
(net 14 "/M1B") (pinfunction "M1B") (pintype "passive") (tstamp 5c1799d7-1079-4dc2-ab63-2bdd2f1bb048))
(pad "JP2_7" thru_hole circle (at -6.35 -6.35) (size 1.524 1.524) (drill 1.016) (layers *.Cu *.Mask)
(net 15 "VCC") (pinfunction "VIO") (pintype "power_in") (tstamp 76470a1c-30e1-4cba-98e6-f05fd396c469))
(pad "JP2_8" thru_hole circle (at -6.35 -8.89) (size 1.524 1.524) (drill 1.016) (layers *.Cu *.Mask)
(net 10 "GND") (pinfunction "GND") (pintype "power_in") (tstamp c689c0a6-4c89-4b35-8976-538fa3e6baca))
(pad "JP3_1" thru_hole circle (at 1.27 8.89) (size 1.524 1.524) (drill 1.016) (layers *.Cu *.Mask)
(net 16 "/DIAG0") (pinfunction "DIAG0") (pintype "output") (tstamp c17a0034-beb4-40ce-80dd-f7da90ca07d9))
(pad "JP3_2" thru_hole circle (at 3.81 8.89) (size 1.524 1.524) (drill 1.016) (layers *.Cu *.Mask)
(net 17 "/DIAG1") (pinfunction "DIAG1") (pintype "output") (tstamp 1a9bd029-e1a7-4948-9aac-4bf7a52ed889))
(pad "VREF" thru_hole circle (at 2.54 7.239) (size 1.524 1.524) (drill 1.016) (layers *.Cu *.Mask)
(net 18 "unconnected-(U101-PadVREF)") (pinfunction "VREF") (pintype "passive+no_connect") (tstamp 51f074f9-9494-420b-8c59-034cec3d452a))
(model "${KIPRJMOD}/Footprints/TMC2130-V3.0.step"
(offset (xyz 0 0 2.7))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 -180))
)
)
(footprint "LED_SMD:LED_0603_1608Metric_Pad1.05x0.95mm_HandSolder" (layer "F.Cu")
(tedit 5F68FEF1) (tstamp 7a361f04-846f-4ab6-bed7-8e3589ef1c6c)
(at 121.158 98.552)
(descr "LED SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "LED handsolder")
(property "LCSC" "C2286")
(property "Sheetfile" "TMC-Breakout.kicad_sch")
(property "Sheetname" "")
(path "/0bc30df2-391e-4913-b39e-9895861f12d9")
(attr smd)
(fp_text reference "D101" (at 0 -1.43) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d94e578a-470b-41db-8957-a29d9589e76c)
)
(fp_text value "LED" (at 0 1.43) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2513b79e-bdcc-4d3f-b649-385a98048fd0)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") hide
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 8d2d7748-af10-4905-abd4-03956094e95a)
)
(fp_line (start 0.8 -0.735) (end -1.66 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 1b47a270-ade3-4853-8309-c76d0cd81435))
(fp_line (start -1.66 0.735) (end 0.8 0.735) (layer "F.SilkS") (width 0.12) (tstamp 88d76e53-81d8-4751-807b-aab2dc8a5bc6))
(fp_line (start -1.66 -0.735) (end -1.66 0.735) (layer "F.SilkS") (width 0.12) (tstamp dc6c3f70-f491-45dd-9128-d1da31b73d5c))
(fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 10e3a506-ebf4-4a59-bfee-788683e87047))
(fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 46656667-2623-4973-a968-7b7cc54722c8))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 681a7714-0753-4304-828c-65c5f44ba5e8))
(fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp b461bc28-f345-4eeb-9dc6-71e2670f8e90))
(fp_line (start 0.8 -0.4) (end -0.5 -0.4) (layer "F.Fab") (width 0.1) (tstamp 2936734e-10d1-455f-8747-78017892100a))
(fp_line (start -0.5 -0.4) (end -0.8 -0.1) (layer "F.Fab") (width 0.1) (tstamp 5901d2dc-de6c-4d7a-909e-e13caf6e5a97))
(fp_line (start -0.8 0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 6c53ec3c-b470-4b98-9304-dba4822be074))
(fp_line (start -0.8 -0.1) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 87245456-853c-49e9-9a5e-067b0ceae127))
(fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp c41a4741-3be4-4fa7-b936-bd72b2e37958))
(pad "1" smd roundrect (at -0.875 0) (size 1.05 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "/~{EN}") (pinfunction "K") (pintype "passive") (tstamp 533aa23a-74e1-4e0b-93e0-76a00493b70d))
(pad "2" smd roundrect (at 0.875 0) (size 1.05 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 19 "Net-(D101-Pad2)") (pinfunction "A") (pintype "passive") (tstamp 7e896ac3-6538-4d35-aa4e-51d4b9607f66))
(model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x08_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp adb301fd-4a6b-4a62-b5b0-84652bb16fbf)
(at 117.564 80.025)
(descr "Through hole straight pin header, 1x08, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x08 2.54mm single row")
(property "Sheetfile" "TMC-Breakout.kicad_sch")
(property "Sheetname" "")
(path "/98c08963-4186-4b7b-a686-535051f52fc0")
(attr through_hole)
(fp_text reference "J101" (at 0 -2.33) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5490e26f-202e-47b4-8835-70ac89172281)
)
(fp_text value "Conn_01x08" (at 0 20.11) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b5577d10-d220-4858-91e1-f3b8f1bd7652)
)
(fp_text user "${REFERENCE}" (at 0 8.89 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4b063bc7-d496-4a6e-8cc4-e6d4367e09d6)
)
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 1780a5ac-1d92-41b9-9475-4cb172108e90))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 1bebc1f8-c513-4fcc-abcd-7b7cfe9d9d75))
(fp_line (start -1.33 19.11) (end 1.33 19.11) (layer "F.SilkS") (width 0.12) (tstamp 5108c8f3-d1fd-48b7-bd0e-766f2496a19a))
(fp_line (start -1.33 1.27) (end -1.33 19.11) (layer "F.SilkS") (width 0.12) (tstamp 8f53366d-4697-43ad-a1d5-6782fa90a5a1))
(fp_line (start 1.33 1.27) (end 1.33 19.11) (layer "F.SilkS") (width 0.12) (tstamp aeb38345-8ee3-4800-9d61-e2d98f8f3aa1))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp e61621b4-4636-4df2-9b19-5b22d09b67f7))
(fp_line (start -1.8 -1.8) (end -1.8 19.55) (layer "F.CrtYd") (width 0.05) (tstamp 28b184d9-ef18-47a0-85fd-1e68c4743878))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 87794cdc-f614-4aff-99be-b676fd72fc0d))
(fp_line (start 1.8 19.55) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp e9ea1cd1-1c28-4aea-b9d6-b2e8d2db9dfb))
(fp_line (start -1.8 19.55) (end 1.8 19.55) (layer "F.CrtYd") (width 0.05) (tstamp f9a17967-dcae-4f77-a7d5-35297648adab))
(fp_line (start 1.27 -1.27) (end 1.27 19.05) (layer "F.Fab") (width 0.1) (tstamp 14019038-32b9-4867-8732-b9168f818e5a))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 1e79dfa3-31a9-4961-a130-a4bbb7202651))
(fp_line (start 1.27 19.05) (end -1.27 19.05) (layer "F.Fab") (width 0.1) (tstamp 97e40d11-f5b5-45ed-993d-3ff374a62a07))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp d1ad43b3-0cf4-4755-be90-579c44137dbf))
(fp_line (start -1.27 19.05) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp f2fd19d8-15b0-484b-8601-ccc0c5603e53))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "/DIR") (pinfunction "Pin_1") (pintype "passive") (tstamp 53f28937-06c7-40fb-aa7e-75549af313fc))
(pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "/STEP") (pinfunction "Pin_2") (pintype "passive") (tstamp 0dc0b092-3fd3-490a-aaf8-7ee27f2afbb4))
(pad "3" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 "/DCO") (pinfunction "Pin_3") (pintype "passive") (tstamp 5e2330e6-2d6c-4ec9-a84b-432f9be478c1))
(pad "4" thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 4 "/CFG0") (pinfunction "Pin_4") (pintype "passive") (tstamp 677d64f9-0d84-4d8c-88a4-073836a6c23b))
(pad "5" thru_hole oval (at 0 10.16) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 5 "/CFG3") (pinfunction "Pin_5") (pintype "passive") (tstamp a9ccda33-fed3-4ed3-a4df-1401ce843b0d))
(pad "6" thru_hole oval (at 0 12.7) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 6 "/CFG2") (pinfunction "Pin_6") (pintype "passive") (tstamp f9f972ad-da2b-40c0-b15f-401316047972))
(pad "7" thru_hole oval (at 0 15.24) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 7 "/CFG1") (pinfunction "Pin_7") (pintype "passive") (tstamp eef6f85a-fefa-4ed3-9cd6-3b13e931149e))
(pad "8" thru_hole oval (at 0 17.78) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 8 "/~{EN}") (pinfunction "Pin_8") (pintype "passive") (tstamp a5f852ac-ed78-4a8a-9a30-31d4b090c90e))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x08_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp b4246991-2fe5-433f-84c9-c56175a7dab5)
(at 114.808 80.264 90)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(property "LCSC" "C23138")
(property "Sheetfile" "TMC-Breakout.kicad_sch")
(property "Sheetname" "")
(path "/3c24c7d5-a631-439c-b2e3-697f135849c1")
(attr smd)
(fp_text reference "R105" (at 0 -1.43 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9d552c69-2865-41c9-acbe-e07e443928e9)
)
(fp_text value "330R" (at 0 1.43 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0bb7b9a3-2f94-46b7-a81a-781d0584de2e)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") hide
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 5258670a-bcf3-4a01-904b-a5a372196388)
)
(fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 03ce16eb-7c18-4974-83d0-ec4c85f3cef2))
(fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp c37058cf-3c8d-4e50-a7c7-1ec660169e74))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 013d1cbc-c3e8-4c6f-a319-4a37918dea86))
(fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 0498991c-b861-4aaa-8d14-d748afdf4fe1))
(fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 32d8fd98-46ac-434a-9e81-b88546609bf6))
(fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 84d284f8-f517-46e3-8f0c-de2563d8235b))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp b2fdfaef-0329-49d0-8e29-434b48f7906f))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp bd15bd96-cea0-4722-ada6-ce4bfc3fe4ef))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp c4dcc999-7307-421d-9ca2-eb8fb35a8de4))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp f6605b0e-ea06-4069-88aa-4968746cc6f1))
(pad "1" smd roundrect (at -0.9125 0 90) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 23 "Net-(D105-Pad1)") (pintype "passive") (tstamp a6aaefbf-9d4b-4c8d-8079-22da30f7a4c2))
(pad "2" smd roundrect (at 0.9125 0 90) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "GND") (pintype "passive") (tstamp 0134a6b1-a40d-4c50-9e1a-dfa3523f5afa))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp cbceee8d-68bf-4308-9147-76091aa77a6a)
(at 123.952 80.518 90)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(property "LCSC" "C23138")
(property "Sheetfile" "TMC-Breakout.kicad_sch")
(property "Sheetname" "")
(path "/77bc34cd-0919-48ef-b1ce-1a35e1dc8116")
(attr smd)
(fp_text reference "R102" (at 0 -1.43 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dbb9864e-e1c9-4927-9628-4f7a152701bf)
)
(fp_text value "330R" (at 0 1.43 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6dea77b7-b258-4b8b-abdf-fc354dfcea4b)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") hide
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 8dc40b43-3ca3-4852-a3e4-b13078e014ce)
)
(fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 59932692-5107-46bd-b68e-99f5007d6319))
(fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 9772e816-83d7-4817-a605-3f63e73102af))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 3181a80d-0ac2-4407-9b33-a48e8877eb00))
(fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp a32cb0f3-5909-484f-8d5d-b51b0bb918f5))
(fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp ecd33607-eb6b-4f46-a468-c76710ec843d))
(fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp f9673244-45cc-41a2-9bc0-a82a5aeee469))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 63323166-7578-44c1-8012-cefa5620999f))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 7a26399b-9c72-4e9d-968b-606e23366dd1))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 965de64c-bea4-4458-88c5-0497ff68f78c))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp b226f0c4-f8c9-424b-867c-17d2b1a662d9))
(pad "1" smd roundrect (at -0.9125 0 90) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 20 "Net-(D102-Pad1)") (pintype "passive") (tstamp bf292c76-429a-4681-9e25-760345c5b603))
(pad "2" smd roundrect (at 0.9125 0 90) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "GND") (pintype "passive") (tstamp 94dbe5cd-aa51-489c-830e-f8db22076257))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp de9d30fc-3ffe-4da7-a770-86ad15015714)
(at 113.792 87.65)
(descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x02 2.54mm single row")
(property "Sheetfile" "TMC-Breakout.kicad_sch")
(property "Sheetname" "")
(path "/f0d9676d-f897-453b-93ea-a42481f06257")
(attr through_hole)
(fp_text reference "J103" (at 0 -2.33) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3b1d087b-6824-45fb-a3d1-c3045c8ebdf7)
)
(fp_text value "Conn_01x02" (at 0 4.87) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9c591612-3e96-4ace-b857-8cc230a215be)
)
(fp_text user "${REFERENCE}" (at 0 1.27 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ea1cd8f2-8bbe-4451-8f53-6a68dc3641bc)
)
(fp_line (start -1.33 3.87) (end 1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp 22d17553-baf9-4b6b-a605-5af9b5a9c4ba))
(fp_line (start 1.33 1.27) (end 1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp 316eb892-fac6-4f8e-b758-9ef8dcf245ae))
(fp_line (start -1.33 1.27) (end -1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp 33f239a1-58fd-49a1-8613-300739af48a0))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 6dcf50f6-cfeb-491e-a452-7b51ab6d0cc9))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp a065d4f7-6901-4547-a79b-8f2c41d216fc))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp b88a24a0-4c7c-4ef3-a97c-e53fbf50b237))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 58e1becc-6cb4-495a-89c6-3b78d003b240))
(fp_line (start -1.8 4.35) (end 1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp 5daa3413-10df-47bb-b11f-3665887dcbdf))
(fp_line (start -1.8 -1.8) (end -1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp 7886423a-21a2-4018-b6bd-4ba8495e0883))
(fp_line (start 1.8 4.35) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp defa3352-1295-4e9f-8db2-49ca840351fe))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 30ede04e-4025-4743-8010-b9e439eb9023))
(fp_line (start 1.27 3.81) (end -1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp 4fd28218-b204-4d67-9ea7-115bf1f74408))
(fp_line (start -1.27 3.81) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 5dc4208f-fa00-4d45-aad4-7500140e79b0))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp cf7a1780-fa32-4919-9fff-913f9a367806))
(fp_line (start 1.27 -1.27) (end 1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp f2cdc89a-5b7f-4dc6-9cbe-fb8aee6b44d6))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 17 "/DIAG1") (pinfunction "Pin_1") (pintype "passive") (tstamp 68b891dd-e26a-47c7-8431-8c5ae28c9762))
(pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 16 "/DIAG0") (pinfunction "Pin_2") (pintype "passive") (tstamp ad1f1af3-9695-4962-8d5e-d160a2809042))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_SMD:LED_0603_1608Metric_Pad1.05x0.95mm_HandSolder" (layer "F.Cu")
(tedit 5F68FEF1) (tstamp f00e6d27-f694-4455-ae51-66d6a8fda36a)
(at 121.158 83.20375 180)
(descr "LED SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "LED handsolder")
(property "LCSC" "C2286")
(property "Sheetfile" "TMC-Breakout.kicad_sch")
(property "Sheetname" "")
(path "/70024ffb-3f8a-49d9-b847-effe574cd4f0")
(attr smd)
(fp_text reference "D103" (at 0 -1.43) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4ad26608-c959-4727-9060-a6bd3ce7a891)
)
(fp_text value "LED" (at 0 1.43) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3d6d6c6b-59a2-4f54-93e7-21d6cb55d98c)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") hide
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 9a53e4e7-3218-45db-b52b-f6d33a31cd14)
)
(fp_line (start 0.8 -0.735) (end -1.66 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 06dbc049-ee48-4690-934c-b484c175660d))
(fp_line (start -1.66 -0.735) (end -1.66 0.735) (layer "F.SilkS") (width 0.12) (tstamp a7fda42d-0e62-4d3e-ab2c-ee2279aea1a4))
(fp_line (start -1.66 0.735) (end 0.8 0.735) (layer "F.SilkS") (width 0.12) (tstamp ede6c253-51d2-486c-b731-74b65453d812))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 06b2a6ce-6c50-416f-8891-7cebb34b454c))
(fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 3caa1ba2-5185-48c3-a2a5-380895e01ef7))
(fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp da52af3f-0ce9-43b2-9c5d-8a216a954298))
(fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp fc690b34-8c4c-4f59-9d9f-5953c8ed9e2f))
(fp_line (start -0.8 0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 452e4ea2-cde9-4685-9fca-5f441537a292))
(fp_line (start -0.5 -0.4) (end -0.8 -0.1) (layer "F.Fab") (width 0.1) (tstamp 60677166-5cb1-465e-bda7-05c23ba5a1e1))
(fp_line (start -0.8 -0.1) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 8241a16b-8b38-4665-bb67-217a3224b934))
(fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp a04e54db-730c-444e-829e-ace7b35c8eab))
(fp_line (start 0.8 -0.4) (end -0.5 -0.4) (layer "F.Fab") (width 0.1) (tstamp baa6c4a8-ca9b-4de1-b96e-11bba2431de9))
(pad "1" smd roundrect (at -0.875 0 180) (size 1.05 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 21 "Net-(D103-Pad1)") (pinfunction "K") (pintype "passive") (tstamp 4520d19a-bf18-47ae-b59d-f152c3cce6e7))
(pad "2" smd roundrect (at 0.875 0 180) (size 1.05 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "/STEP") (pinfunction "A") (pintype "passive") (tstamp 76130ec4-a8b2-4deb-b938-31b13626a64f))
(model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(gr_poly
(pts
(xy 140.885735 88.427413)
(xy 140.883915 88.402838)
(xy 140.889376 88.377354)
(xy 140.890969 88.368935)
(xy 140.891527 88.366244)
(xy 140.892192 88.363275)
(xy 140.892984 88.360008)
(xy 140.893926 88.35642)
(xy 140.895747 88.350959)
(xy 140.895747 88.35278)
(xy 140.902118 88.340947)
(xy 140.902309 88.339091)
(xy 140.902541 88.337276)
(xy 140.90281 88.335501)
(xy 140.903113 88.333765)
(xy 140.903814 88.330404)
(xy 140.904621 88.327181)
(xy 140.905514 88.324086)
(xy 140.90647 88.321108)
(xy 140.90747 88.318237)
(xy 140.90849 88.315463)
(xy 140.908842 88.315271)
(xy 140.909215 88.315038)
(xy 140.90961 88.314765)
(xy 140.910026 88.314453)
(xy 140.910463 88.314104)
(xy 140.910922 88.313719)
(xy 140.911401 88.313299)
(xy 140.911903 88.312846)
(xy 140.912969 88.311845)
(xy 140.914121 88.310727)
(xy 140.916681 88.308181)
(xy 140.915771 88.3009)
(xy 140.928513 88.289067)
(xy 140.937615 88.264493)
(xy 140.974021 88.228997)
(xy 140.992225 88.223536)
(xy 140.997686 88.208973)
(xy 141.011338 88.213524)
(xy 141.020782 88.212272)
(xy 141.022636 88.212039)
(xy 141.024266 88.21186)
(xy 141.025661 88.211744)
(xy 141.026812 88.211703)
(xy 141.031362 88.211703)
(xy 141.032304 88.212004)
(xy 141.033097 88.21223)
(xy 141.033444 88.212318)
(xy 141.033762 88.212391)
(xy 141.03432 88.2125)
(xy 141.034793 88.212566)
(xy 141.035202 88.212599)
(xy 141.035568 88.212612)
(xy 141.035913 88.212613)
(xy 141.050475 88.207153)
(xy 141.062308 88.213524)
(xy 141.072319 88.211703)
(xy 141.075009 88.212089)
(xy 141.076325 88.212317)
(xy 141.077624 88.212571)
(xy 141.078907 88.212851)
(xy 141.080175 88.213159)
(xy 141.08143 88.213497)
(xy 141.082672 88.213865)
(xy 141.083905 88.214265)
(xy 141.085127 88.214699)
(xy 141.086342 88.215167)
(xy 141.08755 88.215671)
(xy 141.088753 88.216213)
(xy 141.089952 88.216793)
(xy 141.091148 88.217413)
(xy 141.092343 88.218075)
(xy 141.101331 88.224446)
(xy 141.103445 88.225986)
(xy 141.105526 88.227546)
(xy 141.107587 88.22915)
(xy 141.109636 88.230817)
(xy 141.126019 88.240829)
(xy 141.127854 88.242034)
(xy 141.129607 88.243262)
(xy 141.131279 88.244514)
(xy 141.132874 88.245792)
(xy 141.134395 88.247096)
(xy 141.135843 88.248428)
(xy 141.137222 88.24979)
(xy 141.138534 88.251182)
(xy 141.139783 88.252606)
(xy 141.14097 88.254064)
(xy 141.142098 88.255556)
(xy 141.14317 88.257084)
(xy 141.144189 88.258649)
(xy 141.145158 88.260254)
(xy 141.146078 88.261898)
(xy 141.146953 88.263583)
(xy 141.166976 88.272685)
(xy 141.169707 88.281786)
(xy 141.174258 88.284517)
(xy 141.175018 88.284959)
(xy 141.175763 88.285434)
(xy 141.176492 88.28594)
(xy 141.177206 88.286477)
(xy 141.177905 88.287046)
(xy 141.17859 88.287646)
(xy 141.179261 88.288278)
(xy 141.179919 88.28894)
(xy 141.180563 88.289632)