-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtle5012b encoder breakout.kicad_pcb
4432 lines (4413 loc) · 173 KB
/
tle5012b 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 20211014) (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 false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "tle5012b breakout gerbers")
)
)
(net 0 "")
(net 1 "/H2{slash}SSC_DATA")
(net 2 "GND")
(net 3 "Net-(R2-Pad2)")
(net 4 "Net-(D1-PadA)")
(net 5 "+5V")
(net 6 "/Temp")
(net 7 "/H3{slash}CS")
(net 8 "/H1{slash}SCK")
(net 9 "unconnected-(U1-Pad8)")
(net 10 "unconnected-(U1-Pad5)")
(net 11 "unconnected-(U1-Pad1)")
(footprint "pkl_dipol:R_0603" (layer "F.Cu")
(tedit 5B8B7F23) (tstamp 14eb1099-1448-4da7-ad56-4b4ff84c6433)
(at 139 81.75 90)
(descr "Resistor SMD 0603, reflow soldering")
(tags "resistor 0603")
(property "Sheetfile" "tle5012b 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 locked (at -0.75 0 90) (size 0.6 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "+5V") (pintype "passive") (tstamp df1d190f-989a-40e3-9bea-2175b22b02e3))
(pad "2" smd roundrect locked (at 0.75 0 90) (size 0.6 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "Net-(D1-PadA)") (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:R_0603" (layer "F.Cu")
(tedit 5B8B7F23) (tstamp 1c377931-cf29-4a66-84c9-c7523a1f4bd0)
(at 140.5 84.5)
(descr "Resistor SMD 0603, reflow soldering")
(tags "resistor 0603")
(property "Sheetfile" "tle5012b encoder breakout.kicad_sch")
(property "Sheetname" "")
(path "/aadfafca-817a-4163-a38b-e94c6cd744c8")
(attr smd)
(fp_text reference "R2" (at 0 -1.1) (layer "F.Fab")
(effects (font (size 0.635 0.635) (thickness 0.1)))
(tstamp cfd2cb9d-1542-4782-b1cb-c7800ea2b1c0)
)
(fp_text value "470R" (at 0 1.2) (layer "F.Fab")
(effects (font (size 0.635 0.635) (thickness 0.1)))
(tstamp c61b70c4-6801-4e8b-8558-ec5c90a75f6e)
)
(fp_line (start -0.35 -0.61) (end 0.35 -0.61) (layer "F.SilkS") (width 0.13) (tstamp 44633a7c-1eb6-48cf-bd58-1fc0eb1140fe))
(fp_line (start 0.35 0.61) (end -0.35 0.61) (layer "F.SilkS") (width 0.13) (tstamp 8425a937-2495-4022-9a74-4736b1fcbb5a))
(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 9016d814-fe22-4e3f-818c-c838ce0516c2))
(fp_line (start -1.175 -0.725) (end 1.175 -0.725) (layer "F.CrtYd") (width 0.05) (tstamp 31200744-93b3-418f-9171-d95c32129cd8))
(fp_line (start -1.175 -0.725) (end -1.175 0.725) (layer "F.CrtYd") (width 0.05) (tstamp 518679d3-8b85-420d-87c2-3d497b9a2ed6))
(fp_line (start 1.175 -0.725) (end 1.175 0.725) (layer "F.CrtYd") (width 0.05) (tstamp 9afb1b8f-1faa-498c-84a9-d6e2c1714048))
(fp_line (start -1.175 0.725) (end 1.175 0.725) (layer "F.CrtYd") (width 0.05) (tstamp a53bed5c-daa0-4734-a9db-093cb690c139))
(pad "1" smd roundrect locked (at -0.75 0) (size 0.6 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "/H2{slash}SSC_DATA") (pintype "passive") (tstamp 24f64cb1-7f45-48e9-9a25-d3a0c46ac7cb))
(pad "2" smd roundrect locked (at 0.75 0) (size 0.6 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "Net-(R2-Pad2)") (pintype "passive") (tstamp 9b206a53-48c0-44ad-b998-deba2319851c))
(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 "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" "tle5012b 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 "" np_thru_hole circle locked (at 0 0) (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" "tle5012b 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 "data-V" (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 locked (at -3.125 1.95) (size 0.6 1.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 1560e9ec-58f5-47c7-b922-a6a98b6c9a1a))
(pad "2" smd roundrect locked (at -1.875 1.95) (size 0.6 1.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "/H3{slash}CS") (pinfunction "Pin_2") (pintype "passive") (tstamp a83eb73d-9464-4d42-b065-4a1ec55aed21))
(pad "3" smd roundrect locked (at -0.625 1.95) (size 0.6 1.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "/H2{slash}SSC_DATA") (pinfunction "Pin_3") (pintype "passive") (tstamp d7e8619e-099f-4b11-9b62-29e89262810e))
(pad "4" smd roundrect locked (at 0.625 1.95) (size 0.6 1.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "/H1{slash}SCK") (pinfunction "Pin_4") (pintype "passive") (tstamp 526e56ea-27ff-4c24-aa13-ff7600dfb0d6))
(pad "5" smd roundrect locked (at 1.875 1.95) (size 0.6 1.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "/Temp") (pinfunction "Pin_5") (pintype "passive") (tstamp 7543de0a-0316-4711-8116-17f7383ac1cf))
(pad "6" smd roundrect locked (at 3.125 1.95) (size 0.6 1.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "+5V") (pinfunction "Pin_6") (pintype "passive") (tstamp be686eee-e2c6-4ae5-8bb9-d10d1a8d8208))
(pad "MP" smd roundrect locked (at 4.975 -1.4) (size 1 2.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "MP") (pintype "passive") (tstamp 569c22b6-ac4b-4556-8d13-105c291d8500))
(pad "MP" smd roundrect locked (at -4.975 -1.4) (size 1 2.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "MP") (pintype "passive") (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 "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" "tle5012b 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 "" np_thru_hole circle locked (at 0 0) (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" "tle5012b 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 locked (at -0.625 -1.85 180) (size 0.6 1.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "/Temp") (pinfunction "Pin_1") (pintype "passive") (tstamp 10eb390e-c533-4038-8345-18d7b7bcdd2f))
(pad "2" smd roundrect locked (at 0.625 -1.85 180) (size 0.6 1.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp e6b7b9a4-fc0f-4072-af1b-c0c118ec7297))
(pad "MP" smd roundrect locked (at -2.475 1.35 180) (size 1 2.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "MP") (pintype "passive") (tstamp ab610431-ad2b-41cf-8efd-d04150b754a4))
(pad "MP" smd roundrect locked (at 2.475 1.35 180) (size 1 2.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "MP") (pintype "passive") (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" "tle5012b 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 "data-H" (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 locked (at -3.125 -1.85) (size 0.6 1.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp da1aeafa-8d46-4874-bd24-0aeebbfed339))
(pad "2" smd roundrect locked (at -1.875 -1.85) (size 0.6 1.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "/H3{slash}CS") (pinfunction "Pin_2") (pintype "passive") (tstamp 180d90ca-a1d1-401e-be7a-8e26e78c8c25))
(pad "3" smd roundrect locked (at -0.625 -1.85) (size 0.6 1.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "/H2{slash}SSC_DATA") (pinfunction "Pin_3") (pintype "passive") (tstamp 6a9d3edd-cd3d-437a-9111-9583e4b9d7ef))
(pad "4" smd roundrect locked (at 0.625 -1.85) (size 0.6 1.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "/H1{slash}SCK") (pinfunction "Pin_4") (pintype "passive") (tstamp 1fd11701-2734-43f1-8ebd-9f3414075bce))
(pad "5" smd roundrect locked (at 1.875 -1.85) (size 0.6 1.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "/Temp") (pinfunction "Pin_5") (pintype "passive") (tstamp 44b1a5a3-4b4a-40a1-b2a1-24e15562285f))
(pad "6" smd roundrect locked (at 3.125 -1.85) (size 0.6 1.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "+5V") (pinfunction "Pin_6") (pintype "passive") (tstamp 0af62044-2012-4862-8968-92621a1c9972))
(pad "MP" smd roundrect locked (at -4.975 1.35) (size 1 2.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "MP") (pintype "passive") (tstamp 3c4fb176-f688-40e7-9dc0-5c90e28f9601))
(pad "MP" smd roundrect locked (at 4.975 1.35) (size 1 2.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "MP") (pintype "passive") (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 "pkl_dipol:D_0603" (layer "F.Cu")
(tedit 5B8B5D22) (tstamp c9159aad-39ee-4e0f-8e46-b70e8868b495)
(at 141 81.75 90)
(descr "Diode SMD 0603, reflow soldering")
(tags "diode led 0603")
(property "Sheetfile" "tle5012b 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 009277ee-99ac-4e5d-bbe2-2935a8c513fe)
)
(fp_text value "GREEN LED" (at 0 1.2 90) (layer "F.Fab")
(effects (font (size 0.635 0.635) (thickness 0.1)))
(tstamp 6ee4dfa9-f01c-48a3-b181-d04760eaece3)
)
(fp_line (start 0.3 0.3) (end -0.3 0) (layer "F.SilkS") (width 0.13) (tstamp 04374824-b934-4274-abb8-2c6d6507d40f))
(fp_line (start 0.3 -0.3) (end 0.3 0.3) (layer "F.SilkS") (width 0.13) (tstamp 4f91e0f8-5094-4e43-8f04-452d9b4cf977))
(fp_line (start 0.35 0.61) (end -0.35 0.61) (layer "F.SilkS") (width 0.13) (tstamp 7c8adf3a-14f3-4e16-8d0a-ce7ef81321d9))
(fp_line (start -0.3 -0.3) (end -0.3 0.3) (layer "F.SilkS") (width 0.13) (tstamp 91262305-c72c-4d9b-9e88-648c530a3e43))
(fp_line (start -0.3 0) (end 0.3 -0.3) (layer "F.SilkS") (width 0.13) (tstamp d32c9559-cb0d-4091-807e-2b5bf824efdd))
(fp_line (start -0.35 -0.61) (end 0.35 -0.61) (layer "F.SilkS") (width 0.13) (tstamp f7f7f6ae-48cd-4424-92c5-f6c134d4c9bf))
(fp_line (start 1.175 0.725) (end 1.175 -0.725) (layer "F.CrtYd") (width 0.05) (tstamp 29eded0d-b541-4670-a38f-ff1624334590))
(fp_line (start 1.175 -0.725) (end -1.175 -0.725) (layer "F.CrtYd") (width 0.05) (tstamp 6444d349-4f1f-4ef7-840f-e02948a1b5e6))
(fp_line (start -1.175 0.725) (end -1.175 -0.725) (layer "F.CrtYd") (width 0.05) (tstamp 9b1cc0e1-8b07-4461-b028-62e76492421f))
(fp_line (start 1.175 0.725) (end -1.175 0.725) (layer "F.CrtYd") (width 0.05) (tstamp c7e34103-2eaf-4528-a91e-97402df77198))
(pad "A" smd roundrect locked (at 0.75 0 270) (size 0.6 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "Net-(D1-PadA)") (pinfunction "A") (pintype "passive") (tstamp 8e887319-3d99-4243-a168-6ce319ca5e40))
(pad "C" smd roundrect locked (at -0.75 0 270) (size 0.6 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "K") (pintype "passive") (tstamp da320211-c532-4f2e-b168-30a478814fd3))
(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 e5e73eae-3aee-49d7-9a4b-c58d0ccfea0e)
(at 136.25 84 180)
(descr "SOD-323")
(tags "SOD-323")
(property "Field4" "lcsc C151235")
(property "Sheetfile" "tle5012b encoder breakout.kicad_sch")
(property "Sheetname" "")
(path "/74ce55ed-8423-4b7b-b52b-9ada4ae0ee1e")
(attr smd)
(fp_text reference "D2" (at 0 -1.85) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f3160df6-1ed5-4a4f-8faa-04963c3a8029)
)
(fp_text value "SD05-01FTG" (at 0.1 1.9) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a6db2a06-992d-42ff-a912-b6875e5d9ba4)
)
(fp_text user "${REFERENCE}" (at 0 -1.85) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5df7d737-df0c-4746-bfca-712db0b177b8)
)
(fp_line (start -1.5 0.85) (end 1.05 0.85) (layer "F.SilkS") (width 0.12) (tstamp 3fee44b6-d3ad-4f57-b4df-0c53845c0c3e))
(fp_line (start -1.5 -0.85) (end -1.5 0.85) (layer "F.SilkS") (width 0.12) (tstamp 4e6ba626-5f27-43ea-97b3-3c5b67d65b6a))
(fp_line (start -1.5 -0.85) (end 1.05 -0.85) (layer "F.SilkS") (width 0.12) (tstamp f716675f-748c-448a-bedc-7fa700ac4eeb))
(fp_line (start -1.6 -0.95) (end -1.6 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 3c2fb27e-29af-49a7-af03-12ae6f505dad))
(fp_line (start 1.6 -0.95) (end 1.6 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 8d1cfe1d-7843-4818-be75-bd50f50653d1))
(fp_line (start -1.6 0.95) (end 1.6 0.95) (layer "F.CrtYd") (width 0.05) (tstamp c0bbb193-65da-437d-9dc0-7f87ce60e060))
(fp_line (start -1.6 -0.95) (end 1.6 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp f118053b-ad8b-425b-8078-81b6ca8bc591))
(fp_line (start 0.2 0.35) (end -0.3 0) (layer "F.Fab") (width 0.1) (tstamp 2271c6e6-dd7d-4fa7-a5a5-5eb4b74ab215))
(fp_line (start -0.9 -0.7) (end 0.9 -0.7) (layer "F.Fab") (width 0.1) (tstamp 504943a0-553d-4f9c-877d-717caa4ea073))
(fp_line (start 0.9 0.7) (end -0.9 0.7) (layer "F.Fab") (width 0.1) (tstamp 511581ef-10b3-4111-8173-fc746b37d34f))
(fp_line (start -0.3 -0.35) (end -0.3 0.35) (layer "F.Fab") (width 0.1) (tstamp 51545b49-d2bb-47ab-b973-fed6148905a0))
(fp_line (start -0.9 0.7) (end -0.9 -0.7) (layer "F.Fab") (width 0.1) (tstamp 9a3c925f-8993-49f1-ab22-612d1a68fadc))
(fp_line (start 0.2 -0.35) (end 0.2 0.35) (layer "F.Fab") (width 0.1) (tstamp 9a7e8a41-966e-402f-bd88-f29be664c9b9))
(fp_line (start 0.2 0) (end 0.45 0) (layer "F.Fab") (width 0.1) (tstamp 9c998d68-18ca-4f09-b124-0ccf98b419c6))
(fp_line (start -0.3 0) (end -0.5 0) (layer "F.Fab") (width 0.1) (tstamp a3645870-f85f-4c04-bc47-305215792a6d))
(fp_line (start -0.3 0) (end 0.2 -0.35) (layer "F.Fab") (width 0.1) (tstamp a45e3b79-5aba-415a-a0a2-af3a034d6363))
(fp_line (start 0.9 -0.7) (end 0.9 0.7) (layer "F.Fab") (width 0.1) (tstamp f7ad571d-059c-4f2c-a77c-8cc16bb485b9))
(pad "1" smd rect locked (at -1.05 0 180) (size 0.6 0.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "+5V") (pinfunction "K") (pintype "passive") (tstamp 79f00a97-6ca0-4c28-8735-f1e412f5dd07))
(pad "2" smd rect locked (at 1.05 0 180) (size 0.6 0.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "A") (pintype "passive") (tstamp e4f36f3f-16e0-412c-b75c-ef13034a4c3d))
(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 "pkl_dipol:C_0603" (layer "F.Cu")
(tedit 5B8B5957) (tstamp e606dd88-e5c0-4ea0-8f4f-fea0228d682b)
(at 136.25 80.25 180)
(descr "Capacitor SMD 0603, reflow soldering")
(tags "capacitor 0603")
(property "Sheetfile" "tle5012b encoder breakout.kicad_sch")
(property "Sheetname" "")
(path "/89bfd69e-cc6e-44db-9859-cf5982039909")
(attr smd)
(fp_text reference "C1" (at 0 -1.1) (layer "F.Fab")
(effects (font (size 0.635 0.635) (thickness 0.1)))
(tstamp 5516a5eb-00f7-4890-8c1e-cff26ee18499)
)
(fp_text value "1uf" (at 0 1.2) (layer "F.Fab")
(effects (font (size 0.635 0.635) (thickness 0.1)))
(tstamp 3bee9c8c-fb8e-4d54-ba8c-873d82eb3b4a)
)
(fp_line (start 0.35 0.61) (end -0.35 0.61) (layer "F.SilkS") (width 0.13) (tstamp b8181e83-172e-4c2e-837a-f33dca83c471))
(fp_line (start -0.35 -0.61) (end 0.35 -0.61) (layer "F.SilkS") (width 0.13) (tstamp c5864ff3-3d67-47a4-b9ad-e65d87c91927))
(fp_circle (center 0 0) (end 0.2 0) (layer "F.SilkS") (width 0.4) (fill none) (tstamp ce074113-75c6-462a-b211-6ed1926d51f1))
(fp_line (start -1.175 -0.725) (end -1.175 0.725) (layer "F.CrtYd") (width 0.05) (tstamp 695c5e3b-27bd-4fae-913c-58f47120f419))
(fp_line (start 1.175 -0.725) (end 1.175 0.725) (layer "F.CrtYd") (width 0.05) (tstamp 74a1dedd-93ed-4487-a479-2797d890cea2))
(fp_line (start -1.175 0.725) (end 1.175 0.725) (layer "F.CrtYd") (width 0.05) (tstamp b04c3d02-8e43-4946-a7c6-bc4cf837e221))
(fp_line (start -1.175 -0.725) (end 1.175 -0.725) (layer "F.CrtYd") (width 0.05) (tstamp bfac298a-5383-4881-9635-9bcd28847eb9))
(pad "1" smd roundrect locked (at -0.75 0 180) (size 0.6 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "+5V") (pintype "passive") (tstamp 34287028-a6b1-4aef-9fb4-c680c51945c2))
(pad "2" smd roundrect locked (at 0.75 0 180) (size 0.6 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp e7ea35a3-869d-48c5-a7d3-b63e3696d7c0))
(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 fac8bd40-22c6-4584-8d18-1876e82efc68)
(at 136.25 82 180)
(descr "Capacitor SMD 0603, reflow soldering")
(tags "capacitor 0603")
(property "Sheetfile" "tle5012b encoder breakout.kicad_sch")
(property "Sheetname" "")
(path "/d887cd40-a417-4bd0-a2d6-bb242b16ef2d")
(attr smd)
(fp_text reference "C2" (at 0 -1.1) (layer "F.Fab")
(effects (font (size 0.635 0.635) (thickness 0.1)))
(tstamp 54be5710-54ae-4a3b-acf6-1b14097c297f)
)
(fp_text value "4.7uf" (at 0 1.2) (layer "F.Fab")
(effects (font (size 0.635 0.635) (thickness 0.1)))
(tstamp 038425a6-c2f4-4135-967a-03d577591de8)
)
(fp_line (start 0.35 0.61) (end -0.35 0.61) (layer "F.SilkS") (width 0.13) (tstamp 9c502923-4c07-4106-802a-2a84515ef472))
(fp_line (start -0.35 -0.61) (end 0.35 -0.61) (layer "F.SilkS") (width 0.13) (tstamp a4fc4400-1eac-4919-99f6-b65b65463d08))
(fp_circle (center 0 0) (end 0.2 0) (layer "F.SilkS") (width 0.4) (fill none) (tstamp 90c3227a-b9aa-4804-a5c4-fca816611a28))
(fp_line (start -1.175 -0.725) (end 1.175 -0.725) (layer "F.CrtYd") (width 0.05) (tstamp 54bc516a-56c4-4d7e-b239-9a4750c204f0))
(fp_line (start 1.175 -0.725) (end 1.175 0.725) (layer "F.CrtYd") (width 0.05) (tstamp 8a253d14-152d-405b-b155-3294038d370d))
(fp_line (start -1.175 -0.725) (end -1.175 0.725) (layer "F.CrtYd") (width 0.05) (tstamp a5e1884a-3eea-4d73-9088-c95a78e8c477))
(fp_line (start -1.175 0.725) (end 1.175 0.725) (layer "F.CrtYd") (width 0.05) (tstamp cc30faa9-8b6e-4a88-a41a-a98beba5560f))
(pad "1" smd roundrect locked (at -0.75 0 180) (size 0.6 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "+5V") (pintype "passive") (tstamp b5922c87-9e19-407f-aa07-2e63bd7a3657))
(pad "2" smd roundrect locked (at 0.75 0 180) (size 0.6 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp cfd068b2-1f50-4989-b2e5-52b2093520e0))
(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 "Package_SO:SO-8_3.9x4.9mm_P1.27mm" locked (layer "B.Cu")
(tedit 5D9F72B1) (tstamp a86da3de-3109-4a2c-9ad7-edc5f1a9402f)
(at 138.5 83 180)
(descr "SO, 8 Pin (https://www.nxp.com/docs/en/data-sheet/PCF8523.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "SO SO")
(property "Component Link 1 Description" "Manufacturer URL")
(property "Component Link 1 URL" "http://www.infineon.com/")
(property "Component Link 3 Description" "Package Specification")
(property "Component Link 3 URL" "http://www.infineon.com/dgdl/TLE7259-2GE_DS_rev12.pdf?folderId=db3a3043163797a6011666d32a0c0de1&fileId=db3a3043163797a6011666d4dbb80de2&location=en.Products.Automotive_ICs.Automotive_Transceivers.LIN_Transceivers.DATASHEET.TLE7259-2GE_DS_rev12.pdf")
(property "Datasheet Version" "Rev. 1.0")
(property "Green" "true")
(property "Halogen free" "available")
(property "Interface" "SPI, PWM, HSM, IIF")
(property "Mounting Technology" "Surface Mount")
(property "Package Description" "8-Pin Plastic (Green) Dual Small Outline Package, 4.9 x 3.9 mm Body, 1.27 mm Pitch")
(property "Package Version" "Mar-07")
(property "Packing" "Reel")
(property "Sheetfile" "tle5012b encoder breakout.kicad_sch")
(property "Sheetname" "")
(property "category" "IC")
(property "ciiva ids" "2417005")
(property "imported" "yes")
(property "library id" "1b15dfdf5dbbaf04")
(property "manufacturer" "Infineon")
(property "package" "PG-DSO-8-16")
(property "release date" "1409234811")
(property "vault revision" "E581E8E0-9BC8-4E10-9C4E-2BCCB84CD538")
(path "/d6628fb0-fdad-48e1-b6a4-3ce6fe01e473")
(attr smd)
(fp_text reference "U1" (at 2.1 -3.4) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp f71b1b1a-1fae-47a8-9a5d-60d5b9379376)
)
(fp_text value "TLE5012" (at 0 -3.4) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 91cc2cf5-3e3c-458a-b64f-a6fc457c5103)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab")
(effects (font (size 0.98 0.98) (thickness 0.15)) (justify mirror))
(tstamp a5dcb6e6-628c-458a-8739-764fc3ac13d4)
)
(fp_line (start 0 2.56) (end -3.45 2.56) (layer "B.SilkS") (width 0.12) (tstamp 06c0ea53-be12-41ab-ac9f-56ba523677f0))
(fp_line (start 0 -2.56) (end 1.95 -2.56) (layer "B.SilkS") (width 0.12) (tstamp 26935cf2-92dd-44bd-898e-d900d3a9e96f))
(fp_line (start 0 -2.56) (end -1.95 -2.56) (layer "B.SilkS") (width 0.12) (tstamp 892bea68-3eae-42de-82b1-0de590f4dd90))
(fp_line (start 0 2.56) (end 1.95 2.56) (layer "B.SilkS") (width 0.12) (tstamp d122d195-d33e-4e63-895a-345838bc06a0))
(fp_line (start 3.7 2.7) (end -3.7 2.7) (layer "B.CrtYd") (width 0.05) (tstamp 18bca2d4-2660-4558-91fa-8641ef946f12))
(fp_line (start 3.7 -2.7) (end 3.7 2.7) (layer "B.CrtYd") (width 0.05) (tstamp b9e4c9a8-4d7c-4428-a2ae-c1c705946fea))
(fp_line (start -3.7 -2.7) (end 3.7 -2.7) (layer "B.CrtYd") (width 0.05) (tstamp f182c977-6d53-477c-ae7a-14a12cdd0755))
(fp_line (start -3.7 2.7) (end -3.7 -2.7) (layer "B.CrtYd") (width 0.05) (tstamp f622d66e-7e92-4da3-bb48-ccd990140821))
(fp_line (start 1.95 -2.45) (end -1.95 -2.45) (layer "B.Fab") (width 0.1) (tstamp 1d27e062-2fe5-4fe4-bfe8-b4470c84125f))
(fp_line (start -1.95 -2.45) (end -1.95 1.475) (layer "B.Fab") (width 0.1) (tstamp 45e2cac7-d8cc-4c4f-ae33-f85839622d06))
(fp_line (start -1.95 1.475) (end -0.975 2.45) (layer "B.Fab") (width 0.1) (tstamp eac001fc-89fc-4445-bbf9-7e8904f07eb8))
(fp_line (start 1.95 2.45) (end 1.95 -2.45) (layer "B.Fab") (width 0.1) (tstamp f14799f9-4c78-40bb-9fe6-6df2529286da))
(fp_line (start -0.975 2.45) (end 1.95 2.45) (layer "B.Fab") (width 0.1) (tstamp fa449855-1186-42c3-9e7b-a84ca960cf2e))
(pad "1" smd roundrect locked (at -2.575 1.905 180) (size 1.75 0.6) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 11 "unconnected-(U1-Pad1)") (pinfunction "CLK/IFC") (pintype "open_collector") (tstamp 6e71004b-2730-432e-8a8e-094d6ee9f477))
(pad "2" smd roundrect locked (at -2.575 0.635 180) (size 1.75 0.6) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 8 "/H1{slash}SCK") (pinfunction "SCK") (pintype "input") (tstamp 9abb3928-eff4-4d2e-bffc-94ecbc0e7175))
(pad "3" smd roundrect locked (at -2.575 -0.635 180) (size 1.75 0.6) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 7 "/H3{slash}CS") (pinfunction "CSQ") (pintype "input") (tstamp b302bde1-bb20-4d96-8737-7f5a252849f7))
(pad "4" smd roundrect locked (at -2.575 -1.905 180) (size 1.75 0.6) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 3 "Net-(R2-Pad2)") (pinfunction "DATA") (pintype "bidirectional") (tstamp a7768e09-2f66-42c8-a41f-29be950c7ed9))
(pad "5" smd roundrect locked (at 2.575 -1.905 180) (size 1.75 0.6) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 10 "unconnected-(U1-Pad5)") (pinfunction "IFA") (pintype "open_collector") (tstamp d5320e8e-b74a-443b-a16a-6b256d204c3a))
(pad "6" smd roundrect locked (at 2.575 -0.635 180) (size 1.75 0.6) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 5 "+5V") (pinfunction "VDD") (pintype "power_in") (tstamp 63551868-4c84-405e-9a51-b81de77aea7c))
(pad "7" smd roundrect locked (at 2.575 0.635 180) (size 1.75 0.6) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp a3f380c5-d5d5-444d-96b3-2df2b7778b11))
(pad "8" smd roundrect locked (at 2.575 1.905 180) (size 1.75 0.6) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 9 "unconnected-(U1-Pad8)") (pinfunction "IFB") (pintype "open_collector") (tstamp adeb9588-17f8-4c84-b44e-4b0249957fe9))
(model "${KISYS3DMOD}/Package_SO.3dshapes/SO-8_3.9x4.9mm_P1.27mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(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 "TLE5012B\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 88.25) (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 141.75 85.5) (layer "F.SilkS") (tstamp b29e10d5-2512-4e6c-8812-97ff8aa8ae32)
(effects (font (size 1 1) (thickness 0.2)))
)
(gr_text "TLE5012\nmount" (at 132 78.5) (layer "F.SilkS") (tstamp c028f2d8-4534-4f65-b52c-ef9a56c3d9c4)
(effects (font (size 1 1) (thickness 0.2)))
)
(gr_text "TEMP\n10KΩ\n NTC" (at 141.75 77.5) (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 135.375 85.5) (layer "F.SilkS") (tstamp f1403934-6abd-41d0-a0d3-8772a6d815a9)
(effects (font (size 1 1) (thickness 0.2)))
)
(gr_text "PWR" (at 142.5 81.75 90) (layer "F.SilkS") (tstamp f47d5a87-e9a5-4407-a78e-3350436e40da)
(effects (font (size 1 1) (thickness 0.2)))
)
(segment (start 137.875 86.375) (end 139.75 84.5) (width 0.25) (layer "F.Cu") (net 1) (tstamp 572bb5f8-953b-4ead-8144-b3888a316d57))
(segment (start 137.875 91.95) (end 137.875 87.05) (width 0.25) (layer "F.Cu") (net 1) (tstamp 80b2c343-0cde-4b39-aa3d-482efae8cd5c))
(segment (start 137.875 87.05) (end 137.875 86.375) (width 0.25) (layer "F.Cu") (net 1) (tstamp ecce6242-9df8-4311-a408-187db95bdd83))
(segment (start 137.875 77.6) (end 136.9 77.6) (width 0.25) (layer "F.Cu") (net 2) (tstamp 16bceacc-6a7e-4219-a743-d2d847b543d9))
(segment (start 134.25 84.125) (end 134.25 83.75) (width 0.25) (layer "F.Cu") (net 2) (tstamp 29e78f84-5a50-489f-ac27-f0bd42456363))
(segment (start 134.25 81.225) (end 134.25 83.75) (width 0.25) (layer "F.Cu") (net 2) (tstamp 54602462-3922-4f37-9525-299f7ad36354))
(segment (start 135.5 80.25) (end 135.5 82) (width 0.25) (layer "F.Cu") (net 2) (tstamp 75ae1ae2-ef5c-420a-9f6c-e9ea4e9010b4))
(segment (start 134.575 87.05) (end 134.25 86.725) (width 0.25) (layer "F.Cu") (net 2) (tstamp a4da3a4a-88f5-45e1-a029-234b6ed0e288))
(segment (start 134.25 86.725) (end 134.25 86.25) (width 0.25) (layer "F.Cu") (net 2) (tstamp b374a000-e284-4ba3-a046-eb129346ff5a))
(segment (start 134.25 80.25) (end 134.25 81.225) (width 0.25) (layer "F.Cu") (net 2) (tstamp b753a623-07a9-434f-ad1e-bd8414cbff98))
(segment (start 135.375 87.05) (end 134.575 87.05) (width 0.25) (layer "F.Cu") (net 2) (tstamp d6a587b8-4f6e-4345-8cbe-a2b44e227196))
(segment (start 134.25 86.25) (end 134.25 84.125) (width 0.25) (layer "F.Cu") (net 2) (tstamp daf37c72-96f9-4e60-8679-c69b5a6183ff))
(segment (start 141 82.5) (end 143 82.5) (width 0.25) (layer "F.Cu") (net 2) (tstamp e0cb1dbb-ecf5-47fd-8d04-5cbbb1bdcfbd))
(segment (start 136.9 77.6) (end 134.25 80.25) (width 0.25) (layer "F.Cu") (net 2) (tstamp e40fab55-6b45-4f3a-8123-7ddd39c5be7b))
(segment (start 135.375 91.95) (end 135.375 87.05) (width 0.25) (layer "F.Cu") (net 2) (tstamp efb85ca1-c7d7-44eb-8a6a-31bdd4ee3ff3))
(via (at 143 82.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 2) (tstamp 5406a016-9811-43b3-b002-df1f6180bcd2))
(via (at 134.25 86.25) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 2) (tstamp 7940c7a1-d1a9-4496-b4be-309554ac9a76))
(segment (start 141.25 84.5) (end 142.25 84.5) (width 0.25) (layer "F.Cu") (net 3) (tstamp d4e5ac1b-6e8d-4112-ad01-13688eb0d903))
(segment (start 142.25 84.5) (end 142.625 84.875) (width 0.25) (layer "F.Cu") (net 3) (tstamp f57cd312-0634-420e-8f4c-a1e114a8baad))
(via (at 142.625 84.875) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 3) (tstamp e129587c-97c2-4eec-b382-9272fd90708f))
(segment (start 141.075 84.905) (end 142.595 84.905) (width 0.25) (layer "B.Cu") (net 3) (tstamp 1ce0bea4-49ba-4047-8d9f-5f918207d828))
(segment (start 142.595 84.905) (end 142.625 84.875) (width 0.25) (layer "B.Cu") (net 3) (tstamp b8969ba7-abc1-4d05-9796-519d840b4290))
(segment (start 141 81) (end 139 81) (width 0.25) (layer "F.Cu") (net 4) (tstamp 469b9ddc-9758-4257-a598-5ecad3dad8c1))
(segment (start 137 82) (end 137 80.25) (width 0.25) (layer "F.Cu") (net 5) (tstamp 0a81b705-7797-482c-ae69-84ca865db828))
(segment (start 141.625 91.95) (end 141.625 87.05) (width 0.25) (layer "F.Cu") (net 5) (tstamp 12428c27-1789-4407-9b85-0ac6bd39d25f))
(segment (start 141.95 87.05) (end 142.5 86.5) (width 0.25) (layer "F.Cu") (net 5) (tstamp 397177a1-b2c0-409e-85e6-8bda6ffb479c))
(segment (start 138.125 82.5) (end 137.375 83.25) (width 0.25) (layer "F.Cu") (net 5) (tstamp 4d77bc72-cfb9-454c-a40e-c1c43a4276fb))
(segment (start 137 82) (end 137 82.875) (width 0.25) (layer "F.Cu") (net 5) (tstamp 4e153609-973a-4409-8123-dacd42fb01bb))
(segment (start 139 82.5) (end 138.125 82.5) (width 0.25) (layer "F.Cu") (net 5) (tstamp 67f80ea7-9434-4f91-aa35-dee034b8c526))
(segment (start 141.625 87.05) (end 141.95 87.05) (width 0.25) (layer "F.Cu") (net 5) (tstamp a4b23a01-3dd7-4121-8bf5-eeff227706d5))
(segment (start 137.3 83.325) (end 137.3 84) (width 0.25) (layer "F.Cu") (net 5) (tstamp be5fdc1a-7d5a-4e28-b5cb-c0d6b5782152))
(segment (start 137.375 83.25) (end 137.3 83.325) (width 0.25) (layer "F.Cu") (net 5) (tstamp c0fd5b66-ca27-4e5f-b3d3-2bd38bb9aca0))
(segment (start 137 82.875) (end 137.375 83.25) (width 0.25) (layer "F.Cu") (net 5) (tstamp e21fe824-eee1-4afa-9a11-1cca40d4cdb6))
(via (at 137.375 83.25) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 5) (tstamp 4eecfa27-54c2-4c75-b7fa-5397358d6de6))
(via (at 142.5 86.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 5) (tstamp cc156bf6-4471-404c-a2ef-09884afd4e24))
(segment (start 138 87) (end 142 87) (width 0.25) (layer "B.Cu") (net 5) (tstamp 34459913-1bba-452d-89bb-86a803816060))
(segment (start 136.99 83.635) (end 137.375 83.25) (width 0.25) (layer "B.Cu") (net 5) (tstamp 3839bd9d-cfc1-47f8-ac89-510d7d6641d0))
(segment (start 137.5 86.5) (end 138 87) (width 0.25) (layer "B.Cu") (net 5) (tstamp 70d289b4-b2fe-4c66-91c1-6abd0fd6efe0))
(segment (start 137.375 83.25) (end 137.5 83.375) (width 0.25) (layer "B.Cu") (net 5) (tstamp 8e40862b-66d0-4194-87fe-b0765e7b7682))
(segment (start 135.925 83.635) (end 136.99 83.635) (width 0.25) (layer "B.Cu") (net 5) (tstamp 90dac3e3-3a46-467a-b4fb-707e4b51a4a7))
(segment (start 142 87) (end 142.5 86.5) (width 0.25) (layer "B.Cu") (net 5) (tstamp caa5a2e6-be66-4a8a-a2b7-6ee0b79c9f9d))
(segment (start 141.075 81.095) (end 139.53 81.095) (width 0.25) (layer "B.Cu") (net 5) (tstamp f0a402e2-b9a5-4fb7-9ed2-23f777235232))
(segment (start 137.5 83.375) (end 137.5 86.5) (width 0.25) (layer "B.Cu") (net 5) (tstamp fd913c50-1249-4cb7-8e99-eb43330a8104))
(segment (start 139.53 81.095) (end 137.375 83.25) (width 0.25) (layer "B.Cu") (net 5) (tstamp ff59e029-8580-4abc-b01f-f16cd156bb32))
(segment (start 140.375 87.05) (end 140.375 88.375) (width 0.25) (layer "F.Cu") (net 6) (tstamp 9fc99c3a-7149-4a48-b76e-f368b08ee0b7))
(segment (start 139.125 77.6) (end 139.125 79.375) (width 0.25) (layer "F.Cu") (net 6) (tstamp b37a315c-d9fe-42ed-a0b7-74e7237fcdf8))
(segment (start 140.375 91.95) (end 140.375 87.05) (width 0.25) (layer "F.Cu") (net 6) (tstamp b9bb9acc-0508-4419-92e0-8ac9c8e3abb7))
(segment (start 140.375 88.375) (end 140.75 88.75) (width 0.25) (layer "F.Cu") (net 6) (tstamp bb74034c-587b-4a13-a786-3bb17f9e63e4))
(via (at 139.125 79.375) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 6) (tstamp 4e6b9200-a72b-41bc-bb99-d9e797a56ba4))
(via (at 140.75 88.75) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 6) (tstamp f82b5d87-c021-4086-bdae-ef98d497740e))
(segment (start 139.625 87.625) (end 134.25 87.625) (width 0.25) (layer "B.Cu") (net 6) (tstamp 042d69dc-311f-4ef6-9e39-fd31228d18da))
(segment (start 134.375 84.625) (end 134.375 80.75) (width 0.25) (layer "B.Cu") (net 6) (tstamp 288799f3-b8ad-4087-a447-3c36f1c2dbb7))
(segment (start 140.75 88.75) (end 139.625 87.625) (width 0.25) (layer "B.Cu") (net 6) (tstamp 45595e2e-af36-41ad-b25d-46955328f1cf))
(segment (start 133.375 85.625) (end 134.375 84.625) (width 0.25) (layer "B.Cu") (net 6) (tstamp 5ecf2b09-9006-407c-99a8-a2388a91729e))
(segment (start 133.375 86.75) (end 133.375 85.625) (width 0.25) (layer "B.Cu") (net 6) (tstamp 610dce13-f6e9-488f-9192-e28dcbd8542f))
(segment (start 134.25 87.625) (end 133.375 86.75) (width 0.25) (layer "B.Cu") (net 6) (tstamp 7a8b7665-048f-47f1-9a42-66cdae43f11e))
(segment (start 134.375 80.75) (end 135.75 79.375) (width 0.25) (layer "B.Cu") (net 6) (tstamp 81fa730e-1ea1-4359-8bcd-4a73d92df813))
(segment (start 135.75 79.375) (end 139.125 79.375) (width 0.25) (layer "B.Cu") (net 6) (tstamp e637398a-c28b-4367-bdba-9626fa9374db))
(segment (start 139 83.625) (end 139 83.75) (width 0.25) (layer "F.Cu") (net 7) (tstamp 79ea04c5-e319-46d6-b6d5-5a5da5ad6e21))
(segment (start 139 83.75) (end 136.625 86.125) (width 0.25) (layer "F.Cu") (net 7) (tstamp bf107514-ad8e-4af4-861b-cf6ec0680018))
(segment (start 136.625 91.95) (end 136.625 87.05) (width 0.25) (layer "F.Cu") (net 7) (tstamp e8a89631-8305-4eb3-be43-6d563af14ff0))
(segment (start 136.625 86.125) (end 136.625 87.05) (width 0.25) (layer "F.Cu") (net 7) (tstamp ea55739f-b555-4bba-bb52-32f644b7cc4a))
(via (at 139 83.625) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 7) (tstamp 35e16958-cc82-4083-a3d2-ffedafc82d10))
(segment (start 139.01 83.635) (end 141.075 83.635) (width 0.25) (layer "B.Cu") (net 7) (tstamp 57910950-b54e-4e66-a675-a9e6e45b4484))
(segment (start 139 83.625) (end 139.01 83.635) (width 0.25) (layer "B.Cu") (net 7) (tstamp ce0f225e-6a7d-4c90-9e47-417031f6f1ca))
(segment (start 139.125 87.05) (end 139.125 86.375) (width 0.25) (layer "F.Cu") (net 8) (tstamp 448904f3-eaed-4054-a4e8-15bbd8f81134))
(segment (start 139.125 86.375) (end 139.5 86) (width 0.25) (layer "F.Cu") (net 8) (tstamp 59f577c7-ef18-4c9e-b4f8-33b1d9145d6f))
(segment (start 139.125 91.95) (end 139.125 87.05) (width 0.25) (layer "F.Cu") (net 8) (tstamp 6a68f9d5-8d42-4959-958d-3aba4a5da588))
(via (at 139.5 86) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 8) (tstamp 7a3a3447-229f-4c76-8195-036873e93f45))
(segment (start 139.01 82.365) (end 138.25 83.125) (width 0.25) (layer "B.Cu") (net 8) (tstamp 0a5c5b48-8b30-4892-a24f-5643c23b87d5))
(segment (start 141.075 82.365) (end 139.01 82.365) (width 0.25) (layer "B.Cu") (net 8) (tstamp 5683f78c-4d7a-462a-8cbc-8dcc3229e4be))
(segment (start 138.5 85) (end 139.5 86) (width 0.25) (layer "B.Cu") (net 8) (tstamp 9a65d66f-215d-4bef-be1c-21fdc477bda0))
(segment (start 138.25 83.125) (end 138.25 84.75) (width 0.25) (layer "B.Cu") (net 8) (tstamp 9cc46059-45c1-4595-8334-1c063e84cac6))
(segment (start 138.25 84.75) (end 138.5 85) (width 0.25) (layer "B.Cu") (net 8) (tstamp c0b384f6-1ff2-418b-9556-0a0bf95c4a42))
(zone (net 2) (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 138.67954 71.802044)
(xy 139.1099 71.82121)
(xy 139.316608 71.830416)
(xy 139.323826 71.830945)
(xy 139.564636 71.855618)
(xy 139.958213 71.895943)
(xy 139.965407 71.89689)
(xy 140.595 71.998298)
(xy 140.602128 71.999658)
(xy 140.861438 72.056908)
(xy 141.224829 72.137137)
(xy 141.231863 72.138904)
(xy 141.845611 72.311999)
(xy 141.852534 72.314169)
(xy 142.418025 72.509435)
(xy 142.455302 72.522307)
(xy 142.462085 72.52487)
(xy 142.723091 72.632182)
(xy 143.051898 72.767371)
(xy 143.058526 72.770323)
(xy 143.633382 73.046364)
(xy 143.639812 73.049683)
(xy 144.197842 73.358368)
(xy 144.204062 73.362047)
(xy 144.442768 73.512658)
(xy 144.743393 73.702338)
(xy 144.749416 73.706385)
(xy 145.268252 74.077151)
(xy 145.274032 74.081538)
(xy 145.770677 74.481565)
(xy 145.776194 74.486278)
(xy 146.248965 74.91421)
(xy 146.254202 74.919232)
(xy 146.451672 75.119828)
(xy 146.701568 75.373681)
(xy 146.70649 75.378977)
(xy 146.897196 75.596435)
(xy 147.126972 75.858444)
(xy 147.131597 75.864035)
(xy 147.52376 76.366883)
(xy 147.528051 76.372724)
(xy 147.890641 76.897348)
(xy 147.894572 76.903402)
(xy 148.041895 77.14523)
(xy 148.226348 77.448007)
(xy 148.229943 77.454309)
(xy 148.389881 77.754475)
(xy 148.529822 78.017113)
(xy 148.533048 78.023613)
(xy 148.800019 78.60272)
(xy 148.802866 78.609394)
(xy 149.036066 79.202925)
(xy 149.038524 79.209752)
(xy 149.208823 79.729243)
(xy 149.237172 79.815722)
(xy 149.23923 79.822669)
(xy 149.311208 80.094135)
(xy 149.402666 80.439073)
(xy 149.404323 80.446137)
(xy 149.532007 81.070933)
(xy 149.533254 81.078081)
(xy 149.624757 81.709169)
(xy 149.625591 81.716377)
(xy 149.680615 82.351691)
(xy 149.681033 82.358935)
(xy 149.692139 82.744477)
(xy 149.699052 82.98443)
(xy 149.699443 82.998015)
(xy 149.699495 83.001963)
(xy 149.699423 83.029502)
(xy 149.699351 83.056678)
(xy 149.699278 83.060633)
(xy 149.677523 83.699601)
(xy 149.677067 83.706843)
(xy 149.618719 84.341845)
(xy 149.617848 84.349049)
(xy 149.523038 84.979674)
(xy 149.521753 84.986815)
(xy 149.390802 85.610919)
(xy 149.389108 85.617975)
(xy 149.222449 86.233507)
(xy 149.220352 86.240453)
(xy 149.018532 86.845381)
(xy 149.016038 86.852195)
(xy 148.779738 87.444486)
(xy 148.776856 87.451146)
(xy 148.50685 88.028859)
(xy 148.50359 88.035341)
(xy 148.200776 88.596555)
(xy 148.197149 88.602837)
(xy 148.076551 88.798484)
(xy 147.862529 89.145692)
(xy 147.858545 89.151757)
(xy 147.493233 89.674445)
(xy 147.488907 89.68027)
(xy 147.094112 90.181066)
(xy 147.089458 90.186631)
(xy 146.66648 90.663882)
(xy 146.66153 90.669152)
(xy 146.211792 91.121252)
(xy 146.206538 91.126239)
(xy 145.80046 91.489953)
(xy 145.731503 91.551716)
(xy 145.725968 91.556393)
(xy 145.294767 91.9)
(xy 145.227245 91.953806)
(xy 145.221448 91.958159)
(xy 145.025049 92.09696)
(xy 144.700673 92.326206)
(xy 144.69463 92.330221)
(xy 144.153537 92.667677)
(xy 144.147272 92.671338)
(xy 143.587644 92.977092)
(xy 143.581178 92.980386)
(xy 143.440486 93.047041)
(xy 143.004893 93.253409)
(xy 142.998265 93.25632)
(xy 142.771226 93.34828)
(xy 142.407193 93.495729)
(xy 142.400392 93.498258)
(xy 141.796537 93.703239)
(xy 141.789628 93.705365)
(xy 141.174944 93.875254)
(xy 141.16792 93.876979)
(xy 140.544491 94.0112)
(xy 140.537358 94.012522)
(xy 139.90724 94.110633)
(xy 139.900059 94.11154)
(xy 139.505446 94.149884)
(xy 139.265358 94.173213)
(xy 139.258119 94.173707)
(xy 138.620906 94.198743)
(xy 138.61365 94.198819)
(xy 137.976057 94.187133)
(xy 137.968809 94.186791)
(xy 137.46976 94.14883)
(xy 137.332953 94.138423)
(xy 137.32575 94.137667)
(xy 137.124473 94.110632)
(xy 136.69371 94.052773)
(xy 136.686549 94.0516)
(xy 136.260301 93.969132)
(xy 136.060457 93.930467)
(xy 136.053391 93.928888)
(xy 135.435294 93.771911)
(xy 135.428351 93.769933)
(xy 134.820317 93.577637)
(xy 134.813468 93.575252)
(xy 134.611312 93.498258)
(xy 134.217527 93.34828)
(xy 134.210823 93.345503)
(xy 133.870273 93.192811)
(xy 133.62894 93.084605)
(xy 133.62241 93.081448)
(xy 133.572945 93.055753)
(xy 133.056495 92.787478)
(xy 133.050175 92.783961)
(xy 132.910401 92.700804)
(xy 134.775001 92.700804)
(xy 134.77528 92.706725)
(xy 134.777256 92.727631)
(xy 134.780521 92.742516)
(xy 134.819694 92.854064)
(xy 134.828406 92.87052)
(xy 134.897616 92.964221)
(xy 134.910779 92.977384)
(xy 135.00448 93.046594)
(xy 135.020936 93.055306)
(xy 135.132479 93.094477)
(xy 135.147373 93.097745)
(xy 135.168281 93.099721)
(xy 135.174192 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 93.081884)
(xy 135.525 93.081884)
(xy 135.529475 93.097123)
(xy 135.530865 93.098328)
(xy 135.538548 93.099999)
(xy 135.575804 93.099999)
(xy 135.581725 93.09972)
(xy 135.602631 93.097744)
(xy 135.617516 93.094479)
(xy 135.729064 93.055306)
(xy 135.74552 93.046594)
(xy 135.839221 92.977384)
(xy 135.852384 92.964221)
(xy 135.898338 92.902005)
(xy 135.954899 92.859095)
(xy 136.025681 92.853575)
(xy 136.088211 92.887199)
(xy 136.10104 92.902006)
(xy 136.147255 92.964576)
(xy 136.147258 92.964579)
(xy 136.15285 92.97215)
(xy 136.160421 92.977742)
(xy 136.254243 93.047041)
(xy 136.254246 93.047042)
(xy 136.261816 93.052634)
(xy 136.389631 93.097519)
(xy 136.397277 93.098242)
(xy 136.397278 93.098242)
(xy 136.403248 93.098806)
(xy 136.421166 93.1005)
(xy 136.828834 93.1005)
(xy 136.846752 93.098806)
(xy 136.852722 93.098242)
(xy 136.852723 93.098242)
(xy 136.860369 93.097519)
(xy 136.988184 93.052634)
(xy 136.995754 93.047042)