-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcrow_imu.kicad_pcb
3246 lines (3228 loc) · 132 KB
/
crow_imu.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 20221018) (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
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010f0_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions true)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile false)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 6)
(plotframeref true)
(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 "GBR/")
)
)
(net 0 "")
(net 1 "+5V")
(net 2 "GND")
(net 3 "Net-(C2-Pad1)")
(net 4 "+3V3")
(net 5 "Net-(C5-Pad1)")
(net 6 "FSYNC")
(net 7 "INT")
(net 8 "CS")
(net 9 "MISO")
(net 10 "MOSI")
(net 11 "SCLK")
(net 12 "Net-(D1-Pad2)")
(footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005e239a2a)
(at 113.075 53.37 180)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(path "/00000000-0000-0000-0000-00005e23eb6f")
(attr smd)
(fp_text reference "0.1u" (at -2.685 0.8) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.15)))
(tstamp 0d35483a-0b12-46cc-b9f2-896fd6831779)
)
(fp_text value "100n" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4e66a44f-7fa6-4e16-bf9b-62ec864301a5)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 4d4b0fcd-2c79-4fc3-b5fa-7a0741601344)
)
(fp_line (start -0.171267 -0.51) (end 0.171267 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ef1b4b98-541b-4673-a04f-2043250fc40a))
(fp_line (start -0.171267 0.51) (end 0.171267 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a9ec539a-d80d-40cc-803c-12b6adefe42a))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2bf3f24b-fd30-41a7-a274-9b519491916b))
(fp_line (start -1.65 0.73) (end -1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c264c438-a475-4ad4-9915-0f1e6ecf3053))
(fp_line (start 1.65 -0.73) (end 1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4831966c-bb32-4bc8-a400-0382a02ffa1c))
(fp_line (start 1.65 0.73) (end -1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e25ce415-914a-48fe-bf09-324317917b2e))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7447a6e7-8205-46ba-afca-d0fa8f90c95a))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4412226e-d975-40a2-921f-502ff4129a95))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 53c85970-3e21-4fae-a84f-721cfc0513b5))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 34871042-9d5c-4e29-abdd-a168368c3c22))
(pad "1" smd roundrect (at -0.875 0 180) (size 1.05 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "Net-(C2-Pad1)") (tstamp 587a157d-dedf-4558-a037-1a94bbba1848))
(pad "2" smd roundrect (at 0.875 0 180) (size 1.05 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (tstamp 9762c9ed-64d8-4f3e-baf6-f6ba6effc919))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005e239a3b)
(at 113.975 55.77 90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(path "/00000000-0000-0000-0000-00005e240340")
(attr smd)
(fp_text reference "0.1u" (at -4.33 -0.005 90) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.15)))
(tstamp 1b54105e-6590-4d26-a763-ecfcf81eedc4)
)
(fp_text value "10u" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0f41a909-27c4-4be2-9d5e-9ae2108c8ff5)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 6a780180-586a-4241-a52d-dc7a5ffcc966)
)
(fp_line (start -0.171267 -0.51) (end 0.171267 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dabe541b-b164-4180-97a4-5ca761b86800))
(fp_line (start -0.171267 0.51) (end 0.171267 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e12e827e-36be-4503-8eef-6fc7e8bc5d49))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 417f13e4-c121-485a-a6b5-8b55e70350b8))
(fp_line (start -1.65 0.73) (end -1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9dab0cb7-2557-4419-963b-5ae736517f62))
(fp_line (start 1.65 -0.73) (end 1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c201e1b2-fc01-4110-bdaa-a33290468c83))
(fp_line (start 1.65 0.73) (end -1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0088d107-13d8-496c-8da6-7bbeb9d096b0))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 35354519-a28c-40c4-befd-0943e98dea53))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 632acde9-b7fd-4f04-8cb4-d2cbb06b3595))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 38f2d955-ea7a-4a21-aba6-02ae23f1bd4a))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6b25f522-8e2d-4cd8-9d5d-a2b80f60133b))
(pad "1" smd roundrect (at -0.875 0 90) (size 1.05 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "+3V3") (tstamp 67621f9e-0a6a-4778-ad69-04dcf300659c))
(pad "2" smd roundrect (at 0.875 0 90) (size 1.05 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (tstamp 68e09be7-3bbc-4443-a838-209ce20b2bef))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005e239a4c)
(at 112.5 55.77 90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(path "/00000000-0000-0000-0000-00005e243437")
(attr smd)
(fp_text reference "0.1u" (at -4.32 0.02 90) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.15)))
(tstamp 98e81e80-1f85-4152-be3f-99785ea97751)
)
(fp_text value "100n" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 842e430f-0c35-45f3-a0b5-95ae7b7ae388)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 854dd5d4-5fd2-4730-bd49-a9cd8299a065)
)
(fp_line (start -0.171267 -0.51) (end 0.171267 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 58dc14f9-c158-4824-a84e-24a6a482a7a4))
(fp_line (start -0.171267 0.51) (end 0.171267 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dde3dba8-1b81-466c-93a3-c284ff4da1ef))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1a2f72d1-0b36-4610-afc4-4ad1660d5d3b))
(fp_line (start -1.65 0.73) (end -1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0dcdf1b8-13c6-48b4-bd94-5d26038ff231))
(fp_line (start 1.65 -0.73) (end 1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 03d88a85-11fd-47aa-954c-c318bb15294a))
(fp_line (start 1.65 0.73) (end -1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 51c4dc0a-5b9f-4edf-a83f-4a12881e42ef))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 13475e15-f37c-4de8-857e-1722b0c39513))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2732632c-4768-42b6-bf7f-14643424019e))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b635b16e-60bb-4b3e-9fc3-47d34eef8381))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f976e2cc-36f9-4479-a816-2c74d1d5da6f))
(pad "1" smd roundrect (at -0.875 0 90) (size 1.05 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "+3V3") (tstamp 120a7b0f-ddfd-4447-85c1-35665465acdb))
(pad "2" smd roundrect (at 0.875 0 90) (size 1.05 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (tstamp 8d55e186-3e11-40e8-a65e-b36a8a00069e))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:TSOT-23-5" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005e239a84)
(at 116.425 55.245 -90)
(descr "5-pin TSOT23 package, http://cds.linear.com/docs/en/packaging/SOT_5_05-08-1635.pdf")
(tags "TSOT-23-5")
(path "/00000000-0000-0000-0000-00005e235f7a")
(attr smd)
(fp_text reference " " (at -1.785 -2.575 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 32667662-ae86-4904-b198-3e95f11851bf)
)
(fp_text value "NJM2871BF33" (at 0 2.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a05d7640-f2f6-4ba7-8c51-5a4af431fc13)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp e9bb29b2-2bb9-4ea2-acd9-2bb3ca677a12)
)
(fp_line (start -0.88 1.56) (end 0.88 1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c1d83899-e380-49f9-a87d-8e78bc089ebf))
(fp_line (start 0.88 -1.51) (end -1.55 -1.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 983c426c-24e0-4c65-ab69-1f1824adc5c6))
(fp_line (start -2.17 -1.7) (end -2.17 1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a795f1ba-cdd5-4cc5-9a52-08586e982934))
(fp_line (start -2.17 -1.7) (end 2.17 -1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 46918595-4a45-48e8-84c0-961b4db7f35f))
(fp_line (start 2.17 1.7) (end -2.17 1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 13abf99d-5265-4779-8973-e94370fd18ff))
(fp_line (start 2.17 1.7) (end 2.17 -1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a7520ad3-0f8b-4788-92d4-8ffb277041e6))
(fp_line (start -0.88 -1) (end -0.88 1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 23bb2798-d93a-4696-a962-c305c4298a0c))
(fp_line (start -0.88 -1) (end -0.43 -1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6e105729-aba0-497c-a99e-c32d2b3ddb6d))
(fp_line (start 0.88 -1.45) (end -0.43 -1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 78cbdd6c-4878-4cc5-9a58-0e506478e37d))
(fp_line (start 0.88 -1.45) (end 0.88 1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9ccf03e8-755a-4cd9-96fc-30e1d08fa253))
(fp_line (start 0.88 1.45) (end -0.88 1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 94c158d1-8503-4553-b511-bf42f506c2a8))
(pad "1" smd rect (at -1.31 -0.95 270) (size 1.22 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "+5V") (tstamp 62c076a3-d618-44a2-9042-9a08b3576787))
(pad "2" smd rect (at -1.31 0 270) (size 1.22 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (tstamp da469d11-a8a4-414b-9449-d151eeaf4853))
(pad "3" smd rect (at -1.31 0.95 270) (size 1.22 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "Net-(C2-Pad1)") (tstamp afb8e687-4a13-41a1-b8c0-89a749e897fe))
(pad "4" smd rect (at 1.31 0.95 270) (size 1.22 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "+3V3") (tstamp 5cbb5968-dbb5-4b84-864a-ead1cacf75b9))
(pad "5" smd rect (at 1.31 -0.95 270) (size 1.22 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "+5V") (tstamp 3f5fe6b7-98fc-4d3e-9567-f9f7202d1455))
(model "${KISYS3DMOD}/Package_TO_SOT_SMD.3dshapes/TSOT-23-5.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "mylibrary:LGA-16-3x3" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005e239a9d)
(at 107 56.32)
(path "/00000000-0000-0000-0000-00005e2348ec")
(attr through_hole)
(fp_text reference " " (at 1.675 2.125) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 746ba970-8279-4e7b-aed3-f28687777c21)
)
(fp_text value "ICM-20602" (at 3.7 0.05 90) (layer "F.SilkS") hide
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp 71c31975-2c45-4d18-a25a-18e07a55d11e)
)
(fp_line (start -1.5 -1.5) (end 1.5 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.SilkS") (tstamp c022004a-c968-410e-b59e-fbab0e561e9d))
(fp_line (start -1.5 1.5) (end -1.5 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.SilkS") (tstamp 10109f84-4940-47f8-8640-91f185ac9bc1))
(fp_line (start 1.5 -1.5) (end 1.5 1.5)
(stroke (width 0.05) (type solid)) (layer "F.SilkS") (tstamp f4f99e3d-7269-4f6a-a759-16ad2a258779))
(fp_line (start 1.5 1.5) (end -1.5 1.5)
(stroke (width 0.05) (type solid)) (layer "F.SilkS") (tstamp 55e740a3-0735-4744-896e-2bf5437093b9))
(fp_circle (center -0.8 -0.9) (end -0.7 -0.8)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.SilkS") (tstamp 47baf4b1-0938-497d-88f9-671136aa8be7))
(pad "1" smd rect (at -1.475 -1) (size 0.85 0.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "+3V3") (tstamp 77ed3941-d133-4aef-a9af-5a39322d14eb))
(pad "2" smd rect (at -1.475 -0.5) (size 0.85 0.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 11 "SCLK") (tstamp e615f7aa-337e-474d-9615-2ad82b1c44ca))
(pad "3" smd rect (at -1.475 0) (size 0.85 0.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 10 "MOSI") (tstamp 4fb02e58-160a-4a39-9f22-d0c75e82ee72))
(pad "4" smd rect (at -1.475 0.5) (size 0.85 0.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "MISO") (tstamp ef8fe2ac-6a7f-4682-9418-b801a1b10a3b))
(pad "5" smd rect (at -1.475 1) (size 0.85 0.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "CS") (tstamp 44d8279a-9cd1-4db6-856f-0363131605fc))
(pad "6" smd rect (at -0.5 1.475) (size 0.25 0.85) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "INT") (tstamp eb667eea-300e-4ca7-8a6f-4b00de80cd45))
(pad "7" smd rect (at 0 1.475) (size 0.25 0.85) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (tstamp 66116376-6967-4178-9f23-a26cdeafc400))
(pad "8" smd rect (at 0.5 1.475) (size 0.25 0.85) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "FSYNC") (tstamp 749dfe75-c0d6-4872-9330-29c5bbcb8ff8))
(pad "9" smd rect (at 1.475 1) (size 0.85 0.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (tstamp 3b838d52-596d-4e4d-a6ac-e4c8e7621137))
(pad "10" smd rect (at 1.475 0.5) (size 0.85 0.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (tstamp cbdcaa78-3bbc-413f-91bf-2709119373ce))
(pad "11" smd rect (at 1.475 0) (size 0.85 0.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (tstamp 1e1b062d-fad0-427c-a622-c5b8a80b5268))
(pad "12" smd rect (at 1.475 -0.5) (size 0.85 0.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (tstamp d8603679-3e7b-4337-8dbc-1827f5f54d8a))
(pad "13" smd rect (at 1.475 -1) (size 0.85 0.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (tstamp 30f15357-ce1d-48b9-93dc-7d9b1b2aa048))
(pad "14" smd rect (at 0.5 -1.475) (size 0.25 0.85) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "Net-(C5-Pad1)") (tstamp 87371631-aa02-498a-998a-09bdb74784c1))
(pad "15" smd rect (at 0 -1.475) (size 0.25 0.85) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (tstamp 2e642b3e-a476-4c54-9a52-dcea955640cd))
(pad "16" smd rect (at -0.5 -1.475) (size 0.25 0.85) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "+3V3") (tstamp 5038e144-5119-49db-b6cf-f7c345f1cf03))
(model "C:/Users/Yukey/GoogleDrive/Share/KiCad/Libraries/3D_shape/mylibrary.3dshape/LGA-16_3x3mm_P0.5mm_LayoutBorder3x5y.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005e23a080)
(at 110.7 55.77 -90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(path "/00000000-0000-0000-0000-00005e23c6f0")
(attr smd)
(fp_text reference "0.1u" (at -2.33 0.4 180) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.15)))
(tstamp 5b2b5c7d-f943-4634-9f0a-e9561705c49d)
)
(fp_text value "C_Small" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c70d9ef3-bfeb-47e0-a1e1-9aeba3da7864)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp dd00c2e1-6027-4717-b312-4fab3ee52002)
)
(fp_line (start -0.171267 -0.51) (end 0.171267 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d22e95aa-f3db-4fbc-a331-048a2523233e))
(fp_line (start -0.171267 0.51) (end 0.171267 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d1262c4d-2245-4c4f-8f35-7bb32cd9e21e))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6a44418c-7bb4-4e99-8836-57f153c19721))
(fp_line (start -1.65 0.73) (end -1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0147f16a-c952-4891-8f53-a9fb8cddeb8d))
(fp_line (start 1.65 -0.73) (end 1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp aa02e544-13f5-4cf8-a5f4-3e6cda006090))
(fp_line (start 1.65 0.73) (end -1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4e3d7c0d-12e3-42f2-b944-e4bcdbbcac2a))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 81bbc3ff-3938-49ac-8297-ce2bcc9a42bd))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 15875808-74d5-4210-b8ca-aa8fbc04ae21))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b1169a2d-8998-4b50-a48d-c520bcc1b8e1))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0d0bb7b2-a6e5-46d2-9492-a1aa6e5a7b2f))
(pad "1" smd roundrect (at -0.875 0 270) (size 1.05 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "Net-(C5-Pad1)") (tstamp 0a3cc030-c9dd-4d74-9d50-715ed2b361a2))
(pad "2" smd roundrect (at 0.875 0 270) (size 1.05 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (tstamp 8322f275-268c-4e87-a69f-4cfbf05e747f))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_SMD:LED_0603_1608Metric_Pad1.05x0.95mm_HandSolder" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005ec98bd9)
(at 116.425 58.17 180)
(descr "LED SMD 0603 (1608 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 "LED handsolder")
(path "/00000000-0000-0000-0000-00005ec9538f")
(attr smd)
(fp_text reference "Power" (at -0.025 -1.4) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.15)))
(tstamp cb868d2e-5efb-4bfb-8796-88435b326918)
)
(fp_text value "LED" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fc0a4225-db46-4d48-8163-d522602d57cd)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 6199bec7-e7eb-4ae0-b9ec-c563e157d635)
)
(fp_line (start -1.66 -0.735) (end -1.66 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 29256b3d-9450-4c0a-a4d4-911f04b9c140))
(fp_line (start -1.66 0.735) (end 0.8 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 37e4dc66-4492-4061-908d-7213940a2ec3))
(fp_line (start 0.8 -0.735) (end -1.66 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b994142f-02ac-4881-9587-6d3df53c96d2))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 483f60da-14d7-4f88-8d01-3f9f30784c70))
(fp_line (start -1.65 0.73) (end -1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fb03d859-dcc9-4533-b352-64830e0e5423))
(fp_line (start 1.65 -0.73) (end 1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6ca3c38c-4e71-4202-b6c1-1b25f04a27ae))
(fp_line (start 1.65 0.73) (end -1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2bef89de-08c7-4a13-9d85-67948d429ca0))
(fp_line (start -0.8 -0.1) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f144a97d-c3f0-423f-b0a9-3f7dbc42478b))
(fp_line (start -0.8 0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2d6718e7-f18d-444d-9792-ddf1a113460c))
(fp_line (start -0.5 -0.4) (end -0.8 -0.1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 71c77456-1405-42e3-95ed-69e629de0558))
(fp_line (start 0.8 -0.4) (end -0.5 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 04f5865e-f449-4408-a0c8-771cccfcb129))
(fp_line (start 0.8 0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b603d26a-e034-42fb-8327-b60c5bf9cdd2))
(pad "1" smd roundrect (at -0.875 0 180) (size 1.05 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (tstamp e47adf3d-9c24-4345-80c9-66679cad107e))
(pad "2" smd roundrect (at 0.875 0 180) (size 1.05 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "Net-(D1-Pad2)") (tstamp 7f3eb118-a20c-4239-b800-c9211c66847d))
(model "${KISYS3DMOD}/LED_SMD.3dshapes/LED_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005ec98bea)
(at 113.125 58.17)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(path "/00000000-0000-0000-0000-00005ec9743c")
(attr smd)
(fp_text reference "10k" (at -2.485 0) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1) bold))
(tstamp 3559e287-424e-4397-b080-77c7ba6f395b)
)
(fp_text value "R_Small" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e6521bef-4109-48f7-8b88-4121b0468927)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 46cfd089-6873-4d8b-89af-02ff30e49472)
)
(fp_line (start -0.171267 -0.51) (end 0.171267 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 02165243-61a3-4857-84ba-71a77cb9a387))
(fp_line (start -0.171267 0.51) (end 0.171267 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9ff4672a-e1a4-4a1e-887d-1b9a3429d278))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 87c78429-be2b-40ed-8d3b-56cb9666a56f))
(fp_line (start -1.65 0.73) (end -1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp edc9ab4f-487a-48dc-95f2-4d87f0e9cf9e))
(fp_line (start 1.65 -0.73) (end 1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 99030c03-63b4-49ba-b5ab-4d56974f7963))
(fp_line (start 1.65 0.73) (end -1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 646d9e91-59b4-4865-a2fc-29780ed32563))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0f3c9e3a-9c59-4881-b27a-d0e982b3ea8e))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e83e0227-ac0f-4180-82bd-68d3a7b56476))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bbb15673-6d42-42b8-9d51-7515b3ad9ee9))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 825c70b0-4860-42b7-97dc-86bfa46e06fd))
(pad "1" smd roundrect (at -0.875 0) (size 1.05 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "+3V3") (tstamp bb4f0314-c44c-4dda-b85c-537120eaae9a))
(pad "2" smd roundrect (at 0.875 0) (size 1.05 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "Net-(D1-Pad2)") (tstamp 9d984d1b-8097-407f-92f3-3ef68867dcfa))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder" (layer "F.Cu")
(tstamp 28b0532a-cb4b-4dc5-a9f7-ea8ebd895db3)
(at 119.05 55.37 90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(attr smd)
(fp_text reference "0.1u" (at -3.93 -0.15 90) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.15)))
(tstamp 9fe36206-b083-43f8-95f1-de1e7fc6fa7d)
)
(fp_text value "10u" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8e6899cd-87b8-46ea-aab1-c9edd707a122)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 4b5a0d77-57df-42fa-8cbd-af47aafbda81)
)
(fp_line (start -0.171267 -0.51) (end 0.171267 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2fe5e346-4bd8-4d1f-99c3-fb364a7996dc))
(fp_line (start -0.171267 0.51) (end 0.171267 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 862da66e-7231-43eb-bbe7-711114fa73bb))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8864675f-4b63-4c38-9871-36017e1f44a2))
(fp_line (start -1.65 0.73) (end -1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1f81aa72-76d5-4875-8243-36720bd86177))
(fp_line (start 1.65 -0.73) (end 1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 76ee490d-ac3d-43c6-9a75-a4635583a71f))
(fp_line (start 1.65 0.73) (end -1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8ced5348-7f75-4e47-84b2-c9ac9cc40613))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0ae42803-b7af-4939-8edb-53a5cae659b6))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fcd1f6d8-ea65-4a9c-8261-a99616bf8b4a))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0ea29343-91f4-468a-a5fb-5d62f0ccd414))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1e43decc-bc0b-446a-a0dd-152942c3550c))
(pad "1" smd roundrect (at -0.875 0 90) (size 1.05 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (tstamp 28e65d1a-c8e1-4faf-b2ad-7fc14d5cbf62))
(pad "2" smd roundrect (at 0.875 0 90) (size 1.05 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "+5V") (tstamp 16f276d5-990f-4df9-9a3b-d77a1c70bc4b))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_1.00mm:PinHeader_1x08_P1.00mm_Vertical" (layer "F.Cu")
(tstamp 2d9a338f-1e19-4161-b127-730c414490b3)
(at 100 53)
(descr "Through hole straight pin header, 1x08, 1.00mm pitch, single row")
(tags "Through hole pin header THT 1x08 1.00mm single row")
(attr through_hole)
(fp_text reference " " (at 0 -1.56) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3fcb4551-2b47-4ade-857f-a63afa58c476)
)
(fp_text value "PinHeader_1x08_P1.00mm_Vertical" (at 0 8.56) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f7204a8e-c0ba-4425-9fc7-eefd9e6d59c0)
)
(fp_text user "${REFERENCE}" (at 0 3.5 90) (layer "F.Fab")
(effects (font (size 0.76 0.76) (thickness 0.114)))
(tstamp 9800d8f4-5f16-4193-b695-7b79c099aa1d)
)
(fp_line (start -1.15 -1) (end -1.15 8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8dc8f8a8-9668-47cf-bac7-044e94547dec))
(fp_line (start -1.15 8) (end 1.15 8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1ef8db60-41e4-448d-94bb-948d1d250e7f))
(fp_line (start 1.15 -1) (end -1.15 -1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f9441b56-d189-435a-9834-0f9cdcff1759))
(fp_line (start 1.15 8) (end 1.15 -1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1ec7e6e2-c86b-40d1-af09-c3733ff1083e))
(fp_line (start -0.635 -0.1825) (end -0.3175 -0.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cb6dc878-2382-4057-aac2-e0b1b20ffe46))
(fp_line (start -0.635 7.5) (end -0.635 -0.1825)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 33c2c5c8-ba44-4a8e-a1e2-209e59a51b7b))
(fp_line (start -0.3175 -0.5) (end 0.635 -0.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c22a189a-17df-46de-8881-14a4c0191683))
(fp_line (start 0.635 -0.5) (end 0.635 7.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 38940ac9-bc24-4bad-b2b7-87aa65cbb4b7))
(fp_line (start 0.635 7.5) (end -0.635 7.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 19ef4e0c-4e81-4867-8f83-b7259f0d91e1))
(pad "1" thru_hole circle (at 0 0) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 2 "GND") (tstamp 04fa6bff-53c2-41ac-8f3b-78bdf0b47f45))
(pad "2" thru_hole oval (at 0 1) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "+5V") (tstamp 356af7eb-8d6a-4c3e-977b-d76932ea2843))
(pad "3" thru_hole oval (at 0 2) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 11 "SCLK") (tstamp c73d1eb3-4274-43df-bde1-d6a12142dc92))
(pad "4" thru_hole oval (at 0 3) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 10 "MOSI") (tstamp 072518f3-a411-4c8f-8ebc-4647dc7b1be1))
(pad "5" thru_hole oval (at 0 4) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 9 "MISO") (tstamp a149f0dc-6dba-41a4-958c-3bb021eea331))
(pad "6" thru_hole oval (at 0 5) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 8 "CS") (tstamp 322adf64-4bcb-47c3-ba11-e0b09b7d5fbc))
(pad "7" thru_hole oval (at 0 6) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 7 "INT") (tstamp 64d4aa04-b3f0-4d3e-a0cd-b00358885bab))
(pad "8" thru_hole oval (at 0 7) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 6 "FSYNC") (tstamp 49abd329-78b3-4030-8807-3992dba85b4e))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_1.00mm.3dshapes/PinHeader_1x08_P1.00mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_1.00mm:PinHeader_1x08_P1.00mm_Vertical" (layer "F.Cu")
(tstamp 37c78bc7-a9b1-445c-85dd-139fe2479630)
(at 121 53)
(descr "Through hole straight pin header, 1x08, 1.00mm pitch, single row")
(tags "Through hole pin header THT 1x08 1.00mm single row")
(attr through_hole)
(fp_text reference " " (at 0 -1.56) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 72c6d522-db43-431c-91c8-b4e6e246f95a)
)
(fp_text value "PinHeader_1x08_P1.00mm_Vertical" (at 0 8.56) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cc2b8905-d0fb-4148-8c87-ba7d9de6d1d3)
)
(fp_text user "${REFERENCE}" (at 0 3.5 90) (layer "F.Fab")
(effects (font (size 0.76 0.76) (thickness 0.114)))
(tstamp a3125abe-394a-45fe-98d2-ca96c4ca338c)
)
(fp_line (start -1.15 -1) (end -1.15 8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 42519ca4-2663-455a-b9b5-5cfa912ce92e))
(fp_line (start -1.15 8) (end 1.15 8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9a161f23-56e2-4298-aea0-46d6b6f9525d))
(fp_line (start 1.15 -1) (end -1.15 -1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8782695e-2af8-4036-8056-6389f8818ed9))
(fp_line (start 1.15 8) (end 1.15 -1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 578869f5-5766-46ec-ab19-b508da37f0d4))
(fp_line (start -0.635 -0.1825) (end -0.3175 -0.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 96edecb4-de79-414d-af23-77ef1d53b33d))
(fp_line (start -0.635 7.5) (end -0.635 -0.1825)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4c99260c-05e2-451e-b875-c844877bb8e8))
(fp_line (start -0.3175 -0.5) (end 0.635 -0.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3292bb04-8fb8-43c2-bf89-25c67bc3f0f2))
(fp_line (start 0.635 -0.5) (end 0.635 7.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp dfb28861-f52e-45b7-a875-4a3917c346cc))
(fp_line (start 0.635 7.5) (end -0.635 7.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9da3cb85-c808-4d6a-adfc-daab134f962e))
(pad "1" thru_hole circle (at 0 0) (size 0.85 0.85) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 2 "GND") (tstamp 5e42ff71-031b-49fd-befa-2a8d1d308a55))
(pad "2" thru_hole oval (at 0 1) (size 0.85 0.85) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 2 "GND") (tstamp eb0d89c8-7299-43b6-b3fd-e0b313cb168a))
(pad "3" thru_hole oval (at 0 2) (size 0.85 0.85) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 2 "GND") (tstamp 76f5a1e0-679e-4795-a5ad-2fd7ede24fd6))
(pad "4" thru_hole oval (at 0 3) (size 0.85 0.85) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 2 "GND") (tstamp c30120d0-def5-4b04-ab81-f6dec260df07))
(pad "5" thru_hole oval (at 0 4) (size 0.85 0.85) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 2 "GND") (tstamp 5e5f8615-969d-4314-8a4a-fac08112e8a8))
(pad "6" thru_hole oval (at 0 5) (size 0.85 0.85) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 2 "GND") (tstamp b66823cd-71a6-4b52-8c23-4e7b1195efbc))
(pad "7" thru_hole oval (at 0 6) (size 0.85 0.85) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 2 "GND") (tstamp 07be849a-d71a-4982-9907-8fb98963d0d7))
(pad "8" thru_hole oval (at 0 7) (size 0.85 0.85) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 2 "GND") (tstamp 655039ae-f222-471d-b7a1-2f5d2f9db2f7))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_1.00mm.3dshapes/PinHeader_1x08_P1.00mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(gr_line (start 101.5 51.499999) (end 100 52.3)
(stroke (width 0.05) (type default)) (layer "Edge.Cuts") (tstamp 196b10df-8a37-4d6f-a70a-5303dd81bb80))
(gr_line (start 121 52.4) (end 119 51.5)
(stroke (width 0.05) (type default)) (layer "Edge.Cuts") (tstamp 3716651b-4151-485c-91ab-5122c74eac2e))
(gr_line (start 100 60.7) (end 101.5 61.5)
(stroke (width 0.05) (type default)) (layer "Edge.Cuts") (tstamp 42770e78-17e5-4037-bd6c-3c4bb3d8ead7))
(gr_line (start 121 52.4) (end 121 60.7)
(stroke (width 0.05) (type default)) (layer "Edge.Cuts") (tstamp 4662cb56-c58a-4daf-b5cd-2e795b19cdc4))
(gr_line (start 119 51.5) (end 101.5 51.499999)
(stroke (width 0.05) (type default)) (layer "Edge.Cuts") (tstamp 57dcd9d5-7aa5-4d68-b1f2-715c5a917055))
(gr_line (start 101.5 61.5) (end 119.5 61.5)
(stroke (width 0.05) (type default)) (layer "Edge.Cuts") (tstamp 6af42d4b-de98-41fb-9ba2-b001d202cb00))
(gr_line (start 119.5 61.5) (end 121 60.7)
(stroke (width 0.05) (type default)) (layer "Edge.Cuts") (tstamp 6e541110-530b-4b25-bb0e-6c7411461364))
(gr_line (start 100 52.3) (end 100 60.7)
(stroke (width 0.05) (type default)) (layer "Edge.Cuts") (tstamp f7257695-a7af-4150-8df0-c15e7443a1e2))
(gr_text "JLCJLCJLCJLC" (at 111.52 52.99) (layer "B.SilkS") (tstamp 6516b69d-574f-4897-b807-a04b280cdf0e)
(effects (font (size 0.9 0.9) (thickness 0.2) bold) (justify left bottom mirror))
)
(gr_text "IMU V3.0" (at 102.41 61) (layer "F.SilkS") (tstamp 863217c5-9c76-46a9-b6bf-a4139a5886a0)
(effects (font (size 0.6 0.6) (thickness 0.15) bold) (justify left bottom))
)
(dimension (type aligned) (layer "Eco1.User") (tstamp ee8bdeec-fb33-4b3a-9aed-7d877665fa73)
(pts (xy 121 53) (xy 100 53))
(height 2.2)
(gr_text "21.0000 mm" (at 110.5 49.65) (layer "Eco1.User") (tstamp ee8bdeec-fb33-4b3a-9aed-7d877665fa73)
(effects (font (size 1 1) (thickness 0.15)))
)
(format (prefix "") (suffix "") (units 3) (units_format 1) (precision 4))
(style (thickness 0.1) (arrow_length 1.27) (text_position_mode 0) (extension_height 0.58642) (extension_offset 0.5) keep_text_aligned)
)
(segment (start 117.375 55.645) (end 117.375 56.555) (width 0.4) (layer "F.Cu") (net 1) (tstamp 128783bd-c7c1-4b7a-ad89-fe207de35682))
(segment (start 117.375 53.935) (end 117.375 55.245) (width 0.4) (layer "F.Cu") (net 1) (tstamp 29e78086-2175-405e-9ba3-c48766d2f50c))
(segment (start 119.05 54.495) (end 117.05 52.495) (width 0.4) (layer "F.Cu") (net 1) (tstamp 40e8a0dc-de73-42c5-a9a8-a0b7a3eb733f))
(segment (start 117.375 55.245) (end 117.375 56.555) (width 0.4) (layer "F.Cu") (net 1) (tstamp 4c8eb964-bdf4-44de-90e9-e2ab82dd5313))
(segment (start 119.05 54.495) (end 118.525 54.495) (width 0.4) (layer "F.Cu") (net 1) (tstamp 630efabc-5c27-4a7d-9a0c-975226e38884))
(segment (start 118.525 54.495) (end 117.375 55.645) (width 0.4) (layer "F.Cu") (net 1) (tstamp 6b2241af-ee82-43cb-a897-e040847752f4))
(segment (start 103.67501 55.29499) (end 103.65 55.32) (width 0.25) (layer "F.Cu") (net 1) (tstamp 6f6f1866-f590-49a6-97c6-26accc6cde0a))
(segment (start 100.91 54) (end 100 54) (width 0.25) (layer "F.Cu") (net 1) (tstamp 72f5ec33-9060-48cf-97de-07042bee314e))
(segment (start 117.05 52.495) (end 106.324239 52.495) (width 0.4) (layer "F.Cu") (net 1) (tstamp 75b63214-7be5-4eb3-88e0-db3d8328738b))
(segment (start 103.67501 55.144229) (end 103.67501 55.29499) (width 0.4) (layer "F.Cu") (net 1) (tstamp bd8a2fa1-1273-4b35-aafc-77cf53b13f43))
(segment (start 102.23 55.32) (end 100.91 54) (width 0.25) (layer "F.Cu") (net 1) (tstamp e0f9234d-99e0-4a91-8489-4edab84e9453))
(segment (start 106.324239 52.495) (end 103.67501 55.144229) (width 0.4) (layer "F.Cu") (net 1) (tstamp eb409709-b54c-4c67-a7d7-04aeba6f3b0c))
(segment (start 103.65 55.32) (end 102.23 55.32) (width 0.25) (layer "F.Cu") (net 1) (tstamp ee2ae939-96b7-4bbc-8643-e6aaf9907cb1))
(segment (start 109.45 55.32) (end 109.45 55.32) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005e23ac02))
(segment (start 109.45 55.82) (end 109.45 55.82) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005e23ac04))
(segment (start 109.45 56.32) (end 109.45 56.32) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005e23ac06))
(segment (start 109.45 56.82) (end 109.45 56.82) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005e23ac08))
(segment (start 109.45 57.32) (end 109.45 57.32) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005e23ac0a))
(segment (start 109.45 57.32) (end 109.45 57.32) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005e23ac26))
(segment (start 109.45 56.32) (end 109.45 56.32) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005e23ac28))
(segment (start 109.45 55.32) (end 109.45 55.32) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005e23ac2a))
(segment (start 118.95 51.97) (end 101.73 51.97) (width 0.25) (layer "F.Cu") (net 2) (tstamp 13c912a4-6f92-4466-9a03-02382bd47d2d))
(segment (start 116.425 53.935) (end 116.425 57.67) (width 0.4) (layer "F.Cu") (net 2) (tstamp 1d9cdadc-9036-4a95-b6db-fa7b3b74c869))
(segment (start 112.5 53.67) (end 112.5 54.895) (width 0.4) (layer "F.Cu") (net 2) (tstamp 24f7628d-681d-4f0e-8409-40a129e929d9))
(segment (start 121 53) (end 119.98 53) (width 0.25) (layer "F.Cu") (net 2) (tstamp 2a7de7ce-4424-45c0-b4fb-f26f37e8a47f))
(segment (start 109.4 60.72) (end 108 60.72) (width 0.25) (layer "F.Cu") (net 2) (tstamp 2cdf84b5-88a9-420b-b1d6-ad38a43ecd8f))
(segment (start 108.475 56.32) (end 109.45 56.32) (width 0.25) (layer "F.Cu") (net 2) (tstamp 2d210a96-f81f-42a9-8bf4-1b43c11086f3))
(segment (start 116.425 57.67) (end 116.925 58.17) (width 0.4) (layer "F.Cu") (net 2) (tstamp 3a7648d8-121a-4921-9b92-9b35b76ce39b))
(segment (start 112.2 53.37) (end 112.5 53.67) (width 0.4) (layer "F.Cu") (net 2) (tstamp 3e903008-0276-4a73-8edb-5d9dfde6297c))
(segment (start 119.4 60.72) (end 119.9 60.22) (width 0.25) (layer "F.Cu") (net 2) (tstamp 549c7e87-46d6-482b-a3a1-d9f12fc1a3b7))
(segment (start 108 60.72) (end 101.68 60.72) (width 0.25) (layer "F.Cu") (net 2) (tstamp 57eabafa-8ebf-4488-b352-40335a10a8d5))
(segment (start 101.73 51.97) (end 101.6 52.1) (width 0.25) (layer "F.Cu") (net 2) (tstamp 69c2c67a-fd7c-4487-b71e-1b1d16213e9c))
(segment (start 116.925 58.17) (end 117.3 58.17) (width 0.4) (layer "F.Cu") (net 2) (tstamp 6bfe5804-2ef9-4c65-b2a7-f01e4014370a))
(segment (start 108.475 57.32) (end 109.45 57.32) (width 0.25) (layer "F.Cu") (net 2) (tstamp 6c2e273e-743c-4f1e-a647-4171f8122550))
(segment (start 112.5 54.895) (end 113.975 54.895) (width 0.4) (layer "F.Cu") (net 2) (tstamp 75ffc65c-7132-4411-9f2a-ae0c73d79338))
(segment (start 109.4 60.72) (end 119.4 60.72) (width 0.25) (layer "F.Cu") (net 2) (tstamp 7666d6ee-aae3-43d7-9174-1eeca75be881))
(segment (start 107 54.845) (end 107 55.82) (width 0.25) (layer "F.Cu") (net 2) (tstamp 7aed3a71-054b-4aaa-9c0a-030523c32827))
(segment (start 107 57.795) (end 107 56.82) (width 0.25) (layer "F.Cu") (net 2) (tstamp 7dc880bc-e7eb-4cce-8d8c-0b65a9dd788e))
(segment (start 101.68 60.72) (end 101.6 60.8) (width 0.25) (layer "F.Cu") (net 2) (tstamp 85d714bc-720c-4bfc-a614-5785f1a27042))
(segment (start 119.98 53) (end 119.4 52.42) (width 0.25) (layer "F.Cu") (net 2) (tstamp 8e002b1e-1c60-4445-9d3b-556d6f9324d2))
(segment (start 108.475 55.82) (end 109.45 55.82) (width 0.25) (layer "F.Cu") (net 2) (tstamp 9bb20359-0f8b-45bc-9d38-6626ed3a939d))
(segment (start 109.45 55.32) (end 109.45 57.32) (width 0.4) (layer "F.Cu") (net 2) (tstamp 9e1b837f-0d34-4a18-9644-9ee68f141f46))
(segment (start 100 53) (end 100.7 53) (width 0.25) (layer "F.Cu") (net 2) (tstamp a314d349-602b-4d6d-8b40-e23b46731c94))
(segment (start 108.475 55.32) (end 109.45 55.32) (width 0.25) (layer "F.Cu") (net 2) (tstamp aa14c3bd-4acc-4908-9d28-228585a22a9d))
(segment (start 100.7 53) (end 101.6 52.1) (width 0.25) (layer "F.Cu") (net 2) (tstamp bdf72db5-e48d-4834-bc46-7a66e94c758a))
(segment (start 117.3 58.17) (end 116.95 58.17) (width 0.4) (layer "F.Cu") (net 2) (tstamp c0eca5ed-bc5e-4618-9bcd-80945bea41ed))
(segment (start 117.3 58.17) (end 119.05 56.42) (width 0.4) (layer "F.Cu") (net 2) (tstamp cabc0027-8c57-4a93-a31a-7d83ee541d54))
(segment (start 119.9 60.22) (end 120.78 60.22) (width 0.25) (layer "F.Cu") (net 2) (tstamp d84f41cf-b545-425d-a819-06781e1e18d5))
(segment (start 119.4 52.42) (end 118.95 51.97) (width 0.25) (layer "F.Cu") (net 2) (tstamp e38c1a20-a4f7-4774-b4db-61f4dde234a5))
(segment (start 108.475 56.82) (end 109.45 56.82) (width 0.25) (layer "F.Cu") (net 2) (tstamp e857610b-4434-4144-b04e-43c1ebdc5ceb))
(segment (start 119.05 56.42) (end 119.05 56.245) (width 0.4) (layer "F.Cu") (net 2) (tstamp fd795a4d-340f-4bae-a5b6-a48e7b69400a))
(via (at 109.45 56.32) (size 0.6) (drill 0.4) (layers "F.Cu" "B.Cu") (net 2) (tstamp 003c2200-0632-4808-a662-8ddd5d30c768))
(via (at 113.25 54.895) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 0217dfc4-fc13-4699-99ad-d9948522648e))
(via (at 108.7 60.72) (size 0.6) (drill 0.4) (layers "F.Cu" "B.Cu") (net 2) (tstamp 0f54db53-a272-4955-88fb-d7ab00657bb0))
(via (at 119.4 52.42) (size 0.6) (drill 0.4) (layers "F.Cu" "B.Cu") (net 2) (tstamp 1a1ab354-5f85-45f9-938c-9f6c4c8c3ea2))
(via (at 119.4 60.72) (size 0.6) (drill 0.4) (layers "F.Cu" "B.Cu") (net 2) (tstamp 1bf544e3-5940-4576-9291-2464e95c0ee2))
(via (at 119.9 52.92) (size 0.6) (drill 0.4) (layers "F.Cu" "B.Cu") (net 2) (tstamp 42713045-fffd-4b2d-ae1e-7232d705fb12))
(via (at 101.6 52.1) (size 0.6) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 517e3702-cd1f-460e-bf1f-c1bce00f073b))
(via (at 109.45 59.27) (size 0.6) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 52b2d265-d913-48ee-9af8-b3d9422f42b8))
(via (at 107 56.82) (size 0.6) (drill 0.4) (layers "F.Cu" "B.Cu") (net 2) (tstamp 666713b0-70f4-42df-8761-f65bc212d03b))
(via (at 108 60.72) (size 0.6) (drill 0.4) (layers "F.Cu" "B.Cu") (net 2) (tstamp 80094b70-85ab-4ff6-934b-60d5ee65023a))
(via (at 103 53.7) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 851f600f-95a8-4b6d-bd41-98a115e34345))
(via (at 107 55.82) (size 0.6) (drill 0.4) (layers "F.Cu" "B.Cu") (net 2) (tstamp 9157f4ae-0244-4ff1-9f73-3cb4cbb5f280))
(via (at 109.45 55.32) (size 0.6) (drill 0.4) (layers "F.Cu" "B.Cu") (net 2) (tstamp c01d25cd-f4bb-4ef3-b5ea-533a2a4ddb2b))
(via (at 119.9 60.22) (size 0.6) (drill 0.4) (layers "F.Cu" "B.Cu") (net 2) (tstamp c0515cd2-cdaa-467e-8354-0f6eadfa35c9))
(via (at 109.45 57.32) (size 0.6) (drill 0.4) (layers "F.Cu" "B.Cu") (net 2) (tstamp cbd8faed-e1f8-4406-87c8-58b2c504a5d4))
(via (at 103.35 59.67) (size 0.6) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp d3b4b0e6-7e74-46b0-a58a-ec091a33b5f9))
(via (at 109.4 60.72) (size 0.6) (drill 0.4) (layers "F.Cu" "B.Cu") (net 2) (tstamp d4a1d3c4-b315-4bec-9220-d12a9eab51e0))
(via (at 101.6 60.8) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 2) (tstamp f4ea3099-19ef-4391-9cf8-205ae879df42))
(segment (start 115.085 53.545) (end 115.475 53.935) (width 0.4) (layer "F.Cu") (net 3) (tstamp 45008225-f50f-4d6b-b508-6730a9408caf))
(segment (start 113.95 53.395) (end 114.6 53.395) (width 0.4) (layer "F.Cu") (net 3) (tstamp 6475547d-3216-45a4-a15c-48314f1dd0f9))
(segment (start 114.6 53.395) (end 114.75 53.545) (width 0.4) (layer "F.Cu") (net 3) (tstamp 8c6a821f-8e19-48f3-8f44-9b340f7689bc))
(segment (start 114.75 53.545) (end 115.085 53.545) (width 0.4) (layer "F.Cu") (net 3) (tstamp a544eb0a-75db-4baf-bf54-9ca21744343b))
(segment (start 112.5 56.645) (end 114 56.645) (width 0.4) (layer "F.Cu") (net 4) (tstamp 00000000-0000-0000-0000-00005ec9968e))
(segment (start 104.55 55.32) (end 104.5 55.27) (width 0.25) (layer "F.Cu") (net 4) (tstamp 1a6d2848-e78e-49fe-8978-e1890f07836f))
(segment (start 114 56.645) (end 115.385 56.645) (width 0.4) (layer "F.Cu") (net 4) (tstamp 1e8701fc-ad24-40ea-846a-e3db538d6077))
(segment (start 115.385 56.645) (end 115.475 56.555) (width 0.4) (layer "F.Cu") (net 4) (tstamp 25d545dc-8f50-4573-922c-35ef5a2a3a19))
(segment (start 106.147767 53.52) (end 104.5 55.167767) (width 0.4) (layer "F.Cu") (net 4) (tstamp 28222c64-b82a-4d52-b605-860c42caae16))
(segment (start 106.5 53.64) (end 106.38 53.52) (width 0.25) (layer "F.Cu") (net 4) (tstamp 40165eda-4ba6-4565-9bb4-b9df6dbb08da))
(segment (start 105.525 55.32) (end 104.55 55.32) (width 0.25) (layer "F.Cu") (net 4) (tstamp 7d34f6b1-ab31-49be-b011-c67fe67a8a56))
(segment (start 106.5 54.845) (end 106.5 53.64) (width 0.25) (layer "F.Cu") (net 4) (tstamp 7e023245-2c2b-4e2b-bfb9-5d35176e88f2))
(segment (start 111.62499 57.94499) (end 111.85 58.17) (width 0.4) (layer "F.Cu") (net 4) (tstamp 8c514922-ffe1-4e37-a260-e807409f2e0d))
(segment (start 110.9 53.52) (end 111.62499 54.24499) (width 0.4) (layer "F.Cu") (net 4) (tstamp aca4de92-9c41-4c2b-9afa-540d02dafa1c))
(segment (start 111.62499 54.24499) (end 111.62499 56.46999) (width 0.4) (layer "F.Cu") (net 4) (tstamp babeabf2-f3b0-4ed5-8d9e-0215947e6cf3))
(segment (start 111.62499 56.46999) (end 111.62499 57.94499) (width 0.4) (layer "F.Cu") (net 4) (tstamp c25a772d-af9c-4ebc-96f6-0966738c13a8))
(segment (start 111.85 58.17) (end 112.25 58.17) (width 0.4) (layer "F.Cu") (net 4) (tstamp d5641ac9-9be7-46bf-90b3-6c83d852b5ba))
(segment (start 111.62499 56.46999) (end 111.8 56.645) (width 0.4) (layer "F.Cu") (net 4) (tstamp d7269d2a-b8c0-422d-8f25-f79ea31bf75e))
(segment (start 104.5 55.167767) (end 104.5 55.27) (width 0.4) (layer "F.Cu") (net 4) (tstamp db48ab25-fd05-4014-acd9-eb0cc979cc0b))
(segment (start 111.8 56.645) (end 112.5 56.645) (width 0.4) (layer "F.Cu") (net 4) (tstamp df68c26a-03b5-4466-aecf-ba34b7dce6b7))
(segment (start 106.38 53.52) (end 110.9 53.52) (width 0.4) (layer "F.Cu") (net 4) (tstamp e8c50f1b-c316-4110-9cce-5c24c65a1eaa))
(segment (start 106.38 53.52) (end 106.147767 53.52) (width 0.4) (layer "F.Cu") (net 4) (tstamp f10611b0-002b-4365-8629-34bec4c954ef))
(segment (start 110.7 54.22) (end 110.7 54.895) (width 0.25) (layer "F.Cu") (net 5) (tstamp 40976bf0-19de-460f-ad64-224d4f51e16b))
(segment (start 107.5 54.845) (end 107.5 54.27) (width 0.25) (layer "F.Cu") (net 5) (tstamp a15a7506-eae4-4933-84da-9ad754258706))
(segment (start 107.7 54.07) (end 110.55 54.07) (width 0.25) (layer "F.Cu") (net 5) (tstamp c8c79177-94d4-43e2-a654-f0a5554fbb68))
(segment (start 107.5 54.27) (end 107.7 54.07) (width 0.25) (layer "F.Cu") (net 5) (tstamp d3c11c8f-a73d-4211-934b-a6da255728ad))
(segment (start 110.55 54.07) (end 110.7 54.22) (width 0.25) (layer "F.Cu") (net 5) (tstamp e21aa84b-970e-47cf-b64f-3b55ee0e1b51))
(segment (start 105.46359 59.22) (end 104.56359 58.32) (width 0.25) (layer "F.Cu") (net 6) (tstamp 48825fe2-5b31-4cac-b307-8ef9b3718d42))
(segment (start 107.5 57.795) (end 107.5 58.92) (width 0.25) (layer "F.Cu") (net 6) (tstamp 64fe8199-baee-47a8-80b1-cc080ad6d456))
(segment (start 104.56359 58.32) (end 102.81 58.32) (width 0.25) (layer "F.Cu") (net 6) (tstamp 7cdd609d-2c54-4c14-b2f4-c46aedd96d27))
(segment (start 101.13 60) (end 100 60) (width 0.25) (layer "F.Cu") (net 6) (tstamp b859fb03-2f90-4103-9b8c-426b4f42c777))
(segment (start 102.81 58.32) (end 101.13 60) (width 0.25) (layer "F.Cu") (net 6) (tstamp daba3587-cd1d-46fd-b0d2-1bb2d06385a5))
(segment (start 107.5 58.92) (end 107.2 59.22) (width 0.25) (layer "F.Cu") (net 6) (tstamp f71c1886-319c-44c7-954b-d635e87b2e09))
(segment (start 107.2 59.22) (end 105.46359 59.22) (width 0.25) (layer "F.Cu") (net 6) (tstamp f74a678e-2a8f-4b12-a294-20b306a1fb88))
(segment (start 106.3 58.77) (end 105.65 58.77) (width 0.25) (layer "F.Cu") (net 7) (tstamp 07cf13ed-e18a-4339-9b15-7efa59718cbe))
(segment (start 104.7 57.82) (end 102.05 57.82) (width 0.25) (layer "F.Cu") (net 7) (tstamp 1e9b434b-fb61-4825-acf7-00ef5448a6cc))
(segment (start 106.5 57.795) (end 106.5 58.57) (width 0.25) (layer "F.Cu") (net 7) (tstamp 308a4a6b-0c87-429c-a414-761c0f66b3ef))
(segment (start 105.65 58.77) (end 104.7 57.82) (width 0.25) (layer "F.Cu") (net 7) (tstamp 575cd757-dea4-45d2-8807-aa5565bb53ce))
(segment (start 106.5 58.57) (end 106.3 58.77) (width 0.25) (layer "F.Cu") (net 7) (tstamp 8f675a77-072d-4bef-9589-5f4f40e17b5a))
(segment (start 102.05 57.82) (end 100.87 59) (width 0.25) (layer "F.Cu") (net 7) (tstamp 9a8b754a-e7f2-4799-8c96-62f37913eeb8))
(segment (start 100.87 59) (end 100 59) (width 0.25) (layer "F.Cu") (net 7) (tstamp f6910f79-39d4-4d10-98c4-d0714088d62b))
(segment (start 101.030662 58) (end 100 58) (width 0.25) (layer "F.Cu") (net 8) (tstamp 10f5f962-e933-45de-b42f-3975c5a5aa7b))
(segment (start 105.525 57.32) (end 101.710662 57.32) (width 0.25) (layer "F.Cu") (net 8) (tstamp 92e9f573-cc67-4403-9dee-d6759f1238eb))
(segment (start 101.710662 57.32) (end 101.030662 58) (width 0.25) (layer "F.Cu") (net 8) (tstamp e13b138a-ec1b-44df-8b1e-4bbf791ae1d7))
(segment (start 105.525 56.82) (end 100.18 56.82) (width 0.25) (layer "F.Cu") (net 9) (tstamp e7414ce1-5a9a-45e4-aa76-5ccac89885d3))
(segment (start 100 56) (end 100.75 56) (width 0.25) (layer "F.Cu") (net 10) (tstamp 0ad90c47-d268-4645-b198-32680b3f12b7))
(segment (start 101.07 56.32) (end 105.525 56.32) (width 0.25) (layer "F.Cu") (net 10) (tstamp 89de7b86-6622-43b5-acf4-cc240b7263cc))
(segment (start 100.75 56) (end 101.07 56.32) (width 0.25) (layer "F.Cu") (net 10) (tstamp fabc3e4f-6137-43a4-b52f-0a62725a38ac))
(segment (start 101.13 55) (end 101.95 55.82) (width 0.25) (layer "F.Cu") (net 11) (tstamp 03aca5e0-fad0-4cc1-9895-662a5e8b52d5))
(segment (start 101.95 55.82) (end 105.525 55.82) (width 0.25) (layer "F.Cu") (net 11) (tstamp 3224e72d-79a8-41f8-9ddd-f9926872b493))
(segment (start 100 55) (end 101.13 55) (width 0.25) (layer "F.Cu") (net 11) (tstamp bda178f5-bf79-4366-81bc-a3ed65fb81bc))
(segment (start 114 58.17) (end 115.55 58.17) (width 0.4) (layer "F.Cu") (net 12) (tstamp 9f8381e9-3077-4453-a480-a01ad9c1a940))
(zone (net 0) (net_name "") (layer "F.Cu") (tstamp 00000000-0000-0000-0000-00005e23ac90) (hatch edge 0.508)
(connect_pads (clearance 0))
(min_thickness 0.254) (filled_areas_thickness no)
(keepout (tracks not_allowed) (vias not_allowed) (pads allowed) (copperpour not_allowed) (footprints allowed))
(fill (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 108.21 55.95)
(xy 108.76 55.95)
(xy 108.76 56.19)
(xy 108.21 56.19)
)
)
)
(zone (net 4) (net_name "+3V3") (layer "F.Cu") (tstamp 0003ca23-e3e7-4fe0-ad96-b15f9c2361ce) (name "$teardrop_padvia$") (hatch edge 0.5)
(priority 30005)
(attr (teardrop (type padvia)))
(connect_pads yes (clearance 0))
(min_thickness 0.0254) (filled_areas_thickness no)
(fill yes (thermal_gap 0.5) (thermal_bridge_width 0.5) (island_removal_mode 1) (island_area_min 10))
(polygon
(pts
(xy 113.025 56.445)
(xy 113.025 56.845)
(xy 113.598839 57.12)
(xy 113.976 56.645)
(xy 113.598839 56.17)
)
)
(filled_polygon
(layer "F.Cu")
(pts
(xy 113.604642 56.177308)
(xy 113.970223 56.637725)
(xy 113.972684 56.646335)
(xy 113.970223 56.652275)
(xy 113.604642 57.112691)
(xy 113.596814 57.11704)
(xy 113.590423 57.115967)
(xy 113.031644 56.848183)
(xy 113.025664 56.841517)
(xy 113.025 56.837632)
(xy 113.025 56.452367)
(xy 113.028427 56.444094)
(xy 113.031644 56.441816)
(xy 113.590425 56.174031)
(xy 113.599364 56.173547)
)
)
)
(zone (net 3) (net_name "Net-(C2-Pad1)") (layer "F.Cu") (tstamp 0cbb60da-5221-49e7-a9bd-6f0a8d4a3b92) (name "$teardrop_padvia$") (hatch edge 0.5)
(priority 30017)
(attr (teardrop (type padvia)))
(connect_pads yes (clearance 0))
(min_thickness 0.0254) (filled_areas_thickness no)
(fill yes (thermal_gap 0.5) (thermal_bridge_width 0.5) (island_removal_mode 1) (island_area_min 10))
(polygon
(pts
(xy 114.608578 53.686421)
(xy 114.891421 53.403578)
(xy 114.419942 52.98627)
(xy 113.949293 53.369293)
(xy 114.328387 53.826921)
)
)
(filled_polygon
(layer "F.Cu")
(pts
(xy 114.427377 52.992851)
(xy 114.88211 53.395337)
(xy 114.886033 53.403385)
(xy 114.883116 53.411852)
(xy 114.882628 53.41237)
(xy 114.609916 53.685082)
(xy 114.606887 53.687268)
(xy 114.336704 53.82275)
(xy 114.327773 53.823395)
(xy 114.322451 53.819756)
(xy 113.956821 53.378381)
(xy 113.954183 53.369825)
(xy 113.958368 53.361908)
(xy 113.958447 53.361843)
(xy 114.41224 52.992537)
(xy 114.420819 52.989974)
)
)
)
(zone (net 4) (net_name "+3V3") (layer "F.Cu") (tstamp 0f8cd596-3c1b-4c37-9d80-3007ce413bc6) (name "$teardrop_padvia$") (hatch edge 0.5)
(priority 30003)
(attr (teardrop (type padvia)))
(connect_pads yes (clearance 0))
(min_thickness 0.0254) (filled_areas_thickness no)
(fill yes (thermal_gap 0.5) (thermal_bridge_width 0.5) (island_removal_mode 1) (island_area_min 10))
(polygon
(pts
(xy 114.925 56.845)
(xy 114.925 56.445)
(xy 114.351161 56.17)
(xy 113.974 56.645)
(xy 114.351161 57.12)
)
)
(filled_polygon
(layer "F.Cu")
(pts
(xy 114.359573 56.174031)
(xy 114.918356 56.441816)
(xy 114.924336 56.448482)
(xy 114.925 56.452367)
(xy 114.925 56.837632)
(xy 114.921573 56.845905)
(xy 114.918356 56.848183)
(xy 114.359576 57.115967)
(xy 114.350635 57.116452)
(xy 114.345357 57.112691)
(xy 114.133523 56.845905)
(xy 113.979775 56.652273)
(xy 113.977315 56.643665)
(xy 113.979775 56.637726)
(xy 114.345359 56.177306)
(xy 114.353185 56.172959)
)
)
)
(zone (net 8) (net_name "CS") (layer "F.Cu") (tstamp 1b65b277-64c3-4639-b9c3-e12d46f12ae0) (name "$teardrop_padvia$") (hatch edge 0.5)
(priority 30016)
(attr (teardrop (type padvia)))
(connect_pads yes (clearance 0))
(min_thickness 0.0254) (filled_areas_thickness no)
(fill yes (thermal_gap 0.5) (thermal_bridge_width 0.5) (island_removal_mode 1) (island_area_min 10))
(polygon
(pts
(xy 100.85 58.125)
(xy 100.85 57.875)
(xy 100.16264 57.607351)
(xy 99.999 58)
(xy 100.16264 58.392649)
)
)
(filled_polygon
(layer "F.Cu")
(pts
(xy 100.189729 57.617899)
(xy 100.842545 57.872097)
(xy 100.849011 57.878293)
(xy 100.85 57.883)
(xy 100.85 58.116999)
(xy 100.846573 58.125272)
(xy 100.842545 58.127902)
(xy 100.173288 58.388502)
(xy 100.164336 58.38831)
(xy 100.158244 58.382101)
(xy 100.08093 58.196589)
(xy 100.0264 58.065744)
(xy 100.0255 58.061243)
(xy 100.0255 57.938754)
(xy 100.0264 57.934253)
(xy 100.158244 57.617897)
(xy 100.164589 57.611581)
(xy 100.173288 57.611497)
)
)
)
(zone (net 6) (net_name "FSYNC") (layer "F.Cu") (tstamp 2e165a65-811d-4462-9434-ec368e045f51) (name "$teardrop_padvia$") (hatch edge 0.5)
(priority 30014)
(attr (teardrop (type padvia)))
(connect_pads yes (clearance 0))
(min_thickness 0.0254) (filled_areas_thickness no)
(fill yes (thermal_gap 0.5) (thermal_bridge_width 0.5) (island_removal_mode 1) (island_area_min 10))
(polygon
(pts
(xy 100.85 60.125)
(xy 100.85 59.875)