forked from ufan/charybdis-pmw3610-breakout
-
Notifications
You must be signed in to change notification settings - Fork 12
/
sensor.kicad_pcb
4063 lines (4041 loc) · 164 KB
/
sensor.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.29)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (color "Black") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 1.2) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (color "Black") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "HAL SnPb")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 6)
(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 "GND")
(net 2 "Net-(U2-+VCSEL)")
(net 3 "+1V9")
(net 4 "VCC")
(net 5 "Net-(U2-CN)")
(net 6 "Net-(U2-CP)")
(net 7 "Net-(U2-VCP)")
(net 8 "MOTION_2")
(net 9 "NCS_2")
(net 10 "SCLK_2")
(net 11 "SDIO_2")
(net 12 "Net-(U2-NRESET)")
(net 13 "unconnected-(U1-NC-Pad4)")
(net 14 "unconnected-(U2-NC-Pad4)")
(net 15 "Net-(U2--VCSEL)")
(footprint "MountingHole:MountingHole_3.2mm_M3_ISO7380_Pad" (layer "F.Cu")
(tstamp 96431ce1-23a8-491f-a393-39e0427eb01e)
(at 81.6 129.2)
(descr "Mounting Hole 3.2mm, M3, ISO7380")
(tags "mounting hole 3.2mm m3 iso7380")
(property "Sheetfile" "sensor.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Mounting Hole without connection")
(property "ki_keywords" "mounting hole")
(path "/0e48f17d-cf7a-402a-9d0d-4d2923c4fec1")
(attr exclude_from_bom)
(fp_text reference "H2" (at 0 5.6) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 988d709f-941b-4818-9dd1-4093e251b5ce)
)
(fp_text value "MountingHole" (at 0 3.85) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8d0184c8-8290-410c-b907-b218f65fe68c)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8cd7bfdc-117c-451d-b826-6d370559a25b)
)
(fp_circle (center 0 0) (end 2.85 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp 1f224307-edae-4acb-8c45-b51999bb0cbc))
(fp_circle (center 0 0) (end 3.1 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp c10c2935-4a86-47c2-b5a0-a400c9fa3b04))
(pad "1" thru_hole circle (at 0 0) (size 5.7 5.7) (drill 3.2) (layers "*.Cu" "*.Mask") (tstamp 20e153c0-ef13-4266-bd01-e1225c5ffbea))
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x06_P2.54mm_Vertical" (layer "F.Cu")
(tstamp b27da24e-0290-42cb-9a53-e4d99b9a4fa2)
(at 96.8 116.8 180)
(descr "Through hole straight pin header, 1x06, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x06 2.54mm single row")
(property "Sheetfile" "sensor.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x06, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/d04e4a25-fea8-400a-b78a-19b8bbedb78b")
(attr through_hole)
(fp_text reference "J1" (at 0 -2.33) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3e2c8bf3-c0c8-4e13-ab91-7df06505bfe7)
)
(fp_text value "Conn_01x06" (at -11.958238 17.691) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8b1ad516-8116-4d67-afff-6363c44ba8c2)
)
(fp_line (start -1.8 -1.8) (end -1.8 14.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 86a57e73-03a0-4103-a4c6-346a62c1d04b))
(fp_line (start -1.8 14.5) (end 1.8 14.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6128a590-2bd4-47ae-aa8f-416a5c8ec0ea))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6369fe02-e971-4315-8a3b-63162f49afb4))
(fp_line (start 1.8 14.5) (end 1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2d9ba040-322d-4314-93f2-2c62a754cdb2))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f4023a78-bc99-4836-9188-e14517faa872))
(fp_line (start -1.27 13.97) (end -1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4811af6a-69a4-4271-9bf1-17f51ee958d9))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp eb68be0f-5652-470e-b3d1-ee64d187b13a))
(fp_line (start 1.27 -1.27) (end 1.27 13.97)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b94d815f-679e-4808-b29d-97bbfad96810))
(fp_line (start 1.27 13.97) (end -1.27 13.97)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 117fd1a3-f04a-45a6-8805-c18cbde167b7))
(pad "1" thru_hole rect (at 0 0 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 4 "VCC") (pinfunction "Pin_1") (pintype "passive") (tstamp b7eb526c-8444-44c5-9f8f-ab7c944c16da))
(pad "2" thru_hole oval (at 0 2.54 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 9 "NCS_2") (pinfunction "Pin_2") (pintype "passive") (tstamp cc7a33d2-c867-4ed4-abe5-21c1caad12a4))
(pad "3" thru_hole oval (at 0 5.08 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 11 "SDIO_2") (pinfunction "Pin_3") (pintype "passive") (tstamp fbeefc12-59ab-4cf4-a92b-208c7789630a))
(pad "4" thru_hole oval (at 0 7.62 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 10 "SCLK_2") (pinfunction "Pin_4") (pintype "passive") (tstamp d695e1ac-181b-4a85-913c-44276e1fd2b7))
(pad "5" thru_hole oval (at 0 10.16 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 8 "MOTION_2") (pinfunction "Pin_5") (pintype "passive") (tstamp 80f9e53b-91be-42e7-9238-5fbec8436fbb))
(pad "6" thru_hole circle (at 0 12.7 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "Pin_6") (pintype "passive") (tstamp 0e444c8b-2508-4aae-9659-bb5d25735ab9))
(model "${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x06_P2.54mm_Vertical.wrl" hide
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_3.2mm_M3_ISO7380_Pad" (layer "F.Cu")
(tstamp eaa901bd-b80a-4342-878b-fdc64de67e60)
(at 81.6 92.2)
(descr "Mounting Hole 3.2mm, M3, ISO7380")
(tags "mounting hole 3.2mm m3 iso7380")
(property "Sheetfile" "sensor.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Mounting Hole without connection")
(property "ki_keywords" "mounting hole")
(path "/e38709b1-4d36-4d3d-9889-87b8ce7a97c9")
(attr exclude_from_bom)
(fp_text reference "H1" (at 0 -3.85) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fe6644bf-4fc4-4645-8c38-60f94a25a2a1)
)
(fp_text value "MountingHole" (at 0 3.85) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3c0d7984-c809-4d37-9530-e94c9ee7f36b)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1cf8efa9-bf8b-446f-88ff-b441050c38a9)
)
(fp_circle (center 0 0) (end 2.85 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp e5281615-45b1-4a76-ac7d-cd3fec56e1f9))
(fp_circle (center 0 0) (end 3.1 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp c3657637-0afc-4a50-949a-01ff7e69e34d))
(pad "1" thru_hole circle (at 0 0) (size 5.7 5.7) (drill 3.2) (layers "*.Cu" "*.Mask") (tstamp 8c18fde0-0774-472d-b6aa-c08276bb03e9))
)
(footprint "Package_TO_SOT_SMD:SOT-23-5" (layer "B.Cu")
(tstamp 3c3e78d8-62d7-4020-ae7c-c489234b27d5)
(at 78.674 120.9375 -90)
(descr "SOT, 5 Pin (https://www.jedec.org/sites/default/files/docs/Mo-178c.PDF variant AA), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "SOT TO_SOT_SMD")
(property "LCSC" "C146366")
(property "Sheetfile" "sensor.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "300mA Low Dropout Voltage Regulator, Fixed Output 1.8V, SOT-23-5")
(property "ki_keywords" "300mA LDO Regulator Fixed Positive")
(path "/dbf9d52f-7c18-496f-9222-1cd5f4d22ee1")
(attr smd)
(fp_text reference "U1" (at 0 2.4 90) (layer "B.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp cb6f88f8-d28c-4835-8ac0-c6de233cbbeb)
)
(fp_text value "TCR2EF19" (at 0 -2.4 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 29f97c6d-f4a1-4b11-bc21-f267ac1969c6)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "B.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror))
(tstamp 7d8e69b9-7592-427b-8bf2-52ec32b9a07d)
)
(fp_line (start 0 -1.56) (end -0.8 -1.56)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp f4223a35-95f3-495e-af74-64218a03163c))
(fp_line (start 0 -1.56) (end 0.8 -1.56)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 4f41c769-5e9b-484d-a900-27f099059258))
(fp_line (start 0 1.56) (end -1.8 1.56)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 4ed71a16-b3f0-4e14-80fa-b27e8ad7c053))
(fp_line (start 0 1.56) (end 0.8 1.56)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp f1e3855f-467b-4729-a598-302bb35285ba))
(fp_line (start -2.05 -1.7) (end 2.05 -1.7)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 90883fea-fa58-4c9a-97ea-cb96f9d4dcf7))
(fp_line (start -2.05 1.7) (end -2.05 -1.7)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 8ac3ece7-219f-48ea-aecf-661b0274dac7))
(fp_line (start 2.05 -1.7) (end 2.05 1.7)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp e987b886-cfff-40a7-b52a-c5ebea6eb36e))
(fp_line (start 2.05 1.7) (end -2.05 1.7)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp a1b5d1e1-d2c9-4518-a7b9-f8cd2335caac))
(fp_line (start -0.8 -1.45) (end -0.8 1.05)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp f32fa9b2-cb54-4e78-b698-09d2f8ad041d))
(fp_line (start -0.8 1.05) (end -0.4 1.45)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 38088687-4d8b-4773-be70-5559122b65c9))
(fp_line (start -0.4 1.45) (end 0.8 1.45)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 63ed6903-6a18-4b03-8c92-db80b6141029))
(fp_line (start 0.8 -1.45) (end -0.8 -1.45)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp d66b58ba-a112-4eaa-979b-81b2a28ccb90))
(fp_line (start 0.8 1.45) (end 0.8 -1.45)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp ff57a491-485b-4862-8bf1-76dfe201cc07))
(pad "1" smd roundrect (at -1.1375 0.95 270) (size 1.325 0.6) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 4 "VCC") (pinfunction "IN") (pintype "power_in") (tstamp c74eddd3-8ad3-42ea-b77f-329eaf4cdace))
(pad "2" smd roundrect (at -1.1375 0 270) (size 1.325 0.6) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 943d8297-5e0b-4eb9-a3c4-35731050e0a6))
(pad "3" smd roundrect (at -1.1375 -0.95 270) (size 1.325 0.6) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 4 "VCC") (pinfunction "EN") (pintype "input") (tstamp 0f250504-dccb-4f42-ae7d-6a82b0ad8836))
(pad "4" smd roundrect (at 1.1375 -0.95 270) (size 1.325 0.6) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 13 "unconnected-(U1-NC-Pad4)") (pinfunction "NC") (pintype "no_connect") (tstamp 99e49cb0-f4b5-4d70-9f27-821a65e53a72))
(pad "5" smd roundrect (at 1.1375 0.95 270) (size 1.325 0.6) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 3 "+1V9") (pinfunction "OUT") (pintype "power_out") (tstamp 6c8daa04-8052-4bd0-96fb-348698b66842))
(model "${KICAD6_3DMODEL_DIR}/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 "Capacitor_SMD:C_0603_1608Metric" (layer "B.Cu")
(tstamp 46aac001-1e0b-4992-9b6b-7fbd6860af0e)
(at 89.004 113.19 -90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "LCSC" "C19666")
(property "Sheetfile" "sensor.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/e0e2ca39-d81d-4638-b2d7-b3eff9325a7e")
(attr smd)
(fp_text reference "C3" (at 0.45 -1.99) (layer "B.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp ac132512-c893-4cc0-8b4f-a1bad93547b0)
)
(fp_text value "3.3u/16V" (at 0 -1.43 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 81816e02-b9d5-45a3-b7b0-cc74f750fa3d)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "B.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror))
(tstamp ad64683d-010c-4165-b7c9-bdb9b865521a)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp cf76941b-7cb7-403f-a724-5c62005145fb))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp c0e0a1a8-5894-4120-8299-374e6aad4977))
(fp_line (start -1.48 -0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 73e7ee50-75bc-4e42-a441-14efd20aa67d))
(fp_line (start -1.48 0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 07d3b61f-181e-44f2-a79b-11ae69e583c2))
(fp_line (start 1.48 -0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 50082213-59b8-4178-ae4c-b6bf80352015))
(fp_line (start 1.48 0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 91546da2-7098-44e2-83b0-a90492f689ab))
(fp_line (start -0.8 -0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 6504cfdc-6446-4592-b544-df5485f34a07))
(fp_line (start -0.8 0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp fa6bc78b-e1f7-4f3f-af18-60d695ec1311))
(fp_line (start 0.8 -0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp bf7f7976-c492-4b38-9696-c24926909542))
(fp_line (start 0.8 0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 1975c854-ae05-4e02-ba0d-06f01ae95443))
(pad "1" smd roundrect (at -0.775 0 270) (size 0.9 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 3 "+1V9") (pintype "passive") (tstamp 2830adc5-17f5-4a49-b4ca-77de80571a05))
(pad "2" smd roundrect (at 0.775 0 270) (size 0.9 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp fee0ccd7-c5f0-4f23-b779-1cce36ec4445))
(model "${KICAD6_3DMODEL_DIR}/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" (layer "B.Cu")
(tstamp 5c60e2fd-e25b-42a0-9a7e-d020a279558a)
(at 88.994 110.165 90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "LCSC" "C19666")
(property "Sheetfile" "sensor.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/ac284b14-05ec-4e61-b8f3-fbc0418a37e4")
(attr smd)
(fp_text reference "C2" (at -1.075 2.128 180) (layer "B.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp ce628648-1b8d-49bf-882f-f998f76a2b80)
)
(fp_text value "100n" (at 0 -1.43 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 4890192f-4ca9-4006-b535-3dc64647ab9a)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "B.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror))
(tstamp c0ae5f5d-8d99-4135-9d74-80ba2393b6c1)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp c266032e-acd0-44cc-865b-6767afae75ce))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 594cafaf-4e36-4fe3-ae6e-2d5f1f752e3b))
(fp_line (start -1.48 -0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 4d178d07-adbb-424c-a40a-c0d6cc374d90))
(fp_line (start -1.48 0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp b0d58a21-2385-48d6-a26b-b74e39154302))
(fp_line (start 1.48 -0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 48a98276-a055-4403-9edc-ea658cee0774))
(fp_line (start 1.48 0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 8f058a9f-941d-4b15-895b-78546127f770))
(fp_line (start -0.8 -0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp c21e578d-daf7-490f-9c62-e8e53fa6a05e))
(fp_line (start -0.8 0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp d3128ba1-e8fb-4427-bf6d-55b9d95f311c))
(fp_line (start 0.8 -0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 06b679d7-2631-42d8-b59d-bdf320efb995))
(fp_line (start 0.8 0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp f7c59d3b-150e-4fe4-9d7a-d8150b555fa0))
(pad "1" smd roundrect (at -0.775 0 90) (size 0.9 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 3 "+1V9") (pintype "passive") (tstamp a181bf67-7276-483b-8352-c18044784a3e))
(pad "2" smd roundrect (at 0.775 0 90) (size 0.9 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 4f6d5c60-febe-403b-b1ae-9baf26bb0a3f))
(model "${KICAD6_3DMODEL_DIR}/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" (layer "B.Cu")
(tstamp 5ed637ac-40ac-434c-a406-609e25d3658d)
(at 73.55 105.5 180)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "LCSC" "C19666")
(property "Sheetfile" "sensor.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/082217f1-4379-4503-b728-55106d6bf1c7")
(attr smd)
(fp_text reference "C7" (at 2.748 0.102) (layer "B.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 3ad80d0b-658f-434e-9b97-32834b217a0f)
)
(fp_text value "100n" (at 0 -1.43) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 193ab06f-2dc8-4ef9-b68e-8a6fdb811a8c)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror))
(tstamp fa9c0566-7ecb-4410-afc3-4a0d94e75136)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 4fd04d76-bcdf-4e8c-9ee9-52f4b923099d))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 75df9d90-1b85-489e-9b08-365c60ea6910))
(fp_line (start -1.48 -0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 2368fa1d-588a-4f1f-93cb-e31534b5b6e9))
(fp_line (start -1.48 0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 5bd3a05a-1192-4988-88c5-5128945d72de))
(fp_line (start 1.48 -0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp ae8225b4-a070-4f96-9400-6d19c4aed3d8))
(fp_line (start 1.48 0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 58ec862e-429d-43cf-844e-c5ccadf9ebf8))
(fp_line (start -0.8 -0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp f5e839c8-37c4-4fbd-af53-d16ae995a925))
(fp_line (start -0.8 0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 9f6201be-02fe-442b-8644-1d5990c49833))
(fp_line (start 0.8 -0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp b07d43c0-4d18-408b-9d9e-0ce113f0ef7f))
(fp_line (start 0.8 0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 1d597524-cea4-4dba-b007-667e6f3b201e))
(pad "1" smd roundrect (at -0.775 0 180) (size 0.9 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 4 "VCC") (pintype "passive") (tstamp e4699690-a3e3-4276-a309-fb7c9e011a61))
(pad "2" smd roundrect (at 0.775 0 180) (size 0.9 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 1eb918d9-71a2-4af8-9be2-45045e30b2f2))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "mylib:PMW3610" (layer "B.Cu")
(tstamp 75f982a1-6ab8-4209-a4a8-58e41c3ce9c1)
(at 76.21 114.28)
(descr "https://www.pixart.com/products-detail/21/PMW3610DM-SUDU")
(property "Sheetfile" "sensor.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "https://www.pixart.com/products-detail/21/PMW3610DM-SUDU")
(property "ki_keywords" "optical mouse sensor")
(path "/5d8ede79-525a-4699-a26f-2f9fda21b037")
(attr through_hole)
(fp_text reference "U2" (at 4.984 -15.39) (layer "B.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 12581dc1-b688-4eb2-a71d-0466f2d98e05)
)
(fp_text value "PMW3610" (at 5.35 -13.375) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 00646933-d8d4-4673-937d-cdfea8d67d6a)
)
(fp_circle (center -1.225 0) (end -1.025 0)
(stroke (width 0.4) (type solid)) (fill none) (layer "B.SilkS") (tstamp 9b6cfa4d-a58c-4120-9d6c-2add5443b970))
(fp_line (start 5.05 -3.18) (end 5.75 -3.18)
(stroke (width 0.12) (type solid)) (layer "Dwgs.User") (tstamp 68309690-8580-48fb-8da5-a98e1964fe78))
(fp_line (start 5.35 -2.8) (end 5.35 -3.55)
(stroke (width 0.12) (type solid)) (layer "Dwgs.User") (tstamp 012ede6f-7862-4804-b89f-f5354bd7b872))
(fp_circle (center 5.35 -4.56) (end 5.85 -4.56)
(stroke (width 0.12) (type solid)) (fill none) (layer "Dwgs.User") (tstamp 83326781-ae37-4f12-b7b0-b8f8e0f7a728))
(fp_circle (center 5.35 -3.18) (end 5.85 -3.18)
(stroke (width 0.12) (type solid)) (fill none) (layer "Cmts.User") (tstamp 89f4bfd5-bacb-40fe-adcc-439bd0f3eb38))
(fp_line (start 1.05 -14.18) (end 9.65 -14.18)
(stroke (width 0.12) (type solid)) (layer "Edge.Cuts") (tstamp e45ad754-f45f-4bfe-b65e-3a2d4c9a7b0b))
(fp_line (start 1.05 2.78) (end 1.05 -14.18)
(stroke (width 0.12) (type solid)) (layer "Edge.Cuts") (tstamp ece6d9b2-587f-40c3-afb2-73bee7fe7561))
(fp_line (start 1.05 2.78) (end 9.65 2.78)
(stroke (width 0.12) (type solid)) (layer "Edge.Cuts") (tstamp 9009e5f5-c53c-4b34-b38f-c0f1509c87da))
(fp_line (start 9.65 2.78) (end 9.65 -14.18)
(stroke (width 0.12) (type solid)) (layer "Edge.Cuts") (tstamp 952d4823-a982-440f-bf82-595615563354))
(fp_rect (start 1.22 2.15) (end 9.48 -10.85)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp c1cbda1b-2305-4d97-8468-1a6bed162811))
(pad "1" thru_hole circle (at 0 0) (size 1.2 1.2) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 2 "Net-(U2-+VCSEL)") (pinfunction "+VCSEL") (pintype "input") (tstamp a323579a-1e1c-4968-9012-37e829da8d7c))
(pad "2" thru_hole circle (at 0 -1.78) (size 1.2 1.2) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 11 "SDIO_2") (pinfunction "SDIO") (pintype "bidirectional") (tstamp e7a480e5-735d-4bd4-aff9-d461458157f0))
(pad "3" thru_hole circle (at 0 -3.56) (size 1.2 1.2) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 10 "SCLK_2") (pinfunction "SCLK") (pintype "input") (tstamp bbe8e30d-1c2e-49ee-9c6b-bdc8ed3e7f04))
(pad "4" thru_hole circle (at 0 -5.34) (size 1.2 1.2) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 14 "unconnected-(U2-NC-Pad4)") (pinfunction "NC") (pintype "no_connect") (tstamp 670434df-d4ca-4bbe-962e-9c37bdcadd78))
(pad "5" thru_hole circle (at 0 -7.12) (size 1.2 1.2) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 9 "NCS_2") (pinfunction "NCS") (pintype "input") (tstamp bb42589f-da18-447e-b155-b3f699689375))
(pad "6" thru_hole circle (at 0 -8.9) (size 1.2 1.2) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 4 "VCC") (pinfunction "VDDIO") (pintype "input") (tstamp d63cf6a0-babc-4f61-85e2-cc9a354f4cd4))
(pad "7" thru_hole circle (at 0 -10.68) (size 1.2 1.2) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 12 "Net-(U2-NRESET)") (pinfunction "NRESET") (pintype "input") (tstamp e58b9315-768f-4c8d-b17a-10c8e9e10148))
(pad "8" thru_hole circle (at 0 -12.46) (size 1.2 1.2) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 8 "MOTION_2") (pinfunction "MOTION") (pintype "output") (tstamp 54971daa-17cc-4a5c-b515-cdb3418c6f44))
(pad "9" thru_hole circle (at 10.7 -13.35) (size 1.2 1.2) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 7 "Net-(U2-VCP)") (pinfunction "VCP") (pintype "unspecified") (tstamp fe2c3c93-e75d-477c-8725-eb342d92f4d1))
(pad "10" thru_hole circle (at 10.7 -11.57) (size 1.2 1.2) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 2 "Net-(U2-+VCSEL)") (pinfunction "PASS_T") (pintype "unspecified") (tstamp 5527a45d-81af-4418-8fcb-f2db54c4b5a2))
(pad "11" thru_hole rect (at 10.7 -9.79) (size 1.2 1.2) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "input") (tstamp 14cadce7-51fd-4b88-861d-bb18abf13a8f))
(pad "12" thru_hole circle (at 10.7 -8.01) (size 1.2 1.2) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 6 "Net-(U2-CP)") (pinfunction "CP") (pintype "unspecified") (tstamp 041d6160-1b9f-4691-a085-01c61179a804))
(pad "13" thru_hole circle (at 10.7 -6.23) (size 1.2 1.2) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 5 "Net-(U2-CN)") (pinfunction "CN") (pintype "unspecified") (tstamp 7454e4d5-6c2b-40d8-af0b-9db4fbff2923))
(pad "14" thru_hole circle (at 10.7 -4.45) (size 1.2 1.2) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 3 "+1V9") (pinfunction "VDD") (pintype "power_in") (tstamp 14869bc7-a399-4902-864e-4e563f3d4793))
(pad "15" thru_hole circle (at 10.7 -2.67) (size 1.2 1.2) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 15 "Net-(U2--VCSEL)") (pinfunction "XYLASER") (pintype "input") (tstamp ee596ad1-e95b-4fd2-8758-95bf8b2555c6))
(pad "16" thru_hole circle (at 10.7 -0.89) (size 1.2 1.2) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 15 "Net-(U2--VCSEL)") (pinfunction "-VCSEL") (pintype "unspecified") (tstamp eca56b4f-c44a-4c92-87d3-61fd687f1674))
(model "${MYLIB_DIR}/3dmodels/peripherals/PMW3360 v12.step"
(offset (xyz 5.3 -5.7 2.14))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "B.Cu")
(tstamp 7a4a5c0e-c639-4f33-aa7f-cf5502abd572)
(at 88.984 103.58 -90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "LCSC" "C19666")
(property "Sheetfile" "sensor.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/bb4dbbaa-4b5d-4e6d-8c43-1b8be9dab861")
(attr smd)
(fp_text reference "C1" (at -0.09 -2.06) (layer "B.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 22823228-ec30-42c9-9fbd-c96c92e66a97)
)
(fp_text value "10n" (at 0 -1.43 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 2844eda9-971c-477b-a422-c7a585a07991)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "B.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror))
(tstamp 680e961d-8d71-438e-96c6-8c4d546e4f35)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 84a5ce41-a421-40fb-b8e7-42bfc3b7b203))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp d2886e7e-e45b-4c24-a941-3a69da57d7dc))
(fp_line (start -1.48 -0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp cc6d1127-8717-4392-8007-b559fd87fe63))
(fp_line (start -1.48 0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp c51c6cf4-254f-4c40-8dd7-09e6762d0e47))
(fp_line (start 1.48 -0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 9edd2f4d-ab17-4d21-be4a-64fba361cb20))
(fp_line (start 1.48 0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp f00793b6-9de3-4563-a5dd-8810cad7c60e))
(fp_line (start -0.8 -0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp ebda5c06-22a4-4d06-afb4-45d8dd8f9060))
(fp_line (start -0.8 0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 420474b5-af24-49dd-a7fa-bc0e2f6c77d2))
(fp_line (start 0.8 -0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 29be8cde-215c-4cfe-9e77-10ac34c7b704))
(fp_line (start 0.8 0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 010ef052-d719-4642-bffc-5baaba850b88))
(pad "1" smd roundrect (at -0.775 0 270) (size 0.9 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 2 "Net-(U2-+VCSEL)") (pintype "passive") (tstamp e988836e-d900-40e3-9586-2e129e13a52b))
(pad "2" smd roundrect (at 0.775 0 270) (size 0.9 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 799c8b1d-b563-48cf-be71-a7d5702942ec))
(model "${KICAD6_3DMODEL_DIR}/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" (layer "B.Cu")
(tstamp 7badec54-dd0c-405a-acf1-25eff9460213)
(at 85.344 98.84 180)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "LCSC" "C19666")
(property "Sheetfile" "sensor.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/e78a0281-86b2-4c0d-817d-12bc27d269bb")
(attr smd)
(fp_text reference "C8" (at -2.73 -0.208) (layer "B.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 35db8d54-eaa9-4183-b556-a8cb68d057d1)
)
(fp_text value " 10u (X7R)" (at 0 -1.43) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 7d6d6475-6516-4a66-a923-a295358a0cb5)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror))
(tstamp f172e016-140e-4bc0-8a5a-df92d434e6ea)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 1cf300a2-4cfc-4a49-b119-55be9ca6e530))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 5d3f5ed0-e6d7-43ca-a26c-f5c2b5c27710))
(fp_line (start -1.48 -0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp dbdf2d02-16f4-455d-9ecf-e9ca499a5cb6))
(fp_line (start -1.48 0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp baf567e9-6da6-4636-91dd-b9fa515ca620))
(fp_line (start 1.48 -0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp f3762dae-846e-4946-a834-2ea4d6f8a8fb))
(fp_line (start 1.48 0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 7e4179eb-ba11-40f3-b081-d1c757b70262))
(fp_line (start -0.8 -0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 8a6e7823-3391-4e54-96e2-3184c60c4d52))
(fp_line (start -0.8 0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp b32da7db-26e4-4806-82f7-ed6613bffe02))
(fp_line (start 0.8 -0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 039aa012-f1fa-43f7-ae22-9712ce6700f1))
(fp_line (start 0.8 0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 5f945720-da45-4930-a5ed-b66aa71c5314))
(pad "1" smd roundrect (at -0.775 0 180) (size 0.9 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 7 "Net-(U2-VCP)") (pintype "passive") (tstamp e944669e-51b4-498b-8735-89631f6245f7))
(pad "2" smd roundrect (at 0.775 0 180) (size 0.9 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 443c2a07-e2da-4dee-95b1-1da39022b7ed))
(model "${KICAD6_3DMODEL_DIR}/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" (layer "B.Cu")
(tstamp 977371ef-232c-40b3-8805-7fed7909b206)
(at 81.144 119.6925 90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "LCSC" "C14663")
(property "Sheetfile" "sensor.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/5ee72b24-30a2-4ba3-ba3d-ec1cb3a2b25f")
(attr smd)
(fp_text reference "C4" (at -0.303 1.596 90) (layer "B.SilkS") hide
(effects (font (size 0.8 0.8) (thickness 0.13)) (justify mirror))
(tstamp c8eb7630-b1d8-4bed-9192-8248f357acf5)
)
(fp_text value "0.1u" (at 0 -1.43 90) (layer "B.Fab") hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp a86b461b-d055-40f3-a0c0-825d0b72a6bf)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "B.Fab") hide
(effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror))
(tstamp cf297f33-1202-43fb-a6b1-88d0829ad532)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 5999fc63-6b91-4813-8c24-726dc2a7812d))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 1715d6b3-27d7-4caa-b1bd-ef57906f4243))
(fp_line (start -1.48 -0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 28784cb3-0331-4094-9085-9574e4e4175f))
(fp_line (start -1.48 0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 2cccacde-c877-45be-9a75-a5974dc992ff))
(fp_line (start 1.48 -0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp aa3ec969-ea60-4b4d-b0fb-2e27ba2b50a1))
(fp_line (start 1.48 0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 4b59c5f9-9001-4228-9169-91ed9e34b51c))
(fp_line (start -0.8 -0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp ed70f97a-cc49-46a4-898f-2df5bd4509ef))
(fp_line (start -0.8 0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 7dce429e-9b53-4836-be96-4f46f8d38a3c))
(fp_line (start 0.8 -0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 15312494-75c4-4be3-a0ee-6ce276ff7f86))
(fp_line (start 0.8 0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 08f556d3-6a3d-48e3-b5fa-89951eebc88d))
(pad "1" smd roundrect (at -0.775 0 90) (size 0.9 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 58ce3956-661c-4fc8-a5db-d9ac60b713c2))
(pad "2" smd roundrect (at 0.775 0 90) (size 0.9 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 4 "VCC") (pintype "passive") (tstamp 53a9e8f5-40cc-4fbc-a9fa-9876a91c9908))
(model "${KICAD6_3DMODEL_DIR}/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" (layer "B.Cu")
(tstamp ad541cb2-f097-4769-b1c0-c1cca23ca9bd)
(at 88.974 107.02 90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "LCSC" "C19666")
(property "Sheetfile" "sensor.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/463ef955-df04-4e3f-a3b0-531d202b4f5e")
(attr smd)
(fp_text reference "C6" (at 0.03 2.07) (layer "B.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 069867ba-56d6-4a39-9d7a-e04cbc7ddebc)
)
(fp_text value " 100n (X7R)" (at 0 -1.43 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp bb48b068-a631-45e0-ba20-908d61546deb)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "B.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror))
(tstamp 39279baf-6ba9-4081-b177-8729e507b09c)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp fd1abc48-cbff-4c1e-bafa-606b0baefb17))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 08e3c2a3-9d19-4492-9a15-6f3eb748a9dd))
(fp_line (start -1.48 -0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 50f08ba0-7289-418a-a124-e495e5a8f807))
(fp_line (start -1.48 0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 05a406c0-eeff-414a-b0b7-1ec8109d75cf))
(fp_line (start 1.48 -0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 88b4c3b5-cdba-451d-bfa9-6540b576b863))
(fp_line (start 1.48 0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 906bfecb-f12b-4023-b80a-3fe48766fac3))
(fp_line (start -0.8 -0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp a3e9f49b-e32c-4ac2-921d-705020ecd6ea))
(fp_line (start -0.8 0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp e3743d5d-6a6e-4ef8-901a-52ec0011573f))
(fp_line (start 0.8 -0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 2f9261a4-6d77-4f48-9946-887df68c5623))
(fp_line (start 0.8 0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 956d5ac0-d792-4f7d-ae86-eb3ff9fb3b1b))
(pad "1" smd roundrect (at -0.775 0 90) (size 0.9 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 5 "Net-(U2-CN)") (pintype "passive") (tstamp 2db7dc9a-206d-4655-b4aa-0936121ea67f))
(pad "2" smd roundrect (at 0.775 0 90) (size 0.9 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 6 "Net-(U2-CP)") (pintype "passive") (tstamp bc6effc8-87db-4893-b9a4-0083d7cf18d2))
(model "${KICAD6_3DMODEL_DIR}/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" (layer "B.Cu")
(tstamp b5b863ac-a506-4b3e-baa9-6daff41ac83f)
(at 85.344 97.136 180)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "LCSC" "C19666")
(property "Sheetfile" "sensor.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/e8276d7a-599d-4ddf-b976-d27fd2070882")
(attr smd)
(fp_text reference "C9" (at -2.73 -0.134) (layer "B.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp e6e8adc0-cc91-4304-bc09-9c397052e703)
)
(fp_text value " 10n (X7R)" (at 0 -1.43) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 90a85695-0dd7-4d5f-b71f-636e5dfaf486)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror))
(tstamp f23bb9e1-5e05-4bbf-b127-ffe25089156d)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 7e6f1c93-04e3-4772-90bf-62a93cb7a441))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 5bdd5001-6963-4df7-adb7-2ce61373b008))
(fp_line (start -1.48 -0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 1550eec9-61b8-4a78-9169-ce138015a6a4))
(fp_line (start -1.48 0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 7db57f0e-c003-4a7f-a15f-ca598dae4432))
(fp_line (start 1.48 -0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 23adc280-7bed-4b43-8a2b-bde543d4ad17))
(fp_line (start 1.48 0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 3b6c0748-74f2-434d-9dab-9cb69878bbfb))
(fp_line (start -0.8 -0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp b8d0cfe8-5ded-440a-9c37-0547de2a1de1))
(fp_line (start -0.8 0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 9e86cb8e-1a22-46de-862e-4afe62210ba6))
(fp_line (start 0.8 -0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 2a145e4d-85aa-4794-887b-e1e6e5da63cb))
(fp_line (start 0.8 0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 78d8bd80-466a-436c-a59f-bcd2d0c0227a))
(pad "1" smd roundrect (at -0.775 0 180) (size 0.9 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 7 "Net-(U2-VCP)") (pintype "passive") (tstamp f15b7890-7890-4f03-b09f-f68ac18a7833))
(pad "2" smd roundrect (at 0.775 0 180) (size 0.9 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp f1ec6152-cb9f-4130-89f1-9c8268da3e53))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "B.Cu")
(tstamp cb264f5c-8c6d-42d7-b52d-ea304b08528f)
(at 74.36 102.97 -90)
(descr "Resistor SMD 0603 (1608 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 "Sheetfile" "sensor.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/9e5e4903-09da-4954-92eb-265e593186a9")
(attr smd)
(fp_text reference "R1" (at 0 1.78 90) (layer "B.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 10fc04e4-25f0-4857-a9b5-a8ebd1ddb0a6)
)
(fp_text value "2M" (at 0 -1.43 90) (layer "B.Fab") hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 47d0f5a6-25b3-46f1-a668-a53336cbf780)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "B.Fab") hide
(effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror))
(tstamp 156ebbd6-97f5-4a63-9fb1-5f03fae8f469)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 35378cde-ae2d-47cb-b323-8f4cbea74c14))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 1b6403c6-cd7b-4518-b4ee-84dfd9d27955))
(fp_line (start -1.48 -0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 6b6debe6-81b8-4732-a3ac-5da444f3a73b))
(fp_line (start -1.48 0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 7f144151-92c4-42f7-9428-7559221bc3f1))
(fp_line (start 1.48 -0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 916fc7c7-a3fe-4f9d-9544-8114138771b8))
(fp_line (start 1.48 0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp cc45952c-e778-4c1c-89c2-1c95d7401688))
(fp_line (start -0.8 -0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 0b2234c3-2d14-4061-8885-76abbdce278a))
(fp_line (start -0.8 0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 2505d81d-cf79-4b92-93ab-0c2e3692953c))
(fp_line (start 0.8 -0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 1aea7337-573c-4a54-b016-8e75d1c35656))
(fp_line (start 0.8 0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp ee614b4f-5537-42b7-9bae-261f9a7b6950))
(pad "1" smd roundrect (at -0.825 0 270) (size 0.8 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 12 "Net-(U2-NRESET)") (pintype "passive") (tstamp d8f7c1b8-cfbc-46a0-a4fb-bfe0b0c79e64))
(pad "2" smd roundrect (at 0.825 0 270) (size 0.8 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 4 "VCC") (pintype "passive") (tstamp b5aa27bf-73a1-4e9c-991c-7c03258d11d4))
(model "${KICAD6_3DMODEL_DIR}/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" (layer "B.Cu")
(tstamp ec1c193f-86ec-48fc-a26b-de8201d681ac)
(at 78.694 123.7475)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "LCSC" "C15849")
(property "Sheetfile" "sensor.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/2d596433-9303-455a-b481-8baffdc68f31")
(attr smd)
(fp_text reference "C5" (at -2.6 0.02) (layer "B.SilkS") hide
(effects (font (size 0.8 0.8) (thickness 0.13)) (justify mirror))
(tstamp 9c6816c4-88e1-4208-9897-3ec1d807db60)
)
(fp_text value "1u" (at 0 -1.43) (layer "B.Fab") hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp b45e5d29-c730-444e-ba2b-5c322ae6ef78)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab") hide
(effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror))
(tstamp b1973869-c6b6-4a4b-b27e-3b442444c64f)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 8c99c5d3-7ae5-4206-97ab-5d6b29a4fec4))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 842cf3dc-1b9c-4bf9-ab1e-730712711020))
(fp_line (start -1.48 -0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 3bd93b99-b6ae-4863-85b1-ee47831c3d4b))
(fp_line (start -1.48 0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp d1c17d13-88b5-4251-98f5-dfe3d8d40cf6))
(fp_line (start 1.48 -0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 20c5126f-4fbd-4110-a954-383ebdbbf163))
(fp_line (start 1.48 0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp ef33cb28-e817-4821-aaaf-68ee47054b52))
(fp_line (start -0.8 -0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 2847b6b1-e035-4b66-b9e7-44ef590ea7b8))
(fp_line (start -0.8 0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp d7fedfae-c711-4a1a-9476-8ca01d215fcc))
(fp_line (start 0.8 -0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp d035799f-0d2c-41df-a04c-c0d82b2607e9))
(fp_line (start 0.8 0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp cdb1fe4b-faa2-45dc-a54f-6bb353bc6f06))
(pad "1" smd roundrect (at -0.775 0) (size 0.9 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 3 "+1V9") (pintype "passive") (tstamp 66c3e187-996d-4670-816c-6aba32ce06b4))
(pad "2" smd roundrect (at 0.775 0) (size 0.9 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 6d22c918-ce68-460a-9e42-7a7f97152442))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(gr_circle (center 81.599946 110.618001) (end 103 110.568001)
(stroke (width 0.05) (type solid)) (fill none) (layer "Dwgs.User") (tstamp f20723a5-db40-4d56-b2fe-ecb557b95a90))
(gr_arc (start 79.9 131.9) (mid 68.917172 127.152463) (end 64.099999 116.2)
(stroke (width 0.05) (type solid)) (layer "Edge.Cuts") (tstamp 0c535efc-c312-43ee-983d-e113d5f793e2))
(gr_line (start 64.1 116.2) (end 64.1 104.9)
(stroke (width 0.05) (type solid)) (layer "Edge.Cuts") (tstamp 4411f013-1239-4841-add0-56f380024b60))
(gr_arc (start 64.1 104.9) (mid 69.841085 94.062641) (end 81.1 89.200001)
(stroke (width 0.05) (type solid)) (layer "Edge.Cuts") (tstamp b16695f3-b76e-41c5-9585-51f82fb5af4c))
(gr_arc (start 81.1 89.2) (mid 102.82616 111.177433) (end 79.9 131.899999)
(stroke (width 0.05) (type solid)) (layer "Edge.Cuts") (tstamp e1bcd3af-470b-44f9-812f-ec89f779b0c2))
(gr_text "MOTION" (at 92.7 108.4 45) (layer "B.SilkS") (tstamp 47ad5f6d-8922-44f9-8882-057eccb587d7)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(gr_text "SCLK" (at 93.3 110.3 45) (layer "B.SilkS") (tstamp 7ed0ad05-6e81-49bd-9492-84b73054710a)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(gr_text "GND" (at 93.7 105 45) (layer "B.SilkS") (tstamp 83272059-bb6c-4970-9aec-a892b6bed5f7)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(gr_text "NCS" (at 93.6 115.1 45) (layer "B.SilkS") (tstamp bf88e627-a867-4f92-ac88-13513f66db9e)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(gr_text "github.com/ufan\n2022.09.04\n\nvoided 2023.03.16" (at 67.8 113.6 90) (layer "B.SilkS") (tstamp c4d6024a-f806-442d-81dd-f95d356f4f4e)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(gr_text "SDIO" (at 93.3 112.9 45) (layer "B.SilkS") (tstamp d45d76be-6bc9-4593-adfb-1935f50128fa)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(gr_text "VCC" (at 93.7 117.7 45) (layer "B.SilkS") (tstamp dd4b5c92-4b69-4b39-a584-e4e2d0439318)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(via (at 81.2 98.2) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 74e5c916-c0b5-4fa9-af27-eb7ec3e882ff))
(via (at 89.2 100.6) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 8bfeab5a-dcb3-4902-b25d-6407faa8c526))
(segment (start 78.674 122.9525) (end 78.674 119.38) (width 0.4) (layer "B.Cu") (net 1) (tstamp 20143410-279d-49fa-857d-ef53ed1a1e6e))
(segment (start 87.09 104.4) (end 88.939 104.4) (width 0.55) (layer "B.Cu") (net 1) (tstamp 2a71c915-3e77-4ec6-91e9-1a9b981ba9cb))
(segment (start 87.045 104.355) (end 87.09 104.4) (width 0.55) (layer "B.Cu") (net 1) (tstamp 728482db-4d8c-40ff-be2a-b7fffdbcc221))
(segment (start 79.469 123.7475) (end 78.674 122.9525) (width 0.4) (layer "B.Cu") (net 1) (tstamp ac4d9aaa-9c87-44d0-a8de-7bde834c41b2))
(segment (start 84.569 97.39) (end 84.569 98.84) (width 0.55) (layer "B.Cu") (net 1) (tstamp bca99a8e-598f-436a-9158-7a050d1f7ca4))
(segment (start 88.939 104.4) (end 88.984 104.355) (width 0.55) (layer "B.Cu") (net 1) (tstamp de5861c9-749e-41b3-b96a-65bad14e0910))
(segment (start 76.892038 122.32351) (end 86.37649 122.32351) (width 0.4) (layer "F.Cu") (net 2) (tstamp 114ab435-cfa4-4f3a-b390-1dfa3096aea6))
(segment (start 88.304 120.396) (end 88.304 104.104) (width 0.4) (layer "F.Cu") (net 2) (tstamp 164adf55-c1cb-4578-8eb1-ae26636e81ef))
(segment (start 76.21 114.28) (end 74.358 116.132) (width 0.4) (layer "F.Cu") (net 2) (tstamp 406189d2-1880-4c5c-87f7-46a12e2a05ca))
(segment (start 74.358 119.789472) (end 76.892038 122.32351) (width 0.4) (layer "F.Cu") (net 2) (tstamp 492ada83-d445-400a-8470-032638d75f3f))
(segment (start 86.37649 122.32351) (end 88.304 120.396) (width 0.4) (layer "F.Cu") (net 2) (tstamp 5a06ae98-0057-4272-83f6-d7ecf4bda59a))
(segment (start 74.358 116.132) (end 74.358 119.789472) (width 0.4) (layer "F.Cu") (net 2) (tstamp 89c902d0-e9af-41e5-96dc-2bb1d0fb8b92))
(segment (start 88.304 104.104) (end 86.91 102.71) (width 0.4) (layer "F.Cu") (net 2) (tstamp 96049a3a-e46c-4efe-8581-408776993d40))
(segment (start 87.005 102.805) (end 88.984 102.805) (width 0.55) (layer "B.Cu") (net 2) (tstamp 8dcf40e6-09a5-42e4-8b46-f4738540468d))
(segment (start 91.6 109.48468) (end 91.6 100.6) (width 0.4) (layer "B.Cu") (net 3) (tstamp 19d9f705-83ba-490b-bca4-3a6a392bdb5c))
(segment (start 75.2 96) (end 70.8 100.4) (width 0.4) (layer "B.Cu") (net 3) (tstamp 1efe1c7a-7ab3-487b-b674-4db2fe11ec99))
(segment (start 88.994 110.94) (end 90.14468 110.94) (width 0.4) (layer "B.Cu") (net 3) (tstamp 29ad9f8f-fad5-4be8-a3d8-c37f81505a4a))
(segment (start 87.154 109.83) (end 88.264 110.94) (width 0.55) (layer "B.Cu") (net 3) (tstamp 4a56ac62-5ec2-46fc-a86c-9adf2d8fead1))
(segment (start 88.264 110.94) (end 88.994 110.94) (width 0.55) (layer "B.Cu") (net 3) (tstamp 78d3a4a0-e724-44e1-963f-de88a39d4158))
(segment (start 70.8 100.4) (end 70.8 116.2) (width 0.4) (layer "B.Cu") (net 3) (tstamp 792ac77a-0f3b-4fcc-979f-77952a556e83))
(segment (start 77.744 122.1675) (end 77.744 123.5725) (width 0.55) (layer "B.Cu") (net 3) (tstamp 84315919-677c-4909-a747-2c92c96d5870))
(segment (start 90.14468 110.94) (end 91.6 109.48468) (width 0.4) (layer "B.Cu") (net 3) (tstamp 9a71ca25-bb92-4a7f-98ad-7348d8b3cdfc))
(segment (start 89.004 112.415) (end 89.004 110.95) (width 0.55) (layer "B.Cu") (net 3) (tstamp ad2d033c-4040-4813-b5da-82cf827f9d86))
(segment (start 70.8 116.2) (end 76.675 122.075) (width 0.4) (layer "B.Cu") (net 3) (tstamp cf8e8f98-ee58-47bc-8e56-5eec59f32c6b))
(segment (start 87 96) (end 75.2 96) (width 0.4) (layer "B.Cu") (net 3) (tstamp d136c6a7-aec3-42ff-9295-953a695fda10))
(segment (start 91.6 100.6) (end 87 96) (width 0.4) (layer "B.Cu") (net 3) (tstamp eb653dda-3b32-4f47-b4b6-cf335a4177f0))
(segment (start 76.675 122.075) (end 77.724 122.075) (width 0.4) (layer "B.Cu") (net 3) (tstamp f8795357-5cbf-4c1f-8785-930eb38713f6))
(segment (start 96.8 116.8) (end 94.6825 118.9175) (width 0.55) (layer "B.Cu") (net 4) (tstamp 1895919a-7fd5-4147-9c5d-9c90d8b9d86f))
(segment (start 78.054 118.3675) (end 79.274 118.3675) (width 0.4) (layer "B.Cu") (net 4) (tstamp 4b3cefd2-e7d7-4d25-8bb9-37548c3e8b03))
(segment (start 79.624 118.7175) (end 79.624 119.38) (width 0.4) (layer "B.Cu") (net 4) (tstamp 6d401fdd-c1f6-4321-96c4-4843b6143be9))
(segment (start 77.744 119.36) (end 77.744 118.6775) (width 0.4) (layer "B.Cu") (net 4) (tstamp 773bdc81-beec-4a4b-9485-1c1dd15c6e5a))
(segment (start 74.324 105.46) (end 74 105.784) (width 0.4) (layer "B.Cu") (net 4) (tstamp 77503eef-8d1b-4d23-87c1-689a7d8d03ab))
(segment (start 74 105.784) (end 74 116.076) (width 0.4) (layer "B.Cu") (net 4) (tstamp 83ff495b-8333-4f3a-9b54-ac52c9c3a818))
(segment (start 79.624 119.8) (end 80.5065 118.9175) (width 0.55) (layer "B.Cu") (net 4) (tstamp 90671817-460f-456a-a6e3-6cfa468bea55))
(segment (start 74 116.076) (end 77.724 119.8) (width 0.4) (layer "B.Cu") (net 4) (tstamp a26e2818-9370-4a55-9d2a-0a09e376913f))
(segment (start 94.6825 118.9175) (end 81.144 118.9175) (width 0.55) (layer "B.Cu") (net 4) (tstamp ad709eae-6c7b-4988-ad2b-eb51ac304c6e))
(segment (start 77.744 118.6775) (end 78.054 118.3675) (width 0.4) (layer "B.Cu") (net 4) (tstamp d22f8c08-7c7a-481b-96ff-cad6b4c95453))
(segment (start 74.36 103.795) (end 74.36 105.424) (width 0.4) (layer "B.Cu") (net 4) (tstamp e240a30e-997f-4d09-90cb-c455ee4b9241))
(segment (start 74.324 105.46) (end 76.13 105.46) (width 0.55) (layer "B.Cu") (net 4) (tstamp e4df63e4-2a5a-405f-916a-ea67ff3a2b21))
(segment (start 80.5065 118.9175) (end 81.144 118.9175) (width 0.55) (layer "B.Cu") (net 4) (tstamp ef3c2ca7-fcc8-4cff-8fc1-0c762aa25455))
(segment (start 79.274 118.3675) (end 79.624 118.7175) (width 0.4) (layer "B.Cu") (net 4) (tstamp f5a54919-b960-48fc-8517-e9e32dce0bf0))
(segment (start 87.165 107.795) (end 88.974 107.795) (width 0.4) (layer "B.Cu") (net 5) (tstamp 78de0256-23a6-42c0-8b5a-1425aa40457a))
(segment (start 86.935 106.245) (end 88.974 106.245) (width 0.4) (layer "B.Cu") (net 6) (tstamp 8aaa3345-c586-4729-9584-3137be876023))
(segment (start 86.119 98.84) (end 86.91 99.631) (width 0.55) (layer "B.Cu") (net 7) (tstamp a8333ca2-6919-4fe3-9f28-bacc852923df))
(segment (start 86.119 97.39) (end 86.119 98.84) (width 0.55) (layer "B.Cu") (net 7) (tstamp c6d0e6be-376d-4beb-9794-508920a2265a))
(segment (start 86.91 99.631) (end 86.91 100.93) (width 0.55) (layer "B.Cu") (net 7) (tstamp ca2c6135-06b9-49ec-b90b-71e52fd66fd1))
(segment (start 76.146454 124.12351) (end 93.773546 124.12351) (width 0.4) (layer "F.Cu") (net 8) (tstamp 045a7d58-cb3c-4a41-8be9-d15f6d17ecec))
(segment (start 99.4 109.24) (end 96.8 106.64) (width 0.4) (layer "F.Cu") (net 8) (tstamp 37dec1aa-9afa-4784-83c3-7ddfc42341db))
(segment (start 72.558 105.472) (end 72.558 120.535056) (width 0.4) (layer "F.Cu") (net 8) (tstamp 42dcad0d-1913-4afe-b9cd-ef00e9b59e38))
(segment (start 72.558 120.535056) (end 76.146454 124.12351) (width 0.4) (layer "F.Cu") (net 8) (tstamp 4e188f9e-eff2-4707-856d-e2d1852416fe))
(segment (start 93.773546 124.12351) (end 99.4 118.497056) (width 0.4) (layer "F.Cu") (net 8) (tstamp 6de7ef56-a1f1-4b6c-a0f5-c796a4d73f5d))
(segment (start 76.21 101.82) (end 72.558 105.472) (width 0.4) (layer "F.Cu") (net 8) (tstamp 8f17ceee-7bac-4f44-80bc-6a398ab92659))
(segment (start 99.4 118.497056) (end 99.4 109.24) (width 0.4) (layer "F.Cu") (net 8) (tstamp 91c35d4d-7473-47c9-910e-2bcddf6875ae))
(segment (start 74.9 108.47) (end 76.21 107.16) (width 0.4) (layer "F.Cu") (net 9) (tstamp c5376e98-06b7-43da-84ba-e4193001a031))
(segment (start 74.9 109.7) (end 74.9 108.47) (width 0.4) (layer "F.Cu") (net 9) (tstamp e4ac0921-3d9e-430a-a7b0-0a4e4ad7c37d))
(via (at 74.9 109.7) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 9) (tstamp 3cb62926-da38-4653-87aa-377a7d2e0f46))
(segment (start 93.36 117.7) (end 96.8 114.26) (width 0.4) (layer "B.Cu") (net 9) (tstamp 28da7809-6454-49cb-a316-c5dd94f47e6d))
(segment (start 74.9 115.7) (end 76.9 117.7) (width 0.4) (layer "B.Cu") (net 9) (tstamp 3ffbb6c6-c200-486f-abbf-55479d8a425f))
(segment (start 76.9 117.7) (end 93.36 117.7) (width 0.4) (layer "B.Cu") (net 9) (tstamp 4bd43959-ef7a-4fea-b267-af5ed27324fc))