-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathUSB-LED-Otter.kicad_pcb
1209 lines (1187 loc) · 75.8 KB
/
USB-LED-Otter.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 20171130) (host pcbnew 5.1.4+dfsg1-1)
(general
(thickness 1.6)
(drawings 18)
(tracks 185)
(zones 0)
(modules 14)
(nets 40)
)
(page A4)
(layers
(0 F.Cu signal)
(31 B.Cu signal)
(32 B.Adhes user)
(33 F.Adhes user)
(34 B.Paste user)
(35 F.Paste user)
(36 B.SilkS user)
(37 F.SilkS user)
(38 B.Mask user)
(39 F.Mask user hide)
(40 Dwgs.User user)
(41 Cmts.User user)
(42 Eco1.User user)
(43 Eco2.User user)
(44 Edge.Cuts user)
(45 Margin user)
(46 B.CrtYd user)
(47 F.CrtYd user)
(48 B.Fab user hide)
(49 F.Fab user hide)
)
(setup
(last_trace_width 0.25)
(user_trace_width 0.157)
(user_trace_width 0.2)
(user_trace_width 0.8)
(user_trace_width 1)
(user_trace_width 1.2)
(trace_clearance 0.16)
(zone_clearance 0.2)
(zone_45_only yes)
(trace_min 0.15)
(via_size 0.6)
(via_drill 0.3)
(via_min_size 0.4)
(via_min_drill 0.3)
(user_via 0.6 0.3)
(uvia_size 0.3)
(uvia_drill 0.1)
(uvias_allowed no)
(uvia_min_size 0.2)
(uvia_min_drill 0.1)
(edge_width 0.15)
(segment_width 0.2)
(pcb_text_width 0.3)
(pcb_text_size 1.5 1.5)
(mod_edge_width 0.15)
(mod_text_size 0.45 0.45)
(mod_text_width 0.1125)
(pad_size 1.524 1.524)
(pad_drill 0.762)
(pad_to_mask_clearance 0)
(solder_mask_min_width 0.25)
(aux_axis_origin 0 0)
(visible_elements FFFFFF7F)
(pcbplotparams
(layerselection 0x010fc_ffffffff)
(usegerberextensions true)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(excludeedgelayer true)
(linewidth 0.100000)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(padsonsilk false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "gerber/"))
)
(net 0 "")
(net 1 GND)
(net 2 +3V3)
(net 3 +5V)
(net 4 "Net-(U2-Pad3)")
(net 5 "Net-(U2-Pad4)")
(net 6 "Net-(U2-Pad5)")
(net 7 "Net-(U2-Pad6)")
(net 8 "Net-(U2-Pad7)")
(net 9 "Net-(U2-Pad10)")
(net 10 "Net-(U2-Pad11)")
(net 11 "Net-(U2-Pad12)")
(net 12 "Net-(U2-Pad13)")
(net 13 "Net-(U2-Pad14)")
(net 14 "Net-(U2-Pad15)")
(net 15 "Net-(U2-Pad16)")
(net 16 "Net-(U2-Pad17)")
(net 17 "Net-(U2-Pad18)")
(net 18 "Net-(U2-Pad19)")
(net 19 "Net-(U2-Pad20)")
(net 20 "Net-(U2-Pad21)")
(net 21 "Net-(U2-Pad22)")
(net 22 "Net-(U2-Pad25)")
(net 23 "Net-(U2-Pad26)")
(net 24 "Net-(U2-Pad27)")
(net 25 "Net-(U2-Pad28)")
(net 26 "Net-(U2-Pad29)")
(net 27 "Net-(U2-Pad30)")
(net 28 "Net-(U2-Pad31)")
(net 29 "Net-(U2-Pad38)")
(net 30 USB_N)
(net 31 USB_P)
(net 32 "Net-(R1-Pad1)")
(net 33 LED)
(net 34 "Net-(U2-Pad2)")
(net 35 SCL)
(net 36 SDA)
(net 37 SCK)
(net 38 SWDIO)
(net 39 SWCLK)
(net_class Default "This is the default net class."
(clearance 0.16)
(trace_width 0.25)
(via_dia 0.6)
(via_drill 0.3)
(uvia_dia 0.3)
(uvia_drill 0.1)
(diff_pair_width 0.157)
(diff_pair_gap 0.2)
(add_net +3V3)
(add_net +5V)
(add_net GND)
(add_net LED)
(add_net "Net-(R1-Pad1)")
(add_net "Net-(U2-Pad10)")
(add_net "Net-(U2-Pad11)")
(add_net "Net-(U2-Pad12)")
(add_net "Net-(U2-Pad13)")
(add_net "Net-(U2-Pad14)")
(add_net "Net-(U2-Pad15)")
(add_net "Net-(U2-Pad16)")
(add_net "Net-(U2-Pad17)")
(add_net "Net-(U2-Pad18)")
(add_net "Net-(U2-Pad19)")
(add_net "Net-(U2-Pad2)")
(add_net "Net-(U2-Pad20)")
(add_net "Net-(U2-Pad21)")
(add_net "Net-(U2-Pad22)")
(add_net "Net-(U2-Pad25)")
(add_net "Net-(U2-Pad26)")
(add_net "Net-(U2-Pad27)")
(add_net "Net-(U2-Pad28)")
(add_net "Net-(U2-Pad29)")
(add_net "Net-(U2-Pad3)")
(add_net "Net-(U2-Pad30)")
(add_net "Net-(U2-Pad31)")
(add_net "Net-(U2-Pad38)")
(add_net "Net-(U2-Pad4)")
(add_net "Net-(U2-Pad5)")
(add_net "Net-(U2-Pad6)")
(add_net "Net-(U2-Pad7)")
(add_net SCK)
(add_net SCL)
(add_net SDA)
(add_net SWCLK)
(add_net SWDIO)
(add_net USB_N)
(add_net USB_P)
)
(module otter:QFN-48-1EP_7x7mm_P0.5mm_EP2.6x2.6mm (layer B.Cu) (tedit 5DAD8974) (tstamp 5DD2E4C7)
(at 56.09 55.6)
(descr "QFN, 48 Pin (http://www.st.com/resource/en/datasheet/stm32f042k6.pdf#page=94), generated with kicad-footprint-generator ipc_dfn_qfn_generator.py")
(tags "QFN DFN_QFN")
(path /5DD36C6F)
(attr smd)
(fp_text reference U2 (at 4.17 3.44) (layer B.SilkS)
(effects (font (size 0.45 0.45) (thickness 0.1)) (justify mirror))
)
(fp_text value STM32F072CBUx (at 0 -4.82) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text user %R (at 0 0) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start 4.12 4.12) (end -4.12 4.12) (layer B.CrtYd) (width 0.05))
(fp_line (start 4.12 -4.12) (end 4.12 4.12) (layer B.CrtYd) (width 0.05))
(fp_line (start -4.12 -4.12) (end 4.12 -4.12) (layer B.CrtYd) (width 0.05))
(fp_line (start -4.12 4.12) (end -4.12 -4.12) (layer B.CrtYd) (width 0.05))
(fp_line (start -3.5 2.5) (end -2.5 3.5) (layer B.Fab) (width 0.1))
(fp_line (start -3.5 -3.5) (end -3.5 2.5) (layer B.Fab) (width 0.1))
(fp_line (start 3.5 -3.5) (end -3.5 -3.5) (layer B.Fab) (width 0.1))
(fp_line (start 3.5 3.5) (end 3.5 -3.5) (layer B.Fab) (width 0.1))
(fp_line (start -2.5 3.5) (end 3.5 3.5) (layer B.Fab) (width 0.1))
(fp_line (start -3.135 3.61) (end -3.61 3.61) (layer B.SilkS) (width 0.12))
(fp_line (start 3.61 -3.61) (end 3.61 -3.135) (layer B.SilkS) (width 0.12))
(fp_line (start 3.135 -3.61) (end 3.61 -3.61) (layer B.SilkS) (width 0.12))
(fp_line (start -3.61 -3.61) (end -3.61 -3.135) (layer B.SilkS) (width 0.12))
(fp_line (start -3.135 -3.61) (end -3.61 -3.61) (layer B.SilkS) (width 0.12))
(fp_line (start 3.61 3.61) (end 3.61 3.135) (layer B.SilkS) (width 0.12))
(fp_line (start 3.135 3.61) (end 3.61 3.61) (layer B.SilkS) (width 0.12))
(pad 48 smd roundrect (at -2.75 3.4375) (size 0.25 0.875) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 2 +3V3))
(pad 47 smd roundrect (at -2.25 3.4375) (size 0.25 0.875) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 1 GND))
(pad 46 smd roundrect (at -1.75 3.4375) (size 0.25 0.875) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 32 "Net-(R1-Pad1)"))
(pad 45 smd roundrect (at -1.25 3.4375) (size 0.25 0.875) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 33 LED))
(pad 44 smd roundrect (at -0.75 3.4375) (size 0.25 0.875) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 32 "Net-(R1-Pad1)"))
(pad 43 smd roundrect (at -0.25 3.4375) (size 0.25 0.875) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 36 SDA))
(pad 42 smd roundrect (at 0.25 3.4375) (size 0.25 0.875) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 35 SCL))
(pad 41 smd roundrect (at 0.75 3.4375) (size 0.25 0.875) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 35 SCL))
(pad 40 smd roundrect (at 1.25 3.4375) (size 0.25 0.875) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 36 SDA))
(pad 39 smd roundrect (at 1.75 3.4375) (size 0.25 0.875) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 37 SCK))
(pad 38 smd roundrect (at 2.25 3.4375) (size 0.25 0.875) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 29 "Net-(U2-Pad38)"))
(pad 37 smd roundrect (at 2.75 3.4375) (size 0.25 0.875) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 39 SWCLK))
(pad 36 smd roundrect (at 3.4375 2.75) (size 0.875 0.25) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 2 +3V3))
(pad 35 smd roundrect (at 3.4375 2.25) (size 0.875 0.25) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 1 GND))
(pad 34 smd roundrect (at 3.4375 1.75) (size 0.875 0.25) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 38 SWDIO))
(pad 33 smd roundrect (at 3.4375 1.25) (size 0.875 0.25) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 31 USB_P))
(pad 32 smd roundrect (at 3.4375 0.75) (size 0.875 0.25) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 30 USB_N))
(pad 31 smd roundrect (at 3.4375 0.25) (size 0.875 0.25) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 28 "Net-(U2-Pad31)"))
(pad 30 smd roundrect (at 3.4375 -0.25) (size 0.875 0.25) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 27 "Net-(U2-Pad30)"))
(pad 29 smd roundrect (at 3.4375 -0.75) (size 0.875 0.25) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 26 "Net-(U2-Pad29)"))
(pad 28 smd roundrect (at 3.4375 -1.25) (size 0.875 0.25) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 25 "Net-(U2-Pad28)"))
(pad 27 smd roundrect (at 3.4375 -1.75) (size 0.875 0.25) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 24 "Net-(U2-Pad27)"))
(pad 26 smd roundrect (at 3.4375 -2.25) (size 0.875 0.25) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 23 "Net-(U2-Pad26)"))
(pad 25 smd roundrect (at 3.4375 -2.75) (size 0.875 0.25) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 22 "Net-(U2-Pad25)"))
(pad 24 smd roundrect (at 2.75 -3.4375) (size 0.25 0.875) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 2 +3V3))
(pad 23 smd roundrect (at 2.25 -3.4375) (size 0.25 0.875) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 1 GND))
(pad 22 smd roundrect (at 1.75 -3.4375) (size 0.25 0.875) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 21 "Net-(U2-Pad22)"))
(pad 21 smd roundrect (at 1.25 -3.4375) (size 0.25 0.875) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 20 "Net-(U2-Pad21)"))
(pad 20 smd roundrect (at 0.75 -3.4375) (size 0.25 0.875) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 19 "Net-(U2-Pad20)"))
(pad 19 smd roundrect (at 0.25 -3.4375) (size 0.25 0.875) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 18 "Net-(U2-Pad19)"))
(pad 18 smd roundrect (at -0.25 -3.4375) (size 0.25 0.875) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 17 "Net-(U2-Pad18)"))
(pad 17 smd roundrect (at -0.75 -3.4375) (size 0.25 0.875) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 16 "Net-(U2-Pad17)"))
(pad 16 smd roundrect (at -1.25 -3.4375) (size 0.25 0.875) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 15 "Net-(U2-Pad16)"))
(pad 15 smd roundrect (at -1.75 -3.4375) (size 0.25 0.875) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 14 "Net-(U2-Pad15)"))
(pad 14 smd roundrect (at -2.25 -3.4375) (size 0.25 0.875) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 13 "Net-(U2-Pad14)"))
(pad 13 smd roundrect (at -2.75 -3.4375) (size 0.25 0.875) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 12 "Net-(U2-Pad13)"))
(pad 12 smd roundrect (at -3.4375 -2.75) (size 0.875 0.25) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 11 "Net-(U2-Pad12)"))
(pad 11 smd roundrect (at -3.4375 -2.25) (size 0.875 0.25) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 10 "Net-(U2-Pad11)"))
(pad 10 smd roundrect (at -3.4375 -1.75) (size 0.875 0.25) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 9 "Net-(U2-Pad10)"))
(pad 9 smd roundrect (at -3.4375 -1.25) (size 0.875 0.25) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 2 +3V3))
(pad 8 smd roundrect (at -3.4375 -0.75) (size 0.875 0.25) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 1 GND))
(pad 7 smd roundrect (at -3.4375 -0.25) (size 0.875 0.25) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 8 "Net-(U2-Pad7)"))
(pad 6 smd roundrect (at -3.4375 0.25) (size 0.875 0.25) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 7 "Net-(U2-Pad6)"))
(pad 5 smd roundrect (at -3.4375 0.75) (size 0.875 0.25) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 6 "Net-(U2-Pad5)"))
(pad 4 smd roundrect (at -3.4375 1.25) (size 0.875 0.25) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 5 "Net-(U2-Pad4)"))
(pad 3 smd roundrect (at -3.4375 1.75) (size 0.875 0.25) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 4 "Net-(U2-Pad3)"))
(pad 2 smd roundrect (at -3.4375 2.25) (size 0.875 0.25) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 34 "Net-(U2-Pad2)"))
(pad 1 smd roundrect (at -3.4375 2.75) (size 0.875 0.25) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 2 +3V3))
(pad "" smd roundrect (at 0.7 -0.7) (size 1.13 1.13) (layers B.Paste) (roundrect_rratio 0.221239))
(pad "" smd roundrect (at 0.7 0.7) (size 1.13 1.13) (layers B.Paste) (roundrect_rratio 0.221239))
(pad "" smd roundrect (at -0.7 -0.7) (size 1.13 1.13) (layers B.Paste) (roundrect_rratio 0.221239))
(pad "" smd roundrect (at -0.7 0.7) (size 1.13 1.13) (layers B.Paste) (roundrect_rratio 0.221239))
(pad 49 smd roundrect (at 0 0) (size 2.6 2.6) (layers B.Cu B.Mask) (roundrect_rratio 0.045)
(net 1 GND))
(model ${KISYS3DMOD}/Package_DFN_QFN.3dshapes/QFN-48-1EP_7x7mm_P0.5mm_EP5.6x5.6mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module otter:Pad_0.80.8 (layer B.Cu) (tedit 5DD29440) (tstamp 5DD30A70)
(at 60.9 62.24)
(path /5DD4BEB9)
(fp_text reference J5 (at 0 1.1) (layer B.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value PAD (at 0 2.1) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(pad 1 smd roundrect (at 0 0) (size 1.2 1.2) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 37 SCK))
)
(module otter:Pad_0.80.8 (layer B.Cu) (tedit 5DD2942F) (tstamp 5DD2F24A)
(at 60.8 63.9)
(path /5DD36099)
(fp_text reference J2 (at 0 1.1) (layer B.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value PAD (at 0 2.1) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(pad 1 smd roundrect (at 0 0) (size 1.2 1.2) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 35 SCL))
)
(module otter:Pad_0.80.8 (layer B.Cu) (tedit 5DD29405) (tstamp 5DD2F25B)
(at 59.2 63.9)
(path /5DD34DB2)
(fp_text reference J4 (at 0 1.1) (layer B.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value PAD (at 0 2.1) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(pad 1 smd roundrect (at 0 0) (size 1.2 1.2) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 36 SDA))
)
(module Button_Switch_SMD:SW_SPST_EVQP7A (layer B.Cu) (tedit 5A02FC95) (tstamp 5DCF254A)
(at 51.525 62.2 90)
(descr "Light Touch Switch,https://industrial.panasonic.com/cdbs/www-data/pdf/ATK0000/ATK0000CE20.pdf")
(path /5DADA21E)
(attr smd)
(fp_text reference SW1 (at 3.025 -0.425 180) (layer B.SilkS)
(effects (font (size 0.45 0.45) (thickness 0.1125)) (justify mirror))
)
(fp_text value DFU (at 0 -3.25 90) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text user %R (at 0 2.5 90) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start 0.95 -1.55) (end 0.95 -2.2) (layer B.SilkS) (width 0.12))
(fp_line (start 0.95 -2.2) (end -0.95 -2.2) (layer B.SilkS) (width 0.12))
(fp_line (start -0.95 -2.2) (end -0.95 -1.55) (layer B.SilkS) (width 0.12))
(fp_line (start -0.85 -2.1) (end 0.85 -2.1) (layer B.Fab) (width 0.1))
(fp_line (start 0.85 -2.1) (end 0.85 -1.45) (layer B.Fab) (width 0.1))
(fp_line (start -0.85 -2.1) (end -0.85 -1.45) (layer B.Fab) (width 0.1))
(fp_line (start -1.75 1.45) (end 1.75 1.45) (layer B.Fab) (width 0.1))
(fp_line (start 1.75 1.45) (end 1.75 -1.45) (layer B.Fab) (width 0.1))
(fp_line (start 1.75 -1.45) (end -1.75 -1.45) (layer B.Fab) (width 0.1))
(fp_line (start -1.75 -1.45) (end -1.75 1.4) (layer B.Fab) (width 0.1))
(fp_line (start -1.1 -2.35) (end -1.1 -1.7) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.1 -1.7) (end -2.75 -1.7) (layer B.CrtYd) (width 0.05))
(fp_line (start 2.75 -1.7) (end 1.1 -1.7) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.1 -1.7) (end 1.1 -2.35) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.75 1.55) (end 1.75 1.55) (layer B.SilkS) (width 0.12))
(fp_line (start 1.75 -1.55) (end -1.75 -1.55) (layer B.SilkS) (width 0.12))
(fp_line (start -2.75 1.7) (end 2.75 1.7) (layer B.CrtYd) (width 0.05))
(fp_line (start 2.75 1.7) (end 2.75 -1.7) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.1 -2.35) (end -1.1 -2.35) (layer B.CrtYd) (width 0.05))
(fp_line (start -2.75 -1.7) (end -2.75 1.7) (layer B.CrtYd) (width 0.05))
(pad 1 smd rect (at 1.8 0.72 90) (size 1.4 1.05) (layers B.Cu B.Paste B.Mask)
(net 32 "Net-(R1-Pad1)"))
(pad 1 smd rect (at -1.8 0.72 90) (size 1.4 1.05) (layers B.Cu B.Paste B.Mask)
(net 32 "Net-(R1-Pad1)"))
(pad 2 smd rect (at 1.8 -0.72 90) (size 1.4 1.05) (layers B.Cu B.Paste B.Mask)
(net 2 +3V3))
(pad 2 smd rect (at -1.8 -0.72 90) (size 1.4 1.05) (layers B.Cu B.Paste B.Mask)
(net 2 +3V3))
(model ${KISYS3DMOD}/Button_Switch_SMD.3dshapes/SW_SPST_EVQP7A.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Capacitor_SMD:C_0402_1005Metric (layer B.Cu) (tedit 5B301BBE) (tstamp 5DC36EBE)
(at 54.4 64.325 180)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags capacitor)
(path /5DAD8CB6)
(attr smd)
(fp_text reference C1 (at -1.45 0 180) (layer B.SilkS)
(effects (font (size 0.45 0.45) (thickness 0.1125)) (justify mirror))
)
(fp_text value 100n (at 0 -1.17 180) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start -0.5 -0.25) (end -0.5 0.25) (layer B.Fab) (width 0.1))
(fp_line (start -0.5 0.25) (end 0.5 0.25) (layer B.Fab) (width 0.1))
(fp_line (start 0.5 0.25) (end 0.5 -0.25) (layer B.Fab) (width 0.1))
(fp_line (start 0.5 -0.25) (end -0.5 -0.25) (layer B.Fab) (width 0.1))
(fp_line (start -0.93 -0.47) (end -0.93 0.47) (layer B.CrtYd) (width 0.05))
(fp_line (start -0.93 0.47) (end 0.93 0.47) (layer B.CrtYd) (width 0.05))
(fp_line (start 0.93 0.47) (end 0.93 -0.47) (layer B.CrtYd) (width 0.05))
(fp_line (start 0.93 -0.47) (end -0.93 -0.47) (layer B.CrtYd) (width 0.05))
(fp_text user %R (at 0 0 180) (layer B.Fab)
(effects (font (size 0.25 0.25) (thickness 0.04)) (justify mirror))
)
(pad 1 smd roundrect (at -0.485 0 180) (size 0.59 0.64) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 3 +5V))
(pad 2 smd roundrect (at 0.485 0 180) (size 0.59 0.64) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 1 GND))
(model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module otter:LED-Strip (layer F.Cu) (tedit 5DB5BFBA) (tstamp 5DC34326)
(at 56 64.8)
(path /5DB5BEC7)
(fp_text reference J3 (at 0 -3.5) (layer F.SilkS) hide
(effects (font (size 0.45 0.45) (thickness 0.1125)))
)
(fp_text value LED (at 0 -4.5) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 smd rect (at -4.1 -2) (size 3.5 4) (layers F.Cu F.Paste F.Mask)
(net 3 +5V))
(pad 3 smd rect (at 4.1 -2) (size 3.5 4) (layers F.Cu F.Paste F.Mask)
(net 1 GND))
(pad 2 smd rect (at 0 -2) (size 2 4) (layers F.Cu F.Paste F.Mask)
(net 33 LED))
)
(module otter:USBPCB (layer F.Cu) (tedit 5DB5BF72) (tstamp 5DCF3FE3)
(at 56.1 63.3)
(path /5DAD9105)
(fp_text reference J1 (at -0.1 -14.05) (layer F.SilkS) hide
(effects (font (size 0.45 0.45) (thickness 0.1125)))
)
(fp_text value USB (at -0.1 -9.8) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -6.1 0) (end -6.1 -13.3) (layer Eco1.User) (width 0.1))
(fp_line (start 5.9 -13.3) (end 5.9 0) (layer Eco1.User) (width 0.1))
(fp_line (start -0.1 -13.3) (end 5.9 -13.3) (layer Eco1.User) (width 0.1))
(fp_line (start -0.1 -13.3) (end -6.1 -13.3) (layer Eco1.User) (width 0.1))
(pad 3 smd rect (at 1.067 -8) (size 1.27 8) (layers F.Cu F.Paste F.Mask)
(net 31 USB_P))
(pad 2 smd rect (at -1.067 -8) (size 1.27 8) (layers F.Cu F.Paste F.Mask)
(net 30 USB_N))
(pad 4 smd rect (at 3.85 -8.35) (size 1.27 8.7) (layers F.Cu F.Paste F.Mask)
(net 1 GND))
(pad 1 smd rect (at -3.81 -8.35) (size 1.27 8.7) (layers F.Cu F.Paste F.Mask)
(net 3 +5V))
(model "home/janhenrik/go-elinux/onWheel/onwheel-button-2-pcb/back_pcb/USB Onboard/USB Onboard.step"
(offset (xyz -6.75 3.5 2.55))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 0))
)
)
(module Capacitor_SMD:C_0402_1005Metric (layer B.Cu) (tedit 5B301BBE) (tstamp 5DD25DD8)
(at 51.3 54.65 270)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags capacitor)
(path /5DADA938)
(attr smd)
(fp_text reference C5 (at -1.28 -0.01) (layer B.SilkS)
(effects (font (size 0.45 0.45) (thickness 0.1125)) (justify mirror))
)
(fp_text value 100n (at 0 -1.17 270) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start -0.5 -0.25) (end -0.5 0.25) (layer B.Fab) (width 0.1))
(fp_line (start -0.5 0.25) (end 0.5 0.25) (layer B.Fab) (width 0.1))
(fp_line (start 0.5 0.25) (end 0.5 -0.25) (layer B.Fab) (width 0.1))
(fp_line (start 0.5 -0.25) (end -0.5 -0.25) (layer B.Fab) (width 0.1))
(fp_line (start -0.93 -0.47) (end -0.93 0.47) (layer B.CrtYd) (width 0.05))
(fp_line (start -0.93 0.47) (end 0.93 0.47) (layer B.CrtYd) (width 0.05))
(fp_line (start 0.93 0.47) (end 0.93 -0.47) (layer B.CrtYd) (width 0.05))
(fp_line (start 0.93 -0.47) (end -0.93 -0.47) (layer B.CrtYd) (width 0.05))
(fp_text user %R (at 0 0 270) (layer B.Fab)
(effects (font (size 0.25 0.25) (thickness 0.04)) (justify mirror))
)
(pad 1 smd roundrect (at -0.485 0 270) (size 0.59 0.64) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 2 +3V3))
(pad 2 smd roundrect (at 0.485 0 270) (size 0.59 0.64) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 1 GND))
(model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Capacitor_SMD:C_0402_1005Metric (layer B.Cu) (tedit 5B301BBE) (tstamp 5DD25DC9)
(at 51.3 57.9 90)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags capacitor)
(path /5DADAA7A)
(attr smd)
(fp_text reference C4 (at 1.28 0 180) (layer B.SilkS)
(effects (font (size 0.45 0.45) (thickness 0.1125)) (justify mirror))
)
(fp_text value 100n (at 0 -1.17 90) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text user %R (at 0 0 90) (layer B.Fab)
(effects (font (size 0.25 0.25) (thickness 0.04)) (justify mirror))
)
(fp_line (start 0.93 -0.47) (end -0.93 -0.47) (layer B.CrtYd) (width 0.05))
(fp_line (start 0.93 0.47) (end 0.93 -0.47) (layer B.CrtYd) (width 0.05))
(fp_line (start -0.93 0.47) (end 0.93 0.47) (layer B.CrtYd) (width 0.05))
(fp_line (start -0.93 -0.47) (end -0.93 0.47) (layer B.CrtYd) (width 0.05))
(fp_line (start 0.5 -0.25) (end -0.5 -0.25) (layer B.Fab) (width 0.1))
(fp_line (start 0.5 0.25) (end 0.5 -0.25) (layer B.Fab) (width 0.1))
(fp_line (start -0.5 0.25) (end 0.5 0.25) (layer B.Fab) (width 0.1))
(fp_line (start -0.5 -0.25) (end -0.5 0.25) (layer B.Fab) (width 0.1))
(pad 2 smd roundrect (at 0.485 0 90) (size 0.59 0.64) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 1 GND))
(pad 1 smd roundrect (at -0.485 0 90) (size 0.59 0.64) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 2 +3V3))
(model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Capacitor_SMD:C_0402_1005Metric (layer B.Cu) (tedit 5B301BBE) (tstamp 5DD25DBA)
(at 59.9 60.075)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags capacitor)
(path /5DADABCA)
(attr smd)
(fp_text reference C3 (at 1.425 0) (layer B.SilkS)
(effects (font (size 0.45 0.45) (thickness 0.1125)) (justify mirror))
)
(fp_text value 100n (at 0 -1.17) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start -0.5 -0.25) (end -0.5 0.25) (layer B.Fab) (width 0.1))
(fp_line (start -0.5 0.25) (end 0.5 0.25) (layer B.Fab) (width 0.1))
(fp_line (start 0.5 0.25) (end 0.5 -0.25) (layer B.Fab) (width 0.1))
(fp_line (start 0.5 -0.25) (end -0.5 -0.25) (layer B.Fab) (width 0.1))
(fp_line (start -0.93 -0.47) (end -0.93 0.47) (layer B.CrtYd) (width 0.05))
(fp_line (start -0.93 0.47) (end 0.93 0.47) (layer B.CrtYd) (width 0.05))
(fp_line (start 0.93 0.47) (end 0.93 -0.47) (layer B.CrtYd) (width 0.05))
(fp_line (start 0.93 -0.47) (end -0.93 -0.47) (layer B.CrtYd) (width 0.05))
(fp_text user %R (at 0 0) (layer B.Fab)
(effects (font (size 0.25 0.25) (thickness 0.04)) (justify mirror))
)
(pad 1 smd roundrect (at -0.485 0) (size 0.59 0.64) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 2 +3V3))
(pad 2 smd roundrect (at 0.485 0) (size 0.59 0.64) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 1 GND))
(model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistor_SMD:R_0402_1005Metric (layer B.Cu) (tedit 5B301BBD) (tstamp 5DD25CA1)
(at 57.6 63.04 270)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags resistor)
(path /5DAD9A6F)
(attr smd)
(fp_text reference R1 (at 1.21 0) (layer B.SilkS)
(effects (font (size 0.45 0.45) (thickness 0.1125)) (justify mirror))
)
(fp_text value 10k (at 0 -1.17 270) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start -0.5 -0.25) (end -0.5 0.25) (layer B.Fab) (width 0.1))
(fp_line (start -0.5 0.25) (end 0.5 0.25) (layer B.Fab) (width 0.1))
(fp_line (start 0.5 0.25) (end 0.5 -0.25) (layer B.Fab) (width 0.1))
(fp_line (start 0.5 -0.25) (end -0.5 -0.25) (layer B.Fab) (width 0.1))
(fp_line (start -0.93 -0.47) (end -0.93 0.47) (layer B.CrtYd) (width 0.05))
(fp_line (start -0.93 0.47) (end 0.93 0.47) (layer B.CrtYd) (width 0.05))
(fp_line (start 0.93 0.47) (end 0.93 -0.47) (layer B.CrtYd) (width 0.05))
(fp_line (start 0.93 -0.47) (end -0.93 -0.47) (layer B.CrtYd) (width 0.05))
(fp_text user %R (at 0 0 270) (layer B.Fab)
(effects (font (size 0.25 0.25) (thickness 0.04)) (justify mirror))
)
(pad 1 smd roundrect (at -0.485 0 270) (size 0.59 0.64) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 32 "Net-(R1-Pad1)"))
(pad 2 smd roundrect (at 0.485 0 270) (size 0.59 0.64) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 1 GND))
(model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Capacitor_SMD:C_0402_1005Metric (layer B.Cu) (tedit 5B301BBE) (tstamp 5DBADE9D)
(at 60.85 53.325 270)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags capacitor)
(path /5DAD8CF1)
(attr smd)
(fp_text reference C2 (at -1.355 0) (layer B.SilkS)
(effects (font (size 0.45 0.45) (thickness 0.1125)) (justify mirror))
)
(fp_text value 100n (at 0 -1.17 270) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text user %R (at 0 0 270) (layer B.Fab)
(effects (font (size 0.25 0.25) (thickness 0.04)) (justify mirror))
)
(fp_line (start 0.93 -0.47) (end -0.93 -0.47) (layer B.CrtYd) (width 0.05))
(fp_line (start 0.93 0.47) (end 0.93 -0.47) (layer B.CrtYd) (width 0.05))
(fp_line (start -0.93 0.47) (end 0.93 0.47) (layer B.CrtYd) (width 0.05))
(fp_line (start -0.93 -0.47) (end -0.93 0.47) (layer B.CrtYd) (width 0.05))
(fp_line (start 0.5 -0.25) (end -0.5 -0.25) (layer B.Fab) (width 0.1))
(fp_line (start 0.5 0.25) (end 0.5 -0.25) (layer B.Fab) (width 0.1))
(fp_line (start -0.5 0.25) (end 0.5 0.25) (layer B.Fab) (width 0.1))
(fp_line (start -0.5 -0.25) (end -0.5 0.25) (layer B.Fab) (width 0.1))
(pad 2 smd roundrect (at 0.485 0 270) (size 0.59 0.64) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 1 GND))
(pad 1 smd roundrect (at -0.485 0 270) (size 0.59 0.64) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 2 +3V3))
(model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Package_TO_SOT_SMD:SOT-23 (layer B.Cu) (tedit 5A02FF57) (tstamp 5DBADE29)
(at 54.925 62.225)
(descr "SOT-23, Standard")
(tags SOT-23)
(path /5DAD890C)
(attr smd)
(fp_text reference U1 (at 1.275 0.925) (layer B.SilkS)
(effects (font (size 0.45 0.45) (thickness 0.1125)) (justify mirror))
)
(fp_text value MCP1700-3302E_SOT23 (at 0 -2.5) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text user %R (at 0 0 -90) (layer B.Fab)
(effects (font (size 0.5 0.5) (thickness 0.075)) (justify mirror))
)
(fp_line (start -0.7 0.95) (end -0.7 -1.5) (layer B.Fab) (width 0.1))
(fp_line (start -0.15 1.52) (end 0.7 1.52) (layer B.Fab) (width 0.1))
(fp_line (start -0.7 0.95) (end -0.15 1.52) (layer B.Fab) (width 0.1))
(fp_line (start 0.7 1.52) (end 0.7 -1.52) (layer B.Fab) (width 0.1))
(fp_line (start -0.7 -1.52) (end 0.7 -1.52) (layer B.Fab) (width 0.1))
(fp_line (start 0.76 -1.58) (end 0.76 -0.65) (layer B.SilkS) (width 0.12))
(fp_line (start 0.76 1.58) (end 0.76 0.65) (layer B.SilkS) (width 0.12))
(fp_line (start -1.7 1.75) (end 1.7 1.75) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.7 1.75) (end 1.7 -1.75) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.7 -1.75) (end -1.7 -1.75) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.7 -1.75) (end -1.7 1.75) (layer B.CrtYd) (width 0.05))
(fp_line (start 0.76 1.58) (end -1.4 1.58) (layer B.SilkS) (width 0.12))
(fp_line (start 0.76 -1.58) (end -0.7 -1.58) (layer B.SilkS) (width 0.12))
(pad 1 smd rect (at -1 0.95) (size 0.9 0.8) (layers B.Cu B.Paste B.Mask)
(net 1 GND))
(pad 2 smd rect (at -1 -0.95) (size 0.9 0.8) (layers B.Cu B.Paste B.Mask)
(net 2 +3V3))
(pad 3 smd rect (at 1 0) (size 0.9 0.8) (layers B.Cu B.Paste B.Mask)
(net 3 +5V))
(model ${KISYS3DMOD}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(dimension 12 (width 0.15) (layer Eco1.User)
(gr_text "12,000 mm" (at 56 70.95) (layer Eco1.User)
(effects (font (size 1 1) (thickness 0.15)))
)
(feature1 (pts (xy 50 65) (xy 50 70.236421)))
(feature2 (pts (xy 62 65) (xy 62 70.236421)))
(crossbar (pts (xy 62 69.65) (xy 50 69.65)))
(arrow1a (pts (xy 50 69.65) (xy 51.126504 69.063579)))
(arrow1b (pts (xy 50 69.65) (xy 51.126504 70.236421)))
(arrow2a (pts (xy 62 69.65) (xy 60.873496 69.063579)))
(arrow2b (pts (xy 62 69.65) (xy 60.873496 70.236421)))
)
(dimension 15 (width 0.15) (layer Eco1.User)
(gr_text "15,000 mm" (at 71.15 57.5 90) (layer Eco1.User)
(effects (font (size 1 1) (thickness 0.15)))
)
(feature1 (pts (xy 62 50) (xy 70.436421 50)))
(feature2 (pts (xy 62 65) (xy 70.436421 65)))
(crossbar (pts (xy 69.85 65) (xy 69.85 50)))
(arrow1a (pts (xy 69.85 50) (xy 70.436421 51.126504)))
(arrow1b (pts (xy 69.85 50) (xy 69.263579 51.126504)))
(arrow2a (pts (xy 69.85 65) (xy 70.436421 63.873496)))
(arrow2b (pts (xy 69.85 65) (xy 69.263579 63.873496)))
)
(gr_text DFU (at 54 60.15) (layer B.SilkS)
(effects (font (size 0.6 0.6) (thickness 0.1125)) (justify mirror))
)
(gr_text SCK (at 59.65 61.45 315) (layer B.SilkS)
(effects (font (size 0.5 0.5) (thickness 0.1125)) (justify mirror))
)
(gr_text "SCL/MOSI\n" (at 58.8 61.65 315) (layer B.SilkS)
(effects (font (size 0.5 0.5) (thickness 0.1125)) (justify mirror))
)
(gr_text SDA/MISO (at 57.9 61.75 315) (layer B.SilkS)
(effects (font (size 0.5 0.5) (thickness 0.1125)) (justify mirror))
)
(gr_text USB-LED-Otter (at 56.09 51.05) (layer B.SilkS)
(effects (font (size 0.9 0.9) (thickness 0.2)) (justify mirror))
)
(gr_text "GND\n" (at 60.1 60.1) (layer F.SilkS) (tstamp 5DCF66D6)
(effects (font (size 1 1) (thickness 0.2)))
)
(gr_text Data (at 56 60.1) (layer F.SilkS) (tstamp 5DCF66D6)
(effects (font (size 1 1) (thickness 0.2)))
)
(gr_text +5V (at 51.9 60.1) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.2)))
)
(gr_poly (pts (xy 63 49) (xy 63 59.25) (xy 49.5 59.25) (xy 49.5 49)) (layer F.Mask) (width 0.15))
(gr_arc (start 50.6 50.6) (end 50.6 50) (angle -90) (layer Edge.Cuts) (width 0.2) (tstamp 5DC34B69))
(gr_arc (start 61.4 50.6) (end 62 50.6) (angle -90) (layer Edge.Cuts) (width 0.2))
(gr_line (start 62.4 59.2) (end 49.44 59.2) (layer Eco1.User) (width 0.2))
(gr_line (start 61.4 50) (end 50.6 50) (layer Edge.Cuts) (width 0.2))
(gr_line (start 62 65) (end 62 50.6) (layer Edge.Cuts) (width 0.2))
(gr_line (start 50 65) (end 62 65) (layer Edge.Cuts) (width 0.2))
(gr_line (start 50 50.6) (end 50 65) (layer Edge.Cuts) (width 0.2))
(via (at 58.53 62.72) (size 0.6) (drill 0.3) (layers F.Cu B.Cu) (net 1))
(via (at 54.225 63.7) (size 0.6) (drill 0.3) (layers F.Cu B.Cu) (net 1))
(via (at 54.25 63.05) (size 0.6) (drill 0.3) (layers F.Cu B.Cu) (net 1))
(via (at 59.975 51.3) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1))
(segment (start 59.95 62.65) (end 60.1 62.8) (width 1.2) (layer F.Cu) (net 1))
(segment (start 59.95 54.95) (end 59.95 62.65) (width 1.2) (layer F.Cu) (net 1))
(segment (start 53.85 59.575) (end 53.9 59.625) (width 0.2) (layer B.Cu) (net 1))
(segment (start 53.85 59.0375) (end 53.85 59.575) (width 0.2) (layer B.Cu) (net 1))
(segment (start 53.9 59.885) (end 54.145 60.13) (width 0.2) (layer B.Cu) (net 1))
(segment (start 53.9 59.625) (end 53.9 59.885) (width 0.2) (layer B.Cu) (net 1))
(segment (start 58.35 52.1625) (end 58.35 52.7) (width 0.2) (layer B.Cu) (net 1))
(segment (start 53.85 59.0375) (end 53.85 58.5) (width 0.2) (layer B.Cu) (net 1))
(segment (start 58.35 52.7) (end 58.05 53) (width 0.2) (layer B.Cu) (net 1))
(via (at 59.09 62.61) (size 0.6) (drill 0.3) (layers F.Cu B.Cu) (net 1) (tstamp 5DC3756F))
(segment (start 60.27501 58.05001) (end 60.075 57.85) (width 0.2) (layer B.Cu) (net 1))
(segment (start 60.075 57.85) (end 59.5375 57.85) (width 0.2) (layer B.Cu) (net 1))
(segment (start 60.385 58.16) (end 60.075 57.85) (width 0.2) (layer B.Cu) (net 1))
(segment (start 60.385 60.075) (end 60.385 58.16) (width 0.2) (layer B.Cu) (net 1))
(segment (start 54.145 60.13) (end 54.265 60.25) (width 0.2) (layer B.Cu) (net 1) (tstamp 5DCF5B7C))
(via (at 54.145 60.13) (size 0.6) (drill 0.3) (layers F.Cu B.Cu) (net 1))
(via (at 60.21 59.1) (size 0.6) (drill 0.3) (layers F.Cu B.Cu) (net 1))
(segment (start 60.21 55.21) (end 60.21 59.1) (width 0.2) (layer F.Cu) (net 1))
(segment (start 59.95 54.95) (end 60.21 55.21) (width 0.2) (layer F.Cu) (net 1))
(segment (start 53.85 59.0375) (end 53.85 58.315292) (width 0.157) (layer B.Cu) (net 1))
(segment (start 53.85 58.315292) (end 53.982646 58.182646) (width 0.157) (layer B.Cu) (net 1))
(segment (start 56.88 60.13) (end 54.145 60.13) (width 0.2) (layer F.Cu) (net 1))
(segment (start 57.4 61.59) (end 57.4 60.85) (width 0.2) (layer F.Cu) (net 1))
(segment (start 57.4 60.85) (end 57.3 60.75) (width 0.2) (layer F.Cu) (net 1))
(segment (start 57.3 60.55) (end 56.88 60.13) (width 0.2) (layer F.Cu) (net 1))
(segment (start 58.53 62.72) (end 57.4 61.59) (width 0.2) (layer F.Cu) (net 1))
(segment (start 57.3 60.75) (end 57.3 60.55) (width 0.2) (layer F.Cu) (net 1))
(segment (start 52.6525 54.85) (end 51.23 54.85) (width 0.25) (layer B.Cu) (net 1))
(segment (start 51.3 54.92) (end 51.3 55.135) (width 0.25) (layer B.Cu) (net 1))
(segment (start 51.23 54.85) (end 51.3 54.92) (width 0.25) (layer B.Cu) (net 1))
(segment (start 58.82149 52.88851) (end 58.82149 52.19101) (width 0.157) (layer B.Cu) (net 2))
(segment (start 58.82149 52.19101) (end 58.85 52.1625) (width 0.157) (layer B.Cu) (net 2))
(segment (start 59.50899 58.32149) (end 58.64149 58.32149) (width 0.157) (layer B.Cu) (net 2))
(segment (start 59.5375 58.35) (end 59.50899 58.32149) (width 0.157) (layer B.Cu) (net 2))
(segment (start 53.77 54.92) (end 53.2 54.35) (width 0.2) (layer B.Cu) (net 2))
(segment (start 53.2 54.35) (end 52.6625 54.35) (width 0.2) (layer B.Cu) (net 2))
(segment (start 51.485 54.35) (end 52.6625 54.35) (width 0.2) (layer B.Cu) (net 2))
(segment (start 51.3 54.165) (end 51.485 54.35) (width 0.157) (layer B.Cu) (net 2))
(segment (start 53.28 58.35) (end 52.6625 58.35) (width 0.2) (layer B.Cu) (net 2))
(segment (start 53.77 57.86) (end 53.28 58.35) (width 0.2) (layer B.Cu) (net 2))
(segment (start 53.35 58.28) (end 53.35 59.0375) (width 0.2) (layer B.Cu) (net 2))
(segment (start 53.77 57.86) (end 53.35 58.28) (width 0.2) (layer B.Cu) (net 2))
(segment (start 58.57 58.25) (end 58.37 58.05) (width 0.2) (layer B.Cu) (net 2))
(segment (start 58.64149 58.32149) (end 58.57 58.25) (width 0.157) (layer B.Cu) (net 2))
(segment (start 58.37 53.34) (end 58.69 53.02) (width 0.2) (layer B.Cu) (net 2))
(segment (start 58.69 53.02) (end 58.82149 52.88851) (width 0.157) (layer B.Cu) (net 2))
(segment (start 53.77 57.86) (end 53.77 54.92) (width 0.2) (layer B.Cu) (net 2))
(segment (start 52.6625 58.35) (end 51.95 58.35) (width 0.2) (layer B.Cu) (net 2))
(segment (start 58.37 58.05) (end 58.37 53.34) (width 0.2) (layer B.Cu) (net 2))
(segment (start 53.35 59.575) (end 53.35 59.0375) (width 0.2) (layer B.Cu) (net 2))
(segment (start 53.35 60.75) (end 53.35 59.575) (width 0.2) (layer B.Cu) (net 2))
(segment (start 53.875 61.275) (end 53.35 60.75) (width 0.2) (layer B.Cu) (net 2))
(segment (start 53.925 61.275) (end 53.875 61.275) (width 0.2) (layer B.Cu) (net 2))
(segment (start 51.335 58.35) (end 51.3 58.385) (width 0.2) (layer B.Cu) (net 2))
(segment (start 52.6625 58.35) (end 51.335 58.35) (width 0.2) (layer B.Cu) (net 2))
(segment (start 50.805 58.88) (end 51.3 58.385) (width 0.2) (layer B.Cu) (net 2))
(segment (start 50.805 60.4) (end 50.805 58.88) (width 0.2) (layer B.Cu) (net 2))
(segment (start 60.1725 52.1625) (end 58.85 52.1625) (width 0.2) (layer B.Cu) (net 2))
(segment (start 60.85 52.84) (end 60.1725 52.1625) (width 0.2) (layer B.Cu) (net 2))
(segment (start 50.805 64) (end 50.40001 63.59501) (width 0.2) (layer B.Cu) (net 2))
(segment (start 50.40001 63.59501) (end 50.40001 60.80499) (width 0.2) (layer B.Cu) (net 2))
(segment (start 50.40001 60.80499) (end 50.805 60.4) (width 0.2) (layer B.Cu) (net 2))
(segment (start 59.415 59.595) (end 59.415 60.075) (width 0.2) (layer B.Cu) (net 2))
(segment (start 59.5375 58.35) (end 59.415 58.4725) (width 0.2) (layer B.Cu) (net 2))
(segment (start 59.415 58.4725) (end 59.415 59.595) (width 0.2) (layer B.Cu) (net 2))
(segment (start 58.52 51.28) (end 52.36 51.28) (width 0.2) (layer B.Cu) (net 2))
(segment (start 51.3 52.34) (end 51.3 54.165) (width 0.2) (layer B.Cu) (net 2))
(segment (start 52.36 51.28) (end 51.3 52.34) (width 0.2) (layer B.Cu) (net 2))
(segment (start 58.85 52.1625) (end 58.85 51.61) (width 0.2) (layer B.Cu) (net 2))
(segment (start 58.85 51.61) (end 58.52 51.28) (width 0.2) (layer B.Cu) (net 2))
(via (at 52.825 62.7) (size 0.6) (drill 0.3) (layers F.Cu B.Cu) (net 3) (tstamp 5DCF3140))
(via (at 52.125 62.5) (size 0.6) (drill 0.3) (layers F.Cu B.Cu) (net 3) (tstamp 5DCF3140))
(via (at 52.375 61.75) (size 0.6) (drill 0.3) (layers F.Cu B.Cu) (net 3) (tstamp 5DCF3140))
(via (at 51.525 62.025) (size 0.6) (drill 0.3) (layers F.Cu B.Cu) (net 3))
(segment (start 52.29 54.95) (end 52.29 61.019999) (width 1.2) (layer F.Cu) (net 3))
(segment (start 55.925 63.285) (end 55.925 62.225) (width 0.2) (layer B.Cu) (net 3))
(segment (start 54.885 64.325) (end 55.925 63.285) (width 0.2) (layer B.Cu) (net 3))
(segment (start 53.124999 62.400001) (end 52.825 62.7) (width 0.2) (layer B.Cu) (net 3))
(segment (start 55.099999 62.400001) (end 53.124999 62.400001) (width 0.2) (layer B.Cu) (net 3))
(segment (start 55.275 62.225) (end 55.099999 62.400001) (width 0.2) (layer B.Cu) (net 3))
(segment (start 55.925 62.225) (end 55.275 62.225) (width 0.2) (layer B.Cu) (net 3))
(via (at 57.9 60.429999) (size 0.6) (drill 0.3) (layers F.Cu B.Cu) (net 30))
(segment (start 57.9 60.05) (end 57.9 60.429999) (width 0.2) (layer F.Cu) (net 30))
(segment (start 57.41 59.56) (end 57.9 60.05) (width 0.2) (layer F.Cu) (net 30))
(segment (start 55.928 59.56) (end 57.41 59.56) (width 0.2) (layer F.Cu) (net 30))
(segment (start 55.033 55.3) (end 55.033 58.665) (width 0.2) (layer F.Cu) (net 30))
(segment (start 55.033 58.665) (end 55.928 59.56) (width 0.2) (layer F.Cu) (net 30))
(segment (start 60.239132 56.35) (end 61.475011 57.585879) (width 0.2) (layer B.Cu) (net 30))
(segment (start 59.5375 56.35) (end 60.239132 56.35) (width 0.2) (layer B.Cu) (net 30))
(segment (start 61.475011 60.524989) (end 60.951043 61.048957) (width 0.2) (layer B.Cu) (net 30))
(segment (start 58.518958 61.048957) (end 58.199999 60.729998) (width 0.2) (layer B.Cu) (net 30))
(segment (start 58.199999 60.729998) (end 57.9 60.429999) (width 0.2) (layer B.Cu) (net 30))
(segment (start 60.951043 61.048957) (end 58.518958 61.048957) (width 0.2) (layer B.Cu) (net 30))
(segment (start 61.475011 57.585879) (end 61.475011 60.524989) (width 0.2) (layer B.Cu) (net 30))
(via (at 58.603937 60.140049) (size 0.6) (drill 0.3) (layers F.Cu B.Cu) (net 31))
(segment (start 57.167 58.665) (end 57.167 58.703112) (width 0.2) (layer F.Cu) (net 31))
(segment (start 57.167 58.703112) (end 58.303938 59.84005) (width 0.2) (layer F.Cu) (net 31))
(segment (start 58.303938 59.84005) (end 58.603937 60.140049) (width 0.2) (layer F.Cu) (net 31))
(segment (start 59.5375 56.85) (end 60.075 56.85) (width 0.2) (layer B.Cu) (net 31))
(segment (start 58.72857 60.688946) (end 58.603937 60.564313) (width 0.2) (layer B.Cu) (net 31))
(segment (start 61.075 60.3593) (end 60.745354 60.688946) (width 0.2) (layer B.Cu) (net 31))
(segment (start 61.075 57.85) (end 61.075 60.3593) (width 0.2) (layer B.Cu) (net 31))
(segment (start 58.603937 60.564313) (end 58.603937 60.140049) (width 0.2) (layer B.Cu) (net 31))
(segment (start 60.745354 60.688946) (end 58.72857 60.688946) (width 0.2) (layer B.Cu) (net 31))
(segment (start 60.075 56.85) (end 61.075 57.85) (width 0.2) (layer B.Cu) (net 31))
(segment (start 53.196499 61.897801) (end 53.196499 61.271499) (width 0.157) (layer B.Cu) (net 32))
(segment (start 53.252199 61.953501) (end 53.196499 61.897801) (width 0.157) (layer B.Cu) (net 32))
(segment (start 54.597801 61.953501) (end 53.252199 61.953501) (width 0.157) (layer B.Cu) (net 32))
(segment (start 54.653501 61.897801) (end 54.597801 61.953501) (width 0.157) (layer B.Cu) (net 32))
(segment (start 52.325 60.4) (end 52.245 60.4) (width 0.157) (layer B.Cu) (net 32))
(segment (start 53.196499 61.271499) (end 52.325 60.4) (width 0.157) (layer B.Cu) (net 32))
(segment (start 52.245 60.67) (end 52.245 60.4) (width 0.2) (layer B.Cu) (net 32))
(segment (start 52.25 60.675) (end 52.245 60.67) (width 0.2) (layer B.Cu) (net 32))
(segment (start 50.800021 62.250021) (end 50.800021 61.699979) (width 0.2) (layer B.Cu) (net 32))
(segment (start 50.800021 61.699979) (end 51.099999 61.400001) (width 0.2) (layer B.Cu) (net 32))
(segment (start 52.275 63.97) (end 52.275 63.704998) (width 0.2) (layer B.Cu) (net 32))
(segment (start 52.245 64) (end 52.275 63.97) (width 0.2) (layer B.Cu) (net 32))
(segment (start 52.275 63.704998) (end 51.320002 62.75) (width 0.2) (layer B.Cu) (net 32))
(segment (start 51.3 62.75) (end 50.800021 62.250021) (width 0.2) (layer B.Cu) (net 32))
(segment (start 51.524999 61.400001) (end 52.25 60.675) (width 0.2) (layer B.Cu) (net 32))
(segment (start 51.099999 61.400001) (end 51.524999 61.400001) (width 0.2) (layer B.Cu) (net 32))
(segment (start 51.320002 62.75) (end 51.3 62.75) (width 0.2) (layer B.Cu) (net 32))
(segment (start 54.900832 61.65047) (end 54.825 61.726302) (width 0.157) (layer B.Cu) (net 32))
(segment (start 54.825 61.726302) (end 54.676302 61.875) (width 0.157) (layer B.Cu) (net 32))
(segment (start 55.248698 61.55) (end 55.001302 61.55) (width 0.157) (layer B.Cu) (net 32))
(segment (start 55.001302 61.55) (end 54.825 61.726302) (width 0.157) (layer B.Cu) (net 32))
(segment (start 55.252199 61.546499) (end 55.248698 61.55) (width 0.157) (layer B.Cu) (net 32))
(segment (start 56.601302 61.55) (end 56.597801 61.546499) (width 0.157) (layer B.Cu) (net 32))
(segment (start 56.597801 61.546499) (end 56.02 61.546499) (width 0.157) (layer B.Cu) (net 32))
(segment (start 56.02 61.546499) (end 55.252199 61.546499) (width 0.157) (layer B.Cu) (net 32))
(segment (start 56.79 61.738698) (end 56.597801 61.546499) (width 0.157) (layer B.Cu) (net 32))
(segment (start 57.63 62.31) (end 57.361302 62.31) (width 0.157) (layer B.Cu) (net 32))
(segment (start 57.361302 62.31) (end 56.79 61.738698) (width 0.157) (layer B.Cu) (net 32))
(segment (start 54.55 58.25) (end 54.35 58.45) (width 0.157) (layer B.Cu) (net 32))
(segment (start 54.35 58.45) (end 54.35 59.0375) (width 0.157) (layer B.Cu) (net 32))
(segment (start 55.35 59.0375) (end 55.35 58.45) (width 0.157) (layer B.Cu) (net 32))
(segment (start 55.15 58.25) (end 54.55 58.25) (width 0.157) (layer B.Cu) (net 32))
(segment (start 55.35 58.45) (end 55.15 58.25) (width 0.157) (layer B.Cu) (net 32))
(segment (start 55.35 60.031641) (end 55.35 59.575) (width 0.157) (layer B.Cu) (net 32))
(segment (start 56.02 61.546499) (end 56.02 60.701641) (width 0.157) (layer B.Cu) (net 32))
(segment (start 55.35 59.575) (end 55.35 59.0375) (width 0.157) (layer B.Cu) (net 32))
(segment (start 56.02 60.701641) (end 55.35 60.031641) (width 0.157) (layer B.Cu) (net 32))
(via (at 56.525 63.575) (size 0.6) (drill 0.3) (layers F.Cu B.Cu) (net 33))
(via (at 56.525 64.3) (size 0.6) (drill 0.3) (layers F.Cu B.Cu) (net 33))
(via (at 55.75 64.325) (size 0.6) (drill 0.3) (layers F.Cu B.Cu) (net 33))
(segment (start 54.85 60.371598) (end 55.141491 60.663089) (width 0.157) (layer B.Cu) (net 33))
(segment (start 55.141491 60.663089) (end 55.44149 60.963088) (width 0.157) (layer B.Cu) (net 33))
(segment (start 54.85 59.0375) (end 54.85 60.371598) (width 0.157) (layer B.Cu) (net 33))
(via (at 55.44149 60.963088) (size 0.6) (drill 0.3) (layers F.Cu B.Cu) (net 33))
(segment (start 60.8 63.9) (end 59.987011 63.087011) (width 0.157) (layer B.Cu) (net 35))
(segment (start 59.987011 63.087011) (end 59.987011 61.94869) (width 0.157) (layer B.Cu) (net 35))
(segment (start 59.987011 61.94869) (end 59.7428 61.704479) (width 0.157) (layer B.Cu) (net 35))
(segment (start 56.35 60.135) (end 56.35 59.575) (width 0.157) (layer B.Cu) (net 35))
(segment (start 56.35 59.575) (end 56.35 59.0375) (width 0.157) (layer B.Cu) (net 35))
(segment (start 59.7428 61.704479) (end 57.919479 61.704479) (width 0.157) (layer B.Cu) (net 35))
(segment (start 57.919479 61.704479) (end 56.35 60.135) (width 0.157) (layer B.Cu) (net 35))
(segment (start 56.595 58.195) (end 56.85 58.45) (width 0.157) (layer B.Cu) (net 35))
(segment (start 56.85 58.45) (end 56.85 59.0375) (width 0.157) (layer B.Cu) (net 35))
(segment (start 56.35 59.0375) (end 56.35 58.44) (width 0.157) (layer B.Cu) (net 35))
(segment (start 56.35 58.44) (end 56.595 58.195) (width 0.157) (layer B.Cu) (net 35))
(segment (start 59.61149 62.02149) (end 57.788169 62.02149) (width 0.157) (layer B.Cu) (net 36))
(segment (start 55.85 59.575) (end 55.85 59.0375) (width 0.157) (layer B.Cu) (net 36))
(segment (start 59.67 63.8) (end 59.67 62.08) (width 0.157) (layer B.Cu) (net 36))
(segment (start 57.788169 62.02149) (end 55.85 60.083321) (width 0.157) (layer B.Cu) (net 36))
(segment (start 55.85 60.083321) (end 55.85 59.575) (width 0.157) (layer B.Cu) (net 36))
(segment (start 59.2 63.9) (end 59.57 63.9) (width 0.157) (layer B.Cu) (net 36))
(segment (start 59.57 63.9) (end 59.67 63.8) (width 0.157) (layer B.Cu) (net 36))
(segment (start 59.67 62.08) (end 59.61149 62.02149) (width 0.157) (layer B.Cu) (net 36))
(segment (start 57.35 58.5) (end 57.35 59.0375) (width 0.157) (layer B.Cu) (net 36))
(segment (start 55.85 58.40168) (end 56.42869 57.82299) (width 0.157) (layer B.Cu) (net 36))
(segment (start 55.85 59.0375) (end 55.85 58.40168) (width 0.157) (layer B.Cu) (net 36))
(segment (start 56.42869 57.82299) (end 56.71299 57.82299) (width 0.157) (layer B.Cu) (net 36))
(segment (start 56.71299 57.82299) (end 57.35 58.46) (width 0.157) (layer B.Cu) (net 36))
(segment (start 57.35 58.46) (end 57.35 58.5) (width 0.157) (layer B.Cu) (net 36))
(segment (start 57.26 60.165) (end 57.26 60.59668) (width 0.157) (layer B.Cu) (net 37))
(segment (start 60.047468 61.387468) (end 60.317158 61.657158) (width 0.157) (layer B.Cu) (net 37))
(segment (start 57.85 59.575) (end 57.26 60.165) (width 0.157) (layer B.Cu) (net 37))
(segment (start 57.26 60.59668) (end 58.050788 61.387468) (width 0.157) (layer B.Cu) (net 37))
(segment (start 60.317158 61.657158) (end 60.9 62.24) (width 0.157) (layer B.Cu) (net 37))
(segment (start 57.85 59.0375) (end 57.85 59.575) (width 0.157) (layer B.Cu) (net 37))
(segment (start 58.050788 61.387468) (end 60.047468 61.387468) (width 0.157) (layer B.Cu) (net 37))
(zone (net 1) (net_name GND) (layer B.Cu) (tstamp 5DD29F8B) (hatch edge 0.508)
(connect_pads (clearance 0.2))
(min_thickness 0.2)
(fill yes (arc_segments 16) (thermal_gap 0.2) (thermal_bridge_width 0.508) (smoothing fillet))
(polygon
(pts
(xy 62.3 65.3) (xy 62.3 49.6) (xy 49.8 49.6) (xy 49.8 65.3)
)
)
(filled_polygon
(pts
(xy 55.224353 62.792477) (xy 55.261842 62.838158) (xy 55.307523 62.875647) (xy 55.35964 62.903504) (xy 55.41619 62.920659)
(xy 55.475 62.926451) (xy 55.525 62.926451) (xy 55.525 63.119314) (xy 54.940766 63.703549) (xy 54.7375 63.703549)
(xy 54.649914 63.712175) (xy 54.640284 63.715096) (xy 54.653505 63.690361) (xy 54.67066 63.63381) (xy 54.676452 63.575)
(xy 54.675 63.404) (xy 54.6 63.329) (xy 54.079 63.329) (xy 54.079 63.77) (xy 54.069 63.78)
(xy 54.069 64.171) (xy 54.089 64.171) (xy 54.089 64.479) (xy 54.069 64.479) (xy 54.069 64.499)
(xy 53.761 64.499) (xy 53.761 64.479) (xy 53.395 64.479) (xy 53.32 64.554) (xy 53.319266 64.6)
(xy 53.071451 64.6) (xy 53.071451 63.3) (xy 53.066469 63.249416) (xy 53.109207 63.231713) (xy 53.175 63.187751)
(xy 53.175 63.329002) (xy 53.249998 63.329002) (xy 53.175 63.404) (xy 53.173548 63.575) (xy 53.17934 63.63381)
(xy 53.196495 63.690361) (xy 53.224352 63.742478) (xy 53.261841 63.788159) (xy 53.307522 63.825648) (xy 53.359639 63.853505)
(xy 53.360646 63.85381) (xy 53.341495 63.889639) (xy 53.32434 63.94619) (xy 53.318548 64.005) (xy 53.32 64.096)
(xy 53.395 64.171) (xy 53.761 64.171) (xy 53.761 63.81) (xy 53.771 63.8) (xy 53.771 63.329)
(xy 53.751 63.329) (xy 53.751 63.021) (xy 53.771 63.021) (xy 53.771 63.001) (xy 54.079 63.001)
(xy 54.079 63.021) (xy 54.6 63.021) (xy 54.675 62.946) (xy 54.67624 62.800001) (xy 55.080353 62.800001)
(xy 55.099999 62.801936) (xy 55.119645 62.800001) (xy 55.119646 62.800001) (xy 55.178413 62.794213) (xy 55.218742 62.78198)
)
)
(filled_polygon
(pts
(xy 59.2915 62.998549) (xy 58.9 62.998549) (xy 58.782663 63.010106) (xy 58.669835 63.044332) (xy 58.565852 63.099912)
(xy 58.47471 63.17471) (xy 58.399912 63.265852) (xy 58.344332 63.369835) (xy 58.310106 63.482663) (xy 58.298549 63.6)
(xy 58.298549 64.2) (xy 58.310106 64.317337) (xy 58.344332 64.430165) (xy 58.399912 64.534148) (xy 58.453955 64.6)
(xy 57.04616 64.6) (xy 57.056713 64.584207) (xy 57.101942 64.475014) (xy 57.125 64.359095) (xy 57.125 64.240905)
(xy 57.101942 64.124986) (xy 57.060915 64.025939) (xy 57.066841 64.033159) (xy 57.112522 64.070648) (xy 57.164639 64.098505)
(xy 57.22119 64.11566) (xy 57.28 64.121452) (xy 57.371 64.12) (xy 57.446 64.045) (xy 57.446 63.679)
(xy 57.754 63.679) (xy 57.754 64.045) (xy 57.829 64.12) (xy 57.92 64.121452) (xy 57.97881 64.11566)
(xy 58.035361 64.098505) (xy 58.087478 64.070648) (xy 58.133159 64.033159) (xy 58.170648 63.987478) (xy 58.198505 63.935361)
(xy 58.21566 63.87881) (xy 58.221452 63.82) (xy 58.22 63.754) (xy 58.145 63.679) (xy 57.754 63.679)
(xy 57.446 63.679) (xy 57.426 63.679) (xy 57.426 63.371) (xy 57.446 63.371) (xy 57.446 63.351)
(xy 57.754 63.351) (xy 57.754 63.371) (xy 58.145 63.371) (xy 58.22 63.296) (xy 58.221452 63.23)
(xy 58.21566 63.17119) (xy 58.198505 63.114639) (xy 58.170648 63.062522) (xy 58.133159 63.016841) (xy 58.108871 62.996908)
(xy 58.145789 62.951924) (xy 58.187277 62.874306) (xy 58.212825 62.790086) (xy 58.221451 62.7025) (xy 58.221451 62.4075)
(xy 58.220711 62.39999) (xy 59.291501 62.39999)
)
)
(filled_polygon
(pts
(xy 53.865 58.8835) (xy 53.913549 58.8835) (xy 53.913549 59.1915) (xy 53.865 59.1915) (xy 53.865 59.7)
(xy 53.94 59.775) (xy 53.965 59.776452) (xy 54.02381 59.77066) (xy 54.080361 59.753505) (xy 54.113743 59.735662)
(xy 54.138222 59.748747) (xy 54.206497 59.769458) (xy 54.2775 59.776451) (xy 54.4025 59.776451) (xy 54.471501 59.769655)