-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsmall as5047 encoder breakout.kicad_pcb
3949 lines (3930 loc) · 160 KB
/
small as5047 encoder breakout.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20210228) (generator pcbnew)
(general
(thickness 1.6)
)
(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") (color "Green") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (color "Green") (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 false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin true)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "as5047 breakout gerbers")
)
)
(net 0 "")
(net 1 "GND")
(net 2 "+3V3")
(net 3 "+5V")
(net 4 "/Temp")
(net 5 "/H3{slash}CS")
(net 6 "/H2{slash}MISO")
(net 7 "/H1{slash}SCK")
(net 8 "Net-(D1-Pad2)")
(footprint "pkl_dipol:R_0603" (layer "F.Cu")
(tedit 5B8B7F23) (tstamp 14eb1099-1448-4da7-ad56-4b4ff84c6433)
(at 137.5 81.25 90)
(descr "Resistor SMD 0603, reflow soldering")
(tags "resistor 0603")
(property "Sheetfile" "small as5047 encoder breakout.kicad_sch")
(property "Sheetname" "")
(path "/13b8a684-d186-445e-a635-d2f1c568b3af")
(attr smd)
(fp_text reference "R1" (at 0 -1.1 90) (layer "F.Fab")
(effects (font (size 0.635 0.635) (thickness 0.1)))
(tstamp 04be513a-f120-4203-bb2b-2025dfb84860)
)
(fp_text value "10K" (at 0 1.2 90) (layer "F.Fab")
(effects (font (size 0.635 0.635) (thickness 0.1)))
(tstamp 281dadc2-7e8d-4a81-9ecd-3beaeaa88c78)
)
(fp_line (start -0.35 -0.61) (end 0.35 -0.61) (layer "F.SilkS") (width 0.13) (tstamp 3a059034-b361-4e34-98c0-aea1b043d903))
(fp_line (start 0.35 0.61) (end -0.35 0.61) (layer "F.SilkS") (width 0.13) (tstamp b58b9644-2f24-4345-be04-8abb01aaf680))
(fp_poly (pts (xy 0.375 0.425)
(xy 0.375 -0.425)
(xy -0.375 -0.425)
(xy -0.375 0.425)
(xy 0.25 0.425)) (layer "F.SilkS") (width 0.05) (fill solid) (tstamp 1b8a9545-ef7c-4afd-aced-e36560555a74))
(fp_line (start -1.175 -0.725) (end -1.175 0.725) (layer "F.CrtYd") (width 0.05) (tstamp 336938ad-1419-4114-99dc-ba602193d966))
(fp_line (start 1.175 -0.725) (end 1.175 0.725) (layer "F.CrtYd") (width 0.05) (tstamp 454be668-57ce-4e83-8b27-b90001027a43))
(fp_line (start -1.175 0.725) (end 1.175 0.725) (layer "F.CrtYd") (width 0.05) (tstamp 9bd3db35-0f34-45fb-99bd-123b58837a68))
(fp_line (start -1.175 -0.725) (end 1.175 -0.725) (layer "F.CrtYd") (width 0.05) (tstamp d667a8cf-c9b7-491e-a2fe-f29805b35049))
(pad "1" smd roundrect (at -0.75 0 90) (locked) (size 0.6 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+5V") (pintype "passive") (tstamp df1d190f-989a-40e3-9bea-2175b22b02e3))
(pad "2" smd roundrect (at 0.75 0 90) (locked) (size 0.6 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(pintype "passive") (tstamp 2b25e65a-3a9f-4d05-af3a-1c7b7a5f8259))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0603_1608Metric.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "pkl_dipol:C_0603" (layer "F.Cu")
(tedit 5B8B5957) (tstamp 33bf5f77-f515-4997-9e26-d3a12eef6e88)
(at 140.5 82)
(descr "Capacitor SMD 0603, reflow soldering")
(tags "capacitor 0603")
(property "Sheetfile" "small as5047 encoder breakout.kicad_sch")
(property "Sheetname" "")
(path "/7939caca-161c-426c-ab6b-e6ba07f87f5d")
(attr smd)
(fp_text reference "C1" (at 0 -1.1) (layer "F.Fab")
(effects (font (size 0.635 0.635) (thickness 0.1)))
(tstamp 67a88efa-1972-4930-b22d-12e700853968)
)
(fp_text value "4.7uF" (at 0 1.2) (layer "F.Fab")
(effects (font (size 0.635 0.635) (thickness 0.1)))
(tstamp ba3b5bd5-e9e5-4580-afdc-8473e8556c5e)
)
(fp_line (start 0.35 0.61) (end -0.35 0.61) (layer "F.SilkS") (width 0.13) (tstamp 2334c074-ba46-47ec-810b-b9ebcdb2554a))
(fp_line (start -0.35 -0.61) (end 0.35 -0.61) (layer "F.SilkS") (width 0.13) (tstamp 7504b03c-1893-49d7-b176-1122c5b4a4f6))
(fp_circle (center 0 0) (end 0.2 0) (layer "F.SilkS") (width 0.4) (fill none) (tstamp 15b95fdc-e9d2-4e60-abf6-7939cecfaf09))
(fp_line (start -1.175 -0.725) (end 1.175 -0.725) (layer "F.CrtYd") (width 0.05) (tstamp 0a4ee08a-01df-42f9-8427-0ace34dbab4b))
(fp_line (start -1.175 0.725) (end 1.175 0.725) (layer "F.CrtYd") (width 0.05) (tstamp 54b9dbb9-6207-46e5-a402-2162f14b4376))
(fp_line (start -1.175 -0.725) (end -1.175 0.725) (layer "F.CrtYd") (width 0.05) (tstamp 912f8787-2949-4949-8697-641b8b5f6242))
(fp_line (start 1.175 -0.725) (end 1.175 0.725) (layer "F.CrtYd") (width 0.05) (tstamp a3372000-7784-4fee-a6e0-00015ab3313e))
(pad "1" smd roundrect (at -0.75 0) (locked) (size 0.6 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+5V") (pintype "passive") (tstamp a5a238bf-c8a5-4083-b299-6719c0bb759f))
(pad "2" smd roundrect (at 0.75 0) (locked) (size 0.6 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 0f7ea568-8119-419f-8184-2327b623c197))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0603_1608Metric.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "pkl_dipol:C_0603" (layer "F.Cu")
(tedit 5B8B5957) (tstamp 40291af7-950f-4d31-bf96-8749985a6502)
(at 140.5 84.5)
(descr "Capacitor SMD 0603, reflow soldering")
(tags "capacitor 0603")
(property "Sheetfile" "small as5047 encoder breakout.kicad_sch")
(property "Sheetname" "")
(path "/ee30cec4-08f1-4e90-94ae-592545fc07e1")
(attr smd)
(fp_text reference "C2" (at 0 -1.1) (layer "F.Fab")
(effects (font (size 0.635 0.635) (thickness 0.1)))
(tstamp 6c7f7a40-d681-49a7-a38d-f982e3db405e)
)
(fp_text value "1uF" (at 0 1.2) (layer "F.Fab")
(effects (font (size 0.635 0.635) (thickness 0.1)))
(tstamp d5f56cf8-4a50-4c33-85b5-aba7fd3ae0b3)
)
(fp_line (start 0.35 0.61) (end -0.35 0.61) (layer "F.SilkS") (width 0.13) (tstamp 627608db-bbe6-4c5b-96bd-63aa3ed42ea4))
(fp_line (start -0.35 -0.61) (end 0.35 -0.61) (layer "F.SilkS") (width 0.13) (tstamp 64fe99ef-c8b4-42dd-958b-5e5ae6b30df7))
(fp_circle (center 0 0) (end 0.2 0) (layer "F.SilkS") (width 0.4) (fill none) (tstamp 8e459c66-a538-4655-9a4c-2ab40614686a))
(fp_line (start 1.175 -0.725) (end 1.175 0.725) (layer "F.CrtYd") (width 0.05) (tstamp 0b58c079-eb9e-4126-babb-6ee8728c197b))
(fp_line (start -1.175 -0.725) (end -1.175 0.725) (layer "F.CrtYd") (width 0.05) (tstamp 324a2a61-2a7c-4204-b274-10a2067f7251))
(fp_line (start -1.175 0.725) (end 1.175 0.725) (layer "F.CrtYd") (width 0.05) (tstamp 53d165c2-b55d-413c-9f5c-38f5018bfd36))
(fp_line (start -1.175 -0.725) (end 1.175 -0.725) (layer "F.CrtYd") (width 0.05) (tstamp 90e5ae4e-5e21-45bf-a2fb-7a7635b05b20))
(pad "1" smd roundrect (at -0.75 0) (locked) (size 0.6 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "+3V3") (pintype "passive") (tstamp 2ac6a958-36ff-4656-924a-f34561839464))
(pad "2" smd roundrect (at 0.75 0) (locked) (size 0.6 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 780bcf8f-83d4-40c7-a4a6-043341938470))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0603_1608Metric.step"
(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 54abe5ef-e577-4208-8359-3992e4aa22da)
(at 146.5 83)
(descr "Mounting Hole 3.2mm, no annular, M3")
(tags "mounting hole 3.2mm no annular m3")
(property "Sheetfile" "small as5047 encoder breakout.kicad_sch")
(property "Sheetname" "")
(path "/b0c8a699-b19a-47f4-b482-5c7a80becd6b")
(attr exclude_from_pos_files)
(fp_text reference "H2" (at 0 -4.2) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dcfa9e5a-31b3-49b4-a9ee-6460492d6828)
)
(fp_text value "MountingHole" (at 0 4.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f7920a60-12b2-4558-9410-a6363c6d4c40)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e74fde1f-630e-4858-9e80-b242159e1829)
)
(fp_circle (center 0 0) (end 3.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 06cb46e2-e9ec-4b4a-902d-ba812028ab11))
(fp_circle (center 0 0) (end 3.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 7c370939-1c2b-47d6-ab04-64eb92d6bcb9))
(pad "1" np_thru_hole circle (at 0 0) (locked) (size 3.2 3.2) (drill 3.2) (layers *.Cu *.Mask) (tstamp 2e918718-f8e3-4101-b3ac-359e401ad48e))
(model "${KIPRJMOD}/3d models/screw M3 6mm .step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_JST:JST_GH_BM06B-GHS-TBT_1x06-1MP_P1.25mm_Vertical" (layer "F.Cu")
(tedit 5B78AD87) (tstamp 5d8702b5-754f-4381-b35b-fe7a29363ff1)
(at 138.5 90)
(descr "JST GH series connector, BM06B-GHS-TBT (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator")
(tags "connector JST GH side entry")
(property "Sheetfile" "small as5047 encoder breakout.kicad_sch")
(property "Sheetname" "")
(path "/0aaa4176-5a70-48b6-8836-9d515c4576aa")
(attr smd)
(fp_text reference "J2" (at -6.75 -2) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dc2d40ce-8ed2-4218-8a12-437b7d4883f5)
)
(fp_text value "Conn_01x06" (at 0 4) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f34d4537-e2a2-498a-9947-c6039285522a)
)
(fp_text user "${REFERENCE}" (at 0 -1.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4b1d24b5-fd72-4fb7-8be4-b3da2a234fb6)
)
(fp_line (start 5.485 1.86) (end 3.685 1.86) (layer "F.SilkS") (width 0.12) (tstamp 00004b36-2442-4457-aadf-eb6e2d99c76a))
(fp_line (start 5.485 0.26) (end 5.485 1.86) (layer "F.SilkS") (width 0.12) (tstamp 112e8fd9-14e4-471c-ba4a-275b512ef384))
(fp_line (start -3.685 1.86) (end -3.685 2.8) (layer "F.SilkS") (width 0.12) (tstamp 404c263e-c654-471e-a245-ea7e8b85f34f))
(fp_line (start -4.215 -2.61) (end 4.215 -2.61) (layer "F.SilkS") (width 0.12) (tstamp c9931690-b004-4e67-8893-57d1e4a48c99))
(fp_line (start -5.485 1.86) (end -3.685 1.86) (layer "F.SilkS") (width 0.12) (tstamp d0f0a86e-902b-4431-b89c-a555fb04be9d))
(fp_line (start -5.485 0.26) (end -5.485 1.86) (layer "F.SilkS") (width 0.12) (tstamp da195bc6-d475-47c4-a01c-db5148d3b919))
(fp_line (start -5.98 3.3) (end 5.98 3.3) (layer "F.CrtYd") (width 0.05) (tstamp 7b7508ef-9c26-48c7-b0c3-f0fd68614e6f))
(fp_line (start 5.98 3.3) (end 5.98 -3.3) (layer "F.CrtYd") (width 0.05) (tstamp bcd4b507-21db-4cdf-aa02-192d7324fca9))
(fp_line (start 5.98 -3.3) (end -5.98 -3.3) (layer "F.CrtYd") (width 0.05) (tstamp c633d8c3-7fca-48c0-a471-ed83d5ab83c1))
(fp_line (start -5.98 -3.3) (end -5.98 3.3) (layer "F.CrtYd") (width 0.05) (tstamp fc260ba5-b49f-4218-b23f-62c809101cd0))
(fp_line (start -2.125 -0.5) (end -2.125 0) (layer "F.Fab") (width 0.1) (tstamp 0c08ca83-b873-4c14-b98c-85eed742fe88))
(fp_line (start -2.875 0) (end -2.875 -0.5) (layer "F.Fab") (width 0.1) (tstamp 1acef037-4abf-4df2-b91b-59442ae59393))
(fp_line (start -1.625 -0.5) (end -2.125 -0.5) (layer "F.Fab") (width 0.1) (tstamp 2ececb4a-0982-41d8-b69c-24dc273552d6))
(fp_line (start -5.375 1.75) (end -5.375 -2.5) (layer "F.Fab") (width 0.1) (tstamp 3b10d918-a8cf-4267-b29b-6e369623e000))
(fp_line (start 2.875 0) (end 3.375 0) (layer "F.Fab") (width 0.1) (tstamp 47a62649-6568-4b62-bd78-c4bc19a00e45))
(fp_line (start -2.125 0) (end -1.625 0) (layer "F.Fab") (width 0.1) (tstamp 580b640f-1d7c-4acc-9a43-398f55595b50))
(fp_line (start 5.375 1.75) (end 5.375 -2.5) (layer "F.Fab") (width 0.1) (tstamp 600a7dfd-b449-4072-bbb8-a3e22b4e8328))
(fp_line (start -0.875 0) (end -0.375 0) (layer "F.Fab") (width 0.1) (tstamp 6ffa3537-926d-45f2-9d9b-286ab1d9e1f4))
(fp_line (start -3.375 0) (end -2.875 0) (layer "F.Fab") (width 0.1) (tstamp 74d8bab4-e119-4ebb-834f-2d70df07b847))
(fp_line (start -5.375 -2.5) (end 5.375 -2.5) (layer "F.Fab") (width 0.1) (tstamp 779c3acd-b029-4646-8e91-e768223fe988))
(fp_line (start 0.375 0) (end 0.875 0) (layer "F.Fab") (width 0.1) (tstamp 7ce544e6-c806-4cf9-bbbe-eb4055fd5e0a))
(fp_line (start -2.875 -0.5) (end -3.375 -0.5) (layer "F.Fab") (width 0.1) (tstamp 7dc846d8-b1f0-453d-a79e-db6b387916bb))
(fp_line (start 1.625 0) (end 2.125 0) (layer "F.Fab") (width 0.1) (tstamp 7df6b129-33cd-4efe-bc95-bf7e1a022c27))
(fp_line (start 2.875 -0.5) (end 2.875 0) (layer "F.Fab") (width 0.1) (tstamp 8bbeef84-b331-4867-8eb4-076d36acf5f9))
(fp_line (start 0.375 -0.5) (end 0.375 0) (layer "F.Fab") (width 0.1) (tstamp 97c26331-6d68-486a-ab1b-c6b7462086a8))
(fp_line (start 2.125 -0.5) (end 1.625 -0.5) (layer "F.Fab") (width 0.1) (tstamp afb12b22-834c-4dcc-b7df-cb8c45b151f6))
(fp_line (start -0.875 -0.5) (end -0.875 0) (layer "F.Fab") (width 0.1) (tstamp b25c83d5-b3d1-484f-8ba5-2316094550f7))
(fp_line (start -1.625 0) (end -1.625 -0.5) (layer "F.Fab") (width 0.1) (tstamp d1ce3231-53d2-45b5-9084-a11f137bef5e))
(fp_line (start -0.375 -0.5) (end -0.875 -0.5) (layer "F.Fab") (width 0.1) (tstamp d3ff6c7a-996b-4577-83fd-f2c99f94a26c))
(fp_line (start 0.875 -0.5) (end 0.375 -0.5) (layer "F.Fab") (width 0.1) (tstamp d501ebd8-95ef-45d9-be57-74f06055f9a9))
(fp_line (start 0.875 0) (end 0.875 -0.5) (layer "F.Fab") (width 0.1) (tstamp d5866b6f-f059-49de-923c-7f486f1f5062))
(fp_line (start 2.125 0) (end 2.125 -0.5) (layer "F.Fab") (width 0.1) (tstamp d73cdeac-0051-4e5c-8aaa-0dee873ba394))
(fp_line (start -5.375 1.75) (end 5.375 1.75) (layer "F.Fab") (width 0.1) (tstamp d908a550-47b1-40c8-be59-bf1404525a4f))
(fp_line (start -0.375 0) (end -0.375 -0.5) (layer "F.Fab") (width 0.1) (tstamp dbe9bd96-3ae8-4966-bdd5-a98fa5956c2e))
(fp_line (start 1.625 -0.5) (end 1.625 0) (layer "F.Fab") (width 0.1) (tstamp de2c0684-4920-4022-a230-087e30568c75))
(fp_line (start -3.125 1.042893) (end -2.625 1.75) (layer "F.Fab") (width 0.1) (tstamp e58dd5cc-f087-4663-9454-39909c159e83))
(fp_line (start -3.375 -0.5) (end -3.375 0) (layer "F.Fab") (width 0.1) (tstamp e75df817-c117-4a4c-9963-d16ecda1373c))
(fp_line (start 3.375 -0.5) (end 2.875 -0.5) (layer "F.Fab") (width 0.1) (tstamp ecf2e853-deee-4ada-92a6-1e9e7429b352))
(fp_line (start 3.375 0) (end 3.375 -0.5) (layer "F.Fab") (width 0.1) (tstamp f9150b22-288a-44ec-a16f-91daca92177d))
(fp_line (start -3.625 1.75) (end -3.125 1.042893) (layer "F.Fab") (width 0.1) (tstamp fd9795cd-1f9c-4602-bc33-795d7f76e1b4))
(pad "1" smd roundrect (at -3.125 1.95) (locked) (size 0.6 1.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 1560e9ec-58f5-47c7-b922-a6a98b6c9a1a))
(pad "2" smd roundrect (at -1.875 1.95) (locked) (size 0.6 1.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "/H3{slash}CS") (pinfunction "Pin_2") (pintype "passive") (tstamp a83eb73d-9464-4d42-b065-4a1ec55aed21))
(pad "3" smd roundrect (at -0.625 1.95) (locked) (size 0.6 1.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "/H2{slash}MISO") (pinfunction "Pin_3") (pintype "passive") (tstamp d7e8619e-099f-4b11-9b62-29e89262810e))
(pad "4" smd roundrect (at 0.625 1.95) (locked) (size 0.6 1.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "/H1{slash}SCK") (pinfunction "Pin_4") (pintype "passive") (tstamp 526e56ea-27ff-4c24-aa13-ff7600dfb0d6))
(pad "5" smd roundrect (at 1.875 1.95) (locked) (size 0.6 1.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "/Temp") (pinfunction "Pin_5") (pintype "passive") (tstamp 7543de0a-0316-4711-8116-17f7383ac1cf))
(pad "6" smd roundrect (at 3.125 1.95) (locked) (size 0.6 1.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+5V") (pinfunction "Pin_6") (pintype "passive") (tstamp be686eee-e2c6-4ae5-8bb9-d10d1a8d8208))
(pad "MP" smd roundrect (at 4.975 -1.4) (locked) (size 1 2.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 569c22b6-ac4b-4556-8d13-105c291d8500))
(pad "MP" smd roundrect (at -4.975 -1.4) (locked) (size 1 2.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp d923d5a5-f77d-45bf-92f1-5d6456dcae7b))
(model "${KISYS3DMOD}/Connector_JST.3dshapes/JST_GH_BM06B-GHS-TBT_1x06-1MP_P1.25mm_Vertical.wrl" hide
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "pkl_dipol:D_0603" (layer "F.Cu")
(tedit 5B8B5D22) (tstamp 74820e72-5b9e-4655-9a2f-3526724cac4a)
(at 135.5 82.50843 90)
(descr "Diode SMD 0603, reflow soldering")
(tags "diode led 0603")
(property "Sheetfile" "small as5047 encoder breakout.kicad_sch")
(property "Sheetname" "")
(path "/84cd7e1b-a9cf-4fe7-9f1a-5bae4d3436f0")
(attr smd)
(fp_text reference "D1" (at 0 -1.1 90) (layer "F.Fab")
(effects (font (size 0.635 0.635) (thickness 0.1)))
(tstamp acc59bd7-e857-444e-8845-686a47adcae7)
)
(fp_text value "BLUE LED" (at 0 1.2 90) (layer "F.Fab")
(effects (font (size 0.635 0.635) (thickness 0.1)))
(tstamp 953f1b58-9b54-4d8f-b685-fe43b6adb756)
)
(fp_line (start 0.3 0.3) (end -0.3 0) (layer "F.SilkS") (width 0.13) (tstamp 05dc330f-7cdb-4050-890c-3c09b7bea740))
(fp_line (start -0.3 0) (end 0.3 -0.3) (layer "F.SilkS") (width 0.13) (tstamp 713acd67-b91b-4913-93cc-c3bddaea9649))
(fp_line (start -0.3 -0.3) (end -0.3 0.3) (layer "F.SilkS") (width 0.13) (tstamp 73fba3d7-9b5e-4e4f-aaef-62d68ab72589))
(fp_line (start -0.35 -0.61) (end 0.35 -0.61) (layer "F.SilkS") (width 0.13) (tstamp b2a889f6-049c-41da-88cf-f109655d21aa))
(fp_line (start 0.3 -0.3) (end 0.3 0.3) (layer "F.SilkS") (width 0.13) (tstamp c89ebdce-daca-4335-938d-e49dd9d766a7))
(fp_line (start 0.35 0.61) (end -0.35 0.61) (layer "F.SilkS") (width 0.13) (tstamp e8248afa-7beb-4da9-b1f3-4ebb24a7f5d9))
(fp_line (start 1.175 -0.725) (end -1.175 -0.725) (layer "F.CrtYd") (width 0.05) (tstamp 2c278c2a-46e5-43a0-b850-2319709b7d40))
(fp_line (start 1.175 0.725) (end -1.175 0.725) (layer "F.CrtYd") (width 0.05) (tstamp afb401a7-9cdc-42e4-9bae-93faf102031f))
(fp_line (start -1.175 0.725) (end -1.175 -0.725) (layer "F.CrtYd") (width 0.05) (tstamp b0d30989-68d3-4d10-8647-5e037dc536d4))
(fp_line (start 1.175 0.725) (end 1.175 -0.725) (layer "F.CrtYd") (width 0.05) (tstamp c60acae7-68ed-44f9-83bd-5cd679ee8130))
(pad "A" smd roundrect (at 0.75 0 270) (locked) (size 0.6 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 88ae44e4-af7d-4c83-830a-1301e10ebb18))
(pad "C" smd roundrect (at -0.75 0 270) (locked) (size 0.6 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 571cd88b-dc20-4108-b167-99d8b3e30e16))
(model "${KISYS3DMOD}/LED_SMD.3dshapes/LED_0603_1608Metric.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Diode_SMD:D_SOD-323" (layer "F.Cu")
(tedit 58641739) (tstamp 83516cd6-9b5e-4532-8a78-e7f6f0196733)
(at 140.375 80)
(descr "SOD-323")
(tags "SOD-323")
(property "Field4" "lcsc C151235")
(property "Sheetfile" "small as5047 encoder breakout.kicad_sch")
(property "Sheetname" "")
(path "/305ba156-2c9c-4821-9c4d-80db5fce3658")
(attr smd)
(fp_text reference "D2" (at 0 -1.85) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 141243a3-ce10-401d-b532-e8c9386e80e6)
)
(fp_text value "SD05-01FTG" (at 0.1 1.9) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 662e76cc-7cb3-46b1-895b-81f91e0e6e06)
)
(fp_text user "${REFERENCE}" (at 0 -1.85) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 76aa4f89-09ca-49f0-a767-caa4d41b129b)
)
(fp_line (start -1.5 0.85) (end 1.05 0.85) (layer "F.SilkS") (width 0.12) (tstamp 03a02f43-57f8-499d-96f4-754bf800a2b1))
(fp_line (start -1.5 -0.85) (end -1.5 0.85) (layer "F.SilkS") (width 0.12) (tstamp 83c72e79-6f11-48f0-bb0d-15c423fde6aa))
(fp_line (start -1.5 -0.85) (end 1.05 -0.85) (layer "F.SilkS") (width 0.12) (tstamp e63cd14d-0776-4bb5-8225-c67b87fc21dc))
(fp_line (start -1.6 -0.95) (end -1.6 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 321619d4-2d8a-4702-b009-73bddb3a710a))
(fp_line (start -1.6 0.95) (end 1.6 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 44e791eb-4335-4415-990a-7c5776665e92))
(fp_line (start 1.6 -0.95) (end 1.6 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 5650f454-98b6-4e77-9df5-693779f814bb))
(fp_line (start -1.6 -0.95) (end 1.6 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 9d74a644-7963-4807-b905-f0ef30833661))
(fp_line (start 0.9 -0.7) (end 0.9 0.7) (layer "F.Fab") (width 0.1) (tstamp 06c53e92-5e44-4597-a179-afe133e65ebd))
(fp_line (start 0.2 0.35) (end -0.3 0) (layer "F.Fab") (width 0.1) (tstamp 57147329-0397-4f49-887b-80502057ffb7))
(fp_line (start -0.3 0) (end 0.2 -0.35) (layer "F.Fab") (width 0.1) (tstamp 5770e7a6-7ccc-451d-af44-878067ff772a))
(fp_line (start 0.2 0) (end 0.45 0) (layer "F.Fab") (width 0.1) (tstamp 5b8dc517-bfc9-4541-8da2-4d03ae19cfcb))
(fp_line (start 0.2 -0.35) (end 0.2 0.35) (layer "F.Fab") (width 0.1) (tstamp 62e88023-3aeb-4fb5-b0d6-1526314745d7))
(fp_line (start -0.9 -0.7) (end 0.9 -0.7) (layer "F.Fab") (width 0.1) (tstamp 8f3b10b5-67c0-4319-b332-b526488febc6))
(fp_line (start -0.3 0) (end -0.5 0) (layer "F.Fab") (width 0.1) (tstamp 903e0190-e0b4-4e3b-8193-994d1c71298f))
(fp_line (start -0.9 0.7) (end -0.9 -0.7) (layer "F.Fab") (width 0.1) (tstamp 9208f6aa-543f-4c65-9529-f78a5ab395b8))
(fp_line (start -0.3 -0.35) (end -0.3 0.35) (layer "F.Fab") (width 0.1) (tstamp c7bdc938-8346-4362-9957-b218b7a819ea))
(fp_line (start 0.9 0.7) (end -0.9 0.7) (layer "F.Fab") (width 0.1) (tstamp d9029dc2-23a6-4064-b42c-107a94ef20a9))
(pad "1" smd rect (at -1.05 0) (locked) (size 0.6 0.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "+5V") (pinfunction "K") (pintype "passive") (tstamp ce6cca45-5aac-4662-94de-67fcbcb9ed06))
(pad "2" smd rect (at 1.05 0) (locked) (size 0.6 0.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "A") (pintype "passive") (tstamp 5251fc53-d9f7-4229-bdd2-70e7a6bca2e7))
(model "${KISYS3DMOD}/Diode_SMD.3dshapes/D_SOD-323.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 8ebf5e92-6ebe-4999-94cb-47289a67eb84)
(at 130.5 83)
(descr "Mounting Hole 3.2mm, no annular, M3")
(tags "mounting hole 3.2mm no annular m3")
(property "Sheetfile" "small as5047 encoder breakout.kicad_sch")
(property "Sheetname" "")
(path "/29735368-2e38-4a39-93d0-b4a8bfcd899d")
(attr exclude_from_pos_files)
(fp_text reference "H1" (at 0 -4.2) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c75cd72a-3391-41ba-a9ac-09db51b8d62a)
)
(fp_text value "MountingHole" (at 0 4.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c6019da6-d0f8-466d-bee6-ebcc670a22c1)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3970d009-1e06-4235-b105-f6c9cfe69145)
)
(fp_circle (center 0 0) (end 3.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 1eb2f6bb-80a3-45b1-893e-f6e51d8f411a))
(fp_circle (center 0 0) (end 3.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 5e11c38d-2719-480f-850a-32169f93cb1e))
(pad "1" np_thru_hole circle (at 0 0) (locked) (size 3.2 3.2) (drill 3.2) (layers *.Cu *.Mask) (tstamp 23c7dced-407f-4dd5-980f-0227e025058f))
(model "${KIPRJMOD}/3d models/screw M3 6mm .step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_JST:JST_GH_SM02B-GHS-TB_1x02-1MP_P1.25mm_Horizontal" (layer "F.Cu")
(tedit 5B78AD87) (tstamp 902376e2-27e9-4c4c-a138-0d71a3f53605)
(at 138.5 75.75 180)
(descr "JST GH series connector, SM02B-GHS-TB (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator")
(tags "connector JST GH top entry")
(property "Sheetfile" "small as5047 encoder breakout.kicad_sch")
(property "Sheetname" "")
(path "/75dc573f-8968-4aff-bc77-0acabc0084f2")
(attr smd)
(fp_text reference "J1" (at 4.25 1.25 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5e6c9000-7334-433e-8656-432421a26505)
)
(fp_text value "Conn_01x02" (at 0 3.9 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a97b32dd-4a91-48fc-8168-923180e80e50)
)
(fp_text user "${REFERENCE}" (at 0 0 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 33b26abb-cf25-40f5-90d2-5ef1766e5a8d)
)
(fp_line (start 2.985 -0.26) (end 2.985 -1.71) (layer "F.SilkS") (width 0.12) (tstamp 158b2744-06ce-48bb-8617-1c5cae588340))
(fp_line (start -1.715 2.56) (end 1.715 2.56) (layer "F.SilkS") (width 0.12) (tstamp 449edc47-0050-4b5a-8399-822fdf622d6a))
(fp_line (start -2.985 -1.71) (end -1.185 -1.71) (layer "F.SilkS") (width 0.12) (tstamp 6bf6a51f-f9a4-42bd-bc9d-b6a6dbaf1a90))
(fp_line (start -1.185 -1.71) (end -1.185 -2.7) (layer "F.SilkS") (width 0.12) (tstamp e2e437df-374e-4574-809e-f479dbcf9c2f))
(fp_line (start 2.985 -1.71) (end 1.185 -1.71) (layer "F.SilkS") (width 0.12) (tstamp e40bb5a2-fc4b-40c6-81ff-d8b5d8f4a085))
(fp_line (start -2.985 -0.26) (end -2.985 -1.71) (layer "F.SilkS") (width 0.12) (tstamp e6d960cc-bc05-46b2-8d45-5ec8e06de30a))
(fp_line (start 3.48 -3.2) (end -3.48 -3.2) (layer "F.CrtYd") (width 0.05) (tstamp 18613538-1ace-4998-8939-186a08f1075f))
(fp_line (start -3.48 -3.2) (end -3.48 3.2) (layer "F.CrtYd") (width 0.05) (tstamp 4734536a-1573-4c5d-990e-f6b6f817ec90))
(fp_line (start 3.48 3.2) (end 3.48 -3.2) (layer "F.CrtYd") (width 0.05) (tstamp 4cbf5e48-a566-4b20-97ff-a88f85436d6d))
(fp_line (start -3.48 3.2) (end 3.48 3.2) (layer "F.CrtYd") (width 0.05) (tstamp bccc6c3d-4468-4b5b-80f0-5e04dcb4d675))
(fp_line (start -2.875 -1.6) (end 2.875 -1.6) (layer "F.Fab") (width 0.1) (tstamp 3d8c532c-c84f-41e0-b414-2d3a0e513ca3))
(fp_line (start -2.875 -1.6) (end -2.875 2.45) (layer "F.Fab") (width 0.1) (tstamp 543318bd-7bd7-470e-8db3-ac766174a31c))
(fp_line (start -2.875 2.45) (end 2.875 2.45) (layer "F.Fab") (width 0.1) (tstamp 6edbafe9-e1f7-4250-ad95-f0580608a3f6))
(fp_line (start 2.875 -1.6) (end 2.875 2.45) (layer "F.Fab") (width 0.1) (tstamp c13f5984-5179-4d07-a163-38e0305670fe))
(fp_line (start -0.625 -0.892893) (end -0.125 -1.6) (layer "F.Fab") (width 0.1) (tstamp c4c3b4bd-3d13-4f7d-9bc0-ed21f837c971))
(fp_line (start -1.125 -1.6) (end -0.625 -0.892893) (layer "F.Fab") (width 0.1) (tstamp df2c8c40-971e-4895-b3b6-a0fc0b2895f5))
(pad "1" smd roundrect (at -0.625 -1.85 180) (locked) (size 0.6 1.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "/Temp") (pinfunction "Pin_1") (pintype "passive") (tstamp 10eb390e-c533-4038-8345-18d7b7bcdd2f))
(pad "2" smd roundrect (at 0.625 -1.85 180) (locked) (size 0.6 1.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp e6b7b9a4-fc0f-4072-af1b-c0c118ec7297))
(pad "MP" smd roundrect (at -2.475 1.35 180) (locked) (size 1 2.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp ab610431-ad2b-41cf-8efd-d04150b754a4))
(pad "MP" smd roundrect (at 2.475 1.35 180) (locked) (size 1 2.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp f0f688ce-2c3b-431c-8043-6335f8ba58b3))
(model "${KISYS3DMOD}/Connector_JST.3dshapes/JST_GH_SM02B-GHS-TB_1x02-1MP_P1.25mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_JST:JST_GH_SM06B-GHS-TB_1x06-1MP_P1.25mm_Horizontal" (layer "F.Cu")
(tedit 5B78AD87) (tstamp c0088ee4-a48e-4171-98f8-e46442b4e319)
(at 138.5 88.9)
(descr "JST GH series connector, SM06B-GHS-TB (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator")
(tags "connector JST GH top entry")
(property "Sheetfile" "small as5047 encoder breakout.kicad_sch")
(property "Sheetname" "")
(path "/159e9eab-49d4-4914-a5e2-2abfa7431314")
(attr smd)
(fp_text reference "J3" (at 0 -3.9) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f32255c2-e29e-42c7-b987-29d5f7f883a9)
)
(fp_text value "Conn_01x06" (at 0 3.9) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7c472079-be3c-4141-af70-6482202feb3f)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a0802d2e-2fb2-42b1-b857-10c48e7307b0)
)
(fp_line (start -4.215 2.56) (end 4.215 2.56) (layer "F.SilkS") (width 0.12) (tstamp 0f078e5f-5541-4822-a368-5194445ebf65))
(fp_line (start 5.485 -0.26) (end 5.485 -1.71) (layer "F.SilkS") (width 0.12) (tstamp 1e293e00-917c-4bf9-b59c-47391b5939f3))
(fp_line (start 5.485 -1.71) (end 3.685 -1.71) (layer "F.SilkS") (width 0.12) (tstamp 393e9d69-051a-4e1c-af70-a3e98c34457b))
(fp_line (start -3.685 -1.71) (end -3.685 -2.7) (layer "F.SilkS") (width 0.12) (tstamp 664f0a57-3aee-478a-948d-e8c727cbf480))
(fp_line (start -5.485 -0.26) (end -5.485 -1.71) (layer "F.SilkS") (width 0.12) (tstamp 7852248a-25b1-4ab7-a2c6-097fbbe10ad4))
(fp_line (start -5.485 -1.71) (end -3.685 -1.71) (layer "F.SilkS") (width 0.12) (tstamp 94560782-22e0-4628-9c11-b0351ac5edd2))
(fp_line (start 5.98 3.2) (end 5.98 -3.2) (layer "F.CrtYd") (width 0.05) (tstamp 483a4ff7-b860-427c-8e6b-ed0796873c81))
(fp_line (start 5.98 -3.2) (end -5.98 -3.2) (layer "F.CrtYd") (width 0.05) (tstamp 7df5162e-7533-4599-ba6e-11ce229e8fc6))
(fp_line (start -5.98 -3.2) (end -5.98 3.2) (layer "F.CrtYd") (width 0.05) (tstamp afcb250e-a19b-4f0e-b041-1eea07f6af88))
(fp_line (start -5.98 3.2) (end 5.98 3.2) (layer "F.CrtYd") (width 0.05) (tstamp e4498d50-9cd3-46c0-9ea5-10d6d8a6cb6d))
(fp_line (start -5.375 -1.6) (end -5.375 2.45) (layer "F.Fab") (width 0.1) (tstamp 3502ba13-0b15-4ce2-b80f-50ec35a84e73))
(fp_line (start -3.125 -0.892893) (end -2.625 -1.6) (layer "F.Fab") (width 0.1) (tstamp 553f8362-f983-4298-8cc7-93ff5db1018c))
(fp_line (start -5.375 -1.6) (end 5.375 -1.6) (layer "F.Fab") (width 0.1) (tstamp a1c6a778-419c-4737-9e8a-4c9411711505))
(fp_line (start -5.375 2.45) (end 5.375 2.45) (layer "F.Fab") (width 0.1) (tstamp afbcfb6d-2dbf-45a6-97b1-e79d779c1dfb))
(fp_line (start 5.375 -1.6) (end 5.375 2.45) (layer "F.Fab") (width 0.1) (tstamp bcd0ea0a-7645-494b-810c-142d662de352))
(fp_line (start -3.625 -1.6) (end -3.125 -0.892893) (layer "F.Fab") (width 0.1) (tstamp e0da6cd7-90bd-4e73-a35f-402a028b5b85))
(pad "1" smd roundrect (at -3.125 -1.85) (locked) (size 0.6 1.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp da1aeafa-8d46-4874-bd24-0aeebbfed339))
(pad "2" smd roundrect (at -1.875 -1.85) (locked) (size 0.6 1.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "/H3{slash}CS") (pinfunction "Pin_2") (pintype "passive") (tstamp 180d90ca-a1d1-401e-be7a-8e26e78c8c25))
(pad "3" smd roundrect (at -0.625 -1.85) (locked) (size 0.6 1.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "/H2{slash}MISO") (pinfunction "Pin_3") (pintype "passive") (tstamp 6a9d3edd-cd3d-437a-9111-9583e4b9d7ef))
(pad "4" smd roundrect (at 0.625 -1.85) (locked) (size 0.6 1.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "/H1{slash}SCK") (pinfunction "Pin_4") (pintype "passive") (tstamp 1fd11701-2734-43f1-8ebd-9f3414075bce))
(pad "5" smd roundrect (at 1.875 -1.85) (locked) (size 0.6 1.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "/Temp") (pinfunction "Pin_5") (pintype "passive") (tstamp 44b1a5a3-4b4a-40a1-b2a1-24e15562285f))
(pad "6" smd roundrect (at 3.125 -1.85) (locked) (size 0.6 1.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+5V") (pinfunction "Pin_6") (pintype "passive") (tstamp 0af62044-2012-4862-8968-92621a1c9972))
(pad "MP" smd roundrect (at -4.975 1.35) (locked) (size 1 2.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 3c4fb176-f688-40e7-9dc0-5c90e28f9601))
(pad "MP" smd roundrect (at 4.975 1.35) (locked) (size 1 2.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp ff3a1490-0e33-4019-98c6-397c6217c35f))
(model "${KISYS3DMOD}/Connector_JST.3dshapes/JST_GH_SM06B-GHS-TB_1x06-1MP_P1.25mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_SO:TSSOP-14_4.4x5mm_P0.65mm" locked (layer "B.Cu")
(tedit 5E476F32) (tstamp 1d9bf1b0-270e-46cf-a359-e4bb5a2b2347)
(at 138.5 83)
(descr "TSSOP, 14 Pin (JEDEC MO-153 Var AB-1 https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "TSSOP SO")
(property "Sheetfile" "small as5047 encoder breakout.kicad_sch")
(property "Sheetname" "")
(path "/f81ef3be-444f-4cb9-9841-af14befd7c9a")
(attr smd)
(fp_text reference "U1" (at -5 2) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 16811451-ffa8-4bb4-8c81-4bd9abb85bc4)
)
(fp_text value "AS5047P" (at 0 -3.45) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 406be363-de34-4c42-872d-7f1241bcb55f)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp b709da7c-8ff0-4431-a57d-9f8834d67d5f)
)
(fp_line (start 0 -2.61) (end -2.2 -2.61) (layer "B.SilkS") (width 0.12) (tstamp 07718dee-dff9-40aa-a8e5-e26b5ecd30dd))
(fp_line (start 0 -2.61) (end 2.2 -2.61) (layer "B.SilkS") (width 0.12) (tstamp 5a35a034-734e-4323-9410-cf09d7c9c8a0))
(fp_line (start 0 2.61) (end 2.2 2.61) (layer "B.SilkS") (width 0.12) (tstamp 8db8e067-951a-4b12-a7d8-e1965e16a4fc))
(fp_line (start 0 2.61) (end -3.6 2.61) (layer "B.SilkS") (width 0.12) (tstamp faecab79-0c02-49df-9018-daa4bff6e4b0))
(fp_line (start 3.85 -2.75) (end 3.85 2.75) (layer "B.CrtYd") (width 0.05) (tstamp 5a288da6-209e-4658-8ce6-22f7b351b5e6))
(fp_line (start -3.85 2.75) (end -3.85 -2.75) (layer "B.CrtYd") (width 0.05) (tstamp 739a9215-f071-442b-9b35-b21f73bf4fb0))
(fp_line (start -3.85 -2.75) (end 3.85 -2.75) (layer "B.CrtYd") (width 0.05) (tstamp 73ca74eb-1d85-487a-b4e2-0e4622931db7))
(fp_line (start 3.85 2.75) (end -3.85 2.75) (layer "B.CrtYd") (width 0.05) (tstamp dd13480c-0fa8-463a-8030-d8bcba86bfb1))
(fp_line (start -2.2 -2.5) (end -2.2 1.5) (layer "B.Fab") (width 0.1) (tstamp 03d24710-ad35-439c-8296-729a6e9bd306))
(fp_line (start 2.2 -2.5) (end -2.2 -2.5) (layer "B.Fab") (width 0.1) (tstamp b24fbdab-89b2-4433-aeef-44c1885dd34c))
(fp_line (start 2.2 2.5) (end 2.2 -2.5) (layer "B.Fab") (width 0.1) (tstamp c5910889-2419-4627-8b1d-2925511fcf7d))
(fp_line (start -2.2 1.5) (end -1.2 2.5) (layer "B.Fab") (width 0.1) (tstamp f0f06537-5de0-474f-9bda-af90935237c0))
(fp_line (start -1.2 2.5) (end 2.2 2.5) (layer "B.Fab") (width 0.1) (tstamp fd8bc47f-334c-4d3e-a60a-454f4c542b52))
(pad "1" smd roundrect (at -2.8625 1.95) (locked) (size 1.475 0.4) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 5 "/H3{slash}CS") (pinfunction "~CS") (pintype "input") (tstamp 04683c55-7443-4b5c-bb9c-67e701d44880))
(pad "2" smd roundrect (at -2.8625 1.3) (locked) (size 1.475 0.4) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 7 "/H1{slash}SCK") (pinfunction "CLK") (pintype "input") (tstamp 455c6a50-f67b-457f-ade7-825aeaf302ca))
(pad "3" smd roundrect (at -2.8625 0.65) (locked) (size 1.475 0.4) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 6 "/H2{slash}MISO") (pinfunction "MISO") (pintype "output") (tstamp 7e6cbef3-ad0a-4d81-b44f-b4197bd3c1e1))
(pad "4" smd roundrect (at -2.8625 0) (locked) (size 1.475 0.4) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 2 "+3V3") (pinfunction "MOSI") (pintype "input") (tstamp 7317e49e-3d04-4664-a6f1-f6595d94a028))
(pad "5" smd roundrect (at -2.8625 -0.65) (locked) (size 1.475 0.4) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "TST") (pintype "input") (tstamp 112645c4-67a5-40ee-8bad-eeccfbe60a7a))
(pad "6" smd roundrect (at -2.8625 -1.3) (locked) (size 1.475 0.4) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(pinfunction "B") (pintype "output") (tstamp 379f7b2c-9058-41ec-a34b-f93ac99f7402))
(pad "7" smd roundrect (at -2.8625 -1.95) (locked) (size 1.475 0.4) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(pinfunction "A") (pintype "output") (tstamp 88c63ea1-19b2-4c90-9e4d-6283094375ed))
(pad "8" smd roundrect (at 2.8625 -1.95) (locked) (size 1.475 0.4) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(pinfunction "W/PWM") (pintype "output") (tstamp 563f1153-a0e6-4fbe-9b77-dce6b3f16be8))
(pad "9" smd roundrect (at 2.8625 -1.3) (locked) (size 1.475 0.4) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(pinfunction "V") (pintype "output") (tstamp 505baf7e-80b3-4d2b-898d-f8c474edb09a))
(pad "10" smd roundrect (at 2.8625 -0.65) (locked) (size 1.475 0.4) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(pinfunction "U") (pintype "output") (tstamp 9be56821-78f9-4175-a512-5c9d66cd9a77))
(pad "11" smd roundrect (at 2.8625 0) (locked) (size 1.475 0.4) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 3 "+5V") (pinfunction "VDD") (pintype "power_in") (tstamp 8fe2ad46-58ea-421c-8564-57bb2696bc9c))
(pad "12" smd roundrect (at 2.8625 0.65) (locked) (size 1.475 0.4) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 2 "+3V3") (pinfunction "VDD3V3") (pintype "power_out") (tstamp 38421888-ea4f-4ce4-8931-acd0e45d6ecd))
(pad "13" smd roundrect (at 2.8625 1.3) (locked) (size 1.475 0.4) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp e911a891-4887-43bd-81c9-3704b84c12d9))
(pad "14" smd roundrect (at 2.8625 1.95) (locked) (size 1.475 0.4) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(pinfunction "I/PWM") (pintype "output") (tstamp a18b477b-2b94-411a-91e9-06084b78f6d1))
(model "${KISYS3DMOD}/Package_SO.3dshapes/TSSOP-14_4.4x5mm_P0.65mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(gr_line (start 145 81.5) (end 143 79.5) (layer "B.SilkS") (width 0.15) (tstamp 0bd3a92e-aebd-4a40-804e-161e2e6e5c6a))
(gr_line (start 144.5 86) (end 144.5 92.5) (layer "B.SilkS") (width 0.15) (tstamp a3356398-3046-485d-a995-f138ad7ce3cc))
(gr_line (start 133 86) (end 144.5 86) (layer "B.SilkS") (width 0.15) (tstamp d032753b-d0d6-47ea-893d-71455bf26cfe))
(gr_line (start 132 81) (end 133 80) (layer "B.SilkS") (width 0.15) (tstamp f7f7107a-3b80-4c2f-9ebb-17840db52248))
(gr_line (start 133 93) (end 133 86) (layer "B.SilkS") (width 0.15) (tstamp f86bec79-3410-4b6e-b9b5-9c0b4f96c32a))
(gr_circle (center 138.5 83) (end 150 83) (layer "Edge.Cuts") (width 0.2) (fill none) (tstamp 1e353b6f-10dc-4a61-967e-ae47df338463))
(gr_text "AS5047D/P\nBreakout\nHoles M3, \n16mm spacing" (at 138.5 76.375) (layer "B.SilkS") (tstamp 0e5757b0-d67d-4ef0-9b09-792f73cbe0e7)
(effects (font (size 1 1) (thickness 0.2)) (justify mirror))
)
(gr_text "\n -TEMP\n -SCK\n -MISO\n -CS\n" (at 139.625 92.4375 270) (layer "B.SilkS") (tstamp 6b08f2fd-3371-495b-bd64-73a16c15bbcf)
(effects (font (size 1 1) (thickness 0.2)) (justify left mirror))
)
(gr_text "6-5V\n\n\n\n\n1-GND" (at 138.875 92.625 270) (layer "B.SilkS") (tstamp bab763f1-e124-404b-9f33-b48badc7ef9d)
(effects (font (size 1 1) (thickness 0.2)) (justify left mirror))
)
(gr_text "DATA\nOUT\n" (at 143.985 87.915) (layer "F.SilkS") (tstamp 76b75185-d25c-40ca-b647-bae650e2f2c4)
(effects (font (size 1.2 1.2) (thickness 0.25)) (justify left))
)
(gr_text "6" (at 142.75 86.25) (layer "F.SilkS") (tstamp b29e10d5-2512-4e6c-8812-97ff8aa8ae32)
(effects (font (size 1 1) (thickness 0.2)))
)
(gr_text "AS5047D/P\nBreakout" (at 132.875 79.25) (layer "F.SilkS") (tstamp c028f2d8-4534-4f65-b52c-ef9a56c3d9c4)
(effects (font (size 1 1) (thickness 0.2)))
)
(gr_text "TEMP\n10KΩ\nNTC" (at 141.75 77.75) (layer "F.SilkS") (tstamp c7c16b6e-9a34-418b-828b-efa98fe85df8)
(effects (font (size 1.2 1.2) (thickness 0.25)) (justify left))
)
(gr_text "1" (at 133.25 86.25) (layer "F.SilkS") (tstamp f1403934-6abd-41d0-a0d3-8772a6d815a9)
(effects (font (size 1 1) (thickness 0.2)))
)
(gr_text "PWR" (at 135.5 84.5) (layer "F.SilkS") (tstamp f47d5a87-e9a5-4407-a78e-3350436e40da)
(effects (font (size 1 1) (thickness 0.2)))
)
(segment (start 137.875 77.6) (end 136.9 77.6) (width 0.25) (layer "F.Cu") (net 1) (tstamp 16bceacc-6a7e-4219-a743-d2d847b543d9))
(segment (start 135.5 83.29593) (end 135.45407 83.25) (width 0.25) (layer "F.Cu") (net 1) (tstamp 21b8c945-d2c8-4202-86a3-59f5393a706e))
(segment (start 141.425 80) (end 141.25 80.175) (width 0.25) (layer "F.Cu") (net 1) (tstamp 27c87e4f-adce-42c5-aed4-d1258bda87ff))
(segment (start 141.25 80.175) (end 141.25 82) (width 0.25) (layer "F.Cu") (net 1) (tstamp 36779fa5-f4d6-4c44-9cbe-fd27113e01de))
(segment (start 141.2875 84.5) (end 141.2875 82) (width 0.25) (layer "F.Cu") (net 1) (tstamp 4a3483db-faeb-40f2-835a-12abbbc0ecac))
(segment (start 134.25 81.225) (end 134.25 83.75) (width 0.25) (layer "F.Cu") (net 1) (tstamp 54602462-3922-4f37-9525-299f7ad36354))
(segment (start 134.25 83.25) (end 134.25 83.75) (width 0.25) (layer "F.Cu") (net 1) (tstamp 8ec84a3b-1c2d-41eb-a049-9e719bfc8b2d))
(segment (start 134.25 86.25) (end 134.25 83.75) (width 0.25) (layer "F.Cu") (net 1) (tstamp 923bc530-9a5a-4720-81a3-c2daca99c787))
(segment (start 142.875 84.25) (end 142.625 84.5) (width 0.25) (layer "F.Cu") (net 1) (tstamp 9b034570-1fda-4aa7-b4d3-44981a5f95d9))
(segment (start 134.575 87.05) (end 134.25 86.725) (width 0.25) (layer "F.Cu") (net 1) (tstamp a4da3a4a-88f5-45e1-a029-234b6ed0e288))
(segment (start 134.25 86.725) (end 134.25 86.25) (width 0.25) (layer "F.Cu") (net 1) (tstamp b374a000-e284-4ba3-a046-eb129346ff5a))
(segment (start 134.25 80.25) (end 134.25 81.225) (width 0.25) (layer "F.Cu") (net 1) (tstamp b753a623-07a9-434f-ad1e-bd8414cbff98))
(segment (start 135.45407 83.25) (end 134.25 83.25) (width 0.25) (layer "F.Cu") (net 1) (tstamp be921335-c89e-41f0-8694-8ee8d09dd067))
(segment (start 142.625 84.5) (end 141.2875 84.5) (width 0.25) (layer "F.Cu") (net 1) (tstamp d1c52168-6638-4213-a881-49a2cbcb1eb2))
(segment (start 135.375 87.05) (end 134.575 87.05) (width 0.25) (layer "F.Cu") (net 1) (tstamp d6a587b8-4f6e-4345-8cbe-a2b44e227196))
(segment (start 136.9 77.6) (end 134.25 80.25) (width 0.25) (layer "F.Cu") (net 1) (tstamp e40fab55-6b45-4f3a-8123-7ddd39c5be7b))
(segment (start 135.375 91.95) (end 135.375 87.05) (width 0.25) (layer "F.Cu") (net 1) (tstamp efb85ca1-c7d7-44eb-8a6a-31bdd4ee3ff3))
(via (at 134.25 86.25) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1) (tstamp 7940c7a1-d1a9-4496-b4be-309554ac9a76))
(via (at 142.875 84.25) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1) (tstamp 91150e96-2152-42e6-9fe5-b879ffcca85a))
(segment (start 142.875 85.375) (end 141.25 87) (width 0.25) (layer "B.Cu") (net 1) (tstamp 0527b238-ef9c-4df6-9582-cd7ebe5ceae9))
(segment (start 134.25 86.25) (end 135 87) (width 0.25) (layer "B.Cu") (net 1) (tstamp 17b49e36-2229-450f-ac21-35fd4ce5e631))
(segment (start 135 87) (end 141.25 87) (width 0.25) (layer "B.Cu") (net 1) (tstamp 4d6fa9e7-2acd-4b7a-ae62-3a168b37827c))
(segment (start 142.875 85.375) (end 142.875 84.25) (width 0.25) (layer "B.Cu") (net 1) (tstamp 64de8b5f-c56d-43c6-a639-a362e69da437))
(segment (start 142.825 84.3) (end 141.3625 84.3) (width 0.25) (layer "B.Cu") (net 1) (tstamp 6a513008-0c58-496f-84ab-1b5937a5f712))
(segment (start 136.38859 82.35) (end 137.125 81.61359) (width 0.25) (layer "B.Cu") (net 1) (tstamp e2b758ab-1971-4b0d-b4d1-55caccfb194c))
(segment (start 135.6375 82.35) (end 136.38859 82.35) (width 0.25) (layer "B.Cu") (net 1) (tstamp e30331fc-f881-466d-9256-b1370178d813))
(segment (start 142.875 84.25) (end 142.825 84.3) (width 0.25) (layer "B.Cu") (net 1) (tstamp e5948892-fcac-4c52-898c-c415c2b6404f))
(segment (start 139.5 84.5) (end 139.7125 84.5) (width 0.25) (layer "F.Cu") (net 2) (tstamp 41767932-e145-4617-bda8-495fdfd45b46))
(segment (start 138.75 83.75) (end 139.5 84.5) (width 0.25) (layer "F.Cu") (net 2) (tstamp bca76739-6e5d-44b9-802f-61e116a3d3f0))
(via (at 138.75 83.75) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 2) (tstamp 0cb89859-6c06-4e0a-9dfe-4b35237bc47e))
(segment (start 136.875 82.5) (end 137.125 82.5) (width 0.25) (layer "B.Cu") (net 2) (tstamp 56a1316b-d87d-4ed4-9251-36f28bab7b12))
(segment (start 136.375 83) (end 136.875 82.5) (width 0.25) (layer "B.Cu") (net 2) (tstamp 6f0dc94d-3271-4a71-8deb-e76a080267ef))
(segment (start 137.625 82.5) (end 137.125 82.5) (width 0.25) (layer "B.Cu") (net 2) (tstamp 885698b4-bccc-4abe-97a8-e4a19eca82b6))
(segment (start 141.3625 83.65) (end 138.85 83.65) (width 0.25) (layer "B.Cu") (net 2) (tstamp aeffeaf9-984b-4611-947a-f199a60afab5))
(segment (start 135.6375 83) (end 136.375 83) (width 0.25) (layer "B.Cu") (net 2) (tstamp b7610489-880f-4c25-b8e8-8c9f64f21307))
(segment (start 138.85 83.65) (end 138.75 83.75) (width 0.25) (layer "B.Cu") (net 2) (tstamp b8eb4a40-2917-410d-94e7-aafbd7eab549))
(segment (start 138.75 83.625) (end 137.625 82.5) (width 0.25) (layer "B.Cu") (net 2) (tstamp f9c60105-c0d3-4b77-acf6-0e037f874172))
(segment (start 138.75 83.75) (end 138.75 83.625) (width 0.25) (layer "B.Cu") (net 2) (tstamp fb5541ae-4284-4e2d-ad79-64867356a2bc))
(segment (start 140.5 85.375) (end 141.625 86.5) (width 0.25) (layer "F.Cu") (net 3) (tstamp 080a5831-78cf-4c65-b38b-ac516240b6fd))
(segment (start 137.5875 82.125) (end 137.5 82.0375) (width 0.25) (layer "F.Cu") (net 3) (tstamp 10b92994-0fd7-4748-b845-fcf1e418cd84))
(segment (start 141.625 91.95) (end 141.625 87.05) (width 0.25) (layer "F.Cu") (net 3) (tstamp 12428c27-1789-4407-9b85-0ac6bd39d25f))
(segment (start 139.75 80.75) (end 139.75 80.425) (width 0.25) (layer "F.Cu") (net 3) (tstamp 36903037-9d57-483a-9c83-e937d7482913))
(segment (start 139.5875 82.125) (end 139.7125 82) (width 0.25) (layer "F.Cu") (net 3) (tstamp 697d0883-3c59-4311-ba7f-eb07672e2c3a))
(segment (start 141.625 86.5) (end 141.625 87.05) (width 0.25) (layer "F.Cu") (net 3) (tstamp 7239bc48-4e7a-48a4-8530-cb4d976c084c))
(segment (start 139.7125 82) (end 140.5 82.7875) (width 0.25) (layer "F.Cu") (net 3) (tstamp 8448e3bb-6c4f-4a6c-bc62-884b54a68ddc))
(segment (start 140.5 82.7875) (end 140.5 85.375) (width 0.25) (layer "F.Cu") (net 3) (tstamp 97fd0bd0-5c72-4b41-bcbd-7902e3491efc))
(segment (start 139.75 82) (end 139.75 80.75) (width 0.25) (layer "F.Cu") (net 3) (tstamp 9e2f06b7-b644-4dcc-8a2f-f85b0b106021))
(segment (start 138.625 82.125) (end 137.5875 82.125) (width 0.25) (layer "F.Cu") (net 3) (tstamp adce8e8a-6837-4510-add7-360d72cb2371))
(segment (start 139.75 80.425) (end 139.325 80) (width 0.25) (layer "F.Cu") (net 3) (tstamp af993577-bdd0-48bf-86b1-0f03daa8f9d1))
(segment (start 138.625 82.125) (end 139.5875 82.125) (width 0.25) (layer "F.Cu") (net 3) (tstamp e44b02da-612f-4b6b-b7b8-cfe3ac16e516))
(via (at 138.625 82.125) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 3) (tstamp 1f99436e-2fc4-4d29-a1d0-53a4ddf45870))
(segment (start 141.3625 83) (end 139.5 83) (width 0.25) (layer "B.Cu") (net 3) (tstamp 72fb78f4-aa3c-47ba-895d-831ae9e0072a))
(segment (start 139.5 83) (end 138.625 82.125) (width 0.25) (layer "B.Cu") (net 3) (tstamp dfbca168-7830-4316-99c0-5c6a13a7fe42))
(segment (start 139.125 77.6) (end 139.125 78.25) (width 0.25) (layer "F.Cu") (net 4) (tstamp 0e098667-2698-4bc0-b537-1977401dbd01))
(segment (start 139.125 78.25) (end 138 79.375) (width 0.25) (layer "F.Cu") (net 4) (tstamp 7b3f8994-5d09-4657-b415-ea34a93075c6))
(segment (start 140.375 87.05) (end 140.375 88.375) (width 0.25) (layer "F.Cu") (net 4) (tstamp 9fc99c3a-7149-4a48-b76e-f368b08ee0b7))
(segment (start 140.375 91.95) (end 140.375 87.05) (width 0.25) (layer "F.Cu") (net 4) (tstamp b9bb9acc-0508-4419-92e0-8ac9c8e3abb7))
(segment (start 140.375 88.375) (end 140.75 88.75) (width 0.25) (layer "F.Cu") (net 4) (tstamp bb74034c-587b-4a13-a786-3bb17f9e63e4))
(via (at 138 79.375) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 4) (tstamp 009deb13-103e-4046-b7f8-1d2a7fa53330))
(via (at 140.75 88.75) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 4) (tstamp f82b5d87-c021-4086-bdae-ef98d497740e))
(segment (start 138 79.375) (end 137.375 79.375) (width 0.25) (layer "B.Cu") (net 4) (tstamp 00f2604a-b99e-4e52-bead-d567fb44b43f))
(segment (start 139.625 87.625) (end 134.25 87.625) (width 0.25) (layer "B.Cu") (net 4) (tstamp 042d69dc-311f-4ef6-9e39-fd31228d18da))
(segment (start 134.375 84.625) (end 134.375 80.75) (width 0.25) (layer "B.Cu") (net 4) (tstamp 288799f3-b8ad-4087-a447-3c36f1c2dbb7))
(segment (start 140.75 88.75) (end 139.625 87.625) (width 0.25) (layer "B.Cu") (net 4) (tstamp 45595e2e-af36-41ad-b25d-46955328f1cf))
(segment (start 133.375 85.625) (end 134.375 84.625) (width 0.25) (layer "B.Cu") (net 4) (tstamp 5ecf2b09-9006-407c-99a8-a2388a91729e))
(segment (start 133.375 86.75) (end 133.375 85.625) (width 0.25) (layer "B.Cu") (net 4) (tstamp 610dce13-f6e9-488f-9192-e28dcbd8542f))
(segment (start 135.75 79.375) (end 137.375 79.375) (width 0.25) (layer "B.Cu") (net 4) (tstamp 6d0ae918-245c-4300-ab08-d2d4125c5ca6))
(segment (start 134.25 87.625) (end 133.375 86.75) (width 0.25) (layer "B.Cu") (net 4) (tstamp 7a8b7665-048f-47f1-9a42-66cdae43f11e))
(segment (start 134.375 80.75) (end 135.75 79.375) (width 0.25) (layer "B.Cu") (net 4) (tstamp 81fa730e-1ea1-4359-8bcd-4a73d92df813))
(segment (start 136.625 86) (end 137.125 85.5) (width 0.25) (layer "F.Cu") (net 5) (tstamp 9f790d98-97cc-4e45-86b7-b801bd0d48c8))
(segment (start 136.625 87.05) (end 136.625 86) (width 0.25) (layer "F.Cu") (net 5) (tstamp d448e65a-83e4-4b66-be78-f00f4c0192f1))
(segment (start 136.625 91.95) (end 136.625 87.05) (width 0.25) (layer "F.Cu") (net 5) (tstamp e8a89631-8305-4eb3-be43-6d563af14ff0))
(via (at 137.125 85.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 5) (tstamp 3c6863d4-2473-47ca-96c1-698c0966084e))
(segment (start 137.125 85.5) (end 136.575 84.95) (width 0.25) (layer "B.Cu") (net 5) (tstamp 4130f26f-1753-41c4-b844-70a662e5528e))
(segment (start 136.575 84.95) (end 135.6375 84.95) (width 0.25) (layer "B.Cu") (net 5) (tstamp b11fcd64-9b6b-4ceb-bfa0-7451a6bf18c5))
(segment (start 137.875 91.95) (end 137.875 87.05) (width 0.25) (layer "F.Cu") (net 6) (tstamp 7bdeee14-1db6-45b2-b571-d2ee3664d74f))
(segment (start 137.875 84.125) (end 137.875 84.5) (width 0.25) (layer "F.Cu") (net 6) (tstamp a372836f-c34b-4dbd-a889-b5d126bacf84))
(segment (start 137.875 84.5) (end 137.875 87.05) (width 0.25) (layer "F.Cu") (net 6) (tstamp b143d8b0-5fe1-4b91-9cd7-c78866958e0c))
(segment (start 137.125 83.375) (end 137.875 84.125) (width 0.25) (layer "F.Cu") (net 6) (tstamp bb711fa3-eb41-40dc-b46b-d7dfd5f3b923))
(via (at 137.125 83.375) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 6) (tstamp d746f01e-a62c-46c3-91cb-3f45df30c153))
(segment (start 135.6375 83.65) (end 136.85 83.65) (width 0.25) (layer "B.Cu") (net 6) (tstamp 0490e6a0-5e8a-4b72-8b2a-503881134c0e))
(segment (start 136.85 83.65) (end 137.125 83.375) (width 0.25) (layer "B.Cu") (net 6) (tstamp 22723485-a777-4d73-836d-d2ecaa56f777))
(segment (start 139.125 85.875) (end 138.75 85.5) (width 0.25) (layer "F.Cu") (net 7) (tstamp 5ce39c1d-b0ba-428d-9667-2584db439d27))
(segment (start 139.125 91.95) (end 139.125 87.05) (width 0.25) (layer "F.Cu") (net 7) (tstamp 6a68f9d5-8d42-4959-958d-3aba4a5da588))
(segment (start 139.125 87.05) (end 139.125 85.875) (width 0.25) (layer "F.Cu") (net 7) (tstamp 77a2cc79-6110-4b53-af9a-10acddc3d107))
(via (at 138.75 85.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 7) (tstamp 0fb30b9e-30a1-4861-8acd-f5486df03151))
(segment (start 135.6375 84.3) (end 137.55 84.3) (width 0.25) (layer "B.Cu") (net 7) (tstamp 2664ca2e-3ee0-4c23-91e9-2ebb6677da98))
(segment (start 137.55 84.3) (end 138.125 84.875) (width 0.25) (layer "B.Cu") (net 7) (tstamp 29d2eb77-bfad-4471-bafb-84987446d06b))
(segment (start 138.75 85.5) (end 138.125 84.875) (width 0.25) (layer "B.Cu") (net 7) (tstamp 41d68293-0903-471f-8e51-2f326f8e2a6e))
(segment (start 136.0375 80.4625) (end 135.5 81) (width 0.25) (layer "F.Cu") (net 8) (tstamp 36db751f-1b00-419f-9061-58a3b0f3d009))
(segment (start 135.5 81) (end 135.5 81.72093) (width 0.25) (layer "F.Cu") (net 8) (tstamp 3abdbca8-430f-481b-b1d9-ddd73344d7a6))
(segment (start 137.5 80.4625) (end 136.0375 80.4625) (width 0.25) (layer "F.Cu") (net 8) (tstamp d7eda14d-2042-491f-86a1-10ee142fb465))
(zone (net 1) (net_name "GND") (layers F&B.Cu) (tstamp 010845aa-282d-4a1f-8726-a236732902b6) (hatch edge 0.508)
(connect_pads (clearance 0.3))
(min_thickness 0.254) (filled_areas_thickness no)
(fill yes (thermal_gap 0.3) (thermal_bridge_width 0.3) (smoothing fillet) (radius 1))
(polygon
(pts
(xy 151.25 95.25)
(xy 125 95.25)
(xy 125 69.75)
(xy 151.25 69.75)
)
)
(filled_polygon
(layer "F.Cu")
(pts
(xy 139.009896 71.815355)
(xy 139.062837 71.816487)
(xy 139.070192 71.81686)
(xy 139.122988 71.821085)
(xy 139.126654 71.821432)
(xy 139.671085 71.881056)
(xy 140.307746 71.950782)
(xy 140.311341 71.951229)
(xy 140.363795 71.958532)
(xy 140.371036 71.959756)
(xy 140.422979 71.970112)
(xy 140.426562 71.970881)
(xy 141.584485 72.237144)
(xy 141.588063 72.238022)
(xy 141.639275 72.251386)
(xy 141.646344 72.253453)
(xy 141.696724 72.269798)
(xy 141.700187 72.270978)
(xy 142.210191 72.453084)
(xy 142.819098 72.670505)
(xy 142.82255 72.671794)
(xy 142.87189 72.691056)
(xy 142.878669 72.693934)
(xy 142.926754 72.716025)
(xy 142.930078 72.717611)
(xy 143.994798 73.244984)
(xy 143.998041 73.24665)
(xy 144.044773 73.271524)
(xy 144.051169 73.275172)
(xy 144.096362 73.30273)
(xy 144.099475 73.304691)
(xy 144.234922 73.392819)
(xy 145.0954 73.952689)
(xy 145.098457 73.954743)
(xy 145.141943 73.984882)
(xy 145.147874 73.989255)
(xy 145.189554 74.021908)
(xy 145.192418 74.02422)
(xy 145.320115 74.130424)
(xy 146.105914 74.783965)
(xy 146.108694 74.786347)
(xy 146.148377 74.821365)
(xy 146.153752 74.826394)
(xy 146.191342 74.863689)
(xy 146.193913 74.866315)
(xy 146.844639 75.550841)
(xy 147.012529 75.727452)
(xy 147.015027 75.730158)
(xy 147.050359 75.769571)
(xy 147.055112 75.775196)
(xy 147.088079 75.816603)
(xy 147.09033 75.819517)
(xy 147.703043 76.637056)
(xy 147.802884 76.770274)
(xy 147.805034 76.773232)
(xy 147.825696 76.802549)
(xy 147.835542 76.81652)
(xy 147.839607 76.822662)
(xy 147.867511 76.867624)
(xy 147.869407 76.87078)
(xy 148.466178 77.898195)
(xy 148.467982 77.901408)
(xy 148.493225 77.947949)
(xy 148.496545 77.954523)
(xy 148.51902 78.002447)
(xy 148.520535 78.005805)
(xy 148.993339 79.095782)
(xy 148.994755 79.09918)
(xy 149.0144 79.148356)
(xy 149.016932 79.155275)
(xy 149.033661 79.205491)
(xy 149.034774 79.209002)
(xy 149.377187 80.346715)
(xy 149.378197 80.350258)
(xy 149.391967 80.401381)
(xy 149.393674 80.408545)
(xy 149.403714 80.456915)
(xy 149.404429 80.460362)
(xy 149.405121 80.463961)
(xy 149.570922 81.3995)
(xy 149.612468 81.633923)
(xy 149.613057 81.637558)
(xy 149.620763 81.689897)
(xy 149.621623 81.697212)
(xy 149.626261 81.749954)
(xy 149.626529 81.753617)
(xy 149.693954 82.905465)
(xy 149.696572 82.950191)
(xy 149.696718 82.953377)
(xy 149.698237 82.999177)
(xy 149.698287 83.005554)
(xy 149.697488 83.051335)
(xy 149.697487 83.051374)
(xy 149.697391 83.054544)
(xy 149.663279 83.851822)
(xy 149.661128 83.902097)
(xy 149.660951 83.905284)
(xy 149.657834 83.950987)
(xy 149.65724 83.957332)
(xy 149.651812 84.002855)
(xy 149.651394 84.006017)
(xy 149.479402 85.192226)
(xy 149.47882 85.195862)
(xy 149.469699 85.247991)
(xy 149.468222 85.25519)
(xy 149.456552 85.304653)
(xy 149.456062 85.30673)
(xy 149.455164 85.310301)
(xy 149.148656 86.458213)
(xy 149.147654 86.461758)
(xy 149.132511 86.512473)
(xy 149.130198 86.519467)
(xy 149.112106 86.569241)
(xy 149.110797 86.572683)
(xy 148.672463 87.676974)
(xy 148.671055 87.680377)
(xy 148.650085 87.729011)
(xy 148.646972 87.735687)
(xy 148.623198 87.783006)
(xy 148.621512 87.786244)
(xy 148.0573 88.831912)
(xy 148.05555 88.835045)
(xy 148.029038 88.880921)
(xy 148.025166 88.887189)
(xy 147.996037 88.931406)
(xy 147.993967 88.934451)
(xy 147.311643 89.907102)
(xy 147.309485 89.910084)
(xy 147.27783 89.952515)
(xy 147.273253 89.95829)
(xy 147.239155 89.998818)
(xy 147.236743 90.001601)
(xy 146.4456 90.888)
(xy 146.443109 90.89071)
(xy 146.406738 90.929139)
(xy 146.401518 90.934341)
(xy 146.362924 90.970614)
(xy 146.360207 90.973094)
(xy 145.471023 91.761164)
(xy 145.46826 91.763542)
(xy 145.427619 91.797491)
(xy 145.421833 91.802044)
(xy 145.379294 91.83355)
(xy 145.376302 91.835699)
(xy 144.970714 92.118115)
(xy 144.401233 92.514652)
(xy 144.398232 92.516677)
(xy 144.360856 92.541112)
(xy 144.353911 92.545653)
(xy 144.347633 92.549501)
(xy 144.301676 92.575847)
(xy 144.29848 92.577617)
(xy 143.250877 93.13816)
(xy 143.247619 93.139843)
(xy 143.20023 93.163444)
(xy 143.193557 93.166528)
(xy 143.144852 93.187328)
(xy 143.141445 93.188724)
(xy 142.035567 93.623226)
(xy 142.032199 93.624492)
(xy 141.985779 93.641182)
(xy 141.982358 93.642412)
(xy 141.975358 93.6447)
(xy 141.924587 93.659667)
(xy 141.921039 93.660657)
(xy 140.772 93.963174)
(xy 140.768529 93.964034)
(xy 140.716872 93.976031)
(xy 140.709726 93.977472)
(xy 140.657466 93.986428)
(xy 140.653875 93.986989)
(xy 140.272038 94.040993)
(xy 139.477454 94.153372)
(xy 139.47383 94.153831)
(xy 139.42118 94.159713)
(xy 139.413847 94.160316)
(xy 139.371286 94.162565)
(xy 139.361006 94.163108)
(xy 139.357326 94.163249)
(xy 139.27952 94.165083)
(xy 138.169473 94.191242)
(xy 138.16585 94.191275)
(xy 138.112882 94.190974)
(xy 138.105527 94.190717)
(xy 138.05267 94.187322)
(xy 138.049047 94.187036)
(xy 136.866059 94.076253)
(xy 136.862439 94.075861)
(xy 136.80987 94.069383)
(xy 136.802607 94.068272)
(xy 136.765535 94.061484)
(xy 136.75054 94.058739)
(xy 136.746927 94.058023)
(xy 135.584932 93.809972)
(xy 135.581343 93.80915)
(xy 135.52994 93.796596)
(xy 135.522838 93.79464)
(xy 135.472236 93.779097)
(xy 135.468731 93.777964)
(xy 134.343657 93.396053)
(xy 134.340203 93.394825)
(xy 134.290544 93.376332)
(xy 134.283778 93.373584)
(xy 134.235287 93.352222)
(xy 134.231967 93.350701)
(xy 133.159138 92.840137)
(xy 133.155836 92.838506)
(xy 133.108705 92.814362)
(xy 133.102248 92.810812)
(xy 133.056625 92.783964)
(xy 133.05348 92.782051)
(xy 132.047554 92.149812)
(xy 132.044462 92.147805)
(xy 132.000473 92.118328)
(xy 131.994479 92.114053)
(xy 131.993813 92.113548)
(xy 134.775 92.113548)
(xy 134.775 92.67855)
(xy 134.775699 92.687909)
(xy 134.788714 92.774477)
(xy 134.794191 92.792278)
(xy 134.8446 92.897255)
(xy 134.855074 92.912667)
(xy 134.93412 92.998178)
(xy 134.948661 93.009828)
(xy 135.049357 93.068316)
(xy 135.06668 93.075175)
(xy 135.166785 93.098378)
(xy 135.180965 93.1)
(xy 135.206885 93.1)
(xy 135.222124 93.095525)
(xy 135.223329 93.094135)
(xy 135.225 93.086452)
(xy 135.225 92.118115)
(xy 135.220525 92.102876)
(xy 135.219135 92.101671)
(xy 135.211452 92.1)
(xy 134.793115 92.1)
(xy 134.777876 92.104475)
(xy 134.776671 92.105865)
(xy 134.775 92.113548)
(xy 131.993813 92.113548)
(xy 131.952325 92.082086)
(xy 131.949422 92.079817)
(xy 131.218227 91.490871)
(xy 131.024067 91.334484)
(xy 131.021257 91.33215)
(xy 130.981021 91.297754)
(xy 130.97559 91.292831)
(xy 130.937403 91.256115)
(xy 130.93481 91.253548)