-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathboard.kicad_pcb
3878 lines (3852 loc) · 163 KB
/
board.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 20210108) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(title_block
(title "PMW3360DM-T2QU")
(date "2021-01-13")
(rev "1.0.0")
)
(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
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin true)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "gerber/")
)
)
(net 0 "")
(net 1 "Net-(R1-Pad2)")
(net 2 "Net-(R3-Pad1)")
(net 3 "VDD")
(net 4 "Net-(R2-Pad2)")
(net 5 "/MOTION")
(net 6 "/SCLK")
(net 7 "GND")
(net 8 "/MOSI")
(net 9 "/MISO")
(net 10 "/NCS")
(net 11 "VDD_IO")
(net 12 "no_connect_12")
(net 13 "no_connect_13")
(net 14 "no_connect_14")
(net 15 "no_connect_15")
(net 16 "no_connect_16")
(net 17 "no_connect_17")
(footprint "Resistor_SMD:R_0805_2012Metric" (layer "F.Cu")
(tedit 5B20DC38) (tstamp 00000000-0000-0000-0000-00005b290bfb)
(at 136.144 54.864)
(descr "Resistor SMD 0805 (2012 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")
(property "Sheet file" "board.kicad_sch")
(property "Sheet name" "")
(property "manf#" "MCWR08X1002FTL")
(path "/00000000-0000-0000-0000-00005b2a9820")
(attr smd)
(fp_text reference "R5" (at 0 -1.524 180) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp a8a9b061-1ad3-4686-bcbc-63565417ad44)
)
(fp_text value "10K" (at 0 1.65 180) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 1951784d-3949-462c-a28e-baa9aef87945)
)
(fp_text user "${REFERENCE}" (at 0 0 180) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp dff5ad18-f8c2-4772-ba49-4804048fea4e)
)
(fp_line (start -0.207983 -0.71) (end 0.207983 -0.71) (layer "F.SilkS") (width 0.12) (tstamp 1c07d248-7fed-4762-bd83-9edec106d4e6))
(fp_line (start -0.207983 0.71) (end 0.207983 0.71) (layer "F.SilkS") (width 0.12) (tstamp 4859cc83-041d-4915-8bb2-61be5aa055aa))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 166dea91-ac63-4348-9ca4-c6fe4ba43c5b))
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 5e387ce3-371b-446c-812a-07c2b586c253))
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 72c589bb-14e3-42b5-a269-0c0c80cf43a1))
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp a7c44dce-c3f9-4a1c-949e-0ade464f8b22))
(fp_line (start -1 0.6) (end -1 -0.6) (layer "F.Fab") (width 0.1) (tstamp 221aa454-531c-461d-bb78-5389f4f1c6c4))
(fp_line (start 1 -0.6) (end 1 0.6) (layer "F.Fab") (width 0.1) (tstamp 3e85af0f-55b9-4a6e-a30d-8d4eca250cc0))
(fp_line (start -1 -0.6) (end 1 -0.6) (layer "F.Fab") (width 0.1) (tstamp 4a14c8bf-f447-480b-a1de-58c9a51db1e1))
(fp_line (start 1 0.6) (end -1 0.6) (layer "F.Fab") (width 0.1) (tstamp 5b2f7be8-bb37-40b1-a5ef-5d057ed65def))
(pad "1" smd roundrect (at -0.85 0) (locked) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043478261)
(net 10 "/NCS") (tstamp 4ae9d712-6cce-4d1e-a61b-f98c2d719381))
(pad "2" smd roundrect (at 0.85 0) (locked) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043478261)
(net 11 "VDD_IO") (tstamp 4162e401-65e3-42b4-a33c-0642d6db44c0))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric" (layer "F.Cu")
(tedit 5B20DC38) (tstamp 00000000-0000-0000-0000-00005b3742d2)
(at 119.634 61.087 180)
(descr "Capacitor SMD 0805 (2012 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")
(property "Sheet file" "board.kicad_sch")
(property "Sheet name" "")
(property "manf#" "MCTT21F475Z100CT")
(path "/00000000-0000-0000-0000-00005adef24c")
(attr smd)
(fp_text reference "C3" (at 2.54 0 180) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 746fceb2-90b7-48f5-bc0b-2fa9363633ea)
)
(fp_text value "4.7uF" (at 0 1.65) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp a18a5449-59b6-41eb-b3cb-dbd266123f83)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 58410f31-3c1e-4bd5-b924-6e2b546c91ad)
)
(fp_line (start -0.207983 0.71) (end 0.207983 0.71) (layer "F.SilkS") (width 0.12) (tstamp 19ec63bf-bb54-4181-8a21-13f4b15c7c2e))
(fp_line (start -0.207983 -0.71) (end 0.207983 -0.71) (layer "F.SilkS") (width 0.12) (tstamp c5b595a4-e165-42e3-8dc2-e5dd85b4793f))
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 765e7c66-a405-4686-95c2-c81ce5a29963))
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 9382d241-8817-44a4-a881-f005df959fc8))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp bf5b8877-2ecb-462a-9e5e-a06077146396))
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp c770e722-45ad-4eb3-ab76-b62b97a27e19))
(fp_line (start -1 -0.6) (end 1 -0.6) (layer "F.Fab") (width 0.1) (tstamp 4f1245ad-c41d-4091-9b1b-3ac620b02fb0))
(fp_line (start 1 0.6) (end -1 0.6) (layer "F.Fab") (width 0.1) (tstamp 973f838b-2c8a-477e-a767-a405a60b2764))
(fp_line (start -1 0.6) (end -1 -0.6) (layer "F.Fab") (width 0.1) (tstamp c716a886-ed72-4631-a1fd-559b1304889b))
(fp_line (start 1 -0.6) (end 1 0.6) (layer "F.Fab") (width 0.1) (tstamp fbf49b2b-9e09-43d2-bfd9-e9af6b3125ef))
(pad "1" smd roundrect (at -0.85 0 180) (locked) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043478261)
(net 3 "VDD") (tstamp 449cd7db-eb8f-4a86-9b11-3eb1e8fe7930))
(pad "2" smd roundrect (at 0.85 0 180) (locked) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043478261)
(net 7 "GND") (tstamp 7dbc0012-ead8-48be-9911-9deda0845447))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric" (layer "F.Cu")
(tedit 5B20DC38) (tstamp 00000000-0000-0000-0000-00005b43b365)
(at 119.634 58.928 180)
(descr "Capacitor SMD 0805 (2012 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")
(property "Sheet file" "board.kicad_sch")
(property "Sheet name" "")
(property "manf#" "0805B104K500CT")
(path "/00000000-0000-0000-0000-00005adef297")
(attr smd)
(fp_text reference "C2" (at 2.54 0) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 16ffe8be-7e11-4355-b126-3305237305f4)
)
(fp_text value "1uF" (at 0 1.65 180) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp de831c18-ec0b-4b56-a730-a11ae00d7c57)
)
(fp_text user "${REFERENCE}" (at 0 0 180) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp d8287d09-f00d-401f-b395-7d4fb02e371b)
)
(fp_line (start -0.207983 -0.71) (end 0.207983 -0.71) (layer "F.SilkS") (width 0.12) (tstamp a493a4c5-c275-4ad1-9579-2bae9e3fa2d2))
(fp_line (start -0.207983 0.71) (end 0.207983 0.71) (layer "F.SilkS") (width 0.12) (tstamp fc056523-6349-4ecd-875b-6b1fae558e9f))
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 0185c6fd-8657-4ac1-bfcc-de9d653ba6c8))
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 67a1d7f1-cebb-4199-be75-b4c3ae865c08))
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp a8f33f93-5124-4313-b192-afef227d0589))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp f36815d8-e5aa-4795-ae2d-fdc8a98a1fdf))
(fp_line (start -1 0.6) (end -1 -0.6) (layer "F.Fab") (width 0.1) (tstamp 0c194de6-8aba-4569-aa22-e019aa3d7fb0))
(fp_line (start 1 0.6) (end -1 0.6) (layer "F.Fab") (width 0.1) (tstamp 3f5049c4-d522-4471-8492-6b7cb818f010))
(fp_line (start -1 -0.6) (end 1 -0.6) (layer "F.Fab") (width 0.1) (tstamp b43151d3-2181-4eeb-a5bf-5b2ef5976cf7))
(fp_line (start 1 -0.6) (end 1 0.6) (layer "F.Fab") (width 0.1) (tstamp ba54ce3f-aab4-4c6a-85aa-2d82862796f1))
(pad "1" smd roundrect (at -0.85 0 180) (locked) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043478261)
(net 3 "VDD") (tstamp 6e7a74ea-7172-4597-81fe-a7cedf4dfc0f))
(pad "2" smd roundrect (at 0.85 0 180) (locked) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043478261)
(net 7 "GND") (tstamp 286009a1-f9af-416b-8ca3-f826dcb0d5b5))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric" (layer "F.Cu")
(tedit 5B20DC38) (tstamp 00000000-0000-0000-0000-00005b43baa8)
(at 119.634 65.532 -90)
(descr "Resistor SMD 0805 (2012 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")
(property "Sheet file" "board.kicad_sch")
(property "Sheet name" "")
(property "manf#" "MCWR08X1002FTL")
(path "/00000000-0000-0000-0000-00005b166ea5")
(attr smd)
(fp_text reference "R1" (at -2.286 0) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 706b5577-0170-42e2-a7ff-afa3a311ed4a)
)
(fp_text value "10K" (at 0 1.65 -90) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp f1023726-c0b8-4ef9-a408-e1a53aabfb38)
)
(fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 5486e4cc-4b52-434b-91ef-6086e1fff0e3)
)
(fp_line (start -0.207983 0.71) (end 0.207983 0.71) (layer "F.SilkS") (width 0.12) (tstamp 80127403-3929-49a0-985e-cc283ef902e0))
(fp_line (start -0.207983 -0.71) (end 0.207983 -0.71) (layer "F.SilkS") (width 0.12) (tstamp 8f420841-fdac-4ec3-b2c4-357f0279e1ac))
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 3f97bb3d-09e8-40a5-a965-979aaa2238b4))
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 5f4d8828-f6e5-420b-89e8-c1c5ec4e13f6))
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp bf0a7e75-39f4-416c-9e19-be962fd8ab8e))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp fc4c812e-83ec-4c41-bc0a-f33a6515e010))
(fp_line (start -1 0.6) (end -1 -0.6) (layer "F.Fab") (width 0.1) (tstamp 71e13c21-17c4-47d8-8e2c-6638c59a464b))
(fp_line (start -1 -0.6) (end 1 -0.6) (layer "F.Fab") (width 0.1) (tstamp 7c773c93-c0a0-4efd-b0ba-f9b9f1af678b))
(fp_line (start 1 0.6) (end -1 0.6) (layer "F.Fab") (width 0.1) (tstamp 9fbe5e75-3f31-49e5-815d-6b33bfa48b05))
(fp_line (start 1 -0.6) (end 1 0.6) (layer "F.Fab") (width 0.1) (tstamp bbd4f558-adba-4f61-9b37-181fcc8d6f2f))
(pad "1" smd roundrect (at -0.85 0 270) (locked) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043478261)
(net 3 "VDD") (tstamp 24ab01f4-2553-4a0e-b08f-97c10f9a9111))
(pad "2" smd roundrect (at 0.85 0 270) (locked) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043478261)
(net 1 "Net-(R1-Pad2)") (tstamp af2c57c9-9bf9-4cc1-84aa-7a4e34811c7c))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric" (layer "F.Cu")
(tedit 5B20DC38) (tstamp 00000000-0000-0000-0000-00005b43bba5)
(at 119.634 56.769)
(descr "Capacitor SMD 0805 (2012 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")
(property "Sheet file" "board.kicad_sch")
(property "Sheet name" "")
(property "manf#" "0805B105K100CT")
(path "/00000000-0000-0000-0000-00005b2921a9")
(attr smd)
(fp_text reference "C1" (at -2.54 0 180) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp baab4951-925a-419a-ae33-6137aa680b5f)
)
(fp_text value "0.1uF" (at 0 1.65) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp b2b575c7-58ac-4765-a59a-8cfcb0ee0b6a)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 9c53cbf2-1e84-4344-9e7d-fad48d8db511)
)
(fp_line (start -0.207983 -0.71) (end 0.207983 -0.71) (layer "F.SilkS") (width 0.12) (tstamp a27e9f22-fe23-4535-a620-d3b8a2ec573a))
(fp_line (start -0.207983 0.71) (end 0.207983 0.71) (layer "F.SilkS") (width 0.12) (tstamp d0bb0907-9459-4f8e-900b-2104b0360c71))
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 35238dd8-1baa-43a3-9dca-302110e82b93))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 73b28a0d-10ad-4d37-ad67-667438e93651))
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 89507599-143c-4b81-a86e-e71049c735cc))
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp f774d760-2463-439a-97ea-1e4b6f2aca2d))
(fp_line (start 1 -0.6) (end 1 0.6) (layer "F.Fab") (width 0.1) (tstamp 1e82c1fd-0115-4e5d-88bb-7414d96cc029))
(fp_line (start -1 -0.6) (end 1 -0.6) (layer "F.Fab") (width 0.1) (tstamp 27a7578d-7cc0-4420-9b0f-c0518968644a))
(fp_line (start 1 0.6) (end -1 0.6) (layer "F.Fab") (width 0.1) (tstamp 36f6f34c-f5c5-40f3-be51-7a84701cb8d5))
(fp_line (start -1 0.6) (end -1 -0.6) (layer "F.Fab") (width 0.1) (tstamp 38f00461-0716-4771-b90a-3630c3d0056e))
(pad "1" smd roundrect (at -0.85 0) (locked) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043478261)
(net 7 "GND") (tstamp 1a7daa80-64da-4b60-9ad5-d5a21ece59d8))
(pad "2" smd roundrect (at 0.85 0) (locked) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043478261)
(net 3 "VDD") (tstamp 13c6a2b4-e6c1-4989-b08e-f3ac688f10c3))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric" (layer "F.Cu")
(tedit 5B20DC38) (tstamp 00000000-0000-0000-0000-00005b43c95e)
(at 136.144 67.564)
(descr "Resistor SMD 0805 (2012 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")
(property "Sheet file" "board.kicad_sch")
(property "Sheet name" "")
(property "manf#" "MCWR08X1002FTL")
(path "/00000000-0000-0000-0000-00005b2b7cec")
(attr smd)
(fp_text reference "R6" (at 0 1.524 180) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 53569454-050a-45f5-9643-83a3224fff6a)
)
(fp_text value "10K" (at 0 1.65 180) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 252f36cf-bfd6-4268-a44b-ce7a6cc16c40)
)
(fp_text user "${REFERENCE}" (at 0 0 180) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 294e706a-03c3-4027-8518-7e80d7cad37f)
)
(fp_line (start -0.207983 -0.71) (end 0.207983 -0.71) (layer "F.SilkS") (width 0.12) (tstamp e796a83a-98ec-4490-8559-8516337aaa84))
(fp_line (start -0.207983 0.71) (end 0.207983 0.71) (layer "F.SilkS") (width 0.12) (tstamp fb2c8ce9-87f7-4106-859b-043b864e46cc))
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 0b7d24b2-c8ce-4593-8357-8fa4348dd55f))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 6cab9e9f-9b04-40cb-8763-1e5ea5b386c5))
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 890dd7d7-3f20-491a-b8ac-f0608bfb673d))
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp c10a125b-bae4-4917-b22c-84cbe4e79613))
(fp_line (start -1 -0.6) (end 1 -0.6) (layer "F.Fab") (width 0.1) (tstamp 534f3fb9-2a7d-4543-8625-bf06bcf75195))
(fp_line (start 1 -0.6) (end 1 0.6) (layer "F.Fab") (width 0.1) (tstamp b747073d-0b17-403a-9c40-1b34d538c9c5))
(fp_line (start -1 0.6) (end -1 -0.6) (layer "F.Fab") (width 0.1) (tstamp cb6eb663-7e3e-4c55-a58c-4677af1fc704))
(fp_line (start 1 0.6) (end -1 0.6) (layer "F.Fab") (width 0.1) (tstamp df1ccc91-2932-4f9a-8070-e69dee3c813c))
(pad "1" smd roundrect (at -0.85 0) (locked) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043478261)
(net 9 "/MISO") (tstamp 97c20ad1-2589-4ae2-b4e7-ef410249c101))
(pad "2" smd roundrect (at 0.85 0) (locked) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043478261)
(net 11 "VDD_IO") (tstamp 34e0fb31-ee29-4878-9631-845935192209))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_2.2mm_M2_Pad_Via" (layer "F.Cu")
(tedit 56DDB9C7) (tstamp 1e6075db-4077-41af-a639-08105d5113a0)
(at 119.38 72.39)
(descr "Mounting Hole 2.2mm, M2")
(tags "mounting hole 2.2mm m2")
(property "Sheet file" "board.kicad_sch")
(property "Sheet name" "")
(path "/83846ba9-ad04-474b-924b-8327b50ed779")
(attr exclude_from_pos_files)
(fp_text reference "H3" (at 0 -3.2) (layer "F.SilkS") hide
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 712f6f33-6425-47dc-8c6e-a9b81c6668fb)
)
(fp_text value "MountingHole" (at 0 3.2) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 9e45913b-289b-47b6-8a7a-590f1b334901)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 415f4ff0-c4ee-4c47-8a07-ac0e917ffe98)
)
(fp_circle (center 0 0) (end 2.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 7b6284ee-5b1d-4431-a6b7-e3e8305c38bf))
(fp_circle (center 0 0) (end 2.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp e25bc92d-8da5-42d9-91c1-c3a1685d4f02))
(pad "1" thru_hole circle (at -1.166726 -1.166726) (locked) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) (tstamp 033bc008-5bc8-4a20-be34-7b6da5e468d2))
(pad "1" thru_hole circle (at 0 1.65) (locked) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) (tstamp 09ec8694-ea8b-4767-8278-42217b285e0a))
(pad "1" thru_hole circle (at 1.166726 -1.166726) (locked) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) (tstamp 19c36b91-974d-44ba-9680-200950ec08af))
(pad "1" thru_hole circle (at -1.166726 1.166726) (locked) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) (tstamp 42776add-abf4-4936-9062-2ae17f1350f1))
(pad "1" thru_hole circle (at -1.65 0) (locked) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) (tstamp 68a4fa9d-f930-4ac9-a749-4f6d08bad1b3))
(pad "1" thru_hole circle (at 1.65 0) (locked) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) (tstamp 72ef0076-cbba-477c-856b-b350608ff999))
(pad "1" thru_hole circle (at 0 0) (locked) (size 4.4 4.4) (drill 2.2) (layers *.Cu *.Mask) (tstamp 909e686d-0e13-4734-b7ce-ecbd84d6bae9))
(pad "1" thru_hole circle (at 0 -1.65) (locked) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) (tstamp cf94ac40-46c9-408b-942c-d520839b83e4))
(pad "1" thru_hole circle (at 1.166726 1.166726) (locked) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) (tstamp d687e2c9-75c2-4835-8453-b0f60e142a34))
)
(footprint "MountingHole:MountingHole_2.2mm_M2_Pad_Via" (layer "F.Cu")
(tedit 56DDB9C7) (tstamp 42d174a1-1eca-4f2c-a003-68fe6139d49e)
(at 136.144 72.39)
(descr "Mounting Hole 2.2mm, M2")
(tags "mounting hole 2.2mm m2")
(property "Sheet file" "board.kicad_sch")
(property "Sheet name" "")
(path "/b7021943-86c6-419a-9e4f-fb9c51f6cc21")
(attr exclude_from_pos_files)
(fp_text reference "H4" (at 0 -3.2) (layer "F.SilkS") hide
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 1ede2fe6-ec42-4543-bb9a-ab1e3f6f1763)
)
(fp_text value "MountingHole" (at 0 3.2) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 53262edd-8496-4f05-afab-0648adb58bc5)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 8561f91c-9dc0-44c4-8232-70279d748b5c)
)
(fp_circle (center 0 0) (end 2.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp d045a5d8-b86c-4e35-9a90-0dfb7fb9e0df))
(fp_circle (center 0 0) (end 2.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 1129b9d0-2afd-477f-8190-4babb9574935))
(pad "1" thru_hole circle (at 0 1.65) (locked) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) (tstamp 001baf9a-44e8-49ae-926e-0b59bba5d5f3))
(pad "1" thru_hole circle (at 0 0) (locked) (size 4.4 4.4) (drill 2.2) (layers *.Cu *.Mask) (tstamp 0e764449-0860-49ad-b2e3-de824f778f3a))
(pad "1" thru_hole circle (at 0 -1.65) (locked) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) (tstamp 2c9f5bc3-9d5f-45b3-8cc4-65441d57c03a))
(pad "1" thru_hole circle (at 1.166726 -1.166726) (locked) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) (tstamp 38970f77-ea18-42c7-82f2-13357a9e40b2))
(pad "1" thru_hole circle (at -1.166726 1.166726) (locked) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) (tstamp 3f863ff8-784a-4053-82ad-8d4b60643cce))
(pad "1" thru_hole circle (at -1.166726 -1.166726) (locked) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) (tstamp 71018b29-aa70-47ec-ac25-6c6859c3dd6f))
(pad "1" thru_hole circle (at -1.65 0) (locked) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) (tstamp 9f6a8c36-766a-4829-b454-6238d66d6211))
(pad "1" thru_hole circle (at 1.65 0) (locked) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) (tstamp a846baa4-445a-494a-a842-c0291615d0c1))
(pad "1" thru_hole circle (at 1.166726 1.166726) (locked) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) (tstamp c385edce-7923-4617-8344-0f40850050db))
)
(footprint "Connector_PinHeader_1.27mm:PinHeader_1x07_P1.27mm_Vertical" (layer "F.Cu")
(tedit 59FED6E3) (tstamp 4482f78a-fd1c-440d-8b9a-4e94ffbc5284)
(at 136.779 57.404)
(descr "Through hole straight pin header, 1x07, 1.27mm pitch, single row")
(tags "Through hole pin header THT 1x07 1.27mm single row")
(property "Sheet file" "board.kicad_sch")
(property "Sheet name" "")
(path "/14a2eabd-783e-4cb0-b86d-1eddab7cefcd")
(attr through_hole)
(fp_text reference "J1" (at -1.778 -1.016 180) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp f4f0adf0-dbe0-430f-af63-2d0fb221688b)
)
(fp_text value "MCU" (at 0 9.315) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 735d6d3b-5679-40f0-85bb-480f8df92056)
)
(fp_text user "${REFERENCE}" (at 0 3.81 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 100dcbab-7d3d-4129-ae5e-1b63121ad42c)
)
(fp_line (start 1.11 0.76) (end 1.11 8.315) (layer "F.SilkS") (width 0.12) (tstamp 05d71878-978b-4d99-a59f-49f8cf1103ef))
(fp_line (start -1.11 0) (end -1.11 -0.76) (layer "F.SilkS") (width 0.12) (tstamp 0baf11b6-f1c5-4084-b8ec-2615cb31fc51))
(fp_line (start 0.563471 0.76) (end 1.11 0.76) (layer "F.SilkS") (width 0.12) (tstamp 1e268bd4-95eb-4f3e-abf2-e1a170722af0))
(fp_line (start 0.30753 8.315) (end 1.11 8.315) (layer "F.SilkS") (width 0.12) (tstamp 212115e8-fc47-4653-9b71-2b48c10ad9dc))
(fp_line (start -1.11 0.76) (end -0.563471 0.76) (layer "F.SilkS") (width 0.12) (tstamp 46847785-c977-4777-a18b-de8992913ddc))
(fp_line (start -1.11 8.315) (end -0.30753 8.315) (layer "F.SilkS") (width 0.12) (tstamp 8138258d-a30b-4ff4-9315-b8167d3215b6))
(fp_line (start -1.11 0.76) (end -1.11 8.315) (layer "F.SilkS") (width 0.12) (tstamp aa7eefb7-603b-4b71-ba74-ca48356bf525))
(fp_line (start -1.11 -0.76) (end 0 -0.76) (layer "F.SilkS") (width 0.12) (tstamp e0b82f70-6c57-41a4-9b50-fb7000a28173))
(fp_line (start -1.55 -1.15) (end -1.55 8.8) (layer "F.CrtYd") (width 0.05) (tstamp 187f0f14-bdbb-4a30-aa95-5e9b47f163bb))
(fp_line (start 1.55 -1.15) (end -1.55 -1.15) (layer "F.CrtYd") (width 0.05) (tstamp 30ab881f-dcb1-431a-9491-5c42c44b1600))
(fp_line (start 1.55 8.8) (end 1.55 -1.15) (layer "F.CrtYd") (width 0.05) (tstamp 8b5ef413-0e5c-4cef-8828-9495b4928e6e))
(fp_line (start -1.55 8.8) (end 1.55 8.8) (layer "F.CrtYd") (width 0.05) (tstamp b7a02220-a2a2-452d-984d-69bbfcf6641b))
(fp_line (start -1.05 8.255) (end -1.05 -0.11) (layer "F.Fab") (width 0.1) (tstamp 01496498-0058-4fb9-bd75-f7f14379554f))
(fp_line (start -1.05 -0.11) (end -0.525 -0.635) (layer "F.Fab") (width 0.1) (tstamp 50161f28-e139-4144-9b91-5006db6f02de))
(fp_line (start 1.05 8.255) (end -1.05 8.255) (layer "F.Fab") (width 0.1) (tstamp 770da690-1d95-4a7a-bc91-8193c6152390))
(fp_line (start -0.525 -0.635) (end 1.05 -0.635) (layer "F.Fab") (width 0.1) (tstamp a03df632-b5b2-4eef-b23a-bd892a0012db))
(fp_line (start 1.05 -0.635) (end 1.05 8.255) (layer "F.Fab") (width 0.1) (tstamp e56d51da-767f-44b6-9f14-8c894ca9550e))
(pad "1" thru_hole rect (at 0 0) (locked) (size 1 1) (drill 0.65) (layers *.Cu *.Mask)
(net 10 "/NCS") (pinfunction "Pin_1") (tstamp 16cd02e9-2d0f-4a8b-a159-c32dae90d506))
(pad "2" thru_hole oval (at 0 1.27) (locked) (size 1 1) (drill 0.65) (layers *.Cu *.Mask)
(net 9 "/MISO") (pinfunction "Pin_2") (tstamp c9ff1385-1204-4154-ac1c-c29a8f641aba))
(pad "3" thru_hole oval (at 0 2.54) (locked) (size 1 1) (drill 0.65) (layers *.Cu *.Mask)
(net 8 "/MOSI") (pinfunction "Pin_3") (tstamp 8471c2da-027e-4523-b11e-6a53adee31ab))
(pad "4" thru_hole oval (at 0 3.81) (locked) (size 1 1) (drill 0.65) (layers *.Cu *.Mask)
(net 6 "/SCLK") (pinfunction "Pin_4") (tstamp 597f45de-43d3-4a4f-83e3-cfe8edef36ea))
(pad "5" thru_hole oval (at 0 5.08) (locked) (size 1 1) (drill 0.65) (layers *.Cu *.Mask)
(net 5 "/MOTION") (pinfunction "Pin_5") (tstamp c730c30f-7ff6-4d68-9f91-5e8af7bc8f13))
(pad "6" thru_hole oval (at 0 6.35) (locked) (size 1 1) (drill 0.65) (layers *.Cu *.Mask)
(net 11 "VDD_IO") (pinfunction "Pin_6") (tstamp 1b326a14-773c-4c24-af68-83ca67b2031e))
(pad "7" thru_hole oval (at 0 7.62) (locked) (size 1 1) (drill 0.65) (layers *.Cu *.Mask)
(net 7 "GND") (pinfunction "Pin_7") (tstamp 70bbe6ad-63de-4667-bc18-70e819a47c95))
(model "${KISYS3DMOD}/Connector_PinHeader_1.27mm.3dshapes/PinHeader_1x07_P1.27mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_2.2mm_M2_Pad_Via" (layer "F.Cu")
(tedit 56DDB9C7) (tstamp 878e3c7c-b06a-4635-bdd0-42efff3d6ac2)
(at 119.38 50.292)
(descr "Mounting Hole 2.2mm, M2")
(tags "mounting hole 2.2mm m2")
(property "Sheet file" "board.kicad_sch")
(property "Sheet name" "")
(path "/4e6f7c67-ec7a-468e-8b33-71e4ed048774")
(attr exclude_from_pos_files)
(fp_text reference "H1" (at 0 -3.2) (layer "F.SilkS") hide
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp ff953483-4e3f-433f-8834-53d7d7c09ed2)
)
(fp_text value "MountingHole" (at 0 3.2) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 56a23324-78d3-4b11-b888-ac9ee563e261)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 153d685e-fef3-4355-9f8d-6f4a4d718587)
)
(fp_circle (center 0 0) (end 2.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 0d9fcf88-fb66-4286-9ebd-0ffeb6647864))
(fp_circle (center 0 0) (end 2.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 079644df-ef9a-4712-8bb3-a8d3a0db60e1))
(pad "1" thru_hole circle (at 1.65 0) (locked) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) (tstamp 39267337-6678-4a0d-aaf4-5ce6d910edff))
(pad "1" thru_hole circle (at 0 1.65) (locked) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) (tstamp 475ecd6b-af82-4a51-956f-bce3028d8288))
(pad "1" thru_hole circle (at -1.166726 -1.166726) (locked) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) (tstamp 4add28e3-c429-4b04-be5f-1e6b48b1403a))
(pad "1" thru_hole circle (at -1.65 0) (locked) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) (tstamp 673cb219-5447-4296-bf96-65499e3b7dd4))
(pad "1" thru_hole circle (at 1.166726 1.166726) (locked) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) (tstamp 7349042f-0631-4f78-8e80-cf400ff67a2a))
(pad "1" thru_hole circle (at -1.166726 1.166726) (locked) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) (tstamp 73f1e8c4-d8af-4cfa-a9e6-aa6ab3d32302))
(pad "1" thru_hole circle (at 0 0) (locked) (size 4.4 4.4) (drill 2.2) (layers *.Cu *.Mask) (tstamp 747aef42-a03b-4125-ba36-d09d9dc3148d))
(pad "1" thru_hole circle (at 1.166726 -1.166726) (locked) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) (tstamp 85e9ad2f-f5bb-471d-82ff-55ac50a2d9f8))
(pad "1" thru_hole circle (at 0 -1.65) (locked) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) (tstamp f6fcc4d5-6f7c-4321-9a70-9ba64b75fd0e))
)
(footprint "Pixart:PMW3360DM-T2QU" (layer "F.Cu")
(tedit 5FFE2271) (tstamp 8a1a6d73-3be7-47a3-91eb-d94809088281)
(at 127.762 61.341 -90)
(property "Sheet file" "board.kicad_sch")
(property "Sheet name" "")
(path "/3110fe00-863e-4b77-8cfd-2287c0509548")
(fp_text reference "U1" (at -8.128 5.334) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 791cafd1-5f30-49a3-a9e2-c422de7891da)
)
(fp_text value "PMW3360DM-T2QU" (at 0 0 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9a8bbdcc-5553-4e76-96aa-1880989623d8)
)
(fp_line (start 9.02 -4.55) (end 9.02 4.55) (layer "F.SilkS") (width 0.1) (tstamp 1e353871-7885-46cb-a29c-845f3c8d20ff))
(fp_line (start -7.18 4.55) (end -7.18 4.318) (layer "F.SilkS") (width 0.1) (tstamp 7eafbb2d-646a-4a9b-ba49-5b9c5ea91ace))
(fp_line (start -7.18 -4.318) (end -7.18 -4.55) (layer "F.SilkS") (width 0.1) (tstamp 96fc1bd1-35d5-4310-b7bd-c8c69c20093e))
(fp_line (start 9.02 4.55) (end -7.18 4.55) (layer "F.SilkS") (width 0.1) (tstamp a147566d-46b5-43ce-ae9d-e1a25f0b9de2))
(fp_line (start -7.18 -4.55) (end 9.02 -4.55) (layer "F.SilkS") (width 0.1) (tstamp da5bddc9-d33b-4465-86ed-07e842d92c33))
(fp_circle (center -7.239 5.334) (end -7.059395 5.334) (layer "F.SilkS") (width 0.12) (fill solid) (tstamp 681cc5cd-ed1a-4b57-b0b6-ce6e9ccc29e2))
(fp_rect (start -8.44 -4.3) (end 8.82 4.3) (layer "Edge.Cuts") (width 0.12) (fill none) (tstamp b82def46-cab6-4b98-b318-97ae93986c49))
(fp_rect (start -8.89 -6.096) (end 9.144 6.096) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp d610da50-aca7-4dca-a1ae-77eee3af3da9))
(pad "1" thru_hole rect (at -5.66 5.35 270) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
(net 12 "no_connect_12") (pinfunction "NC") (tstamp 530875d1-3c06-475b-8f00-63a6c2e996c1))
(pad "2" thru_hole circle (at -3.88 5.35 270) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
(net 13 "no_connect_13") (pinfunction "NC") (tstamp f756df14-5fa0-4dc8-9bc4-bad418e5e42e))
(pad "3" thru_hole circle (at -2.1 5.35 270) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
(net 3 "VDD") (pinfunction "VDDPIX") (tstamp 22e686cf-c116-4541-99f6-f5edd62544bf))
(pad "4" thru_hole circle (at -0.32 5.35 270) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
(net 3 "VDD") (pinfunction "VDD") (tstamp ac3263cf-a5f9-49fb-9579-eab0fddd9ad6))
(pad "5" thru_hole circle (at 1.46 5.35 270) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
(net 11 "VDD_IO") (pinfunction "VDDIO") (tstamp b21e909a-b76e-4b6f-82cf-81ba892046d7))
(pad "6" thru_hole circle (at 3.24 5.35 270) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
(net 14 "no_connect_14") (pinfunction "NC") (tstamp d78b8e91-8ce0-4dc8-81d3-0ae5e3c0c586))
(pad "7" thru_hole circle (at 5.02 5.35 270) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
(net 1 "Net-(R1-Pad2)") (pinfunction "~NRESET~") (tstamp 9c309d42-fcc1-407d-82aa-3b3e686a3a93))
(pad "8" thru_hole circle (at 6.8 5.35 270) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
(net 7 "GND") (pinfunction "GND") (tstamp 53b62f44-3a1e-4c8c-9f4f-4bce38c24167))
(pad "9" thru_hole circle (at 7.69 -5.35 270) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
(net 5 "/MOTION") (pinfunction "MOTION") (tstamp ed3211b3-77fd-43bd-a861-4aea3df407b6))
(pad "10" thru_hole circle (at 5.91 -5.35 270) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
(net 6 "/SCLK") (pinfunction "SCLK") (tstamp ef5d54bc-25fb-428c-803f-7f844f770ca7))
(pad "11" thru_hole circle (at 4.13 -5.35 270) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
(net 8 "/MOSI") (pinfunction "MOSI") (tstamp 177573c4-c96f-48ef-a19d-674fa0d5729c))
(pad "12" thru_hole circle (at 2.35 -5.35 270) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
(net 2 "Net-(R3-Pad1)") (pinfunction "MISO") (tstamp a02d8e65-745c-4520-a425-bfe00595267d))
(pad "13" thru_hole circle (at 0.57 -5.35 270) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
(net 10 "/NCS") (pinfunction "~NCS~") (tstamp c748eed6-6add-465b-9bcf-d75146aae8f8))
(pad "14" thru_hole circle (at -1.21 -5.35 270) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
(net 15 "no_connect_15") (pinfunction "NC") (tstamp 77d3c426-55b5-4636-bb05-8128f0459d8c))
(pad "15" thru_hole circle (at -2.99 -5.35 270) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
(net 4 "Net-(R2-Pad2)") (pinfunction "LED_P") (tstamp c6e314cc-22ed-4790-8627-25f60130b93d))
(pad "16" thru_hole circle (at -4.77 -5.35 270) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
(net 16 "no_connect_16") (pinfunction "NC") (tstamp df64fc68-d7e2-4fdd-89b1-9ab3023b2aed))
)
(footprint "MountingHole:MountingHole_2.2mm_M2_Pad_Via" (layer "F.Cu")
(tedit 56DDB9C7) (tstamp f67266f6-eb1f-4a5f-931a-43ca49fe32ef)
(at 136.144 50.292)
(descr "Mounting Hole 2.2mm, M2")
(tags "mounting hole 2.2mm m2")
(property "Sheet file" "board.kicad_sch")
(property "Sheet name" "")
(path "/43646c2f-c189-4b27-8e4a-83ebddc4a07b")
(attr exclude_from_pos_files)
(fp_text reference "H2" (at 0 -3.2) (layer "F.SilkS") hide
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp f01bdb40-4206-4fb8-b7bb-5404a612ea85)
)
(fp_text value "MountingHole" (at 0 3.2) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp b467c659-c8f2-4fbb-81ae-355580d035c2)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 1878bb2a-3109-4fb2-9856-3c53cdbd66c1)
)
(fp_circle (center 0 0) (end 2.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 6079bc31-a2df-479c-87b1-f17aee2d4f48))
(fp_circle (center 0 0) (end 2.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 3799d5f5-f9d3-47ca-9ae7-db5f501a790a))
(pad "1" thru_hole circle (at 0 1.65) (locked) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) (tstamp 09c19bd9-10f1-4dd8-b3f8-1261a9955fb9))
(pad "1" thru_hole circle (at -1.65 0) (locked) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) (tstamp a0655488-75f3-44f2-a66f-5dcd6e1851d7))
(pad "1" thru_hole circle (at 1.65 0) (locked) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) (tstamp a212c610-f4d9-4a69-a6c1-1fc201ff4de0))
(pad "1" thru_hole circle (at 1.166726 1.166726) (locked) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) (tstamp ad28da2c-1196-46b7-a435-23706a291588))
(pad "1" thru_hole circle (at 0 0) (locked) (size 4.4 4.4) (drill 2.2) (layers *.Cu *.Mask) (tstamp d16be05f-f6f5-4b3a-82a3-4b4b2bca18a9))
(pad "1" thru_hole circle (at 0 -1.65) (locked) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) (tstamp d1817371-9578-440c-8581-34d1ad86ee9f))
(pad "1" thru_hole circle (at 1.166726 -1.166726) (locked) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) (tstamp e440463d-6083-4e06-8981-4a01a592dacf))
(pad "1" thru_hole circle (at -1.166726 1.166726) (locked) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) (tstamp f6b52611-16f7-4727-8ea2-218c46a3aadb))
(pad "1" thru_hole circle (at -1.166726 -1.166726) (locked) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask) (tstamp f76aade3-57e4-4880-846c-d857327b0604))
)
(footprint "Capacitor_SMD:C_0805_2012Metric" (layer "B.Cu")
(tedit 5B20DC38) (tstamp 00000000-0000-0000-0000-00005b439557)
(at 129.794 72.644 -90)
(descr "Capacitor SMD 0805 (2012 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")
(property "Sheet file" "board.kicad_sch")
(property "Sheet name" "")
(property "manf#" "0805B105K100CT")
(path "/00000000-0000-0000-0000-00005b296103")
(attr smd)
(fp_text reference "C4" (at 2.286 0 180) (layer "B.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)) (justify mirror))
(tstamp 8408664a-e6fa-4bbe-88f9-88e1ee3b12ac)
)
(fp_text value "1uF" (at 0 -1.65 -90) (layer "B.Fab")
(effects (font (size 0.6 0.6) (thickness 0.1)) (justify mirror))
(tstamp 727c6689-b43e-4487-9c30-d78ea7eadadb)
)
(fp_text user "${REFERENCE}" (at 0 0 -90) (layer "B.Fab")
(effects (font (size 0.6 0.6) (thickness 0.1)) (justify mirror))
(tstamp 8d57bce5-09a2-456b-87ed-121d29414f06)
)
(fp_line (start -0.207983 -0.71) (end 0.207983 -0.71) (layer "B.SilkS") (width 0.12) (tstamp 44dfcc74-9f3e-436f-8086-c203fbcea826))
(fp_line (start -0.207983 0.71) (end 0.207983 0.71) (layer "B.SilkS") (width 0.12) (tstamp 612d1f31-87d7-4285-a16b-311876dc40cf))
(fp_line (start 1.68 0.95) (end 1.68 -0.95) (layer "B.CrtYd") (width 0.05) (tstamp 6d335d7d-0557-4c65-8c03-531055425fbf))
(fp_line (start -1.68 -0.95) (end -1.68 0.95) (layer "B.CrtYd") (width 0.05) (tstamp 70ce9dfc-c10c-42e9-9cbd-9daafa5c0211))
(fp_line (start -1.68 0.95) (end 1.68 0.95) (layer "B.CrtYd") (width 0.05) (tstamp d549b436-7401-4698-8391-126e8ab2d438))
(fp_line (start 1.68 -0.95) (end -1.68 -0.95) (layer "B.CrtYd") (width 0.05) (tstamp d9bf0498-5e9d-4c12-a33a-cfd2d16723b2))
(fp_line (start 1 0.6) (end 1 -0.6) (layer "B.Fab") (width 0.1) (tstamp 452b2683-3348-4c84-bf78-142d61c49d96))
(fp_line (start -1 -0.6) (end -1 0.6) (layer "B.Fab") (width 0.1) (tstamp 4dae41fd-6a3b-4cfd-a4bc-c0ba1d61517f))
(fp_line (start -1 0.6) (end 1 0.6) (layer "B.Fab") (width 0.1) (tstamp 7121381c-2149-4a6a-b9a3-0a4e870428d9))
(fp_line (start 1 -0.6) (end -1 -0.6) (layer "B.Fab") (width 0.1) (tstamp bc45e3b5-dfba-4e7a-8ea9-0927ccf675b0))
(pad "1" smd roundrect (at -0.85 0 270) (locked) (size 1.15 1.4) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.2173913043478261)
(net 11 "VDD_IO") (tstamp 07eab1f8-0d9a-45e7-8f99-0e4ef7101711))
(pad "2" smd roundrect (at 0.85 0 270) (locked) (size 1.15 1.4) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.2173913043478261)
(net 7 "GND") (tstamp 8d5c677b-c8b8-45ea-9d19-082bfc564585))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric" (layer "B.Cu")
(tedit 5B20DC38) (tstamp 00000000-0000-0000-0000-00005b43c23c)
(at 136.652 54.864)
(descr "Resistor SMD 0805 (2012 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")
(property "Sheet file" "board.kicad_sch")
(property "Sheet name" "")
(property "manf#" "MCWR08X1300FTL")
(path "/00000000-0000-0000-0000-00005b16a64f")
(attr smd)
(fp_text reference "R3" (at 0 -1.524) (layer "B.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)) (justify mirror))
(tstamp 84197d8c-98c5-476d-a8c5-7f4e7a2281e9)
)
(fp_text value "130" (at 0 -1.65) (layer "B.Fab")
(effects (font (size 0.6 0.6) (thickness 0.1)) (justify mirror))
(tstamp 430f105c-42e5-4ff3-b814-775e5e60413a)
)
(fp_text user "${REFERENCE}" (at 0 0.035) (layer "B.Fab")
(effects (font (size 0.6 0.6) (thickness 0.1)) (justify mirror))
(tstamp 90d2ac6f-498e-4cfe-9124-52dda00290cc)
)
(fp_line (start -0.207983 0.71) (end 0.207983 0.71) (layer "B.SilkS") (width 0.12) (tstamp 05ec1305-20f3-4fcc-9fb2-7297e09cea71))
(fp_line (start -0.207983 -0.71) (end 0.207983 -0.71) (layer "B.SilkS") (width 0.12) (tstamp 0bb963fb-562a-4a6a-8689-573349756f52))
(fp_line (start -1.68 0.95) (end 1.68 0.95) (layer "B.CrtYd") (width 0.05) (tstamp 06220b92-c53c-4328-bf61-13e6dbb6ff65))
(fp_line (start -1.68 -0.95) (end -1.68 0.95) (layer "B.CrtYd") (width 0.05) (tstamp 4d25312c-cdf6-4c64-b238-e7e0f5a1d980))
(fp_line (start 1.68 -0.95) (end -1.68 -0.95) (layer "B.CrtYd") (width 0.05) (tstamp 8fbf0ae6-0a0b-42c4-b5c7-65b42a522a21))
(fp_line (start 1.68 0.95) (end 1.68 -0.95) (layer "B.CrtYd") (width 0.05) (tstamp b4947d42-7e52-487f-9319-5658adb7d482))
(fp_line (start 1 -0.6) (end -1 -0.6) (layer "B.Fab") (width 0.1) (tstamp 39867cb3-349a-4291-a7aa-a68e04135a79))
(fp_line (start -1 0.6) (end 1 0.6) (layer "B.Fab") (width 0.1) (tstamp 7675ec3d-b9d2-4e93-b1cb-3d647d967bc3))
(fp_line (start -1 -0.6) (end -1 0.6) (layer "B.Fab") (width 0.1) (tstamp 9d1208fd-464f-4c84-939a-297db0fe1634))
(fp_line (start 1 0.6) (end 1 -0.6) (layer "B.Fab") (width 0.1) (tstamp c01db64d-d6bd-482c-ad1f-299287205902))
(pad "1" smd roundrect (at -0.85 0) (locked) (size 1.15 1.4) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.2173913043478261)
(net 2 "Net-(R3-Pad1)") (tstamp 371c3f2d-4243-4108-b304-cad646b5b68e))
(pad "2" smd roundrect (at 0.85 0) (locked) (size 1.15 1.4) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.2173913043478261)
(net 9 "/MISO") (tstamp 1d6c74c6-18bd-476b-8e99-36f96f207520))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric" (layer "B.Cu")
(tedit 5B20DC38) (tstamp 00000000-0000-0000-0000-00005b43c40b)
(at 131.064 50.8)
(descr "Resistor SMD 0805 (2012 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")
(property "Sheet file" "board.kicad_sch")
(property "Sheet name" "")
(property "manf#" "MCWR08X39R0FTL")
(path "/00000000-0000-0000-0000-00005adef796")
(attr smd)
(fp_text reference "R2" (at 0 -1.524) (layer "B.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)) (justify mirror))
(tstamp 86ce9785-e60f-4b56-9a6f-715048846f18)
)
(fp_text value "39" (at 0 -1.65) (layer "B.Fab")
(effects (font (size 0.6 0.6) (thickness 0.1)) (justify mirror))
(tstamp 25438841-9bd9-4757-9f18-e9cfd4057b34)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab")
(effects (font (size 0.6 0.6) (thickness 0.1)) (justify mirror))
(tstamp 5fef9a5b-dd64-42e5-846e-639cd86a0aac)
)
(fp_line (start -0.207983 -0.71) (end 0.207983 -0.71) (layer "B.SilkS") (width 0.12) (tstamp 2314dfdd-65e4-447d-9200-7baaad2572f1))
(fp_line (start -0.207983 0.71) (end 0.207983 0.71) (layer "B.SilkS") (width 0.12) (tstamp 3fa5c17e-c72f-45c0-b1d8-8f00dfec341c))
(fp_line (start 1.68 0.95) (end 1.68 -0.95) (layer "B.CrtYd") (width 0.05) (tstamp 0fc75185-41ff-4af5-9176-aa1a22f879d6))
(fp_line (start 1.68 -0.95) (end -1.68 -0.95) (layer "B.CrtYd") (width 0.05) (tstamp 7db69b8c-d2fc-416e-a4b5-9140f118596f))
(fp_line (start -1.68 -0.95) (end -1.68 0.95) (layer "B.CrtYd") (width 0.05) (tstamp abf0e8d1-ee86-487c-897d-ba0472682912))
(fp_line (start -1.68 0.95) (end 1.68 0.95) (layer "B.CrtYd") (width 0.05) (tstamp dee023de-0729-418a-8c77-18b7e57d0a03))
(fp_line (start 1 0.6) (end 1 -0.6) (layer "B.Fab") (width 0.1) (tstamp 7b1f9b7e-905d-46b1-bf4e-20d508d70f21))
(fp_line (start -1 -0.6) (end -1 0.6) (layer "B.Fab") (width 0.1) (tstamp 96ac9e59-7730-49f6-9bd3-762fdd131aef))
(fp_line (start 1 -0.6) (end -1 -0.6) (layer "B.Fab") (width 0.1) (tstamp a5ccacc1-3fd0-4511-a152-3246e1eda160))
(fp_line (start -1 0.6) (end 1 0.6) (layer "B.Fab") (width 0.1) (tstamp c09ba4f8-5575-46e6-99ae-65af0650572b))
(pad "1" smd roundrect (at -0.85 0) (locked) (size 1.15 1.4) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.2173913043478261)
(net 3 "VDD") (tstamp 6aec4337-e1eb-4dde-ad46-03ed3bb797b4))
(pad "2" smd roundrect (at 0.85 0) (locked) (size 1.15 1.4) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.2173913043478261)
(net 4 "Net-(R2-Pad2)") (tstamp d200b213-59d9-4b2f-93fd-290d25f70073))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-23-5" (layer "B.Cu")
(tedit 5A02FF57) (tstamp 0e1ab86d-8312-4ba1-a017-9a34ae7525ed)
(at 126.746 72.644 180)
(descr "5-pin SOT23 package")
(tags "SOT-23-5")
(property "Sheet file" "board.kicad_sch")
(property "Sheet name" "")
(property "manf#" "TLV70019DDCT")
(path "/384895b2-8607-49a7-9d57-7d7ec9328357")
(attr smd)
(fp_text reference "U2" (at 0 -2.286) (layer "B.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)) (justify mirror))
(tstamp 90a00b40-35bf-4af2-a40f-b4ec1792fea0)
)
(fp_text value "TLV70019_SOT23-5" (at 0 -2.9) (layer "B.Fab")
(effects (font (size 0.6 0.6) (thickness 0.1)) (justify mirror))
(tstamp c613ddd1-d1e1-42d0-b49e-da48d47d317f)
)
(fp_text user "${REFERENCE}" (at 0 0 270) (layer "B.Fab")
(effects (font (size 0.6 0.6) (thickness 0.1)) (justify mirror))
(tstamp 4a4c60b1-6c53-426e-b403-c36dcb9eb1b0)
)
(fp_line (start 0.9 1.61) (end -1.55 1.61) (layer "B.SilkS") (width 0.12) (tstamp b1c12f09-6e83-4592-bf8c-6aa17e106319))
(fp_line (start -0.9 -1.61) (end 0.9 -1.61) (layer "B.SilkS") (width 0.12) (tstamp c83df8ca-3388-4ddc-b748-b3ca943d34bf))
(fp_line (start 1.9 1.8) (end 1.9 -1.8) (layer "B.CrtYd") (width 0.05) (tstamp 170af0ae-e870-4a7c-aa76-a55de870088c))
(fp_line (start -1.9 -1.8) (end -1.9 1.8) (layer "B.CrtYd") (width 0.05) (tstamp 31d90e63-b39f-46d2-b9d2-e66414fc928e))
(fp_line (start -1.9 1.8) (end 1.9 1.8) (layer "B.CrtYd") (width 0.05) (tstamp 32cb5d8d-5542-4f82-9f63-91b55e2754f9))
(fp_line (start 1.9 -1.8) (end -1.9 -1.8) (layer "B.CrtYd") (width 0.05) (tstamp 54efd7ba-6a52-48ac-9501-657ba2e30b83))
(fp_line (start 0.9 1.55) (end 0.9 -1.55) (layer "B.Fab") (width 0.1) (tstamp 135808dc-4ca5-428c-a2e3-4573d80b10e8))
(fp_line (start -0.9 0.9) (end -0.25 1.55) (layer "B.Fab") (width 0.1) (tstamp 43568982-28de-46db-82c6-b6c99dfdc1f3))
(fp_line (start -0.9 0.9) (end -0.9 -1.55) (layer "B.Fab") (width 0.1) (tstamp 4c9a30ed-0d6d-4c4d-b22e-51e427e4ad6d))
(fp_line (start 0.9 -1.55) (end -0.9 -1.55) (layer "B.Fab") (width 0.1) (tstamp 92aa5428-f9ae-46f6-9d1b-67865d92aed8))
(fp_line (start 0.9 1.55) (end -0.25 1.55) (layer "B.Fab") (width 0.1) (tstamp c0262134-a66c-4548-8e0d-546c53d5d36b))
(pad "1" smd rect (at -1.1 0.95 180) (locked) (size 1.06 0.65) (layers "B.Cu" "B.Paste" "B.Mask")
(net 11 "VDD_IO") (pinfunction "IN") (tstamp dd8f8c04-1b6b-409a-8482-491a39261259))
(pad "2" smd rect (at -1.1 0 180) (locked) (size 1.06 0.65) (layers "B.Cu" "B.Paste" "B.Mask")
(net 7 "GND") (pinfunction "GND") (tstamp 5730f7f8-e2fb-4913-bef3-21353d704654))
(pad "3" smd rect (at -1.1 -0.95 180) (locked) (size 1.06 0.65) (layers "B.Cu" "B.Paste" "B.Mask")
(net 11 "VDD_IO") (pinfunction "EN") (tstamp f9cb5c2c-c312-4b83-b7e9-1ca1358fb059))
(pad "4" smd rect (at 1.1 -0.95 180) (locked) (size 1.06 0.65) (layers "B.Cu" "B.Paste" "B.Mask")
(net 17 "no_connect_17") (pinfunction "NC") (tstamp 28f2396b-51a1-4536-90bd-dd9091234b5f))
(pad "5" smd rect (at 1.1 0.95 180) (locked) (size 1.06 0.65) (layers "B.Cu" "B.Paste" "B.Mask")
(net 3 "VDD") (pinfunction "OUT") (tstamp 15baec66-34d1-41e6-bb1c-2952c78e06cf))
(model "${KISYS3DMOD}/Package_TO_SOT_SMD.3dshapes/SOT-23-5.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric" (layer "B.Cu")
(tedit 5F68FEEE) (tstamp 9848b67b-623f-4fc6-9a92-3a0704f1be7a)
(at 123.19 72.644 -90)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheet file" "board.kicad_sch")
(property "Sheet name" "")
(path "/2101cef5-a810-40f6-a746-ff99a3edb0be")
(attr smd)
(fp_text reference "R4" (at 2.286 0) (layer "B.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)) (justify mirror))
(tstamp fee0f18b-ebf8-4711-81bd-717559491640)
)
(fp_text value "NL" (at 0 -1.65 -90) (layer "B.Fab")
(effects (font (size 0.6 0.6) (thickness 0.1)) (justify mirror))
(tstamp 05ec4c5f-56e0-43fe-9325-168c8e582540)
)
(fp_text user "${REFERENCE}" (at 0 0 -90) (layer "B.Fab")
(effects (font (size 0.6 0.6) (thickness 0.1)) (justify mirror))
(tstamp 2cd83e26-a2f7-44d4-95d0-5e06d27e9a5c)
)
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer "B.SilkS") (width 0.12) (tstamp 468e89b1-668c-4dc0-8c02-9be71cb4d680))
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer "B.SilkS") (width 0.12) (tstamp 808e4b3a-9cac-4992-b95d-ff4051b4d065))
(fp_line (start -1.68 -0.95) (end -1.68 0.95) (layer "B.CrtYd") (width 0.05) (tstamp 190906e1-e0b6-44cd-88d7-ed2ba5a97451))
(fp_line (start 1.68 0.95) (end 1.68 -0.95) (layer "B.CrtYd") (width 0.05) (tstamp 4b86df13-917f-43fd-b11c-588e37595180))
(fp_line (start -1.68 0.95) (end 1.68 0.95) (layer "B.CrtYd") (width 0.05) (tstamp a3d85c7d-525a-4bc4-bab1-69c2bb9843aa))
(fp_line (start 1.68 -0.95) (end -1.68 -0.95) (layer "B.CrtYd") (width 0.05) (tstamp b11f885f-70a5-4734-87c5-6445218cfc23))
(fp_line (start 1 0.625) (end 1 -0.625) (layer "B.Fab") (width 0.1) (tstamp 372eee46-6121-4d3b-b70a-eb6a294ec35c))
(fp_line (start -1 -0.625) (end -1 0.625) (layer "B.Fab") (width 0.1) (tstamp 46359785-0d38-406c-a942-4e1fc7dcc506))
(fp_line (start 1 -0.625) (end -1 -0.625) (layer "B.Fab") (width 0.1) (tstamp 6e095b13-25f9-43d8-95db-4f9610fad815))
(fp_line (start -1 0.625) (end 1 0.625) (layer "B.Fab") (width 0.1) (tstamp fb41a923-26d5-4c00-84dd-f842bc9d5031))
(pad "1" smd roundrect (at -0.9125 0 270) (locked) (size 1.025 1.4) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.2439024390243902)
(net 11 "VDD_IO") (tstamp 71949b10-0533-48af-ba59-42dca6c53475))
(pad "2" smd roundrect (at 0.9125 0 270) (locked) (size 1.025 1.4) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.2439024390243902)
(net 3 "VDD") (tstamp 6ed6057d-1d6f-45cc-916c-7f5059854903))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(gr_rect (start 116.078 46.99) (end 139.446 75.692) (layer "Edge.Cuts") (width 0.2) (fill none) (tstamp c463cba9-5cef-4c2c-b05e-e6fc2927f4c4))
(gr_text "GND|VDD_IO|MOT|SCLK|MOSI|MISO|NCS" (at 138.43 61.468 90) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-00005b31ee06)
(effects (font (size 0.6 0.6) (thickness 0.1)))
)
(gr_text "PMW3360DM-T2QU\nv1.0.0 (2021-01-13)" (at 127.762 50.8) (layer "F.SilkS") (tstamp 38d30274-4aed-493a-8240-d38ba8272991)
(effects (font (size 0.6 0.6) (thickness 0.1)))
)
(gr_text "github.com/rhssk/PMW3360DM-T2QU" (at 127.508 74.93) (layer "F.SilkS") (tstamp 3af2d5e0-5b1a-4772-94ad-5584cdf4d9be)
(effects (font (size 0.5 0.5) (thickness 0.1)))
)
(dimension (type aligned) (layer "Cmts.User") (tstamp 8aa5b6b6-cb8f-444c-859e-05c5f3ee2175)
(pts (xy 116.078 72.39) (xy 116.078 75.692))
(height 2.286)
(gr_text "3,3020 mm" (at 112.642 74.041 270) (layer "Cmts.User") (tstamp 8aa5b6b6-cb8f-444c-859e-05c5f3ee2175)
(effects (font (size 1 1) (thickness 0.15)))
)
(format (units 3) (units_format 1) (precision 4))
(style (thickness 0.15) (arrow_length 1.27) (text_position_mode 0) (extension_height 0.58642) (extension_offset 0.5) keep_text_aligned)
)
(dimension (type aligned) (layer "Cmts.User") (tstamp ad9d8f32-6be3-4a03-a62f-459bed53e715)
(pts (xy 116.078 46.99) (xy 139.446 46.99))
(height -1.27)
(gr_text "23,3680 mm" (at 127.762 44.57) (layer "Cmts.User") (tstamp ad9d8f32-6be3-4a03-a62f-459bed53e715)
(effects (font (size 1 1) (thickness 0.15)))
)
(format (units 3) (units_format 1) (precision 4))
(style (thickness 0.2) (arrow_length 1.27) (text_position_mode 0) (extension_height 0.58642) (extension_offset 0.5) keep_text_aligned)
)
(dimension (type aligned) (layer "Cmts.User") (tstamp e93a48cd-5cec-44df-9a93-9360c3080fd2)
(pts (xy 139.446 75.692) (xy 139.446 46.99))
(height 1.143)
(gr_text "28,7020 mm" (at 141.739 61.341 90) (layer "Cmts.User") (tstamp e93a48cd-5cec-44df-9a93-9360c3080fd2)
(effects (font (size 1 1) (thickness 0.15)))
)
(format (units 3) (units_format 1) (precision 4))
(style (thickness 0.15) (arrow_length 1.27) (text_position_mode 0) (extension_height 0.58642) (extension_offset 0.5) keep_text_aligned)
)
(dimension (type aligned) (layer "Cmts.User") (tstamp edd0df18-d0ae-4645-8e64-f1b139e4972b)
(pts (xy 116.078 75.692) (xy 119.38 75.692))
(height 2.032)
(gr_text "3,3020 mm" (at 117.729 78.874) (layer "Cmts.User") (tstamp edd0df18-d0ae-4645-8e64-f1b139e4972b)
(effects (font (size 1 1) (thickness 0.15)))
)
(format (units 3) (units_format 1) (precision 4))
(style (thickness 0.15) (arrow_length 1.27) (text_position_mode 0) (extension_height 0.58642) (extension_offset 0.5) keep_text_aligned)
)
(segment (start 122.412 66.361) (end 119.655 66.361) (width 0.254) (layer "F.Cu") (net 1) (tstamp 278159db-5fb0-4eab-8427-093f1ab5a838))
(segment (start 119.655 66.361) (end 119.634 66.382) (width 0.254) (layer "F.Cu") (net 1) (tstamp 5819376b-8b8b-413b-b6a8-4575ae95689b))
(segment (start 134.493 62.063104) (end 133.112 63.444104) (width 0.254) (layer "B.Cu") (net 2) (tstamp 193a1a3c-c134-4069-9373-e3002fb1f522))
(segment (start 134.493 58.801) (end 134.493 62.063104) (width 0.254) (layer "B.Cu") (net 2) (tstamp 2ad3a38c-a1bc-4496-9e53-be1214067034))
(segment (start 135.802 57.492) (end 134.493 58.801) (width 0.254) (layer "B.Cu") (net 2) (tstamp 42088989-fea9-4265-aa81-1c805ccc2ba8))
(segment (start 135.802 54.864) (end 135.802 57.492) (width 0.254) (layer "B.Cu") (net 2) (tstamp 5697ce70-6874-4a41-97f8-48017a9e1202))
(segment (start 133.112 63.444104) (end 133.112 63.691) (width 0.254) (layer "B.Cu") (net 2) (tstamp 6ac2a50f-bae6-4916-804e-4aa57f4efd25))
(segment (start 135.802 54.864) (end 135.770989 54.895011) (width 0.254) (layer "B.Cu") (net 2) (tstamp c4c73f47-6c80-4312-8386-5633df70aee7))
(segment (start 120.484 56.769) (end 120.484 58.928) (width 0.254) (layer "F.Cu") (net 3) (tstamp 29e501ab-dc1d-40e4-bbcc-3534d49cd4ad))
(segment (start 120.484 61.087) (end 120.484 63.832) (width 0.254) (layer "F.Cu") (net 3) (tstamp 46c9dd49-6924-4ebe-92f2-5e05525c8bfa))
(segment (start 122.412 59.241) (end 120.797 59.241) (width 0.254) (layer "F.Cu") (net 3) (tstamp 8bb0ff31-2881-4068-9e6d-c148dfdd2c50))
(segment (start 120.484 61.087) (end 120.484 58.928) (width 0.254) (layer "F.Cu") (net 3) (tstamp c215e18d-7bd4-4701-b203-2a0f8b6cbe44))
(segment (start 120.797 59.241) (end 120.484 58.928) (width 0.254) (layer "F.Cu") (net 3) (tstamp efa855da-07f0-4518-ad7e-a933ee07872c))
(segment (start 120.484 63.832) (end 119.634 64.682) (width 0.254) (layer "F.Cu") (net 3) (tstamp fabfe6bd-29e2-4d75-83c5-c23a7ff311b1))
(segment (start 134.366 57.531) (end 133.546 58.351) (width 0.254) (layer "B.Cu") (net 4) (tstamp 32faa03d-a249-4ee3-abdd-d32701bcde8b))
(segment (start 133.546 58.351) (end 133.112 58.351) (width 0.254) (layer "B.Cu") (net 4) (tstamp 435dfe5b-3f9e-48d0-863d-6ce78988f938))
(segment (start 131.914 50.8) (end 134.366 53.252) (width 0.254) (layer "B.Cu") (net 4) (tstamp a0fc0ddc-074a-41c6-8949-f28221f21574))
(segment (start 134.366 53.252) (end 134.366 57.531) (width 0.254) (layer "B.Cu") (net 4) (tstamp a77e5aa8-1180-49f2-b417-625559d3f0dc))
(segment (start 135.382 63.847103) (end 135.382 66.761) (width 0.254) (layer "B.Cu") (net 5) (tstamp 57ca394c-5258-4ada-9cc6-36bb27ab5797))
(segment (start 136.779 62.484) (end 136.745103 62.484) (width 0.254) (layer "B.Cu") (net 5) (tstamp b829a9aa-5ec4-4999-84fc-61c69861f666))
(segment (start 136.745103 62.484) (end 135.382 63.847103) (width 0.254) (layer "B.Cu") (net 5) (tstamp bab40fa9-b5ae-4cc1-b18c-61f4c5dc6222))
(segment (start 136.779 62.484) (end 136.525 62.484) (width 0.254) (layer "B.Cu") (net 5) (tstamp e80d1a9c-ba61-43b1-84a0-3da007874f7b))
(segment (start 135.382 66.761) (end 133.112 69.031) (width 0.254) (layer "B.Cu") (net 5) (tstamp f5a20fa4-135b-4399-8423-565bb520baa5))
(segment (start 134.874 63.119) (end 134.874 65.489) (width 0.254) (layer "B.Cu") (net 6) (tstamp 0e57238e-4001-41e4-babd-08134a2a1773))
(segment (start 136.779 61.214) (end 134.874 63.119) (width 0.254) (layer "B.Cu") (net 6) (tstamp 4bfc9e8b-05f1-4b14-84d8-e37b72114215))
(segment (start 136.779 61.214) (end 136.745103 61.214) (width 0.254) (layer "B.Cu") (net 6) (tstamp 643e1885-dd79-486a-83ae-4ac32e44c708))
(segment (start 133.112 67.070897) (end 133.112 67.251) (width 0.254) (layer "B.Cu") (net 6) (tstamp 983f943e-4874-4052-8b28-243abe75ed68))
(segment (start 134.874 65.489) (end 133.112 67.251) (width 0.254) (layer "B.Cu") (net 6) (tstamp 99c662ef-8843-4ede-b977-be118758a176))
(segment (start 136.779 61.214) (end 136.779 61.602989) (width 0.254) (layer "B.Cu") (net 6) (tstamp ba4914b1-9a7d-4581-82f5-58517d62269e))
(segment (start 130.976 73.494) (end 129.794 73.494) (width 0.254) (layer "B.Cu") (net 7) (tstamp 2c311fd6-76df-4ce2-8335-7a41d902b659))
(segment (start 129.794 73.494) (end 128.944 72.644) (width 0.254) (layer "B.Cu") (net 7) (tstamp 439b9568-1b50-4db0-aabe-f4e39c2713ac))
(segment (start 136.779 67.691) (end 130.976 73.494) (width 0.254) (layer "B.Cu") (net 7) (tstamp 54dbecb2-ccef-4534-8060-7c959f6b9f20))
(segment (start 128.944 72.644) (end 127.846 72.644) (width 0.254) (layer "B.Cu") (net 7) (tstamp 73864de9-d627-475f-b056-27396da91f95))
(segment (start 136.779 65.024) (end 136.779 67.691) (width 0.254) (layer "B.Cu") (net 7) (tstamp ec803fac-d626-451c-95c7-cc5ae80f2e95))
(segment (start 136.779 59.944) (end 136.779 60.2615) (width 0.254) (layer "B.Cu") (net 8) (tstamp 20d3590d-9ce6-4c4a-8918-029e783c140d))
(segment (start 133.112 65.135) (end 133.112 65.471) (width 0.254) (layer "B.Cu") (net 8) (tstamp 4281a302-e695-49d0-997c-0f209d8b52f3))
(segment (start 135.00102 61.72198) (end 135.001019 62.273533) (width 0.254) (layer "B.Cu") (net 8) (tstamp 54beb124-cae0-4ea1-8ad5-71c3538409e7))
(segment (start 134.36598 64.21702) (end 133.112 65.471) (width 0.254) (layer "B.Cu") (net 8) (tstamp 610e7291-b3c1-464f-930f-eac0a13625af))
(segment (start 136.779 59.944) (end 135.00102 61.72198) (width 0.254) (layer "B.Cu") (net 8) (tstamp ea53ba35-2e7b-4bf4-8a05-83fbc89e0a2f))
(segment (start 134.36598 62.908572) (end 134.36598 64.21702) (width 0.254) (layer "B.Cu") (net 8) (tstamp ec4ac96e-eeed-4936-b30f-c522ee7ed468))
(segment (start 135.001019 62.273533) (end 134.36598 62.908572) (width 0.254) (layer "B.Cu") (net 8) (tstamp efb2061f-3ad8-4ece-8097-dd6d9c3367a3))
(segment (start 136.5885 58.674) (end 135.294 59.9685) (width 0.254) (layer "F.Cu") (net 9) (tstamp 1d603ac9-35d3-451e-8f1c-900b7a011896))
(segment (start 136.779 58.674) (end 136.5885 58.674) (width 0.254) (layer "F.Cu") (net 9) (tstamp ac927ce9-0da8-4444-a8f2-5b14192afbb1))
(segment (start 135.294 59.9685) (end 135.294 67.564) (width 0.254) (layer "F.Cu") (net 9) (tstamp f669b998-937d-4a7b-9c30-1f28668817aa))
(segment (start 136.779 58.674) (end 137.19482 58.674) (width 0.254) (layer "B.Cu") (net 9) (tstamp 66413e6a-5590-429b-b83b-430408d47f7a))
(segment (start 137.19482 58.674) (end 137.668 58.20082) (width 0.254) (layer "B.Cu") (net 9) (tstamp 979270c5-b28f-4e80-89bf-1ea81399b2bf))
(segment (start 137.668 58.20082) (end 137.668 55.03) (width 0.254) (layer "B.Cu") (net 9) (tstamp bed75068-2f46-4edb-9fa7-0f438100dc73))
(segment (start 137.668 55.03) (end 137.502 54.864) (width 0.254) (layer "B.Cu") (net 9) (tstamp c09bc1af-8dc2-4b22-8e63-548be1558ba9))
(segment (start 133.542 61.911) (end 133.112 61.911) (width 0.254) (layer "F.Cu") (net 10) (tstamp 373a2489-ba0b-4dcf-ab41-7578857b0dff))
(segment (start 136.525 57.404) (end 134.493 59.436) (width 0.254) (layer "F.Cu") (net 10) (tstamp 393cf10d-57c1-4363-90f9-a9b95a94a169))
(segment (start 135.294 54.864) (end 135.294 55.919) (width 0.254) (layer "F.Cu") (net 10) (tstamp 578db4bd-4dac-4c3f-b4ca-181450d87ebc))
(segment (start 135.294 55.919) (end 136.779 57.404) (width 0.254) (layer "F.Cu") (net 10) (tstamp 64c712a9-9498-4e61-ada7-61ccd6417334))
(segment (start 136.779 57.404) (end 136.525 57.404) (width 0.254) (layer "F.Cu") (net 10) (tstamp bc0030a5-8024-472e-a36a-c26905379a8e))
(segment (start 134.493 60.96) (end 133.542 61.911) (width 0.254) (layer "F.Cu") (net 10) (tstamp fa7e06c0-0376-4c49-ae27-d1cfa0183319))
(segment (start 134.493 59.436) (end 134.493 60.96) (width 0.254) (layer "F.Cu") (net 10) (tstamp fc5fc2df-63cf-475a-abb3-2f71d936eaed))
(segment (start 136.779 63.754) (end 136.62025 63.754) (width 0.254) (layer "F.Cu") (net 11) (tstamp 0f92d142-3210-48f5-85bd-33bc4f45ef4d))
(segment (start 136.994 54.864) (end 137.795 55.665) (width 0.254) (layer "F.Cu") (net 11) (tstamp 18165ec6-3bb1-4d60-be47-616721de8eb3))
(segment (start 137.795 62.865) (end 136.906 63.754) (width 0.254) (layer "F.Cu") (net 11) (tstamp 3c30fec5-cb45-4de6-9abe-d0cc84d47faa))
(segment (start 136.62025 63.754) (end 135.80202 64.57223) (width 0.254) (layer "F.Cu") (net 11) (tstamp 5902ea8b-6156-419d-a069-c06c54ac6d45))
(segment (start 136.906 63.754) (end 136.779 63.754) (width 0.254) (layer "F.Cu") (net 11) (tstamp 673181c1-4adc-49c1-9419-9fbab2387f79))
(segment (start 137.795 55.665) (end 137.795 62.865) (width 0.254) (layer "F.Cu") (net 11) (tstamp 8d44663f-88de-467b-bdf7-8cd251555585))
(segment (start 135.80202 66.37202) (end 136.994 67.564) (width 0.254) (layer "F.Cu") (net 11) (tstamp 924890dd-6a5e-4025-ad9f-534e3dccc428))
(segment (start 135.80202 64.57223) (end 135.80202 66.37202) (width 0.254) (layer "F.Cu") (net 11) (tstamp bb9e00d8-e321-4eb6-a9b8-8754aa952f83))
(segment (start 129.794 71.794) (end 127.946 71.794) (width 0.254) (layer "B.Cu") (net 11) (tstamp 07a5e1e8-4825-46a9-9e47-4d863cd07126))
(segment (start 127.846 71.694) (end 127.018 70.866) (width 0.254) (layer "B.Cu") (net 11) (tstamp 0cb1b98b-ab78-4bec-bcf9-2175b54ea266))
(segment (start 136.779 63.754) (end 135.89 64.643) (width 0.254) (layer "B.Cu") (net 11) (tstamp 11cdfb44-5ab1-4049-8aa8-a0c36248f4ab))
(segment (start 127.188 73.594) (end 127.846 73.594) (width 0.254) (layer "B.Cu") (net 11) (tstamp 15167465-1de8-4cff-8f60-a389603f4c9c))
(segment (start 120.777 63.627) (end 120.777 69.3185) (width 0.254) (layer "B.Cu") (net 11) (tstamp 2da4d134-ccc4-42d0-90c0-d5ace413a196))
(segment (start 124.0555 70.866) (end 123.19 71.7315) (width 0.254) (layer "B.Cu") (net 11) (tstamp 38f4710a-d3d8-4551-934a-68bbdd9f32e3))
(segment (start 121.603 62.801) (end 120.777 63.627) (width 0.254) (layer "B.Cu") (net 11) (tstamp 3b300bcb-f790-49fd-ba42-f65050405d20))
(segment (start 120.777 69.3185) (end 123.19 71.7315) (width 0.254) (layer "B.Cu") (net 11) (tstamp 3d3c5d95-f3ad-4960-a168-d1ceeb20ed56))
(segment (start 127.168084 71.694) (end 126.746 72.116084) (width 0.254) (layer "B.Cu") (net 11) (tstamp 48b33af0-027b-45d6-bcf7-2ef556cc23ca))
(segment (start 127.018 70.866) (end 124.0555 70.866) (width 0.254) (layer "B.Cu") (net 11) (tstamp 9368a0c2-9216-4f05-8c87-634d1b3ee484))
(segment (start 126.746 72.116084) (end 126.746 73.152) (width 0.254) (layer "B.Cu") (net 11) (tstamp 956272d6-f4aa-4004-b6f7-9759de176b0c))
(segment (start 131.957552 71.794) (end 129.794 71.794) (width 0.254) (layer "B.Cu") (net 11) (tstamp b017fce5-08b9-49f8-be8a-8741321ae0c7))
(segment (start 126.746 73.152) (end 127.188 73.594) (width 0.254) (layer "B.Cu") (net 11) (tstamp cf23d118-9332-47e2-8071-f6aea88545ce))
(segment (start 135.89 67.861552) (end 131.957552 71.794) (width 0.254) (layer "B.Cu") (net 11) (tstamp d12513c0-aaa6-4080-841a-3aa2707ee4f7))
(segment (start 122.412 62.801) (end 121.603 62.801) (width 0.254) (layer "B.Cu") (net 11) (tstamp db60a026-0e10-4b48-858e-ddcb6673b45d))
(segment (start 127.846 71.694) (end 127.168084 71.694) (width 0.254) (layer "B.Cu") (net 11) (tstamp e8c50118-d868-472f-9dd6-339b70ee5379))
(segment (start 135.89 64.643) (end 135.89 67.861552) (width 0.254) (layer "B.Cu") (net 11) (tstamp f6887036-55f1-4997-8c3a-b77352cc6c73))
(zone (net 7) (net_name "GND") (layer "F.Cu") (tstamp 00000000-0000-0000-0000-00005b3bba36) (hatch edge 0.508)
(connect_pads (clearance 0))
(min_thickness 0.254) (filled_areas_thickness no)
(fill yes (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 139.192 75.438)
(xy 116.332 75.438)
(xy 116.332 47.244)
(xy 133.096 47.244)
(xy 139.192 47.244)
)
)
(filled_polygon
(layer "F.Cu")
(pts
(xy 139.134121 47.264002)
(xy 139.180614 47.317658)
(xy 139.192 47.37)
(xy 139.192 75.312)
(xy 139.171998 75.380121)
(xy 139.118342 75.426614)
(xy 139.066 75.438)
(xy 116.458 75.438)
(xy 116.389879 75.417998)
(xy 116.343386 75.364342)
(xy 116.332 75.312)
(xy 116.332 72.497282)
(xy 116.922841 72.497282)
(xy 116.956389 72.80863)
(xy 117.029227 73.113192)
(xy 117.140174 73.40603)
(xy 117.28743 73.682398)
(xy 117.46861 73.937814)
(xy 117.680775 74.168138)
(xy 117.920486 74.369636)
(xy 117.92386 74.371806)
(xy 117.923861 74.371807)
(xy 118.180489 74.536876)
(xy 118.183858 74.539043)
(xy 118.352025 74.619074)
(xy 118.462551 74.671674)
(xy 118.466621 74.673611)
(xy 118.76419 74.771159)
(xy 118.768116 74.771912)
(xy 118.768122 74.771913)
(xy 118.910077 74.79912)
(xy 119.071743 74.830106)
(xy 119.075742 74.830354)
(xy 119.075749 74.830355)