-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathdynamixel_control.kicad_pcb
More file actions
24314 lines (24252 loc) · 915 KB
/
dynamixel_control.kicad_pcb
File metadata and controls
24314 lines (24252 loc) · 915 KB
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")
(layers
(0 "F.Cu" signal)
(1 "In1.Cu" signal)
(2 "In2.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") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 0.48) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "In1.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 2" (type "prepreg") (thickness 0.48) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "In2.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 3" (type "core") (thickness 0.48) (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)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(disableapertmacros false)
(usegerberextensions true)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(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 false)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk true)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "gerber")
)
)
(net 0 "")
(net 1 "+12V")
(net 2 "GND")
(net 3 "Net-(C2-Pad1)")
(net 4 "+5V")
(net 5 "+3.3V")
(net 6 "Net-(C5-Pad1)")
(net 7 "unconnected-(U2-Pad1)")
(net 8 "Net-(C8-Pad1)")
(net 9 "Net-(C8-Pad2)")
(net 10 "Net-(C9-Pad1)")
(net 11 "Net-(C9-Pad2)")
(net 12 "Net-(C10-Pad1)")
(net 13 "Net-(C11-Pad1)")
(net 14 "/Dynamixel/DYNAMIXEL_POWER")
(net 15 "Net-(C25-Pad2)")
(net 16 "Net-(J2-Pad2)")
(net 17 "Net-(J2-Pad3)")
(net 18 "/I2C_SCL")
(net 19 "/I2C_SDA")
(net 20 "/Dynamixel/DYNAMIXEL_TTL_DATA")
(net 21 "Net-(Q3-Pad1)")
(net 22 "Net-(Q3-Pad3)")
(net 23 "Net-(R1-Pad2)")
(net 24 "Net-(R10-Pad1)")
(net 25 "Net-(R12-Pad2)")
(net 26 "/Dynamixel/DYNAMIXEL_ENABLE")
(net 27 "/LIMIT_SWITCH")
(net 28 "/UART_RX")
(net 29 "/UART_TX")
(net 30 "unconnected-(U4-Pad3)")
(net 31 "unconnected-(U4-Pad4)")
(net 32 "unconnected-(U4-Pad5)")
(net 33 "unconnected-(U4-Pad6)")
(net 34 "/Dynamixel/DYNAMIXEL_TTL_DIR")
(net 35 "/Dynamixel/DYNAMIXEL_TTL_TX")
(net 36 "/Dynamixel/DYNAMIXEL_TTL_RX")
(net 37 "unconnected-(U4-PadGND_2)")
(net 38 "/IMU_INT1")
(net 39 "/IMU_INT2")
(net 40 "unconnected-(U7-Pad1)")
(net 41 "/~{RS232_INVALID}")
(net 42 "unconnected-(U4-Pad13)")
(net 43 "unconnected-(U4-Pad12)")
(net 44 "unconnected-(U4-Pad11)")
(net 45 "unconnected-(U4-Pad10)")
(net 46 "Net-(R2-Pad2)")
(net 47 "/DEBUG_UART_RX")
(net 48 "/DEBUG_UART_TX")
(net 49 "unconnected-(U4-Pad17)")
(net 50 "unconnected-(U4-Pad16)")
(net 51 "Net-(C3-Pad1)")
(net 52 "Net-(C14-Pad1)")
(net 53 "Net-(L2-Pad1)")
(footprint "Capacitor_SMD:C_0805_2012Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 0818eb04-d6dc-4677-a58b-52f80ccde21c)
(at 47.5 34.7 -90)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "dynamixel_control.kicad_sch")
(property "Sheetname" "")
(path "/bd68e7cc-718b-4dcc-b334-dfd1a69041f5")
(attr smd)
(fp_text reference "C10" (at 2.95 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bb1feb31-26d7-480f-a206-856159741666)
)
(fp_text value "0.1µF/25V" (at 0 1.68 -270) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ce1483a0-b7a3-4225-90f2-526cdbdc6035)
)
(fp_text user "${REFERENCE}" (at 0 0 -270) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 7a245088-3867-4a79-a8d2-962d88f00f22)
)
(fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer "F.SilkS") (width 0.12) (tstamp 1e139c4d-7149-41d7-bd0f-c90d7c7e3df7))
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 8fa9861e-084f-4384-af18-117ff0d17bbe))
(fp_line (start 1.7 0.98) (end -1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 00c8e702-ed86-4155-8d20-035a482ce312))
(fp_line (start 1.7 -0.98) (end 1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 5cd365b3-2631-4bce-ab39-df9b01889d7f))
(fp_line (start -1.7 -0.98) (end 1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp 9f9be174-aee0-4ac8-a7b9-825812e0e8c1))
(fp_line (start -1.7 0.98) (end -1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp bc68bef5-2d62-47db-850e-2a746e45b299))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp 453b2eeb-dabc-4c1f-8d3a-339688b13ec0))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 62534d93-463e-4a6f-86b9-8dd95ad348b5))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp ab4094b7-6e50-4840-9ce2-8673b7b405ca))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp dcf7da60-e9ca-4844-b0b3-e32477a58ebe))
(pad "1" smd roundrect (at -0.95 0 270) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "Net-(C10-Pad1)") (pintype "passive") (tstamp d52d41d4-6b43-4041-b4ae-881f9af65621))
(pad "2" smd roundrect (at 0.95 0 270) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp bcc5101f-fffa-4d66-ba31-5984971bdb4c))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_3.2mm_M3" (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 0a7f93fa-192e-4226-a114-32033da5598e)
(at 24.5 24)
(descr "Mounting Hole 3.2mm, no annular, M3")
(tags "mounting hole 3.2mm no annular m3")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "REF**" (at 0 -4.2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0248e9d0-047f-448b-95c4-f27f6ce36129)
)
(fp_text value "MountingHole_3.2mm_M3" (at 0 4.2) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 60e918d2-2e76-4e73-9486-5641e27b3c2f)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5893a58c-6d94-42c0-981e-da611f76f236)
)
(fp_circle (center 0 0) (end 3.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 6e835f26-5127-46ae-a78b-8c0a6d1ef66b))
(fp_circle (center 0 0) (end 3.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 9127d0da-586b-48a9-8c22-68cff849ce24))
(pad "" np_thru_hole circle (at 0 0) (size 3.2 3.2) (drill 3.2) (layers *.Cu *.Mask) (tstamp 54059aa2-5c38-4b17-9ccf-dcb517f2b379))
)
(footprint "Resistor_SMD:R_0805_2012Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 10536255-e672-4c59-8c14-979ce141eb21)
(at 33.0875 53)
(descr "Resistor SMD 0805 (2012 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 "Sheetfile" "dynamixel_control.kicad_sch")
(property "Sheetname" "")
(path "/5288fe48-df23-4306-a8f1-91660c8e7703")
(attr smd)
(fp_text reference "R11" (at 0 -1.65) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c50cdb4a-32f4-4ff0-afcb-d3088d0e8651)
)
(fp_text value "0" (at 0 1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e0431dcf-fc58-4ec6-9072-f88c11b2e0fe)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp e04582ff-8219-49a2-b749-5854483cddd1)
)
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer "F.SilkS") (width 0.12) (tstamp 005ffcb5-7f2f-4352-a8be-53f8213c36ad))
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 78588021-1bbb-4d40-8539-92c449bf677b))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 8c92b7e8-39e1-49d7-aeae-5550e34fdd33))
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 8f2a1387-95ba-4c8f-8699-0e079be030d4))
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp c61ec6fd-15ef-4882-b49f-fe1aaa8543c4))
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp d67c9fb5-5467-45d4-9040-6b4bb62f009c))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 21f730f7-ef6d-47fe-92f4-42891fcfc05f))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 5daa96ea-5214-4a6d-bd84-09cc1472a1f2))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp 6037997d-4bdf-44c5-b8a4-e29a9ecdf16c))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp e1e88bba-78f8-4ea1-bcd7-23118cddf1f3))
(pad "1" smd roundrect (at -0.9125 0) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902439)
(net 4 "+5V") (pintype "passive") (tstamp 90d796ff-5aa1-495b-86cd-3010b311f989))
(pad "2" smd roundrect (at 0.9125 0) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902439)
(net 52 "Net-(C14-Pad1)") (pintype "passive") (tstamp e6229d94-c393-49b0-ba77-dd41d89fd2cb))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 18abe2a0-26d8-4558-a6f9-95ebce5c3d0a)
(at 48.45 29)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "dynamixel_control.kicad_sch")
(property "Sheetname" "")
(path "/b0226090-f386-4e2e-859c-f99ffa2b3fb0")
(attr smd)
(fp_text reference "C11" (at 3.05 0 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8207b40a-bc18-49fc-966a-f401d73e28ec)
)
(fp_text value "0.1µF/25V" (at 0 1.68) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 83b40aae-b57e-4625-a9dd-e9f99417a840)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp e3eff889-18e5-4f8a-be4b-0e1dbc87445e)
)
(fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer "F.SilkS") (width 0.12) (tstamp 50444224-2bb0-40d8-8fcb-1f8c5e330bcb))
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 7a4b4340-4a56-4969-ab87-52812272d0f0))
(fp_line (start 1.7 0.98) (end -1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 22bc0a1e-5125-4b2a-9cfc-043740898883))
(fp_line (start -1.7 0.98) (end -1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp 28aa06ff-bee4-45cc-bbfb-e5fb23a6ae55))
(fp_line (start 1.7 -0.98) (end 1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 9e432c31-8b67-4b7d-93fa-6b1a9cdf0fa1))
(fp_line (start -1.7 -0.98) (end 1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp e1cdf22a-ccd5-43ce-9438-b5a0dfa06f5d))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp 4b81b909-a4a6-4f45-9e30-9524ccca69fa))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp 6da67a40-16fd-4f02-8fd7-476eb5bdbaf8))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 7117d37a-3f9a-424b-98d9-629b4546d7e3))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp ed0a4ea6-32b2-4976-9344-b748d2c28462))
(pad "1" smd roundrect (at -0.95 0) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 13 "Net-(C11-Pad1)") (pintype "passive") (tstamp d839ea5d-b081-41a8-a1ea-dcce361db8a8))
(pad "2" smd roundrect (at 0.95 0) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 0bbefba2-4ea5-4710-ae50-2b733e3037f6))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Inductor_SMD:L_1812_4532Metric" (layer "F.Cu")
(tedit 5F68FEF0) (tstamp 1f521696-e67f-41c3-a725-d45c95a4f750)
(at 25.3625 55)
(descr "Inductor SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), generated with kicad-footprint-generator")
(tags "inductor")
(property "Sheetfile" "dynamixel_control.kicad_sch")
(property "Sheetname" "")
(path "/94b6b54b-1e62-4a6e-87cc-dcdeb7eeedc9")
(attr smd)
(fp_text reference "L2" (at -3.8625 1 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6907bc60-c7df-43f9-8c88-d4b23b023796)
)
(fp_text value "12µH (RLS-126)" (at 0 2.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 47263453-9cf3-41ef-94c9-440bc98e626a)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 24047689-cb08-40fa-9475-2d372f065475)
)
(fp_line (start -1.386252 -1.71) (end 1.386252 -1.71) (layer "F.SilkS") (width 0.12) (tstamp 16f69771-d3dc-4907-af0e-a9d5fb61aa57))
(fp_line (start -1.386252 1.71) (end 1.386252 1.71) (layer "F.SilkS") (width 0.12) (tstamp 76c2f60a-9078-4935-92a0-6a99a2530694))
(fp_line (start -2.95 1.95) (end -2.95 -1.95) (layer "F.CrtYd") (width 0.05) (tstamp 36d9c3ba-dc29-4cde-a24e-b9bafcc72b6b))
(fp_line (start 2.95 1.95) (end -2.95 1.95) (layer "F.CrtYd") (width 0.05) (tstamp 696abb7a-ffb3-4f6f-8148-60854cd93a3d))
(fp_line (start -2.95 -1.95) (end 2.95 -1.95) (layer "F.CrtYd") (width 0.05) (tstamp 88f53f75-e6c7-4731-afbe-87ca97e462e5))
(fp_line (start 2.95 -1.95) (end 2.95 1.95) (layer "F.CrtYd") (width 0.05) (tstamp de1b0c53-3c75-440e-afdf-0c045339f997))
(fp_line (start 2.25 -1.6) (end 2.25 1.6) (layer "F.Fab") (width 0.1) (tstamp 0b003b4a-2f11-4c4e-af9d-9c2806f37d98))
(fp_line (start -2.25 1.6) (end -2.25 -1.6) (layer "F.Fab") (width 0.1) (tstamp 39d98a27-ae17-40b3-b96a-78ba97e7639e))
(fp_line (start -2.25 -1.6) (end 2.25 -1.6) (layer "F.Fab") (width 0.1) (tstamp ea227049-532e-4280-a49d-d02ab5204b84))
(fp_line (start 2.25 1.6) (end -2.25 1.6) (layer "F.Fab") (width 0.1) (tstamp fed22ff4-7dde-4f24-be78-af691688c1bb))
(pad "1" smd roundrect (at -2.1375 0) (size 1.125 3.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2222222222)
(net 53 "Net-(L2-Pad1)") (pinfunction "1") (pintype "passive") (tstamp 2f3dd2a3-eee4-4326-b7a2-8675014aec43))
(pad "2" smd roundrect (at 2.1375 0) (size 1.125 3.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2222222222)
(net 4 "+5V") (pinfunction "2") (pintype "passive") (tstamp 0405b33c-389e-4cdc-8c8b-53e1600ca971))
(model "${KICAD6_3DMODEL_DIR}/Inductor_SMD.3dshapes/L_1812_4532Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_3.2mm_M3" (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 2fa76a32-0047-4c5a-825b-6c3ca696de8f)
(at 51.5 24)
(descr "Mounting Hole 3.2mm, no annular, M3")
(tags "mounting hole 3.2mm no annular m3")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "MH1" (at 0 -4.2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 05a2833f-af2a-40dc-bd57-f19ded2063c1)
)
(fp_text value "MountingHole_3.2mm_M3" (at 0 4.2) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 26c45f0e-f532-4c74-b510-9096ea4c05e9)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 67b9a50e-7b73-42ad-84dd-3a6669363ddc)
)
(fp_circle (center 0 0) (end 3.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 51909e98-9137-414e-ab7e-aa6c3f95f036))
(fp_circle (center 0 0) (end 3.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp d96d9f74-9372-46d2-ba17-887aeee5cc2f))
(pad "" np_thru_hole circle (at 0 0) (size 3.2 3.2) (drill 3.2) (layers *.Cu *.Mask) (tstamp 3b15828f-a36f-44ce-a2f1-11d7ad19c972))
)
(footprint "Connector_JST:JST_PH_B2B-PH-K_1x02_P2.00mm_Vertical" (layer "F.Cu")
(tedit 5B7745C2) (tstamp 3720d406-3182-4da2-8171-be66d822fc32)
(at 52.7 36.5 90)
(descr "JST PH series connector, B2B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator")
(tags "connector JST PH side entry")
(property "Sheetfile" "dynamixel_control.kicad_sch")
(property "Sheetname" "")
(path "/b783f2f8-c26a-486d-8962-845d8404ca33")
(attr through_hole)
(fp_text reference "SW1" (at 5 1.55) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 19b3b827-4fb6-4eb2-9fbf-1978e89ca7bf)
)
(fp_text value "LIMIT_SWITCH" (at 1 4 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e32f90b8-399c-47f0-b206-facf1a5794d2)
)
(fp_text user "${REFERENCE}" (at 1 1.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b39fb560-30b6-4c7c-91a4-3d6efeb46f62)
)
(fp_line (start 1 2.3) (end 1 1.8) (layer "F.SilkS") (width 0.12) (tstamp 0d21ccc4-157e-4601-99f0-aef768cafa00))
(fp_line (start 0.9 2.3) (end 0.9 1.8) (layer "F.SilkS") (width 0.12) (tstamp 15869d60-75ba-4112-a708-1e080a012878))
(fp_line (start 3.45 -1.2) (end 1.5 -1.2) (layer "F.SilkS") (width 0.12) (tstamp 1a0ad89c-2be7-472c-ac49-2af1ad3e7439))
(fp_line (start 0.5 -1.2) (end -1.45 -1.2) (layer "F.SilkS") (width 0.12) (tstamp 41e26e7b-e4f0-462a-8058-c31b4f5b49ef))
(fp_line (start -0.6 -2.01) (end -0.6 -1.81) (layer "F.SilkS") (width 0.12) (tstamp 553ccedc-be6c-4051-acc1-a964a3f5222f))
(fp_line (start 0.5 -1.81) (end 0.5 -1.2) (layer "F.SilkS") (width 0.12) (tstamp 584873a2-0912-441b-8e80-26c40e11435b))
(fp_line (start 4.06 -0.5) (end 3.45 -0.5) (layer "F.SilkS") (width 0.12) (tstamp 624c43d7-78dd-40a5-bc48-3c0fe2f8dc58))
(fp_line (start -2.06 -0.5) (end -1.45 -0.5) (layer "F.SilkS") (width 0.12) (tstamp 7374681d-95b2-47a7-abcb-8e0d22c24954))
(fp_line (start -1.11 -2.11) (end -2.36 -2.11) (layer "F.SilkS") (width 0.12) (tstamp 7ba0124d-a73a-438a-948f-f4874bda8a9e))
(fp_line (start -2.06 -1.81) (end -2.06 2.91) (layer "F.SilkS") (width 0.12) (tstamp 7f19fe6a-bb35-474b-b044-d9140068d382))
(fp_line (start 4.06 2.91) (end 4.06 -1.81) (layer "F.SilkS") (width 0.12) (tstamp 82b803db-0c6d-413e-8c82-307785d0301a))
(fp_line (start 3.45 2.3) (end 3.45 -1.2) (layer "F.SilkS") (width 0.12) (tstamp 852f0a5f-00cf-4d22-ad30-71397fcff75e))
(fp_line (start -0.3 -1.81) (end -0.3 -2.01) (layer "F.SilkS") (width 0.12) (tstamp 8a15011f-7ee4-402e-9501-f46a6159a999))
(fp_line (start 4.06 -1.81) (end -2.06 -1.81) (layer "F.SilkS") (width 0.12) (tstamp 9b4829c4-a7e9-4305-af06-2d0644b626c0))
(fp_line (start 1.5 -1.2) (end 1.5 -1.81) (layer "F.SilkS") (width 0.12) (tstamp a604bf9e-f25e-47fb-b107-d2dfb04dfda8))
(fp_line (start 4.06 0.8) (end 3.45 0.8) (layer "F.SilkS") (width 0.12) (tstamp a68923bb-3795-4b58-9739-d9373619626a))
(fp_line (start -1.45 -1.2) (end -1.45 2.3) (layer "F.SilkS") (width 0.12) (tstamp acc3dad5-2a0e-4aca-8584-d4aa7d505d41))
(fp_line (start 1.1 1.8) (end 1.1 2.3) (layer "F.SilkS") (width 0.12) (tstamp b7f88eb0-50ca-40e1-8372-6fcb29d8984f))
(fp_line (start -2.06 0.8) (end -1.45 0.8) (layer "F.SilkS") (width 0.12) (tstamp dc792cb1-544a-48c3-a9ef-66858302f57f))
(fp_line (start -1.45 2.3) (end 3.45 2.3) (layer "F.SilkS") (width 0.12) (tstamp e1c713f4-29de-4d7d-8427-61b452b315d5))
(fp_line (start 0.9 1.8) (end 1.1 1.8) (layer "F.SilkS") (width 0.12) (tstamp e42d49a1-27ca-4522-be2f-24f9f6a0c882))
(fp_line (start -0.3 -2.01) (end -0.6 -2.01) (layer "F.SilkS") (width 0.12) (tstamp e4651dc9-d948-4478-abba-9fab8e4501a7))
(fp_line (start -0.3 -1.91) (end -0.6 -1.91) (layer "F.SilkS") (width 0.12) (tstamp ed419c83-e0ea-464f-9e96-e85668ef4b43))
(fp_line (start -2.06 2.91) (end 4.06 2.91) (layer "F.SilkS") (width 0.12) (tstamp fddcd936-31df-499d-b2cf-1c9bc7730680))
(fp_line (start -2.36 -2.11) (end -2.36 -0.86) (layer "F.SilkS") (width 0.12) (tstamp fe728ae8-6dab-4b81-939c-09607ed52f29))
(fp_line (start 4.45 3.3) (end 4.45 -2.2) (layer "F.CrtYd") (width 0.05) (tstamp 175814de-386d-410b-8a3b-fa44e78c30cd))
(fp_line (start 4.45 -2.2) (end -2.45 -2.2) (layer "F.CrtYd") (width 0.05) (tstamp 23f6bf44-6e50-4c79-8b52-dd4d9758f4a1))
(fp_line (start -2.45 -2.2) (end -2.45 3.3) (layer "F.CrtYd") (width 0.05) (tstamp 40cb4aa4-c7d9-4c6a-bb08-ee762637cd96))
(fp_line (start -2.45 3.3) (end 4.45 3.3) (layer "F.CrtYd") (width 0.05) (tstamp e78b5ed8-cefe-439d-b662-663a98e44589))
(fp_line (start -1.95 -1.7) (end -1.95 2.8) (layer "F.Fab") (width 0.1) (tstamp 0d9f54ce-76a7-4706-8682-db1782776d40))
(fp_line (start 3.95 2.8) (end 3.95 -1.7) (layer "F.Fab") (width 0.1) (tstamp 1d5f74e4-78bb-48b8-8d37-4bbf735affc8))
(fp_line (start -1.11 -2.11) (end -2.36 -2.11) (layer "F.Fab") (width 0.1) (tstamp 1e30a753-3cf6-4458-9e79-e61d516d7f38))
(fp_line (start -1.95 2.8) (end 3.95 2.8) (layer "F.Fab") (width 0.1) (tstamp 32f3264d-0be5-4f51-b8da-990a7ab5ed30))
(fp_line (start 3.95 -1.7) (end -1.95 -1.7) (layer "F.Fab") (width 0.1) (tstamp 5689611b-89c4-46a9-a356-f5c3d5bdd9cc))
(fp_line (start -2.36 -2.11) (end -2.36 -0.86) (layer "F.Fab") (width 0.1) (tstamp 66d9be86-7a51-4fed-a4ed-13a00dd375a6))
(pad "1" thru_hole roundrect (at 0 0 90) (size 1.2 1.75) (drill 0.75) (layers *.Cu *.Mask) (roundrect_rratio 0.2083333333)
(net 2 "GND") (pinfunction "A") (pintype "passive") (tstamp 018be1e6-5a2f-4558-82df-c32a8e130166))
(pad "2" thru_hole oval (at 2 0 90) (size 1.2 1.75) (drill 0.75) (layers *.Cu *.Mask)
(net 23 "Net-(R1-Pad2)") (pinfunction "B") (pintype "passive") (tstamp f636c816-559b-467e-98f8-0588a345fbea))
(model "${KICAD6_3DMODEL_DIR}/Connector_JST.3dshapes/JST_PH_B2B-PH-K_1x02_P2.00mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 3ea2b07b-95bd-424b-a341-97c16cc4a24f)
(at 44.25 72.3 -90)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "dynamixel_control.kicad_sch")
(property "Sheetname" "")
(path "/0e3888c0-7ced-4387-b101-2f4183e1c987")
(attr smd)
(fp_text reference "C6" (at -0.05 1.25 -90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 657608fd-7f78-43cc-ae21-2a0fc5121770)
)
(fp_text value "10nF/25V" (at 0 1.68 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 35cf7ae5-d15b-49e1-8e09-b27d882be238)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 5804b777-4d0a-45b1-b184-467eeea0cd1d)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer "F.SilkS") (width 0.12) (tstamp be1652c1-01f4-4b9a-8306-2975ac032cf6))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer "F.SilkS") (width 0.12) (tstamp e402b550-f599-4102-bd89-9a19e01d7f34))
(fp_line (start -1.7 -0.98) (end 1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp 1219458c-9add-47ae-93c7-603fd825f739))
(fp_line (start 1.7 0.98) (end -1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 7d79611f-e243-4f00-a84c-658fba4c85f7))
(fp_line (start -1.7 0.98) (end -1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp c3797d35-9c6a-494c-83fb-6f12e55116cf))
(fp_line (start 1.7 -0.98) (end 1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp d2ea4663-a4ff-43f5-8921-375a4fb09ed0))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp 28b3310c-fe81-4a68-b7eb-988b2f1b26eb))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp 6c14d80a-5bc5-4761-b9bb-c3077feedc37))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 93883b7a-5779-413a-9cd2-9d0f53969c8b))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp aed8ad1f-7b5d-44e5-b266-f9736bdf871a))
(pad "1" smd roundrect (at -0.95 0 270) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "+3.3V") (pintype "passive") (tstamp 8df63300-4bfa-4567-a5b7-4c4d3bab809e))
(pad "2" smd roundrect (at 0.95 0 270) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 8ec7893c-a640-41ce-9053-d00c593d91b3))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 41928313-c719-42fb-95d6-5bdb7a9e88b7)
(at 50 70.55 -90)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "dynamixel_control.kicad_sch")
(property "Sheetname" "")
(path "/6e3a0f46-5770-4f2f-8a3a-584050d350ef")
(attr smd)
(fp_text reference "C13" (at 0.2 -1.5 -270) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7b2d77ac-c39a-4196-9ab6-2b8d33bb3bd2)
)
(fp_text value "0.1µF/25V" (at 0 1.68 -270) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp aa0f0a68-79e8-4557-807a-5d747c9570e7)
)
(fp_text user "${REFERENCE}" (at 0 0 -270) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 14db699b-6215-411e-a60f-e5a0e19f02ea)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 7d9348e1-5b71-419a-af08-d327b2b4b5fe))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer "F.SilkS") (width 0.12) (tstamp ac9f9361-5aec-49ad-ab96-8b9682b00248))
(fp_line (start 1.7 -0.98) (end 1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 2d343a09-d001-41c3-b530-7af0f84a3064))
(fp_line (start -1.7 -0.98) (end 1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp 3956a06c-fd80-4a6b-8aa3-964b6748a7ec))
(fp_line (start -1.7 0.98) (end -1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp 9094392c-0965-4cb9-96b0-550d411d9b9f))
(fp_line (start 1.7 0.98) (end -1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp fc65a970-656a-492e-916b-629ef14fb7d8))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 2e206d83-68bb-4e8e-b781-dd9dd568149f))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp 7c3f1db4-cae7-4ae2-9fbc-d8820a1c3792))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp b741aa4c-628a-4263-aa2b-e3f8fe8a3598))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp d5c0607a-54a8-4954-9c41-618fc3804382))
(pad "1" smd roundrect (at -0.95 0 270) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "+3.3V") (pintype "passive") (tstamp 1d4f9954-1930-4230-887a-dfa30eeb4813))
(pad "2" smd roundrect (at 0.95 0 270) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 0b81b714-65e5-469a-9e3d-bf119513e65a))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_JST:JST_PH_S3B-PH-K_1x03_P2.00mm_Horizontal" (layer "F.Cu")
(tedit 5B7745C6) (tstamp 463f1b5e-6eb1-4b41-9f14-a53c519d59ea)
(at 44 26.75 180)
(descr "JST PH series connector, S3B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator")
(tags "connector JST PH top entry")
(property "Sheetfile" "dynamixel_control.kicad_sch")
(property "Sheetname" "")
(path "/2eed50ef-4bed-494f-b3fc-bcef8692171d")
(attr through_hole)
(fp_text reference "J2" (at -3.25 5.75) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 60a37ad2-3532-4774-aa9b-d3d5da0aafa5)
)
(fp_text value "RS232" (at 2 7.45) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1531fd64-97d8-45eb-be6b-627f7d3023a9)
)
(fp_text user "${REFERENCE}" (at 2 2.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 39180721-323e-4287-92a0-48ee0b3ee4f9)
)
(fp_line (start 0.5 6.36) (end 0.5 2) (layer "F.SilkS") (width 0.12) (tstamp 13cf0f0a-f1de-4cb7-8512-2a3c13f82f4a))
(fp_line (start -0.86 0.14) (end -0.86 -1.075) (layer "F.SilkS") (width 0.12) (tstamp 37eb31a7-35f7-4912-86fa-b1c08a7ffe1f))
(fp_line (start 4.3 2.5) (end 5.3 2.5) (layer "F.SilkS") (width 0.12) (tstamp 393b3673-8a49-4afb-9bbe-48796a775635))
(fp_line (start -0.3 4.1) (end -0.3 2.5) (layer "F.SilkS") (width 0.12) (tstamp 3d59ec7b-8f79-4f1b-b3b6-9f65b263890c))
(fp_line (start -2.06 6.36) (end 6.06 6.36) (layer "F.SilkS") (width 0.12) (tstamp 415a2aba-e733-499c-85b9-edcfad7106b2))
(fp_line (start 5.3 4.1) (end 4.3 4.1) (layer "F.SilkS") (width 0.12) (tstamp 5b4f536d-7085-4121-9c54-553ee60cb882))
(fp_line (start 6.06 6.36) (end 6.06 -1.46) (layer "F.SilkS") (width 0.12) (tstamp 6564c919-a985-40c3-a949-0b649cb805ff))
(fp_line (start 6.06 0.14) (end 5.14 0.14) (layer "F.SilkS") (width 0.12) (tstamp 662e97ae-df2a-4a53-b18b-541048a5927f))
(fp_line (start -1.14 -1.46) (end -2.06 -1.46) (layer "F.SilkS") (width 0.12) (tstamp 6904007e-db58-43e4-8110-85232d0b0e47))
(fp_line (start -0.86 0.14) (end -1.14 0.14) (layer "F.SilkS") (width 0.12) (tstamp 72917ff1-4880-41b3-990a-3246a690b055))
(fp_line (start -0.3 4.1) (end -0.3 6.36) (layer "F.SilkS") (width 0.12) (tstamp 7648bc41-4c2b-4f85-94b8-08afad4ff6c9))
(fp_line (start 5.3 2.5) (end 5.3 4.1) (layer "F.SilkS") (width 0.12) (tstamp 7e72bbd5-1a77-4011-b44c-d334ab3b701e))
(fp_line (start 4.3 4.1) (end 4.3 2.5) (layer "F.SilkS") (width 0.12) (tstamp 9822c596-0a39-498f-8859-781bc935e5b6))
(fp_line (start 6.06 -1.46) (end 5.14 -1.46) (layer "F.SilkS") (width 0.12) (tstamp 9b3ccf8a-2360-4b58-98aa-8e260649ebe8))
(fp_line (start 0.5 2) (end 3.5 2) (layer "F.SilkS") (width 0.12) (tstamp a3383fcc-34ce-4910-bfd9-45e8ac2a1ffa))
(fp_line (start -1.3 4.1) (end -0.3 4.1) (layer "F.SilkS") (width 0.12) (tstamp a45bcb29-10f0-4853-b8b9-d23401366761))
(fp_line (start -0.8 4.1) (end -0.8 6.36) (layer "F.SilkS") (width 0.12) (tstamp a6d97d7a-5e9a-4f95-a740-245ddfadff94))
(fp_line (start -1.14 0.14) (end -1.14 -1.46) (layer "F.SilkS") (width 0.12) (tstamp b1922c15-0263-407f-ba18-3c460314e184))
(fp_line (start -2.06 0.14) (end -1.14 0.14) (layer "F.SilkS") (width 0.12) (tstamp c8e6648c-85de-45b3-b211-700d990d43d6))
(fp_line (start 3.5 2) (end 3.5 6.36) (layer "F.SilkS") (width 0.12) (tstamp cc696d54-6426-4b30-9549-fc1d937c0d5f))
(fp_line (start 5.14 0.14) (end 4.86 0.14) (layer "F.SilkS") (width 0.12) (tstamp cea8413e-ca91-401c-8aa8-8a4a419b397d))
(fp_line (start -0.3 2.5) (end -1.3 2.5) (layer "F.SilkS") (width 0.12) (tstamp cebdbd76-3a7a-4a11-af7b-ac8c9f9e0224))
(fp_line (start 5.14 -1.46) (end 5.14 0.14) (layer "F.SilkS") (width 0.12) (tstamp d5db3d3a-c6d6-455f-8fc6-383e6c1070b0))
(fp_line (start -1.3 2.5) (end -1.3 4.1) (layer "F.SilkS") (width 0.12) (tstamp d8de209b-c043-4303-92d5-6f7251496c5c))
(fp_line (start -2.06 -1.46) (end -2.06 6.36) (layer "F.SilkS") (width 0.12) (tstamp ecc22e34-7e4a-43f4-8d16-2884527de91d))
(fp_line (start 6.45 6.75) (end 6.45 -1.85) (layer "F.CrtYd") (width 0.05) (tstamp 0aed132f-6d3d-497d-942a-be4ffd237015))
(fp_line (start 6.45 -1.85) (end -2.45 -1.85) (layer "F.CrtYd") (width 0.05) (tstamp 32d20549-b5e8-4cfb-9cff-d1e666f152a0))
(fp_line (start -2.45 -1.85) (end -2.45 6.75) (layer "F.CrtYd") (width 0.05) (tstamp 392a3bbe-9d78-4c33-bf9f-ac974cc47a57))
(fp_line (start -2.45 6.75) (end 6.45 6.75) (layer "F.CrtYd") (width 0.05) (tstamp bb3b7f1c-c4c3-4ce2-86f8-ba1184061011))
(fp_line (start -1.25 -1.35) (end -1.95 -1.35) (layer "F.Fab") (width 0.1) (tstamp 1a83fc89-1231-4108-82e5-94b7023386cb))
(fp_line (start 0.5 1.375) (end 0 0.875) (layer "F.Fab") (width 0.1) (tstamp 370a0d23-6f61-425f-b12c-42845628696e))
(fp_line (start -0.5 1.375) (end 0.5 1.375) (layer "F.Fab") (width 0.1) (tstamp 45f4c40b-9932-4875-945e-5e54b218e168))
(fp_line (start 0 0.875) (end -0.5 1.375) (layer "F.Fab") (width 0.1) (tstamp 549077e4-50bb-4fa3-8c0e-b4fd9b862156))
(fp_line (start 5.95 6.25) (end 5.95 -1.35) (layer "F.Fab") (width 0.1) (tstamp 6395ae4a-6d70-47e1-bca6-360ee08d9de3))
(fp_line (start -1.95 6.25) (end 5.95 6.25) (layer "F.Fab") (width 0.1) (tstamp 9503779e-938b-4be0-9fef-97643d149687))
(fp_line (start -1.95 -1.35) (end -1.95 6.25) (layer "F.Fab") (width 0.1) (tstamp 955a1811-b943-406a-a31d-b797d2276498))
(fp_line (start -1.25 0.25) (end -1.25 -1.35) (layer "F.Fab") (width 0.1) (tstamp 9a373ebb-d16a-4f64-a116-822cb9c4a684))
(fp_line (start 5.25 -1.35) (end 5.25 0.25) (layer "F.Fab") (width 0.1) (tstamp 9c033cc4-e879-4536-aa52-05d3cff60b43))
(fp_line (start 5.25 0.25) (end -1.25 0.25) (layer "F.Fab") (width 0.1) (tstamp f5a817e9-666b-4b9d-bb8b-c5630a22cd1d))
(fp_line (start 5.95 -1.35) (end 5.25 -1.35) (layer "F.Fab") (width 0.1) (tstamp fe13edb5-6554-4a11-a847-4ce0768f840c))
(pad "1" thru_hole roundrect (at 0 0 180) (size 1.2 1.75) (drill 0.75) (layers *.Cu *.Mask) (roundrect_rratio 0.2083333333)
(net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 4300a9d6-4463-4df4-8b68-6c41afabda4a))
(pad "2" thru_hole oval (at 2 0 180) (size 1.2 1.75) (drill 0.75) (layers *.Cu *.Mask)
(net 16 "Net-(J2-Pad2)") (pinfunction "Pin_2") (pintype "passive") (tstamp cb507372-55ec-4bfe-9204-aefd3080f596))
(pad "3" thru_hole oval (at 4 0 180) (size 1.2 1.75) (drill 0.75) (layers *.Cu *.Mask)
(net 17 "Net-(J2-Pad3)") (pinfunction "Pin_3") (pintype "passive") (tstamp 268b1e5b-1988-427f-830f-0a2ea0eb6e8f))
(model "${KICAD6_3DMODEL_DIR}/Connector_JST.3dshapes/JST_PH_S3B-PH-K_1x03_P2.00mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 46dcf18d-8320-4e75-ad95-32c8b693697a)
(at 27.7 51.75)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "dynamixel_control.kicad_sch")
(property "Sheetname" "")
(path "/42be6ab6-da36-4c8b-ab47-72d6dd9b7332")
(attr smd)
(fp_text reference "C3" (at 2.7 0 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 51726542-2639-4c07-9046-9b85d4c153fd)
)
(fp_text value "10µF/25V" (at 0 1.68) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 33b0366b-e665-47ea-b226-17888d4f0442)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 721fc8e9-c702-4673-a061-80f0c7a86481)
)
(fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer "F.SilkS") (width 0.12) (tstamp 7466a3c3-7c11-46f7-9a1a-243ea08236ba))
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer "F.SilkS") (width 0.12) (tstamp b61ba03f-3329-4432-ad99-9606980ab4ea))
(fp_line (start -1.7 -0.98) (end 1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp 1f6c77d6-59c7-4e86-893c-3a99f84f4695))
(fp_line (start 1.7 -0.98) (end 1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 57a0d3c6-dda9-406e-a47a-b19e10720f0a))
(fp_line (start -1.7 0.98) (end -1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp 5b309d4b-c0ca-4957-a465-bee8df7c03e6))
(fp_line (start 1.7 0.98) (end -1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 5d8c3712-4ed2-4d73-acaf-d5060b6d60d1))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 39cbdaa0-cdbf-4f32-a489-73aaebf5acec))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp b7a9feb5-0c89-47c6-9bb6-ae16430df861))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp f6108979-6e0b-4b9d-be18-db00ec5e6499))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp fce32fb3-dd25-4444-9341-2568e471036a))
(pad "1" smd roundrect (at -0.95 0) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 51 "Net-(C3-Pad1)") (pintype "passive") (tstamp 7bc84936-b068-4132-9eda-955beb84e48a))
(pad "2" smd roundrect (at 0.95 0) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 73915cd9-3450-4bef-8b54-37c9d1964185))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 6ceb0e5c-53bb-4d4c-b406-c3a7504a452b)
(at 33.3375 74.75 180)
(descr "Resistor SMD 0805 (2012 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 "Sheetfile" "dynamixel.kicad_sch")
(property "Sheetname" "Dynamixel")
(path "/d35e0dd5-65a6-42a8-88be-82a5f6d1ca91/81dc089b-ff3c-4cb0-9653-790d8badf7ba")
(attr smd)
(fp_text reference "R14" (at -2.4125 0.25 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a85256cd-5b44-4007-9722-0f08c32d2a27)
)
(fp_text value "47" (at 0 1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 34d8d0e3-35b0-4f5b-a98f-4430f9e77410)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp f1787e2a-e2b8-40e7-8cf6-4489e283ab2d)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 117c4230-eace-4c1e-ae61-68582d16a6e7))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer "F.SilkS") (width 0.12) (tstamp 69530446-5bf7-4c90-8690-b16a3d162cbf))
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 474ed60b-5911-4a2b-a106-50c1bbdcd7ca))
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 6bba3426-e4f8-4388-a682-348690970ac2))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 6cafd6cd-946d-46b4-91e6-c8c53ab65971))
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp cbeedab1-22b2-4c1e-9d6d-2782bb14771c))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 45c97f27-854a-48eb-a5d6-e832a5f3b375))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp 89b5517c-67e8-4e33-9b12-0a14247f115a))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp aac87bab-47eb-4176-8134-5e232e1dcc6d))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp b9711efc-7e78-4c35-9f42-1b94934fb172))
(pad "1" smd roundrect (at -0.9125 0 180) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902439)
(net 25 "Net-(R12-Pad2)") (pintype "passive") (tstamp c3f67c3a-a3af-40f4-bd26-044d60125f23))
(pad "2" smd roundrect (at 0.9125 0 180) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902439)
(net 20 "/Dynamixel/DYNAMIXEL_TTL_DATA") (pintype "passive") (tstamp bb0ec4e0-ab44-4116-b682-508472ca6f23))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 79d7668b-097c-4a97-b358-ffc471ed0cc4)
(at 49.4125 61.5)
(descr "Resistor SMD 0805 (2012 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 "Sheetfile" "dynamixel_control.kicad_sch")
(property "Sheetname" "")
(path "/98dcc0ea-ecbf-4267-9830-dcbff3a8f428")
(attr smd)
(fp_text reference "R8" (at -2.4125 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ade7ad1b-7b17-4a54-a21d-e401fdcc390c)
)
(fp_text value "2.2k" (at 0 1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 131c8e1d-ec20-43fd-96cc-f4852ff0c3ea)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 9ece623a-aaf7-4c08-b957-5aafdedbc7e6)
)
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer "F.SilkS") (width 0.12) (tstamp 6bce3fda-1fa8-482d-9675-c146f35934b1))
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer "F.SilkS") (width 0.12) (tstamp a057e114-3d3f-4d50-ad32-980274498081))
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 165ab439-a8ee-4cdd-97eb-aabb7b06b9dc))
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 37155ce2-be7a-4e9b-96d6-ef415d7265da))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 6d8ac779-8886-4f55-8d94-b5e844ad5ad8))
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp ed23714a-23a9-499b-84d2-4f4ac5b51f20))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 12af190a-eb52-44aa-af85-e67d270ce796))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp 36082fc6-b545-4459-aff0-76cb5f28f544))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp 3cd7f47e-e3a9-4594-b080-4ea5bbac5c6c))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 59756ab7-13c0-4413-afb3-36417fe34967))
(pad "1" smd roundrect (at -0.9125 0) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902439)
(net 5 "+3.3V") (pintype "passive") (tstamp f246ebb4-b7d3-453d-96d4-8bff2a891bca))
(pad "2" smd roundrect (at 0.9125 0) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902439)
(net 19 "/I2C_SDA") (pintype "passive") (tstamp 17f7f7f7-6178-4ae3-bd66-a753a033a3f0))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 7dd63dd4-5507-49f3-a0ef-e396bd18d389)
(at 48.45 31.5)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "dynamixel_control.kicad_sch")
(property "Sheetname" "")
(path "/ffe9b7cd-ca5a-4255-a907-ebb169f7727f")
(attr smd)
(fp_text reference "C9" (at 2.55 0 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0581aff9-7218-4744-9f35-4aa2c7e4c703)
)
(fp_text value "0.1µF/25V" (at 0 1.68) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 157aec29-f0f5-4032-94c7-0d98f84c902a)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp ecbcebd0-0237-4d5b-9471-ebdee11ce406)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 44f095be-d64e-40af-861e-f1c18e2614d6))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer "F.SilkS") (width 0.12) (tstamp eaafccc9-0104-4636-b2f4-01af52e859f7))
(fp_line (start 1.7 -0.98) (end 1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 1b304fff-1118-4a68-9b87-3952bf1d4605))
(fp_line (start -1.7 0.98) (end -1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp 36d769ba-1fdf-44e7-9c14-7e847b2187c8))
(fp_line (start 1.7 0.98) (end -1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 96ca4cd3-37f7-4845-bd66-04abb45f47eb))
(fp_line (start -1.7 -0.98) (end 1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp def772dc-68e8-46d8-ab35-aa89de42886f))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 77482780-42e0-46d5-96a7-29a74595e33f))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp a622ed0f-7fc0-4276-9abd-ed41bbde0822))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp ef645bcb-48f3-41a6-839f-08592d1253cc))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp f0904e96-36c6-473b-a7f0-bdd26df36ffb))
(pad "1" smd roundrect (at -0.95 0) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "Net-(C9-Pad1)") (pintype "passive") (tstamp 6c9b1bdd-b1b4-4965-92ff-853c648b8357))
(pad "2" smd roundrect (at 0.95 0) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "Net-(C9-Pad2)") (pintype "passive") (tstamp 3a1bf3c2-98ef-4031-b338-6d3505b0fc7c))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "t-top:t-connector" (layer "F.Cu")
(tedit 0) (tstamp 7e0dfcb5-bdb3-406f-bf14-c5718ba086d0)
(at 32.5 30.75 180)
(property "Sheetfile" "dynamixel_control.kicad_sch")
(property "Sheetname" "")
(path "/14cb9eab-9327-4a1d-9cc0-3e3de6095634")
(attr through_hole)
(fp_text reference "J1" (at 4 9.75 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1105b3cd-2de5-4884-86bb-2a22bfb38b3e)
)
(fp_text value "12V" (at 0 1 180 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 670a4f43-aa2d-4fdf-8d0e-8c2f1097eb21)
)
(fp_text user "-" (at 5 4.5 180 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 87eefab2-58f7-46f7-b41f-51b22a720169)
)
(fp_text user "+" (at 5 1.5 180 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 89e58f48-e147-489c-99a3-d2da45c108c5)
)
(fp_text user "${REFERENCE}" (at 0 2.5 180 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fd4efaf5-33ca-45f2-b8fa-ffb663e23dc5)
)
(fp_line (start -4 -3.25) (end -4 3.25) (layer "F.SilkS") (width 0.2) (tstamp 08d5e92f-7b8c-4b51-86cb-18510f6bb248))
(fp_line (start 3 10.25) (end 3 3.25) (layer "F.SilkS") (width 0.2) (tstamp 3b6d302f-6080-486f-a91e-c860f496d2af))
(fp_line (start 3 3.25) (end 4 3.25) (layer "F.SilkS") (width 0.2) (tstamp 44b8bd43-90ff-4e8d-b675-5f42d3a5fee5))
(fp_line (start -4 3.25) (end -3 3.25) (layer "F.SilkS") (width 0.2) (tstamp 4c1a7ad0-d442-4802-82b5-f662db9749e9))
(fp_line (start -3 3.25) (end -3 10.25) (layer "F.SilkS") (width 0.2) (tstamp 51fd6fd7-0c0a-4b32-a49e-f82facc266e7))
(fp_line (start -3 10.25) (end 3 10.25) (layer "F.SilkS") (width 0.2) (tstamp 67100a8a-e1e2-44a1-bc30-fed16e925250))
(fp_line (start 4 -3.25) (end -4 -3.25) (layer "F.SilkS") (width 0.2) (tstamp f0e6d7fe-3426-4218-b721-7a666e0d1649))
(fp_line (start 4 3.25) (end 4 -3.25) (layer "F.SilkS") (width 0.2) (tstamp fc1937ee-2559-46ae-bd24-e156ef078b0b))
(fp_line (start -4.5 10.75) (end -4.5 -3.75) (layer "F.CrtYd") (width 0.05) (tstamp b29e0e4f-ce4f-43cc-affa-32653703e7ed))
(fp_line (start 4.5 -3.75) (end 4.5 10.75) (layer "F.CrtYd") (width 0.05) (tstamp c26227ad-038e-4397-b7f7-ff7b750923b8))
(fp_line (start -4.5 -3.75) (end 4.5 -3.75) (layer "F.CrtYd") (width 0.05) (tstamp c990c942-569f-4cfb-a979-2d1d9a970f04))
(fp_line (start 4.5 10.75) (end -4.5 10.75) (layer "F.CrtYd") (width 0.05) (tstamp f7439692-9fad-413c-a4c9-7238b0c2a7ec))
(pad "1" thru_hole roundrect (at 0.6 5.6 180) (size 3 6) (drill oval 2 5) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 5e7dcbef-cab6-4869-90e1-72ad835eb9fc))
(pad "2" thru_hole roundrect (at 0 0 270) (size 3 6) (drill oval 2 5) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
(net 1 "+12V") (pinfunction "Pin_2") (pintype "passive") (tstamp 0eaf0ec2-6387-4d54-be6c-cb5c7db70e79))
)
(footprint "t-top:Teensy_4.0" (layer "F.Cu")
(tedit 5E6FB9A2) (tstamp 7edbc680-c415-4fb5-a416-1e2e69f54626)
(at 45.5 58.28 -90)
(property "Sheetfile" "dynamixel_control.kicad_sch")
(property "Sheetname" "")
(path "/f20390d5-4c8b-4667-924f-26161b798c18")
(attr through_hole)
(fp_text reference "U4" (at 0 0.5 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f368e693-10c7-4dcd-9425-da86a1a7c058)
)
(fp_text value "Teensy_4.0" (at 0 -0.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bfcd8706-f00c-454a-afe9-53f77957de43)
)
(fp_text user "USB" (at -17.78 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bedbdfdf-aec8-47e5-8b8d-a0bc446da13c)
)
(fp_line (start 16.51 -8.89) (end 16.51 8.89) (layer "F.SilkS") (width 0.12) (tstamp 396693cf-1bbb-4801-aec0-b54e59bc0e47))
(fp_line (start -16.51 -2.54) (end -16.51 2.54) (layer "F.SilkS") (width 0.12) (tstamp 43432acb-70f1-45c0-bc24-718db4adfaca))
(fp_line (start -19.05 8.89) (end -19.05 -8.89) (layer "F.SilkS") (width 0.12) (tstamp 5face563-b0b2-4a59-be46-edc7bd2705fe))
(fp_line (start -19.05 -8.89) (end 16.51 -8.89) (layer "F.SilkS") (width 0.12) (tstamp 8cd8acac-76ac-4c44-8c4b-dd00fe21483f))
(fp_line (start 16.51 8.89) (end -19.05 8.89) (layer "F.SilkS") (width 0.12) (tstamp c8afe5f6-5cb4-468f-8cfd-faea85c16066))
(fp_line (start -16.51 2.54) (end -19.05 2.54) (layer "F.SilkS") (width 0.12) (tstamp d086a4d6-0100-4545-92c8-54f230f67279))
(fp_line (start -19.05 -2.54) (end -16.51 -2.54) (layer "F.SilkS") (width 0.12) (tstamp d39cab00-c551-4347-abad-10c6efb184be))
(fp_rect (start -19.5 -9.5) (end 16.5 -5.5) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 1bf19a5a-e56a-4265-b30d-2cb3b7ce8bb0))
(fp_rect (start 16.5 9.5) (end -19.5 5.5) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp a17d3a99-f40c-40bb-a0b5-41236135da9c))
(pad "0" thru_hole oval (at -15.24 7.62 270) (size 1.27 1.651) (drill 1) (layers *.Cu *.Mask)
(net 47 "/DEBUG_UART_RX") (pinfunction "0/RX1/CRX2/PWM") (pintype "bidirectional") (tstamp 6d6fda47-74b5-4a5b-acee-969a3776b419))
(pad "1" thru_hole oval (at -12.7 7.62 270) (size 1.27 1.651) (drill 1) (layers *.Cu *.Mask)
(net 48 "/DEBUG_UART_TX") (pinfunction "1/TX1/CTX2") (pintype "bidirectional") (tstamp 0ddad2d3-a33c-42f5-b004-47990eb0e73c))
(pad "2" thru_hole oval (at -10.16 7.62 270) (size 1.27 1.651) (drill 1) (layers *.Cu *.Mask)
(net 26 "/Dynamixel/DYNAMIXEL_ENABLE") (pinfunction "2/OUT2/PWM") (pintype "bidirectional") (tstamp 9ec37535-942e-4db7-9f37-d7987d7d9049))
(pad "3" thru_hole oval (at -7.62 7.62 270) (size 1.27 1.651) (drill 1) (layers *.Cu *.Mask)
(net 30 "unconnected-(U4-Pad3)") (pinfunction "3/LRCLK2/PWN") (pintype "bidirectional+no_connect") (tstamp d3eabcc8-1b6b-48a0-9682-9055df6c1626))
(pad "3V3" thru_hole oval (at -12.7 -7.62 270) (size 1.27 1.651) (drill 1) (layers *.Cu *.Mask)
(net 5 "+3.3V") (pinfunction "3V3") (pintype "power_out") (tstamp 089495c8-4e0a-43fb-a3fe-75aeff1df5d2))
(pad "4" thru_hole oval (at -5.08 7.62 270) (size 1.27 1.651) (drill 1) (layers *.Cu *.Mask)
(net 31 "unconnected-(U4-Pad4)") (pinfunction "4/BCLK2/PWM") (pintype "bidirectional+no_connect") (tstamp a303b7f9-6d9f-4333-b699-dd092db2d9e6))
(pad "5" thru_hole oval (at -2.54 7.62 270) (size 1.27 1.651) (drill 1) (layers *.Cu *.Mask)
(net 32 "unconnected-(U4-Pad5)") (pinfunction "5/IN2/PWM") (pintype "bidirectional+no_connect") (tstamp aeb5b7b6-9e12-4767-b2fc-f79d557b69e9))
(pad "6" thru_hole oval (at 0 7.62 270) (size 1.27 1.651) (drill 1) (layers *.Cu *.Mask)
(net 33 "unconnected-(U4-Pad6)") (pinfunction "6/OUT1D/PWM") (pintype "bidirectional+no_connect") (tstamp 0f93ef29-b780-40c6-9f87-4e43409ffa93))
(pad "7" thru_hole oval (at 2.54 7.62 270) (size 1.27 1.651) (drill 1) (layers *.Cu *.Mask)
(net 36 "/Dynamixel/DYNAMIXEL_TTL_RX") (pinfunction "7/RX2/OUT1A/PWM") (pintype "bidirectional") (tstamp e713f728-03e4-4994-a114-043a21d52e3a))
(pad "8" thru_hole oval (at 5.08 7.62 270) (size 1.27 1.651) (drill 1) (layers *.Cu *.Mask)
(net 35 "/Dynamixel/DYNAMIXEL_TTL_TX") (pinfunction "8/TX2/IN1/PWM") (pintype "bidirectional") (tstamp a4f1183a-1250-4882-aa37-7543862e1d35))
(pad "9" thru_hole oval (at 7.62 7.62 270) (size 1.27 1.651) (drill 1) (layers *.Cu *.Mask)
(net 34 "/Dynamixel/DYNAMIXEL_TTL_DIR") (pinfunction "9/OUT1C/PWM") (pintype "bidirectional") (tstamp 564c9b83-b1ec-4112-89bb-cb480e805792))
(pad "10" thru_hole oval (at 10.16 7.62 270) (size 1.27 1.651) (drill 1) (layers *.Cu *.Mask)
(net 45 "unconnected-(U4-Pad10)") (pinfunction "10/CS/MQSR/PWM") (pintype "bidirectional+no_connect") (tstamp 25ed4ad3-60a8-4d3d-8d3a-ad1013b396ec))
(pad "11" thru_hole oval (at 12.7 7.62 270) (size 1.27 1.651) (drill 1) (layers *.Cu *.Mask)
(net 44 "unconnected-(U4-Pad11)") (pinfunction "11/MOSI/PWM") (pintype "bidirectional+no_connect") (tstamp 3c5f916b-9726-4dfb-a001-b93bd674637b))
(pad "12" thru_hole oval (at 15.24 7.62 270) (size 1.27 1.651) (drill 1) (layers *.Cu *.Mask)
(net 43 "unconnected-(U4-Pad12)") (pinfunction "12/MISO/MQSL/PWM") (pintype "bidirectional+no_connect") (tstamp 5c61964d-4dd0-4de4-8c8c-25d6318afcf5))
(pad "13" thru_hole oval (at 15.24 -7.62 270) (size 1.27 1.651) (drill 1) (layers *.Cu *.Mask)
(net 42 "unconnected-(U4-Pad13)") (pinfunction "13/LED/SCK/PWM") (pintype "bidirectional+no_connect") (tstamp db021bde-dea3-494e-b770-02ad8bc07443))
(pad "14" thru_hole oval (at 12.7 -7.62 270) (size 1.27 1.651) (drill 1) (layers *.Cu *.Mask)
(net 38 "/IMU_INT1") (pinfunction "14/A0/TX3/SPDIF_OUT/PWM") (pintype "bidirectional") (tstamp e6b595c2-484a-4f21-b3a6-e3efb681e666))
(pad "15" thru_hole oval (at 10.16 -7.62 270) (size 1.27 1.651) (drill 1) (layers *.Cu *.Mask)
(net 39 "/IMU_INT2") (pinfunction "15/A1/RX3/SPDIF_IN/PWM") (pintype "bidirectional") (tstamp 9c564827-1cf8-42e6-8af3-14b78a315a68))
(pad "16" thru_hole oval (at 7.62 -7.62 270) (size 1.27 1.651) (drill 1) (layers *.Cu *.Mask)
(net 50 "unconnected-(U4-Pad16)") (pinfunction "16/A2/RX4/SCL1") (pintype "bidirectional+no_connect") (tstamp 74cf6fe4-e3de-4a5a-bf67-5436ead4b28e))
(pad "17" thru_hole oval (at 5.08 -7.62 270) (size 1.27 1.651) (drill 1) (layers *.Cu *.Mask)
(net 49 "unconnected-(U4-Pad17)") (pinfunction "17/A3/TX4/SDA1") (pintype "bidirectional+no_connect") (tstamp 3de2f47a-e260-4c73-8601-206796e601e2))
(pad "18" thru_hole oval (at 2.54 -7.62 270) (size 1.27 1.651) (drill 1) (layers *.Cu *.Mask)
(net 19 "/I2C_SDA") (pinfunction "18/A4/SDA0/PWM") (pintype "bidirectional") (tstamp 19545531-a6be-48aa-af27-8ecf3ccd2160))
(pad "19" thru_hole oval (at 0 -7.62 270) (size 1.27 1.651) (drill 1) (layers *.Cu *.Mask)
(net 18 "/I2C_SCL") (pinfunction "19/A5/SCL0/PWM") (pintype "bidirectional") (tstamp 78079adf-48e0-42db-be52-d8a2f1af9150))
(pad "20" thru_hole oval (at -2.54 -7.62 270) (size 1.27 1.651) (drill 1) (layers *.Cu *.Mask)
(net 29 "/UART_TX") (pinfunction "20/A6/TX5/LRCLK1") (pintype "bidirectional") (tstamp 81670bdb-8734-4336-ad5f-4cf5b53b28d9))
(pad "21" thru_hole oval (at -5.08 -7.62 270) (size 1.27 1.651) (drill 1) (layers *.Cu *.Mask)
(net 28 "/UART_RX") (pinfunction "21/A7/RX5/BCLK1") (pintype "bidirectional") (tstamp c5e46fa4-66f5-4814-bba9-22a1bbc2e751))
(pad "22" thru_hole oval (at -7.62 -7.62 270) (size 1.27 1.651) (drill 1) (layers *.Cu *.Mask)
(net 27 "/LIMIT_SWITCH") (pinfunction "22/A8/CTX1/PWM") (pintype "bidirectional") (tstamp d7a46af3-519e-42af-b37a-682f279d47d9))
(pad "23" thru_hole oval (at -10.16 -7.62 270) (size 1.27 1.651) (drill 1) (layers *.Cu *.Mask)
(net 41 "/~{RS232_INVALID}") (pinfunction "23/A9/CRX1/MCLK1/PWM") (pintype "bidirectional") (tstamp ee2f60c8-f53f-4ccd-b1fd-5d7f3eadd67d))
(pad "GND_1" thru_hole oval (at -17.78 7.62 270) (size 1.27 1.651) (drill 1) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 7c2f76ec-cf27-4ea4-b76f-155c7e0abeb6))
(pad "GND_2" thru_hole oval (at -15.24 -7.62 270) (size 1.27 1.651) (drill 1) (layers *.Cu *.Mask)
(net 37 "unconnected-(U4-PadGND_2)") (pinfunction "GND_2") (pintype "power_in+no_connect") (tstamp 09645cab-2b9e-46d2-b1e0-d75917cce292))
(pad "VIN" thru_hole oval (at -17.78 -7.62 270) (size 1.27 1.651) (drill 1) (layers *.Cu *.Mask)
(net 4 "+5V") (pinfunction "VIN") (pintype "power_in") (tstamp 344c4834-7645-401a-87f4-9a627a0448b4))
)
(footprint "Capacitor_SMD:C_0805_2012Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 816b7391-500f-43d7-9cf4-25c7506b5b9e)
(at 49.5 34.7 90)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "dynamixel_control.kicad_sch")
(property "Sheetname" "")
(path "/161c5b1b-fc58-4c07-95e4-924e6ba35c76")
(attr smd)
(fp_text reference "C8" (at -2.45 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 13a33ec3-dc91-4b77-8b76-4326e312a0bd)
)
(fp_text value "0.1µF/25V" (at 0 1.68 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp aa494ff8-6666-4f85-9173-95474dbb00fc)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 553bfb1d-381a-4e00-9154-9cf2f211db35)
)
(fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer "F.SilkS") (width 0.12) (tstamp 800ec2b6-50e2-4d46-bf73-766c5e670001))
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 897ba057-0a3e-4d2c-bc82-3511692fdb69))
(fp_line (start 1.7 0.98) (end -1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 3d86c01f-8169-414d-8065-f6751ab73b21))
(fp_line (start -1.7 -0.98) (end 1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp 94f49273-a6b3-481a-9c72-153471f86d20))
(fp_line (start -1.7 0.98) (end -1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp 9712f3f3-7aa3-42d0-8443-f8bd614097c6))
(fp_line (start 1.7 -0.98) (end 1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 9ecb458f-ca51-4404-bf30-7d5b6f80c30c))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 0b0eb366-fd78-4683-9221-1b91237aecba))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp 15fb2f59-9c1b-47f9-840f-1eed1fde56bf))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 5444e20e-93c6-4295-8a95-a1ed606b0364))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp e7aab2d7-063b-4a00-bcbe-6a8ae99f6e6a))
(pad "1" smd roundrect (at -0.95 0 90) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "Net-(C8-Pad1)") (pintype "passive") (tstamp 8beb0f3f-c03d-4114-8e23-b5b41a9ec02b))
(pad "2" smd roundrect (at 0.95 0 90) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "Net-(C8-Pad2)") (pintype "passive") (tstamp 9ce78ff5-afd7-4cac-a874-74b2d978f9f9))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 84e0deb6-c105-4348-b21a-2a06a780ed05)
(at 34.2 66)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "dynamixel.kicad_sch")
(property "Sheetname" "Dynamixel")
(path "/d35e0dd5-65a6-42a8-88be-82a5f6d1ca91/1cc4ec7e-d0ba-486f-9278-cc1498a2e9d6")
(attr smd)
(fp_text reference "C15" (at -0.05 -1.5) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ecbd0220-fc19-48a6-aefd-47362838aff7)
)
(fp_text value "0.1µF/25V" (at 0 1.68) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8fee1d33-ddf5-492c-b015-e098dab3aec6)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp ebf0608d-367a-4a17-a4c1-8a6d99203cbc)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 3747bed7-6afd-44f0-a862-75f18acc8fc9))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer "F.SilkS") (width 0.12) (tstamp 660ad221-8185-4d1a-81b6-e7d9452a84e8))
(fp_line (start -1.7 0.98) (end -1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp 417cf400-9927-449d-b7ce-21019d86e3df))
(fp_line (start -1.7 -0.98) (end 1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp 6b82ab62-dcf3-40e4-a101-1b456425e7bf))
(fp_line (start 1.7 -0.98) (end 1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 8142825b-5d80-471a-abac-8b2263cf4993))
(fp_line (start 1.7 0.98) (end -1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp cc17447a-8dcc-48d9-9eed-910656201272))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 038ecf65-2b94-4c01-bf03-a80c058e662c))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp 9aac732a-fcaa-4049-b574-fbf8c16740a0))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp bf705cfd-6c4b-429b-a242-8f419fa823fc))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp ff0d3804-b19e-4815-bab5-b7e0d029572a))
(pad "1" smd roundrect (at -0.95 0) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "+5V") (pintype "passive") (tstamp 167ba2b8-bc67-4fbb-8e0f-3e981fc99f28))
(pad "2" smd roundrect (at 0.95 0) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp a8d02af5-dac6-4bde-8e8b-f830ba1eac92))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 8a454f97-a9e9-45a4-be2a-cd7252a075ed)
(at 41.5 66.8375 90)
(descr "Resistor SMD 0805 (2012 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 "Sheetfile" "dynamixel_control.kicad_sch")
(property "Sheetname" "")
(path "/c228ba7b-bd46-4433-8465-3c7fb93a78be")
(attr smd)
(fp_text reference "R10" (at 0 -1.5 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 61c1b697-7de5-4d2c-83de-b240c032c98f)
)
(fp_text value "0" (at 0 1.65 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b08fd267-a7e3-4f0a-b32f-1e7bfa896154)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 2c5b505a-d00c-4784-bc79-a5f0699a2636)
)
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer "F.SilkS") (width 0.12) (tstamp 99b284cb-d311-4b1f-b7b7-3171e00405e4))
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer "F.SilkS") (width 0.12) (tstamp ed4d3f2b-6b0b-4876-b9e6-def91871bcd2))
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 09487910-0752-4a30-a8c3-acc9d83cdd88))
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 0e187e89-4d99-4303-8d40-1974b8526c69))
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 5b196513-ddd2-450d-a269-27f48764e489))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 8165035a-4835-49dc-a9f8-e6adab29c5d4))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 160b532e-ebc9-4f55-b456-4ffc66af2f18))