-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathFineMotion-5.kicad_pcb
15511 lines (15461 loc) · 648 KB
/
FineMotion-5.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.2)
)
(paper "A4")
(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)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 1.11) (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") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0.051)
(solder_mask_min_width 0.25)
(aux_axis_origin 89.789 55.245)
(pcbplotparams
(layerselection 0x003ffff_ffffffff)
(disableapertmacros false)
(usegerberextensions true)
(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 true)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "plot/")
)
)
(net 0 "")
(net 1 "GND")
(net 2 "Net-(D1-Pad1)")
(net 3 "Net-(D1-Pad2)")
(net 4 "Net-(D2-Pad1)")
(net 5 "Net-(R2-Pad2)")
(net 6 "Net-(D2-Pad2)")
(net 7 "Net-(R4-Pad1)")
(net 8 "unconnected-(SW3-Pad3)")
(net 9 "unconnected-(U1-Pad4)")
(net 10 "unconnected-(U6-Pad4)")
(net 11 "unconnected-(U6-Pad7)")
(net 12 "+3V3")
(net 13 "Net-(R8-Pad2)")
(net 14 "unconnected-(U6-Pad9)")
(net 15 "BATT+")
(net 16 "Net-(R9-Pad2)")
(net 17 "Net-(R10-Pad2)")
(net 18 "Net-(R15-Pad1)")
(net 19 "Net-(C7-Pad1)")
(net 20 "UART_ESP+")
(net 21 "UART_ESP-")
(net 22 "Net-(R17-Pad2)")
(net 23 "unconnected-(U6-Pad10)")
(net 24 "unconnected-(U6-Pad11)")
(net 25 "unconnected-(U6-Pad12)")
(net 26 "unconnected-(U6-Pad13)")
(net 27 "unconnected-(U6-Pad14)")
(net 28 "unconnected-(U7-Pad7)")
(net 29 "unconnected-(U7-Pad8)")
(net 30 "unconnected-(U7-Pad9)")
(net 31 "unconnected-(U7-Pad10)")
(net 32 "SDA")
(net 33 "SCL")
(net 34 "ADC")
(net 35 "AUX_SDA")
(net 36 "AUX_SCL")
(net 37 "VBUS")
(net 38 "Net-(P1-PadA5)")
(net 39 "Net-(P1-PadA7)")
(net 40 "unconnected-(U7-Pad11)")
(net 41 "Net-(P1-PadA6)")
(net 42 "unconnected-(U7-Pad12)")
(net 43 "unconnected-(U7-Pad13)")
(net 44 "unconnected-(U7-Pad14)")
(net 45 "unconnected-(U7-Pad15)")
(net 46 "Net-(C14-Pad1)")
(net 47 "VBAT")
(net 48 "unconnected-(U9-Pad1)")
(net 49 "unconnected-(U9-Pad12)")
(net 50 "unconnected-(U6-Pad5)")
(footprint "LED_SMD:LED_0805_2012Metric" (layer "F.Cu")
(tedit 5B36C52C) (tstamp 00000000-0000-0000-0000-0000614b3f5b)
(at 124.333 57.658 90)
(descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "diode")
(property "JLCPCB_CORRECTION" "0;0;180")
(property "LCSC" "C34499")
(property "Sheetfile" "FineMotion-5.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000614c40d1")
(attr smd)
(fp_text reference "D2" (at 0.588 7.327 180) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp b794d099-f823-4d35-9755-ca1c45247ee9)
)
(fp_text value "LED_STDBY" (at 0 1.65 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp de370984-7922-4327-a0ba-7cd613995df4)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 18f1018d-5857-4c32-a072-f3de80352f74)
)
(fp_line (start -1.685 -0.96) (end -1.685 0.96) (layer "F.SilkS") (width 0.12) (tstamp 4fd9bc4f-0ae3-42d4-a1b4-9fb1b2a0a7fd))
(fp_line (start 1 -0.96) (end -1.685 -0.96) (layer "F.SilkS") (width 0.12) (tstamp 71af7b65-0e6b-402e-b1a4-b66be507b4dc))
(fp_line (start -1.685 0.96) (end 1 0.96) (layer "F.SilkS") (width 0.12) (tstamp 86e98417-f5e4-48ba-8147-ef66cc03dde6))
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 02f8904b-a7b2-49dd-b392-764e7e29fb51))
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 8bd46048-cab7-4adf-af9a-bc2710c1894c))
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 992a2b00-5e28-4edd-88b5-994891512d8d))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp e70d061b-28f0-4421-ad15-0598604086e8))
(fp_line (start -1 -0.3) (end -1 0.6) (layer "F.Fab") (width 0.1) (tstamp 2518d4ea-25cc-4e57-a0d6-8482034e7318))
(fp_line (start 1 0.6) (end 1 -0.6) (layer "F.Fab") (width 0.1) (tstamp 799e761c-1426-40e9-a069-1f4cb353bfaa))
(fp_line (start 1 -0.6) (end -0.7 -0.6) (layer "F.Fab") (width 0.1) (tstamp 99e6b8eb-b08e-4d42-84dd-8b7f6765b7b7))
(fp_line (start -0.7 -0.6) (end -1 -0.3) (layer "F.Fab") (width 0.1) (tstamp db851147-6a1e-4d19-898c-0ba71182359b))
(fp_line (start -1 0.6) (end 1 0.6) (layer "F.Fab") (width 0.1) (tstamp e69c64f9-717d-4a97-b3df-80325ec2fa63))
(pad "1" smd roundrect locked (at -0.9375 0 90) (size 0.975 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "Net-(D2-Pad1)") (pinfunction "K") (pintype "passive") (tstamp 92848721-49b5-4e4c-b042-6fd51e1d562f))
(pad "2" smd roundrect locked (at 0.9375 0 90) (size 0.975 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "Net-(D2-Pad2)") (pinfunction "A") (pintype "passive") (tstamp db1ed10a-ef86-43bf-93dc-9be76327f6d2))
(model "${KISYS3DMOD}/LED_SMD.3dshapes/LED_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Button_Switch_SMD:SW_SPDT_PCM12" (layer "F.Cu")
(tedit 5A02FC95) (tstamp 00000000-0000-0000-0000-000061952153)
(at 119.126 57.625 180)
(descr "Ultraminiature Surface Mount Slide Switch, right-angle, https://www.ckswitches.com/media/1424/pcm.pdf")
(property "LCSC" "C319019")
(property "Sheetfile" "FineMotion-5.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00006198f838")
(attr smd)
(fp_text reference "SW3" (at 0.006 1.065) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp d692b5e6-71b2-4fa6-bc83-618add8d8fef)
)
(fp_text value "SW_SPDT MAIN POWER" (at 0 4.25) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1e48966e-d29d-4521-8939-ec8ac570431d)
)
(fp_line (start 3.45 0.72) (end 3.45 -0.07) (layer "F.SilkS") (width 0.12) (tstamp 07d160b6-23e1-4aa0-95cb-440482e6fc15))
(fp_line (start -1.4 3.02) (end -1.2 3.23) (layer "F.SilkS") (width 0.12) (tstamp 2a1de22d-6451-488d-af77-0bf8841bd695))
(fp_line (start -1.4 1.73) (end -1.4 3.02) (layer "F.SilkS") (width 0.12) (tstamp 6ac3ab53-7523-4805-bfd2-5de19dff127e))
(fp_line (start -1.6 -1.12) (end 0.1 -1.12) (layer "F.SilkS") (width 0.12) (tstamp 844d7d7a-b386-45a8-aaf6-bf41bbcb43b5))
(fp_line (start 1.4 -1.12) (end 1.6 -1.12) (layer "F.SilkS") (width 0.12) (tstamp 901440f4-e2a6-4447-83cc-f58a2b26f5c4))
(fp_line (start -0.1 3.02) (end -0.1 1.73) (layer "F.SilkS") (width 0.12) (tstamp a07b6b2b-7179-4297-b163-5e47ffbe76d3))
(fp_line (start -3.45 -0.07) (end -3.45 0.72) (layer "F.SilkS") (width 0.12) (tstamp a62609cd-29b7-4918-b97d-7b2404ba61cf))
(fp_line (start -0.1 3.02) (end -0.3 3.23) (layer "F.SilkS") (width 0.12) (tstamp a8219a78-6b33-4efa-a789-6a67ce8f7a50))
(fp_line (start -1.2 3.23) (end -0.3 3.23) (layer "F.SilkS") (width 0.12) (tstamp d1a9be32-38ba-44e6-bc35-f031541ab1fe))
(fp_line (start -2.85 1.73) (end 2.85 1.73) (layer "F.SilkS") (width 0.12) (tstamp ebca7c5e-ae52-43e5-ac6c-69a96a9a5b24))
(fp_line (start -1.65 2.1) (end -4.4 2.1) (layer "F.CrtYd") (width 0.05) (tstamp 05f2859d-2820-4e84-b395-696011feb13b))
(fp_line (start 1.65 2.1) (end 1.65 3.4) (layer "F.CrtYd") (width 0.05) (tstamp 576f00e6-a1be-45d3-9b93-e26d9e0fe306))
(fp_line (start 1.65 3.4) (end -1.65 3.4) (layer "F.CrtYd") (width 0.05) (tstamp 713e0777-58b2-4487-baca-60d0ebed27c3))
(fp_line (start 4.4 -2.45) (end 4.4 2.1) (layer "F.CrtYd") (width 0.05) (tstamp a0dee8e6-f88a-4f05-aba0-bab3aafdf2bc))
(fp_line (start -1.65 3.4) (end -1.65 2.1) (layer "F.CrtYd") (width 0.05) (tstamp a8fb8ee0-623f-4870-a716-ecc88f37ef9a))
(fp_line (start -4.4 -2.45) (end 4.4 -2.45) (layer "F.CrtYd") (width 0.05) (tstamp d7e5a060-eb57-4238-9312-26bc885fc97d))
(fp_line (start 4.4 2.1) (end 1.65 2.1) (layer "F.CrtYd") (width 0.05) (tstamp f19c9655-8ddb-411a-96dd-bd986870c3c6))
(fp_line (start -4.4 2.1) (end -4.4 -2.45) (layer "F.CrtYd") (width 0.05) (tstamp f3044f68-903d-4063-b253-30d8e3a83eae))
(fp_line (start -1.2 3.15) (end -0.35 3.15) (layer "F.Fab") (width 0.1) (tstamp 25bc3602-3fb4-4a04-94e3-21ba22562c24))
(fp_line (start 3.35 -1) (end -3.35 -1) (layer "F.Fab") (width 0.1) (tstamp 2c60448a-e30f-46b2-89e1-a44f51688efc))
(fp_line (start -0.15 2.95) (end -0.1 2.9) (layer "F.Fab") (width 0.1) (tstamp 4a54c707-7b6f-4a3d-a74d-5e3526114aba))
(fp_line (start -0.35 3.15) (end -0.15 2.95) (layer "F.Fab") (width 0.1) (tstamp 4aa97874-2fd2-414c-b381-9420384c2fd8))
(fp_line (start -3.35 1.6) (end 3.35 1.6) (layer "F.Fab") (width 0.1) (tstamp 4b1fce17-dec7-457e-ba3b-a77604e77dc9))
(fp_line (start -1.4 2.95) (end -1.2 3.15) (layer "F.Fab") (width 0.1) (tstamp 7760a75a-d74b-4185-b34e-cbc7b2c339b6))
(fp_line (start -3.35 -1) (end -3.35 1.6) (layer "F.Fab") (width 0.1) (tstamp 869d6302-ae22-478f-9723-3feacbb12eef))
(fp_line (start -1.4 1.65) (end -1.4 2.95) (layer "F.Fab") (width 0.1) (tstamp c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09))
(fp_line (start 3.35 1.6) (end 3.35 -1) (layer "F.Fab") (width 0.1) (tstamp d66d3c12-11ce-4566-9a45-962e329503d8))
(fp_line (start -0.1 2.9) (end -0.1 1.6) (layer "F.Fab") (width 0.1) (tstamp e1b88aa4-d887-4eea-83ff-5c009f4390c4))
(pad "" smd rect locked (at -3.65 -0.78 180) (size 1 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 49575217-40b0-4890-8acf-12982cca52b5))
(pad "" smd rect locked (at 3.65 -0.78 180) (size 1 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 4cafb73d-1ad8-4d24-acf7-63d78095ae46))
(pad "" smd rect locked (at -3.65 1.43 180) (size 1 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 5889287d-b845-4684-b23e-663811b25d27))
(pad "" smd rect locked (at 3.65 1.43 180) (size 1 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp be4b72db-0e02-4d9b-844a-aff689b4e648))
(pad "" np_thru_hole circle locked (at -1.5 0.33 180) (size 0.9 0.9) (drill 0.9) (layers *.Cu *.Mask) (tstamp d3e133b7-2c84-4206-a2b1-e693cb57fe56))
(pad "" np_thru_hole circle locked (at 1.5 0.33 180) (size 0.9 0.9) (drill 0.9) (layers *.Cu *.Mask) (tstamp f988d6ea-11c5-4837-b1d1-5c292ded50c6))
(pad "1" smd rect locked (at -2.25 -1.43 180) (size 0.7 1.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 47 "VBAT") (pinfunction "A") (pintype "passive") (tstamp da481376-0e49-44d3-91b8-aaa39b869dd1))
(pad "2" smd rect locked (at 0.75 -1.43 180) (size 0.7 1.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 15 "BATT+") (pinfunction "B") (pintype "passive") (tstamp 269f19c3-6824-45a8-be29-fa58d70cbb42))
(pad "3" smd rect locked (at 2.25 -1.43 180) (size 0.7 1.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "unconnected-(SW3-Pad3)") (pinfunction "C") (pintype "passive+no_connect") (tstamp 38cfe839-c630-43d3-a9ec-6a89ba9e318a))
(model "${KISYS3DMOD}/Button_Switch_SMD.3dshapes/SW_SPDT_PCM12.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_SMD:LED_0805_2012Metric" (layer "F.Cu")
(tedit 5B36C52C) (tstamp 00000000-0000-0000-0000-00006195e69a)
(at 126.238 57.658 90)
(descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "diode")
(property "LCSC" "C84256")
(property "Sheetfile" "FineMotion-5.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000614c3d7e")
(attr smd)
(fp_text reference "D1" (at 0.568 6.542 180) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 12f8e43c-8f83-48d3-a9b5-5f3ebc0b6c43)
)
(fp_text value "LED_CHRG" (at 0 1.65 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp eaa0d51a-ee4e-4d3a-a801-bddb7027e94c)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 9db16341-dac0-4aab-9c62-7d88c111c1ce)
)
(fp_line (start -1.685 0.96) (end 1 0.96) (layer "F.SilkS") (width 0.12) (tstamp 0b4c0f05-c855-4742-bad2-dbf645d5842b))
(fp_line (start -1.685 -0.96) (end -1.685 0.96) (layer "F.SilkS") (width 0.12) (tstamp ca5b6af8-ca05-4338-b852-b51f2b49b1db))
(fp_line (start 1 -0.96) (end -1.685 -0.96) (layer "F.SilkS") (width 0.12) (tstamp ea2ea877-1ce1-4cd6-ad19-1da87f51601d))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 282c8e53-3acc-42f0-a92a-6aa976b97a93))
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 5f38bdb2-3657-474e-8e86-d6bb0b298110))
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 83c5181e-f5ee-453c-ae5c-d7256ba8837d))
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp d72c89a6-7578-4468-964e-2a845431195f))
(fp_line (start -1 0.6) (end 1 0.6) (layer "F.Fab") (width 0.1) (tstamp 05d3e08e-e1f9-46cf-93d0-836d1306d03a))
(fp_line (start 1 -0.6) (end -0.7 -0.6) (layer "F.Fab") (width 0.1) (tstamp 1c052668-6749-425a-9a77-35f046c8aa39))
(fp_line (start -1 -0.3) (end -1 0.6) (layer "F.Fab") (width 0.1) (tstamp 6bd46644-7209-4d4d-acd8-f4c0d045bc61))
(fp_line (start -0.7 -0.6) (end -1 -0.3) (layer "F.Fab") (width 0.1) (tstamp befdfbe5-f3e5-423b-a34e-7bba3f218536))
(fp_line (start 1 0.6) (end 1 -0.6) (layer "F.Fab") (width 0.1) (tstamp f699494a-77d6-4c73-bd50-29c1c1c5b879))
(pad "1" smd roundrect locked (at -0.9375 0 90) (size 0.975 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "Net-(D1-Pad1)") (pinfunction "K") (pintype "passive") (tstamp b7d06af4-a5b1-447f-9b1a-8b44eb1cc204))
(pad "2" smd roundrect locked (at 0.9375 0 90) (size 0.975 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "Net-(D1-Pad2)") (pinfunction "A") (pintype "passive") (tstamp ab8b0540-9c9f-4195-88f5-7bed0b0a8ed6))
(model "${KISYS3DMOD}/LED_SMD.3dshapes/LED_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-000061960b14)
(at 128.1938 56.5404 180)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (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")
(property "LCSC" "C25117")
(property "Sheetfile" "FineMotion-5.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000614d9a14")
(attr smd)
(fp_text reference "R1" (at -5.9062 -0.2592) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp 8e697b96-cf4c-43ef-b321-8c2422b088bf)
)
(fp_text value "470R" (at 0 1.17) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 74855e0d-40e4-4940-a544-edae9207b2ea)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp b1ba92d5-0d41-4be9-b483-47d08dc1785d)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38) (layer "F.SilkS") (width 0.12) (tstamp 082aed28-f9e8-49e7-96ee-b5aa9f0319c7))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38) (layer "F.SilkS") (width 0.12) (tstamp 10b20c6b-8045-46d1-a965-0d7dd9a1b5fa))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 59f60168-cced-43c9-aaa5-41a1a8a2f631))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp d68dca9b-48b3-498b-9b5f-3b3838250f82))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp ef94502b-f22d-4da7-a17f-4100090b03a1))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp f6a3288e-9575-42bb-af05-a920d59aded8))
(fp_line (start -0.525 0.27) (end -0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp 645bdbdc-8f65-42ef-a021-2d3e7d74a739))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp f503ea07-bcf1-4924-930a-6f7e9cd312f8))
(fp_line (start 0.525 -0.27) (end 0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp f67bbef3-6f59-49ba-8890-d1f9dc9f9ad6))
(fp_line (start 0.525 0.27) (end -0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp fe6d9604-2924-4f38-950b-a31e8a281973))
(pad "1" smd roundrect locked (at -0.51 0 180) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 37 "VBUS") (pintype "passive") (tstamp 8b963561-586b-4575-b721-87e7914602c6))
(pad "2" smd roundrect locked (at 0.51 0 180) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "Net-(D2-Pad2)") (pintype "passive") (tstamp bf6104a1-a529-4c00-b4ae-92001543f7ec))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-000061960b69)
(at 128.1918 57.7088 180)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (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")
(property "LCSC" "C25117")
(property "Sheetfile" "FineMotion-5.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000061586651")
(attr smd)
(fp_text reference "R6" (at -5.9082 0.2488) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp 9640e044-e4b2-4c33-9e1c-1d9894a69337)
)
(fp_text value "470R" (at 0 1.17) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3335d379-08d8-4469-9fa1-495ed5a43fba)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp c37d3f0c-41ec-4928-8869-febc821c6326)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38) (layer "F.SilkS") (width 0.12) (tstamp 74012f9c-57f0-452a-9ea1-1e3437e264b8))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38) (layer "F.SilkS") (width 0.12) (tstamp d1441985-7b63-4bf8-a06d-c70da2e3b78b))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 0c544a8c-9f45-4205-9bca-1d91c95d58ef))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp bb5d2eae-a96e-45dd-89aa-125fe22cc2fa))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp cd50b8dc-829d-4a1d-8f2a-6471f378ba87))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp facb0614-068b-4c9c-a466-d374df96a94c))
(fp_line (start 0.525 -0.27) (end 0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp 22c28634-55a5-4f76-9217-6b70ddd108b8))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp 4d2fd49e-2cb2-44d4-8935-68488970d97b))
(fp_line (start 0.525 0.27) (end -0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp cfdef906-c924-4492-999d-4de066c0bce1))
(fp_line (start -0.525 0.27) (end -0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp f220d6a7-3170-4e04-8de6-2df0c3962fe0))
(pad "1" smd roundrect locked (at -0.51 0 180) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 37 "VBUS") (pintype "passive") (tstamp ea77ba09-319a-49bd-ad5b-49f4c76f232c))
(pad "2" smd roundrect locked (at 0.51 0 180) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "Net-(D1-Pad2)") (pintype "passive") (tstamp 0a1d0cbe-85ab-4f0f-b3b1-fcef21dfb600))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-000061960b8b)
(at 117.475 72.39 180)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (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")
(property "LCSC" "C25744")
(property "Sheetfile" "FineMotion-5.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000619fa32a")
(attr smd)
(fp_text reference "R8" (at 0 -1.524) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 2ba25c40-ea42-478e-9150-1d94fa1c8ae9)
)
(fp_text value "10K" (at 0 1.17) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b7ac5cea-ed28-4028-87d0-45e58c709cf1)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp 4160bbf7-ffff-4c5c-a647-5ee58ddecf06)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38) (layer "F.SilkS") (width 0.12) (tstamp 93ac15d8-5f91-4361-acff-be4992b93b51))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38) (layer "F.SilkS") (width 0.12) (tstamp f284b1e2-75a4-4a3f-a5f4-6f05f15fb4f5))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 232ccf4f-3322-4e62-990b-290e6ff36fcd))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 42b61d5b-39d6-462b-b2cc-57656078085f))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 6d7ff8c0-8a2a-4636-844f-c7210ff3e6f2))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp bf8d857b-70bf-41ee-a068-5771461e04e9))
(fp_line (start -0.525 0.27) (end -0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp 044dde97-ee2e-473a-9264-ed4dff1893a5))
(fp_line (start 0.525 -0.27) (end 0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp 661ca2ba-bce5-4308-99a6-de333a625515))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp 8ae05d37-86b4-45ea-800f-f1f9fb167857))
(fp_line (start 0.525 0.27) (end -0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp 96781640-c07e-4eea-a372-067ded96b703))
(pad "1" smd roundrect locked (at -0.51 0 180) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "+3V3") (pintype "passive") (tstamp 722636b6-8ff0-452f-9357-23deb317d921))
(pad "2" smd roundrect locked (at 0.51 0 180) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 13 "Net-(R8-Pad2)") (pintype "passive") (tstamp 7582a530-a952-46c1-b7eb-75006524ba29))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-000061960b9c)
(at 106.934 56.515 180)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (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")
(property "LCSC" "C25744")
(property "Sheetfile" "FineMotion-5.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000061a0fa16")
(attr smd)
(fp_text reference "R9" (at 0.094 1.565) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 720ec55a-7c69-4064-b792-ef3dbba4eab9)
)
(fp_text value "10K" (at 0 1.17) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e000728f-e3c5-4fc4-86af-db9ceb3a6542)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp 34a11a07-8b7f-45d2-96e3-89fd43e62756)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38) (layer "F.SilkS") (width 0.12) (tstamp 0e0f9829-27a5-43b2-a0ae-121d3ce72ef4))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38) (layer "F.SilkS") (width 0.12) (tstamp 3934b2e9-06c8-499c-a6df-4d7b35cfb894))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 3579cf2f-29b0-46b6-a07d-483fb5586322))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 41b4f8c6-4973-4fc7-9118-d582bc7f31e7))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 73f40fda-e6eb-4f93-9482-56cf47d84a87))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp ef51df0d-fc2c-482b-a0e5-e49bae94f31f))
(fp_line (start -0.525 0.27) (end -0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp 18d3014d-7089-41b5-ab03-53cc0a265580))
(fp_line (start 0.525 -0.27) (end 0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp 3f96e159-1f3b-4ee7-a46e-e60d78f2137a))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp 662bafcb-dcfb-4471-a8a9-f5c777fdf249))
(fp_line (start 0.525 0.27) (end -0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp 77aa6db5-9b8d-4983-b88e-30fe5af25975))
(pad "1" smd roundrect locked (at -0.51 0 180) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "+3V3") (pintype "passive") (tstamp 47993d80-a37e-426e-90c9-fd54b49ed166))
(pad "2" smd roundrect locked (at 0.51 0 180) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 16 "Net-(R9-Pad2)") (pintype "passive") (tstamp fb9a832c-737d-49fb-bbb4-29a0ba3e8178))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-000061960bad)
(at 108.966 56.515)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (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")
(property "LCSC" "C25744")
(property "Sheetfile" "FineMotion-5.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000061a12cd4")
(attr smd)
(fp_text reference "R10" (at 0 -1.651) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 2026567f-be64-41dd-8011-b0897ba0ff2e)
)
(fp_text value "10K" (at 0 1.17) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 981ff4de-0330-4757-b746-0cb983df5e7c)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp 3c646c61-400f-4f60-98b8-05ed5e632a3f)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38) (layer "F.SilkS") (width 0.12) (tstamp 49d97c73-e37a-4154-9d0a-88037e40cc11))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38) (layer "F.SilkS") (width 0.12) (tstamp 9505be36-b21c-4db8-9484-dd0861395d26))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 59e09498-d26e-4ba7-b47d-fece2ea7c274))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 7943ed8c-e760-4ace-9c5f-baf5589fae39))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp ea4f0afc-785b-40cf-8ef1-cbe20404c18b))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp fead07ab-5a70-40db-ada8-c72dcc827bfc))
(fp_line (start 0.525 -0.27) (end 0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp 3656bb3f-f8a4-4f3a-8e9a-ec6203c87a56))
(fp_line (start 0.525 0.27) (end -0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp 961b4579-9ee8-407a-89a7-81f36f1ad865))
(fp_line (start -0.525 0.27) (end -0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp d70d1cd3-1668-4688-8eb7-f773efb7bb87))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp eb6a726e-fed9-4891-95fa-b4d4a5f77b35))
(pad "1" smd roundrect locked (at -0.51 0) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "+3V3") (pintype "passive") (tstamp 251669f2-aed1-46fe-b2e4-9582ff1e4084))
(pad "2" smd roundrect locked (at 0.51 0) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 17 "Net-(R10-Pad2)") (pintype "passive") (tstamp 8aeda7bd-b078-427a-a185-d5bc595c6436))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-000061960be0)
(at 117.473 74.4474 180)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (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")
(property "LCSC" "C25792")
(property "Sheetfile" "FineMotion-5.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000061987b16")
(attr smd)
(fp_text reference "R13" (at 2.032 -2.921) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp cdfb661b-489b-4b76-99f4-62b92bb1ab18)
)
(fp_text value "47K" (at 0 1.17) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 46491a9d-8b3d-4c74-b09a-70c876f162e5)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp 28b01cd2-da3a-46ec-8825-b0f31a0b8987)
)
(fp_line (start -0.153641 0.38) (end 0.153641 0.38) (layer "F.SilkS") (width 0.12) (tstamp 0e592cd4-1950-44ef-9727-8e526f4c4e12))
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38) (layer "F.SilkS") (width 0.12) (tstamp 5bbde4f9-fcdb-4d27-a2d6-3847fcdd87ba))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 2295a793-dfca-4b86-a3e5-abf1834e2790))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp a150f0c9-1a23-4200-b489-18791f6d5ce5))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp e77c17df-b20e-4e7d-b937-f281c75a0014))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp e80b0e91-f15f-4e36-9a9c-b2cfd5a01d2a))
(fp_line (start -0.525 0.27) (end -0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp 09c6ca89-863f-42d4-867e-9a769c316610))
(fp_line (start 0.525 -0.27) (end 0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp 11c7c8d4-4c4b-4330-bb59-1eec2e98b255))
(fp_line (start 0.525 0.27) (end -0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp 300aa512-2f66-4c26-a530-50c091b3a099))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp 34ddb753-e57c-4ca8-a67b-d7cdf62cae93))
(pad "1" smd roundrect locked (at -0.51 0 180) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 15 "BATT+") (pintype "passive") (tstamp a323243c-4cab-4689-aa04-1e663cf86177))
(pad "2" smd roundrect locked (at 0.51 0 180) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 34 "ADC") (pintype "passive") (tstamp a49e8613-3cd2-48ed-8977-6bb5023f7722))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-000061960bf1)
(at 117.473 73.4314 180)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (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")
(property "LCSC" "C25752")
(property "Sheetfile" "FineMotion-5.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000619880f5")
(attr smd)
(fp_text reference "R14" (at 2.032 1.905) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 0a8dfc5c-35dc-4e44-a2bf-5968ebf90cca)
)
(fp_text value "12K" (at 0 1.17) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fb1a635e-b207-4b36-b0fb-e877e480e86a)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp 2cd3975a-2259-4fa9-8133-e1586b9b9618)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38) (layer "F.SilkS") (width 0.12) (tstamp 8615dae0-65cf-4932-8e6f-9a0f32429a5e))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38) (layer "F.SilkS") (width 0.12) (tstamp b547dd70-2ea7-4cfd-a1ee-911561975d81))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 21573090-1953-4b11-9042-108ae79fe9c5))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 53719fc4-141e-4c58-98cd-ab3bf9a4e1c0))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp c5565d96-c729-4597-a74f-7f75befcc39d))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp fe4869dc-e96e-4bb4-a38d-2ca990635f2d))
(fp_line (start 0.525 0.27) (end -0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp 91c82043-0b26-427f-b23c-6094224ddfc2))
(fp_line (start 0.525 -0.27) (end 0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp 97e5f992-979e-4291-bd9a-a77c3fd4b1b5))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp c2a9d834-7cb1-4ec5-b0ba-ae56215ff9fc))
(fp_line (start -0.525 0.27) (end -0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp c9badf80-21f8-404a-b5df-18e98bffebf9))
(pad "1" smd roundrect locked (at -0.51 0 180) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 70abf340-8b3e-403e-a5e2-d8f35caa2f87))
(pad "2" smd roundrect locked (at 0.51 0 180) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 34 "ADC") (pintype "passive") (tstamp 7de6564c-7ad6-4d57-a54c-8d2835ff5cdc))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-000061960c02)
(at 112.522 56.515)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (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")
(property "LCSC" "C25744")
(property "Sheetfile" "FineMotion-5.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000061a00c19")
(attr smd)
(fp_text reference "R15" (at 0.127 -1.778) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 42f10020-b50a-4739-a546-6b63e441c980)
)
(fp_text value "10k" (at 0 1.17) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp eafb53d1-7486-4935-b154-2efbffbed6ca)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp 2d617fad-47fe-4db9-836a-4bceb9c31c3b)
)
(fp_line (start -0.153641 0.38) (end 0.153641 0.38) (layer "F.SilkS") (width 0.12) (tstamp 6e9883d7-9642-4425-a248-b92a09f0624c))
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38) (layer "F.SilkS") (width 0.12) (tstamp b66731e7-61d5-4447-bf6a-e91a62b82298))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 004b7456-c25a-480f-88f6-723c1bcd9939))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 832b5a8c-7fe2-47ff-beee-cebf840750bb))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp b55dabdc-b790-4740-9349-75159cff975a))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp b8b15b51-8345-4a1d-8ecf-04fc15b9e450))
(fp_line (start -0.525 0.27) (end -0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp 2e36ce87-4661-4b8f-956a-16dc559e1b50))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp 4d3a1f72-d521-46ae-8fe1-3f8221038335))
(fp_line (start 0.525 -0.27) (end 0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp 6316acb7-63a1-40e7-8695-2822d4a240b5))
(fp_line (start 0.525 0.27) (end -0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp c56bbebe-0c9a-418d-911e-b8ba7c53125d))
(pad "1" smd roundrect locked (at -0.51 0) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 18 "Net-(R15-Pad1)") (pintype "passive") (tstamp 92bd1111-b941-4c03-b7ec-a08a9359bc50))
(pad "2" smd roundrect locked (at 0.51 0) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 4688ff87-8262-46f4-ad96-b5f4e529cfa9))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-000061961428)
(at 117.475 70.358 180)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (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")
(property "LCSC" "C25744")
(property "Sheetfile" "FineMotion-5.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000061aee0a4")
(attr smd)
(fp_text reference "R17" (at 0.437 2.345) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 7255cbd1-8d38-4545-be9a-7fc5488ef942)
)
(fp_text value "10K" (at 0 1.17) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 971d1932-4a99-4265-9c76-26e554bde4fe)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp dde4c43d-f33e-48ba-86f3-779fdfce00c2)
)
(fp_line (start -0.153641 0.38) (end 0.153641 0.38) (layer "F.SilkS") (width 0.12) (tstamp 37728c8e-efcc-462c-a749-47b6bfcbaf37))
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38) (layer "F.SilkS") (width 0.12) (tstamp d4e4ffa8-e3e2-4590-b9df-630d1880f3e4))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 5698a460-6e24-4857-84d8-4a43acd2325d))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 8220ba36-5fda-4461-95e2-49a5bc0c76af))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp fbb5e77c-4b41-4796-ad13-1b9e2bbc3c81))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp fdc57161-f7f8-4584-b0ec-8c1aa24339c6))
(fp_line (start -0.525 0.27) (end -0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp 444b2eaf-241d-42e5-8717-27a83d099c5b))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp 469f89fd-f629-46b7-b106-a0088168c9ec))
(fp_line (start 0.525 0.27) (end -0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp 848c6095-3966-404d-9f2a-51150fd8dc54))
(fp_line (start 0.525 -0.27) (end 0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp d8dc9b6c-67d0-4a0d-a791-6f7d43ef3652))
(pad "1" smd roundrect locked (at -0.51 0 180) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "+3V3") (pintype "passive") (tstamp 1b98de85-f9de-4825-baf2-c96991615275))
(pad "2" smd roundrect locked (at 0.51 0 180) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 22 "Net-(R17-Pad2)") (pintype "passive") (tstamp 0938c137-668b-4d2f-b92b-cadb1df72bdb))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_SO:SOIC-16_3.9x9.9mm_P1.27mm" (layer "F.Cu")
(tedit 5D9F72B1) (tstamp 00000000-0000-0000-0000-0000619b9db2)
(at 125.5522 64.897 180)
(descr "SOIC, 16 Pin (JEDEC MS-012AC, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/soic_narrow-r/r_16.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "SOIC SO")
(property "JLCPCB_CORRECTION" "0;0;270")
(property "LCSC" "C84681")
(property "Sheetfile" "FineMotion-5.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000061a4c25f")
(attr smd)
(fp_text reference "U7" (at 2.3622 0.147 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e300709f-6c72-488d-a598-efcbd6d3af54)
)
(fp_text value "CH340C" (at 0 5.9) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 52a8f1be-73ca-41a8-bc24-2320706b0ec1)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.98 0.98) (thickness 0.15)))
(tstamp 443bc73a-8dc0-4e2f-a292-a5eff00efa5b)
)
(fp_line (start 0 -5.06) (end 1.95 -5.06) (layer "F.SilkS") (width 0.12) (tstamp 810ed4ff-ffe2-4032-9af6-fb5ada3bae5b))
(fp_line (start 0 5.06) (end 1.95 5.06) (layer "F.SilkS") (width 0.12) (tstamp eac8d865-0226-4958-b547-6b5592f39713))
(fp_line (start 0 5.06) (end -1.95 5.06) (layer "F.SilkS") (width 0.12) (tstamp f2480d0c-9b08-4037-9175-b2369af04d4c))
(fp_line (start 0 -5.06) (end -3.45 -5.06) (layer "F.SilkS") (width 0.12) (tstamp f345e52a-8e0a-425a-b438-90809dd3b799))
(fp_line (start -3.7 5.2) (end 3.7 5.2) (layer "F.CrtYd") (width 0.05) (tstamp 7c2008c8-0626-4a09-a873-065e83502a0e))
(fp_line (start 3.7 5.2) (end 3.7 -5.2) (layer "F.CrtYd") (width 0.05) (tstamp d102186a-5b58-41d0-9985-3dbb3593f397))
(fp_line (start 3.7 -5.2) (end -3.7 -5.2) (layer "F.CrtYd") (width 0.05) (tstamp e36988d2-ecb2-461b-a443-7006f447e828))
(fp_line (start -3.7 -5.2) (end -3.7 5.2) (layer "F.CrtYd") (width 0.05) (tstamp f4a8afbe-ed68-4253-959f-6be4d2cbf8c5))
(fp_line (start -0.975 -4.95) (end 1.95 -4.95) (layer "F.Fab") (width 0.1) (tstamp 0cbeb329-a88d-4a47-a5c2-a1d693de2f8c))
(fp_line (start -1.95 4.95) (end -1.95 -3.975) (layer "F.Fab") (width 0.1) (tstamp 6d0c9e39-9878-44c8-8283-9a59e45006fa))
(fp_line (start -1.95 -3.975) (end -0.975 -4.95) (layer "F.Fab") (width 0.1) (tstamp 7c411b3e-aca2-424f-b644-2d21c9d80fa7))
(fp_line (start 1.95 4.95) (end -1.95 4.95) (layer "F.Fab") (width 0.1) (tstamp 9c607e49-ee5c-4e85-a7da-6fede9912412))
(fp_line (start 1.95 -4.95) (end 1.95 4.95) (layer "F.Fab") (width 0.1) (tstamp e5e5220d-5b7e-47da-a902-b997ec8d4d58))
(pad "1" smd roundrect locked (at -2.475 -4.445 180) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 590fefcc-03e7-45d6-b6c9-e51a7c3c36c4))
(pad "2" smd roundrect locked (at -2.475 -3.175 180) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 21 "UART_ESP-") (pinfunction "TXD") (pintype "output+no_connect") (tstamp 59cb2966-1e9c-4b3b-b3c8-7499378d8dde))
(pad "3" smd roundrect locked (at -2.475 -1.905 180) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 20 "UART_ESP+") (pinfunction "RXD") (pintype "input") (tstamp 1427bb3f-0689-4b41-a816-cd79a5202fd0))
(pad "4" smd roundrect locked (at -2.475 -0.635 180) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 46 "Net-(C14-Pad1)") (pinfunction "V3") (pintype "passive") (tstamp 78f9c3d3-3556-46f6-9744-05ad54b330f0))
(pad "5" smd roundrect locked (at -2.475 0.635 180) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 41 "Net-(P1-PadA6)") (pinfunction "UD+") (pintype "bidirectional") (tstamp 8b7bbefd-8f78-41f8-809c-2534a5de3b39))
(pad "6" smd roundrect locked (at -2.475 1.905 180) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 39 "Net-(P1-PadA7)") (pinfunction "UD-") (pintype "bidirectional") (tstamp 89c9afdc-c346-4300-a392-5f9dd8c1e5bd))
(pad "7" smd roundrect locked (at -2.475 3.175 180) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 28 "unconnected-(U7-Pad7)") (pinfunction "NC") (pintype "no_connect") (tstamp f5bf5b4a-5213-48af-a5cd-0d67969d2de6))
(pad "8" smd roundrect locked (at -2.475 4.445 180) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 29 "unconnected-(U7-Pad8)") (pinfunction "NC") (pintype "no_connect") (tstamp b854a395-bfc6-4140-9640-75d4f9296771))
(pad "9" smd roundrect locked (at 2.475 4.445 180) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 30 "unconnected-(U7-Pad9)") (pinfunction "~{CTS}") (pintype "input+no_connect") (tstamp d0cd3439-276c-41ba-b38d-f84f6da38415))
(pad "10" smd roundrect locked (at 2.475 3.175 180) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 31 "unconnected-(U7-Pad10)") (pinfunction "~{DSR}") (pintype "input+no_connect") (tstamp dda1e6ca-91ec-4136-b90b-3c54d79454b9))
(pad "11" smd roundrect locked (at 2.475 1.905 180) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 40 "unconnected-(U7-Pad11)") (pinfunction "~{RI}") (pintype "input+no_connect") (tstamp 633292d3-80c5-4986-be82-ce926e9f09f4))
(pad "12" smd roundrect locked (at 2.475 0.635 180) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 42 "unconnected-(U7-Pad12)") (pinfunction "~{DCD}") (pintype "input+no_connect") (tstamp 7744b6ee-910d-401d-b730-65c35d3d8092))
(pad "13" smd roundrect locked (at 2.475 -0.635 180) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 43 "unconnected-(U7-Pad13)") (pinfunction "~{DTR}") (pintype "output+no_connect") (tstamp 014d13cd-26ad-4d0e-86ad-a43b541cab14))
(pad "14" smd roundrect locked (at 2.475 -1.905 180) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 44 "unconnected-(U7-Pad14)") (pinfunction "~{RTS}") (pintype "output+no_connect") (tstamp a25b7e01-1754-4cc9-8a14-3d9c461e5af5))
(pad "15" smd roundrect locked (at 2.475 -3.175 180) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 45 "unconnected-(U7-Pad15)") (pinfunction "R232") (pintype "input+no_connect") (tstamp 83021f70-e61e-4ad3-bae7-b9f02b28be4f))
(pad "16" smd roundrect locked (at 2.475 -4.445 180) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 37 "VBUS") (pinfunction "VCC") (pintype "power_in") (tstamp cc75e5ae-3348-4e7a-bd16-4df685ee47bd))
(model "${KISYS3DMOD}/Package_SO.3dshapes/SOIC-16_3.9x9.9mm_P1.27mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_JST:JST_PH_S4B-PH-K_1x04_P2.00mm_Horizontal" (layer "F.Cu")
(tedit 5B7745C6) (tstamp 00000000-0000-0000-0000-000061d590fe)
(at 136.488 70.818 90)
(descr "JST PH series connector, S4B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator")
(tags "connector JST PH top entry")
(property "LCSC" "C157926")
(property "Sheetfile" "FineMotion-5.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000062288446")
(attr through_hole)
(fp_text reference "J2" (at -0.845 8.014 90) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 9286cf02-1563-41d2-9931-c192c33bab31)
)
(fp_text value "Conn_01x04_Female" (at 3 7.45 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 66bc2bca-dab7-4947-a0ff-403cdaf9fb89)
)
(fp_line (start 5.5 2) (end 5.5 6.36) (layer "F.SilkS") (width 0.12) (tstamp 008da5b9-6f95-4113-b7d0-d93ac62efd33))
(fp_line (start 7.14 0.14) (end 6.86 0.14) (layer "F.SilkS") (width 0.12) (tstamp 04cf2f2c-74bf-400d-b4f6-201720df00ed))
(fp_line (start -0.3 4.1) (end -0.3 2.5) (layer "F.SilkS") (width 0.12) (tstamp 0fafc6b9-fd35-4a55-9270-7a8e7ce3cb13))
(fp_line (start -0.3 4.1) (end -0.3 6.36) (layer "F.SilkS") (width 0.12) (tstamp 12a24e86-2c38-4685-bba9-fff8dddb4cb0))
(fp_line (start 0.5 6.36) (end 0.5 2) (layer "F.SilkS") (width 0.12) (tstamp 1bdd5841-68b7-42e2-9447-cbdb608d8a08))
(fp_line (start -1.3 4.1) (end -0.3 4.1) (layer "F.SilkS") (width 0.12) (tstamp 27b2eb82-662b-42d8-90e6-830fec4bb8d2))
(fp_line (start 8.06 -1.46) (end 7.14 -1.46) (layer "F.SilkS") (width 0.12) (tstamp 2878a73c-5447-4cd9-8194-14f52ab9459c))
(fp_line (start 6.3 4.1) (end 6.3 2.5) (layer "F.SilkS") (width 0.12) (tstamp 3e0392c0-affc-4114-9de5-1f1cfe79418a))
(fp_line (start 8.06 6.36) (end 8.06 -1.46) (layer "F.SilkS") (width 0.12) (tstamp 44646447-0a8e-4aec-a74e-22bf765d0f33))
(fp_line (start -1.14 0.14) (end -1.14 -1.46) (layer "F.SilkS") (width 0.12) (tstamp 5701b80f-f006-4814-81c9-0c7f006088a9))
(fp_line (start -2.06 0.14) (end -1.14 0.14) (layer "F.SilkS") (width 0.12) (tstamp 5d3d7893-1d11-4f1d-9052-85cf0e07d281))
(fp_line (start -1.14 -1.46) (end -2.06 -1.46) (layer "F.SilkS") (width 0.12) (tstamp 63c56ea4-91a3-4172-b9de-a4388cc8f894))
(fp_line (start 6.3 2.5) (end 7.3 2.5) (layer "F.SilkS") (width 0.12) (tstamp 6513181c-0a6a-4560-9a18-17450c36ae2a))
(fp_line (start -0.3 2.5) (end -1.3 2.5) (layer "F.SilkS") (width 0.12) (tstamp 66218487-e316-4467-9eba-79d4626ab24e))
(fp_line (start 8.06 0.14) (end 7.14 0.14) (layer "F.SilkS") (width 0.12) (tstamp 79476267-290e-445f-995b-0afd0e11a4b5))
(fp_line (start -1.3 2.5) (end -1.3 4.1) (layer "F.SilkS") (width 0.12) (tstamp 8b290a17-6328-4178-9131-29524d345539))
(fp_line (start 7.14 -1.46) (end 7.14 0.14) (layer "F.SilkS") (width 0.12) (tstamp 955cc99e-a129-42cf-abc7-aa99813fdb5f))
(fp_line (start -0.86 0.14) (end -1.14 0.14) (layer "F.SilkS") (width 0.12) (tstamp 9b6bb172-1ac4-440a-ac75-c1917d9d59c7))
(fp_line (start 0.5 2) (end 5.5 2) (layer "F.SilkS") (width 0.12) (tstamp aeb03be9-98f0-43f6-9432-1bb35aa04bab))
(fp_line (start -2.06 -1.46) (end -2.06 6.36) (layer "F.SilkS") (width 0.12) (tstamp c25449d6-d734-4953-b762-98f82a830248))
(fp_line (start -0.86 0.14) (end -0.86 -1.075) (layer "F.SilkS") (width 0.12) (tstamp ccc4cc25-ac17-45ef-825c-e079951ffb21))
(fp_line (start 7.3 4.1) (end 6.3 4.1) (layer "F.SilkS") (width 0.12) (tstamp cf815d51-c956-4c5a-adde-c373cb025b07))
(fp_line (start -2.06 6.36) (end 8.06 6.36) (layer "F.SilkS") (width 0.12) (tstamp d7e4abd8-69f5-4706-b12e-898194e5bf56))
(fp_line (start 7.3 2.5) (end 7.3 4.1) (layer "F.SilkS") (width 0.12) (tstamp dca1d7db-c913-4d73-a2cc-fdc9651eda69))
(fp_line (start -0.8 4.1) (end -0.8 6.36) (layer "F.SilkS") (width 0.12) (tstamp f357ddb5-3f44-43b0-b00d-d64f5c62ba4a))
(fp_line (start 8.45 -1.85) (end -2.45 -1.85) (layer "F.CrtYd") (width 0.05) (tstamp 0ceb97d6-1b0f-4b71-921e-b0955c30c998))
(fp_line (start -2.45 -1.85) (end -2.45 6.75) (layer "F.CrtYd") (width 0.05) (tstamp 35ef9c4a-35f6-467b-a704-b1d9354880cf))
(fp_line (start 8.45 6.75) (end 8.45 -1.85) (layer "F.CrtYd") (width 0.05) (tstamp a7f25f41-0b4c-4430-b6cd-b2160b2db099))
(fp_line (start -2.45 6.75) (end 8.45 6.75) (layer "F.CrtYd") (width 0.05) (tstamp b8b961e9-8a60-45fc-999a-a7a3baff4e0d))
(fp_line (start -1.25 0.25) (end -1.25 -1.35) (layer "F.Fab") (width 0.1) (tstamp 1241b7f2-e266-4f5c-8a97-9f0f9d0eef37))
(fp_line (start 7.95 6.25) (end 7.95 -1.35) (layer "F.Fab") (width 0.1) (tstamp 2b5a9ad3-7ec4-447d-916c-47adf5f9674f))
(fp_line (start -1.95 -1.35) (end -1.95 6.25) (layer "F.Fab") (width 0.1) (tstamp 6241e6d3-a754-45b6-9f7c-e43019b93226))
(fp_line (start 0 0.875) (end -0.5 1.375) (layer "F.Fab") (width 0.1) (tstamp 626679e8-6101-4722-ac57-5b8d9dab4c8b))
(fp_line (start -1.25 -1.35) (end -1.95 -1.35) (layer "F.Fab") (width 0.1) (tstamp 7d0dab95-9e7a-486e-a1d7-fc48860fd57d))
(fp_line (start 7.25 0.25) (end -1.25 0.25) (layer "F.Fab") (width 0.1) (tstamp 9f782c92-a5e8-49db-bfda-752b35522ce4))
(fp_line (start 0.5 1.375) (end 0 0.875) (layer "F.Fab") (width 0.1) (tstamp b59f18ce-2e34-4b6e-b14d-8d73b8268179))
(fp_line (start -0.5 1.375) (end 0.5 1.375) (layer "F.Fab") (width 0.1) (tstamp b7bf6e08-7978-4190-aff5-c90d967f0f9c))
(fp_line (start -1.95 6.25) (end 7.95 6.25) (layer "F.Fab") (width 0.1) (tstamp c8a44971-63c1-4a19-879d-b6647b2dc08d))
(fp_line (start 7.25 -1.35) (end 7.25 0.25) (layer "F.Fab") (width 0.1) (tstamp da6f4122-0ecc-496f-b0fd-e4abef534976))
(fp_line (start 7.95 -1.35) (end 7.25 -1.35) (layer "F.Fab") (width 0.1) (tstamp f1782535-55f4-4299-bd4f-6f51b0b7259c))
(pad "1" thru_hole roundrect locked (at 0 0 90) (size 1.2 1.75) (drill 0.75) (layers *.Cu *.Mask) (roundrect_rratio 0.2083325)
(net 47 "VBAT") (pinfunction "Pin_1") (pintype "passive") (tstamp 8cdc8ef9-532e-4bf5-9998-7213b9e692a2))
(pad "2" thru_hole oval locked (at 2 0 90) (size 1.2 1.75) (drill 0.75) (layers *.Cu *.Mask)
(net 32 "SDA") (pinfunction "Pin_2") (pintype "passive") (tstamp 88002554-c459-46e5-8b22-6ea6fe07fd4c))
(pad "3" thru_hole oval locked (at 4 0 90) (size 1.2 1.75) (drill 0.75) (layers *.Cu *.Mask)
(net 33 "SCL") (pinfunction "Pin_3") (pintype "passive") (tstamp 5a222fb6-5159-4931-9015-19df65643140))
(pad "4" thru_hole oval locked (at 6 0 90) (size 1.2 1.75) (drill 0.75) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_4") (pintype "passive") (tstamp 7ce7415d-7c22-49f6-8215-488853ccc8c6))
(model "${KISYS3DMOD}/Connector_JST.3dshapes/JST_PH_S4B-PH-K_1x04_P2.00mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_USB:USB_C_Receptacle_HRO_TYPE-C-31-M-12" (layer "F.Cu")
(tedit 61E10264) (tstamp 00000000-0000-0000-0000-000061ddfa17)
(at 134.366 57.8866 180)
(descr "USB Type-C receptacle for USB 2.0 and PD, http://www.krhro.com/uploads/soft/180320/1-1P320120243.pdf")
(tags "usb usb-c 2.0 pd")
(property "JLCPCB_CORRECTION" "0;0;180")
(property "LCSC" "C167321")
(property "Sheetfile" "FineMotion-5.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00006222078b")
(attr smd)
(fp_text reference "P1" (at -1.694 -2.4534 180) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp cada57e2-1fa7-4b9d-a2a0-2218773d5c50)
)
(fp_text value "USB_C_Plug_USB2.0" (at 0 5.1 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 752417ee-7d0b-4ac8-a22c-26669881a2ab)
)
(fp_text user "${REFERENCE}" (at 0 0 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e32ee344-1030-4498-9cac-bfbf7540faf4)
)
(fp_line (start -4.7 -1.9) (end -4.7 0.1) (layer "F.SilkS") (width 0.12) (tstamp 224768bc-6009-43ba-aa4a-70cbaa15b5a3))
(fp_line (start -4.7 3.9) (end 4.7 3.9) (layer "F.SilkS") (width 0.12) (tstamp 86dc7a78-7d51-4111-9eea-8a8f7977eb16))
(fp_line (start -4.7 2) (end -4.7 3.9) (layer "F.SilkS") (width 0.12) (tstamp 9f80220c-1612-4589-b9ca-a5579617bdb8))
(fp_line (start 4.7 -1.9) (end 4.7 0.1) (layer "F.SilkS") (width 0.12) (tstamp d21cc5e4-177a-4e1d-a8d5-060ed33e5b8e))
(fp_line (start 4.7 2) (end 4.7 3.9) (layer "F.SilkS") (width 0.12) (tstamp fef37e8b-0ff0-4da2-8a57-acaf19551d1a))
(fp_line (start -5.32 4.15) (end 5.32 4.15) (layer "F.CrtYd") (width 0.05) (tstamp 88d2c4b8-79f2-4e8b-9f70-b7e0ed9c70f8))
(fp_line (start 5.32 -5.27) (end 5.32 4.15) (layer "F.CrtYd") (width 0.05) (tstamp 89c0bc4d-eee5-4a77-ac35-d30b35db5cbe))
(fp_line (start -5.32 -5.27) (end 5.32 -5.27) (layer "F.CrtYd") (width 0.05) (tstamp a7531a95-7ca1-4f34-955e-18120cec99e6))
(fp_line (start -5.32 -5.27) (end -5.32 4.15) (layer "F.CrtYd") (width 0.05) (tstamp e1c30a32-820e-4b17-aec9-5cb8b76f0ccc))
(fp_line (start -4.47 3.65) (end 4.47 3.65) (layer "F.Fab") (width 0.1) (tstamp 34d03349-6d78-4165-a683-2d8b76f2bae8))
(fp_line (start -4.47 -3.65) (end 4.47 -3.65) (layer "F.Fab") (width 0.1) (tstamp 37b6c6d6-3e12-4736-912a-ea6e2bf06721))
(fp_line (start -4.47 -3.65) (end -4.47 3.65) (layer "F.Fab") (width 0.1) (tstamp bb4b1afc-c46e-451d-8dad-36b7dec82f26))
(fp_line (start 4.47 -3.65) (end 4.47 3.65) (layer "F.Fab") (width 0.1) (tstamp f8fc38ec-0b98-40bc-ae2f-e5cc29973bca))
(pad "" np_thru_hole circle (at 2.89 -2.6 180) (size 0.65 0.65) (drill 0.65) (layers *.Cu *.Mask) (tstamp 026ac84e-b8b2-4dd2-b675-8323c24fd778))
(pad "" np_thru_hole circle (at -2.89 -2.6 180) (size 0.65 0.65) (drill 0.65) (layers *.Cu *.Mask) (tstamp 34cdc1c9-c9e2-44c4-9677-c1c7d7efd83d))
(pad "A1" smd rect (at -3.25 -4.045 180) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp d69a5fdf-de15-4ec9-94f6-f9ee2f4b69fa))
(pad "A4" smd rect (at -2.45 -4.045 180) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 37 "VBUS") (pinfunction "VBUS") (pintype "passive") (tstamp 6f675e5f-8fe6-4148-baf1-da97afc770f8))
(pad "A5" smd rect (at -1.25 -4.045 180) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 38 "Net-(P1-PadA5)") (pinfunction "CC") (pintype "bidirectional") (tstamp 71989e06-8659-4605-b2da-4f729cc41263))
(pad "A6" smd rect (at 0.75 -4.045 180) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 41 "Net-(P1-PadA6)") (pinfunction "D+") (pintype "bidirectional") (tstamp 6f80f798-dc24-438f-a1eb-4ee2936267c8))
(pad "A6" smd rect (at -0.25 -4.045 180) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 41 "Net-(P1-PadA6)") (pinfunction "D+") (pintype "bidirectional") (tstamp aa79024d-ca7e-4c24-b127-7df08bbd0c75))
(pad "A7" smd rect (at -0.75 -4.045 180) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 39 "Net-(P1-PadA7)") (pinfunction "D-") (pintype "bidirectional") (tstamp 088f77ba-fca9-42b3-876e-a6937267f957))
(pad "A7" smd rect (at 0.25 -4.045 180) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 39 "Net-(P1-PadA7)") (pinfunction "D-") (pintype "bidirectional") (tstamp f66398f1-1ae7-4d4d-939f-958c174c6bce))
(pad "A8" smd rect (at 1.25 -4.045 180) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp f78e02cd-9600-4173-be8d-67e530b5d19f))
(pad "A9" smd rect (at 2.45 -4.045 180) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 37 "VBUS") (pinfunction "VBUS") (pintype "passive") (tstamp 4f411f68-04bd-4175-a406-bcaa4cf6601e))
(pad "A12" smd rect (at 3.25 -4.045 180) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp eae14f5f-515c-4a6f-ad0e-e8ef233d14bf))
(pad "B1" smd rect (at 3.25 -4.045 180) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp 1fa508ef-df83-4c99-846b-9acf535b3ad9))
(pad "B4" smd rect (at 2.45 -4.045 180) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 37 "VBUS") (pinfunction "VBUS") (pintype "passive") (tstamp 6e435cd4-da2b-4602-a0aa-5dd988834dff))
(pad "B5" smd rect (at 1.75 -4.045 180) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 38 "Net-(P1-PadA5)") (pinfunction "VCONN") (pintype "bidirectional") (tstamp 26801cfb-b53b-4a6a-a2f4-5f4986565765))
(pad "B8" smd rect (at -1.75 -4.045 180) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 9a0b74a5-4879-4b51-8e8e-6d85a0107422))
(pad "B9" smd rect (at -2.45 -4.045 180) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 37 "VBUS") (pinfunction "VBUS") (pintype "passive") (tstamp 8fc062a7-114d-48eb-a8f8-71128838f380))
(pad "B12" smd rect (at -3.25 -4.045 180) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp 917920ab-0c6e-4927-974d-ef342cdd4f63))
(pad "S1" thru_hole oval (at 4.32 1.05 180) (size 1 1.6) (drill oval 0.6 1.2) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp 0bcafe80-ffba-4f1e-ae51-95a595b006db))
(pad "S1" thru_hole oval (at -4.32 -3.13 180) (size 1 2.1) (drill oval 0.6 1.7) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp c49d23ab-146d-4089-864f-2d22b5b414b9))
(pad "S1" thru_hole oval (at 4.32 -3.13 180) (size 1 2.1) (drill oval 0.6 1.7) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp c7af8405-da2e-4a34-b9b8-518f342f8995))
(pad "S1" thru_hole oval (at -4.32 1.05 180) (size 1 1.6) (drill oval 0.6 1.2) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp da25bf79-0abb-4fac-a221-ca5c574dfc29))
(model "${KISYS3DMOD}/Connector_USB.3dshapes/USB_C_Receptacle_HRO_TYPE-C-31-M-12.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model "${KISYS3DMOD}/Connector_USB.3dshapes/USB_C_Receptacle_HRO_TYPE-C-31-M-12.step"
(offset (xyz 0 -1.1 0))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-000061ddfc68)
(at 128.1938 58.8772 180)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (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")
(property "LCSC" "C25905")
(property "Sheetfile" "FineMotion-5.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00006214761c")
(attr smd)
(fp_text reference "R19" (at -5.8662 0.4172) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp b4833916-7a3e-4498-86fb-ec6d13262ffe)
)
(fp_text value "5.1K" (at 0 1.17) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cc48dd41-7768-48d3-b096-2c4cc2126c9d)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp f959907b-1cef-4760-b043-4260a660a2ae)
)
(fp_line (start -0.153641 0.38) (end 0.153641 0.38) (layer "F.SilkS") (width 0.12) (tstamp ea6fde00-59dc-4a79-a647-7e38199fae0e))
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38) (layer "F.SilkS") (width 0.12) (tstamp f73b5500-6337-4860-a114-6e307f65ec9f))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 0fd35a3e-b394-4aae-875a-fac843f9cbb7))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 4185c36c-c66e-4dbd-be5d-841e551f4885))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp a8b4bc7e-da32-4fb8-b71a-d7b47c6f741f))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp c088f712-1abe-4cac-9a8b-d564931395aa))
(fp_line (start -0.525 0.27) (end -0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp 30317bf0-88bb-49e7-bf8b-9f3883982225))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp 3e915099-a18e-49f4-89bb-abe64c2dade5))
(fp_line (start 0.525 0.27) (end -0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp d3d57924-54a6-421d-a3a0-a044fc909e88))
(fp_line (start 0.525 -0.27) (end 0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp eab9c52c-3aa0-43a7-bc7f-7e234ff1e9f4))
(pad "1" smd roundrect locked (at -0.51 0 180) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 38 "Net-(P1-PadA5)") (pintype "passive") (tstamp d4db7f11-8cfe-40d2-b021-b36f05241701))
(pad "2" smd roundrect locked (at 0.51 0 180) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp cb721686-5255-4788-a3b0-ce4312e32eb7))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-00006226f79b)
(at 102.87 56.515 180)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (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")
(property "LCSC" "C25879")
(property "Sheetfile" "FineMotion-5.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000619974cc")
(attr smd)
(fp_text reference "R12" (at -0.04 1.815 90) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.11)))
(tstamp 692d87e9-6b70-46cc-9c78-b75193a484cc)
)
(fp_text value "2.2K" (at 0 1.17) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a6706c54-6a82-42d1-a6c9-48341690e19d)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp 4b471778-f61d-4b9d-a507-3d4f82ec4b7c)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38) (layer "F.SilkS") (width 0.12) (tstamp 63286bbb-78a3-4368-a50a-f6bf5f1653b0))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38) (layer "F.SilkS") (width 0.12) (tstamp b8e1a8b8-63f0-4e53-a6cb-c8edf9a649c4))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 07652224-af43-42a2-841c-1883ba305bc4))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 39845449-7a31-4262-86b1-e7af14a6659f))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 4f2f68c4-6fa0-45ce-b5c2-e911daddcd12))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp dd6c35f3-ae45-4706-ad6f-8028797ca8e0))
(fp_line (start -0.525 0.27) (end -0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp adcbf4d0-ed9c-4c7d-b78f-3bcbe974bdcb))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp c6bba6d7-3631-448e-9df8-b5a9e3238ade))
(fp_line (start 0.525 0.27) (end -0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp e4184668-3bdd-4cb2-a053-4f3d5e57b541))
(fp_line (start 0.525 -0.27) (end 0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp ea745685-58a4-4364-a674-15381eadb187))
(pad "1" smd roundrect locked (at -0.51 0 180) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "+3V3") (pintype "passive") (tstamp f8621ac5-1e7e-4e87-8c69-5fd403df9470))
(pad "2" smd roundrect locked (at 0.51 0 180) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 33 "SCL") (pintype "passive") (tstamp 883105b0-f6a6-466b-ba58-a2fcc1f18e4b))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_SO:HSOP-8-1EP_3.9x4.9mm_P1.27mm_EP2.41x3.1mm_ThermalVias" (layer "F.Cu")
(tedit 5DC5FE74) (tstamp 00000000-0000-0000-0000-0000622c70d7)