-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpmw3360_pcb_pinheader.kicad_pcb
5057 lines (5024 loc) · 209 KB
/
pmw3360_pcb_pinheader.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20221018) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(title_block
(title "PMW3360 PCB")
(date "2023-10-07")
(rev "P.1")
(company "SideraKB")
(comment 1 "Open Source Hardware, CERN-OHL-P v2")
(comment 2 "PMW3360DM-T2QU optical mouse sensor breakout board")
(comment 3 "2.54mm pin header edition")
)
(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)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(aux_axis_origin 133.889 76.5338)
(grid_origin 133.889 76.5338)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions true)
(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 false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue false)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk true)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "Gerber/")
)
)
(net 0 "")
(net 1 "GND")
(net 2 "/MISO")
(net 3 "/CS")
(net 4 "/MOSI")
(net 5 "/SCLK")
(net 6 "/MOTION")
(net 7 "/RESET")
(net 8 "VDD")
(net 9 "V_{IN}")
(net 10 "V_{IO}")
(net 11 "Net-(U2-NC)")
(net 12 "unconnected-(U1-NC-Pad1)")
(net 13 "unconnected-(U1-NC-Pad2)")
(net 14 "unconnected-(U1-NC-Pad6)")
(net 15 "unconnected-(U1-NC-Pad14)")
(net 16 "unconnected-(U1-NC-Pad16)")
(net 17 "Net-(U1-VDDPIX)")
(net 18 "Net-(U1-LED_P)")
(footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu")
(tstamp 1424758b-8d1d-48b7-932c-b6803b223b5e)
(at 154.139 83.5338 180)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (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 handsolder")
(property "LCSC" "C25804")
(property "Mfr. #" "0603WAF1002T5E")
(property "Sheetfile" "pmw3360_pcb_pinheader.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/5787d4fd-e2e9-4d4d-87e6-72bdd196a639")
(attr smd)
(fp_text reference "R2" (at -2.25 0.25 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3eb49b8c-0d02-497f-a6e5-a49293f6b4c7)
)
(fp_text value "10k" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b4a0293d-a490-41f3-a3be-8b38bf333890)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp ebcbb283-613d-4812-aadc-434e53db0b10)
)
(fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f172a13a-304a-4be4-bbf9-57b7f0894e0e))
(fp_line (start -0.254724 0.5225) (end 0.254724 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 892fc486-9f17-40cd-a3ea-0f0a709545bc))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 455f47a8-a9e3-417b-9459-ed4a8bd7c5a6))
(fp_line (start -1.65 0.73) (end -1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b1a043e5-1ec6-4107-94f3-c5204f57dcd6))
(fp_line (start 1.65 -0.73) (end 1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0705ae40-7b35-413f-b1ff-d56ecd9ab9e7))
(fp_line (start 1.65 0.73) (end -1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cb294f28-079d-42b0-b407-71c3abac2578))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5e6b590f-d58a-41a7-b51b-3967905e5646))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 46231f93-af09-438d-8b99-0ba0e4408445))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp dfea1f82-27e0-4f9e-a915-2359a3129126))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0a0808d7-13e9-40ee-bd28-b805fbac2e60))
(pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "V_{IO}") (pintype "passive") (tstamp 3f31e7af-f3ef-4a44-8a45-5ab2e40b84d6))
(pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "/MISO") (pintype "passive") (tstamp c2e150e1-1bb3-4d3a-8052-f3fa2ffa6818))
(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 "Connector_PinHeader_2.54mm:PinHeader_1x08_P2.54mm_Vertical" locked (layer "F.Cu")
(tstamp 17472dbf-4f0a-4657-a4fc-0ebcf20c1723)
(at 135.389 101.9088 180)
(descr "Through hole straight pin header, 1x08, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x08 2.54mm single row")
(property "LCSC" "")
(property "Mfr. #" "")
(property "Sheetfile" "pmw3360_pcb_pinheader.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x08, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/0e172d5c-59d7-4a48-83e8-35d83794f65e")
(attr through_hole)
(fp_text reference "J1" (at 0 -2.33) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2855e9a4-d841-44f9-8f35-1aa44c2ca6ac)
)
(fp_text value "Conn_01x08" (at 0 20.11) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2b266311-9ff6-463d-b0f8-cf4550cb1474)
)
(fp_text user "${REFERENCE}" (at 0 8.89 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 157c9954-0fae-4a30-b5f5-28ce38f7a37a)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 04b99a0f-055e-4d92-b880-8f5ea6671148))
(fp_line (start -1.33 0) (end -1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 87e18c0b-2507-4599-8647-ad95057b0e8a))
(fp_line (start -1.33 1.27) (end -1.33 19.11)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 201bbc4c-e9f9-42c5-84e4-72d4cb12cc42))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 24cb6f6d-aee3-4c54-ab50-e99b386ca81a))
(fp_line (start -1.33 19.11) (end 1.33 19.11)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 642ebbfd-7e6d-4ab2-b14f-0e8859d4abec))
(fp_line (start 1.33 1.27) (end 1.33 19.11)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 67256610-fbed-40f6-990d-b63d0fbe36d4))
(fp_line (start -1.8 -1.8) (end -1.8 19.55)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a735f8d8-5357-49fd-bf6b-30b10cee735c))
(fp_line (start -1.8 19.55) (end 1.8 19.55)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6dc2bd29-a8cd-4eaa-8ef2-86c15582aaef))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ce627ede-d39d-4279-b8d9-17a2dbb5a54d))
(fp_line (start 1.8 19.55) (end 1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp aa15462b-0c49-45ed-9653-a2fe52857f55))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp dbba5f10-786d-4c5a-9ec3-1ffcd961d41a))
(fp_line (start -1.27 19.05) (end -1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e5d00d72-4426-4eaa-92e9-d9ce1386818a))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 25aeaa62-c291-41ac-b560-4e7dfc6093ef))
(fp_line (start 1.27 -1.27) (end 1.27 19.05)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 464f2131-ed75-41d5-89cf-c6ae61c6466f))
(fp_line (start 1.27 19.05) (end -1.27 19.05)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 79576a31-d5d4-472d-a8cb-db2526e3bf21))
(pad "1" thru_hole rect locked (at 0 0 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp dba2862e-9bad-4123-977e-5efd520ecd74))
(pad "2" thru_hole oval locked (at 0 2.54 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 9 "V_{IN}") (pinfunction "Pin_2") (pintype "passive") (tstamp c6dba21d-1462-4dd8-937a-5fec30f24d84))
(pad "3" thru_hole oval locked (at 0 5.08 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 3 "/CS") (pinfunction "Pin_3") (pintype "passive") (tstamp 52598dc1-9607-4140-800f-45848fb2701e))
(pad "4" thru_hole oval locked (at 0 7.62 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 2 "/MISO") (pinfunction "Pin_4") (pintype "passive") (tstamp 382740c2-36a0-47e6-aeef-96789f2d4f50))
(pad "5" thru_hole oval locked (at 0 10.16 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 4 "/MOSI") (pinfunction "Pin_5") (pintype "passive") (tstamp 1bd21522-650e-4729-a24b-a4efd32132e7))
(pad "6" thru_hole oval locked (at 0 12.7 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 5 "/SCLK") (pinfunction "Pin_6") (pintype "passive") (tstamp 2aedcf7b-5d82-4f15-92b5-60a8c5ee1f14))
(pad "7" thru_hole oval locked (at 0 15.24 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 6 "/MOTION") (pinfunction "Pin_7") (pintype "passive") (tstamp 64510786-23dd-4491-bd32-4aa90f61bb6b))
(pad "8" thru_hole oval locked (at 0 17.78 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 7 "/RESET") (pinfunction "Pin_8") (pintype "passive") (tstamp f2cb6285-61f6-46e9-b949-e464049b0e29))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x08_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu")
(tstamp 24120d18-dc1a-4480-99c2-983448e5a5f1)
(at 149.652 106.2558)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (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 handsolder")
(property "LCSC" "")
(property "Mfr. #" "")
(property "Sheetfile" "pmw3360_pcb_pinheader.kicad_sch")
(property "Sheetname" "")
(property "dnp" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/610d2ade-53fa-4f5e-a3a1-1aca305beba4")
(attr smd)
(fp_text reference "R4" (at 0 -1.397) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 577920f7-55ba-4a5c-bd81-ed25c883eadc)
)
(fp_text value "28k" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f51fa318-50d9-4613-90eb-764b2f342c02)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp a73c2305-55b0-40a3-ab10-250459db4ea6)
)
(fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c4f19c19-5ed4-45c9-b61e-5b4951b0fc55))
(fp_line (start -0.254724 0.5225) (end 0.254724 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e8132228-ef5f-41f1-95ae-df1b08c6620e))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6cd0ec64-8c8f-4c96-9a94-abfdd8da292d))
(fp_line (start -1.65 0.73) (end -1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 32274338-9cd4-46d1-8f85-0ed097f1197f))
(fp_line (start 1.65 -0.73) (end 1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b91159e9-19d7-4978-a0d6-3937cc621d4a))
(fp_line (start 1.65 0.73) (end -1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f6e01e6e-36be-41b1-bc03-1055f16884cd))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5ab4ff3e-c49f-48ec-84d9-3a8cfe13f663))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 77c1e254-3785-4b38-aa35-38f8bd5296b7))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5557ec9c-5500-423e-b569-e441c7d2bd4a))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 01ad2c1c-f19a-4972-9b98-696a30291f72))
(pad "1" smd roundrect (at -0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "VDD") (pintype "passive") (tstamp b0f96887-05bb-46f9-958f-4760a5a8ac50))
(pad "2" smd roundrect (at 0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "Net-(U2-NC)") (pintype "passive") (tstamp 517dd539-bfa4-47fa-8eb9-51a5fad998f6))
(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 "PMW3360_PCB:PMW3360DM-T2QU 16Pin" locked (layer "F.Cu")
(tstamp 2c27e078-5cb9-42fd-9d9a-a3bc492243fd)
(at 145.639 92.5258 90)
(descr "PMW3360DM-T2QU special 16pin molded lead-frame DIP")
(property "Sheetfile" "pmw3360_pcb_pinheader.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Optical mouse sensor")
(property "ki_keywords" "PMW3360")
(path "/1da5363b-9254-416a-9573-71742689f640")
(attr through_hole)
(fp_text reference "U1" (at -9.652 6.125) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ad166962-4e1b-4a3f-a7ce-516d011f51ba)
)
(fp_text value "PMW3360DM-T2QU" (at 0 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bbe615f4-6ef9-4532-b293-988ed8a91898)
)
(fp_text user "Optical Center" (at -2.032 0 unlocked) (layer "Cmts.User")
(effects (font (size 0.7 0.7) (thickness 0.1)))
(tstamp 9918e158-d1ad-40c5-8e25-19f3b1bbe3c4)
)
(fp_text user "Front of Mouse" (at 5.334 0 unlocked) (layer "Cmts.User")
(effects (font (size 0.7 0.7) (thickness 0.1)))
(tstamp e2123fd2-4dbc-4b79-8f60-18aa1c3025fc)
)
(fp_line (start -9.668 -5.15) (end -6.168 -5.15)
(stroke (width 0.2) (type solid)) (layer "F.SilkS") (tstamp 18ba327d-9848-4c3d-a68f-80fe131da80e))
(fp_line (start -9.668 4.35) (end -9.668 -5.15)
(stroke (width 0.2) (type solid)) (layer "F.SilkS") (tstamp 401627b4-07e4-4789-a12c-11eed02c86f9))
(fp_line (start -8.468 5.35) (end -9.668 4.35)
(stroke (width 0.2) (type solid)) (layer "F.SilkS") (tstamp 01aad5ce-5ced-419e-b345-3d9647d19fa6))
(fp_line (start -7.168 5.35) (end -8.468 5.35)
(stroke (width 0.2) (type solid)) (layer "F.SilkS") (tstamp 3b950781-3193-4319-acb6-474c2d005b41))
(fp_line (start 9.0772 -5.166) (end 8.0772 -5.166)
(stroke (width 0.2) (type solid)) (layer "F.SilkS") (tstamp 1b043bfa-ac62-46c6-9cff-cb80a7f6f69a))
(fp_line (start 9.0772 -5.166) (end 9.0772 5.334)
(stroke (width 0.2) (type solid)) (layer "F.SilkS") (tstamp b0a2f26d-fa00-456b-8baf-f5bfff8f8b31))
(fp_line (start 9.0772 5.334) (end 7.1628 5.334)
(stroke (width 0.2) (type solid)) (layer "F.SilkS") (tstamp c9879541-f985-4bc6-861c-c4e3aaf74416))
(fp_circle (center -6.168 6.604) (end -6.168 6.604)
(stroke (width 0.61) (type solid)) (fill solid) (layer "F.SilkS") (tstamp e921c9bd-7871-4b4a-94be-e866c754def8))
(fp_circle (center -7.1 3.3) (end -6.45 3.3)
(stroke (width 0.1) (type default)) (fill none) (layer "Dwgs.User") (tstamp 99857de9-6ece-4c30-a7ba-b3654bc8ca12))
(fp_circle (center -6.5 4) (end -6.42 4)
(stroke (width 0.1) (type solid)) (fill solid) (layer "Dwgs.User") (tstamp 3353a9bc-acaa-4b2e-8641-08c9cf3d39e9))
(fp_circle (center 6.7 -3.4) (end 7.35 -3.4)
(stroke (width 0.1) (type default)) (fill none) (layer "Dwgs.User") (tstamp 40c72507-4ee1-4994-ad59-0ce0e00c926e))
(fp_line (start -1.524 0) (end 0.508 0)
(stroke (width 0.1) (type solid)) (layer "Cmts.User") (tstamp d7b03c09-b8d8-40b7-ab49-b28459a046cb))
(fp_line (start -0.508 -1.016) (end -0.508 1.016)
(stroke (width 0.1) (type solid)) (layer "Cmts.User") (tstamp 5fc69ad8-f7ef-454c-836b-1b30c137a548))
(fp_circle (center -0.508 0) (end 0 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "Cmts.User") (tstamp 116bffe1-4756-417c-9d8d-51980f53f67a))
(fp_poly
(pts
(xy 8.128 0)
(xy 6.096 0.762)
(xy 6.096 -0.762)
)
(stroke (width 0.12) (type solid)) (fill none) (layer "Cmts.User") (tstamp a462a87d-6bb6-4c9b-a712-db1e67f184fe))
(fp_rect (start -8.968 4.35) (end 8.332 -4.35)
(stroke (width 0.15) (type solid)) (fill none) (layer "Edge.Cuts") (tstamp 5da99b90-e0f1-47c2-9526-48df74357ab8))
(fp_rect (start -9.906 -6.604) (end 9.652 6.604)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp e7938063-a90d-4439-aff2-38f6784e3824))
(pad "1" thru_hole rect locked (at -6.168 5.35 90) (size 1.25 1.25) (drill 0.75) (layers "*.Cu" "*.Mask")
(net 12 "unconnected-(U1-NC-Pad1)") (pinfunction "NC") (pintype "no_connect") (tstamp 1c38ea12-9db4-4d99-9ac9-7580754bf030))
(pad "2" thru_hole oval locked (at -4.388 5.35 90) (size 1.25 1.25) (drill 0.75) (layers "*.Cu" "*.Mask")
(net 13 "unconnected-(U1-NC-Pad2)") (pinfunction "NC") (pintype "no_connect") (tstamp cae1a365-1554-4611-a24f-9ca7f4396959))
(pad "3" thru_hole oval locked (at -2.608 5.35 90) (size 1.25 1.25) (drill 0.75) (layers "*.Cu" "*.Mask")
(net 17 "Net-(U1-VDDPIX)") (pinfunction "VDDPIX") (pintype "power_out") (tstamp d2340b11-5744-4e61-b341-3a2fca5541db))
(pad "4" thru_hole oval locked (at -0.828 5.35 90) (size 1.25 1.25) (drill 0.75) (layers "*.Cu" "*.Mask")
(net 8 "VDD") (pinfunction "VDD") (pintype "power_in") (tstamp fcfd2920-9430-48fb-ab73-19d7fe71b70d))
(pad "5" thru_hole oval locked (at 0.952 5.35 90) (size 1.25 1.25) (drill 0.75) (layers "*.Cu" "*.Mask")
(net 10 "V_{IO}") (pinfunction "VDDIO") (pintype "power_in") (tstamp a1005604-4cbb-4d70-a6a1-c23afec2b76b))
(pad "6" thru_hole oval locked (at 2.732 5.35 90) (size 1.25 1.25) (drill 0.75) (layers "*.Cu" "*.Mask")
(net 14 "unconnected-(U1-NC-Pad6)") (pinfunction "NC") (pintype "no_connect") (tstamp bc2aa4ae-ee6e-4ae2-88dc-e1f3dfdb3a0b))
(pad "7" thru_hole oval locked (at 4.512 5.35 90) (size 1.25 1.25) (drill 0.75) (layers "*.Cu" "*.Mask")
(net 7 "/RESET") (pinfunction "~{RESET}") (pintype "input") (tstamp 07764745-122e-45e9-bff1-3011019f3d10))
(pad "8" thru_hole oval locked (at 6.292 5.35 90) (size 1.25 1.25) (drill 0.75) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 2a1ea247-6981-463b-b32b-ad769f533dbc))
(pad "9" thru_hole oval locked (at 7.182 -5.35 90) (size 1.25 1.25) (drill 0.75) (layers "*.Cu" "*.Mask")
(net 6 "/MOTION") (pinfunction "MOTION") (pintype "output") (tstamp fcff2066-b58c-4bd6-838f-49e12f1ad9f3))
(pad "10" thru_hole oval locked (at 5.402 -5.35 90) (size 1.25 1.25) (drill 0.75) (layers "*.Cu" "*.Mask")
(net 5 "/SCLK") (pinfunction "SCLK") (pintype "input") (tstamp 1f20d2e3-3dba-49eb-975a-4318cd78e54b))
(pad "11" thru_hole oval locked (at 3.622 -5.35 90) (size 1.25 1.25) (drill 0.75) (layers "*.Cu" "*.Mask")
(net 4 "/MOSI") (pinfunction "MOSI") (pintype "input") (tstamp 98fda91c-f88e-4ed8-adaf-1432b9c38c74))
(pad "12" thru_hole oval locked (at 1.842 -5.35 90) (size 1.25 1.25) (drill 0.75) (layers "*.Cu" "*.Mask")
(net 2 "/MISO") (pinfunction "MISO") (pintype "output") (tstamp 86047e4b-0413-4ac5-bd85-75e182b8c2d4))
(pad "13" thru_hole oval locked (at 0.062 -5.35 90) (size 1.25 1.25) (drill 0.75) (layers "*.Cu" "*.Mask")
(net 3 "/CS") (pinfunction "~{CS}") (pintype "input") (tstamp fac2269a-8764-4d54-aab7-d77c480d9be6))
(pad "14" thru_hole oval locked (at -1.718 -5.35 90) (size 1.25 1.25) (drill 0.75) (layers "*.Cu" "*.Mask")
(net 15 "unconnected-(U1-NC-Pad14)") (pinfunction "NC") (pintype "no_connect") (tstamp 7eb5d202-6a7c-4a5a-9686-c70644ce82bb))
(pad "15" thru_hole oval locked (at -3.498 -5.35 90) (size 1.25 1.25) (drill 0.75) (layers "*.Cu" "*.Mask")
(net 18 "Net-(U1-LED_P)") (pinfunction "LED_P") (pintype "power_in") (tstamp 089b445f-9945-4977-9633-4d447e28dc7f))
(pad "16" thru_hole oval locked (at -5.278 -5.35 90) (size 1.25 1.25) (drill 0.75) (layers "*.Cu" "*.Mask")
(net 16 "unconnected-(U1-NC-Pad16)") (pinfunction "NC") (pintype "no_connect") (tstamp da95ef93-c965-4146-adc4-4682a2549a82))
(zone (net 0) (net_name "") (layers "*.Cu" "F.CrtYd") (tstamp dfa5264a-d60a-4913-b6e6-98a2acae3296) (hatch edge 0.508)
(connect_pads (clearance 0))
(min_thickness 0.254) (filled_areas_thickness no)
(keepout (tracks not_allowed) (vias not_allowed) (pads not_allowed) (copperpour not_allowed) (footprints not_allowed))
(fill (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 150.0078 84.1946)
(xy 149.957 101.5174)
(xy 141.2702 101.5174)
(xy 141.2702 84.1946)
)
)
)
(group "" (id ff638cdb-62d7-44db-8131-74b2683f895a)
(members
116bffe1-4756-417c-9d8d-51980f53f67a
5fc69ad8-f7ef-454c-836b-1b30c137a548
d7b03c09-b8d8-40b7-ab49-b28459a046cb
)
)
)
(footprint "MountingHole:MountingHole_3.2mm_M3_ISO14580" locked (layer "F.Cu")
(tstamp 4690a3e6-a395-4ce9-a42e-b091ff6d5cfb)
(at 136.889 106.5338)
(descr "Mounting Hole 3.2mm, no annular, M3, ISO14580")
(tags "mounting hole 3.2mm no annular m3 iso14580")
(property "LCSC" "")
(property "Mfr. #" "")
(property "Sheetfile" "pmw3360_pcb_pinheader.kicad_sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(property "ki_description" "Mounting Hole without connection")
(property "ki_keywords" "mounting hole")
(path "/303ef999-31f6-41bd-b2c3-3281c716cbc7")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "H2" (at 0 -3.75) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fa383050-81e9-4e2d-9a3d-4e7563ec9a69)
)
(fp_text value "MountingHole_Pad" (at 0 3.75) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5758ef31-e44a-4e0d-83ec-586f214efa27)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4ee549dd-dbaf-4ae0-b537-378e87fa3f2a)
)
(fp_circle (center 0 0) (end 2.75 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp ea9800f4-67db-4ec1-b090-ddca4a37c6f0))
(fp_circle (center 0 0) (end 3 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 9a3d7807-5664-421f-ba89-65a2129e8c7d))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.2 3.2) (drill 3.2) (layers "*.Cu" "*.Mask") (tstamp 2ce9479d-ce4e-4682-ac31-7679d0e3b5e7))
)
(footprint "MountingHole:MountingHole_3.2mm_M3_ISO14580" locked (layer "F.Cu")
(tstamp 46f74256-15fe-4d18-90c8-f1f43786ec89)
(at 154.389 106.5338)
(descr "Mounting Hole 3.2mm, no annular, M3, ISO14580")
(tags "mounting hole 3.2mm no annular m3 iso14580")
(property "LCSC" "")
(property "Mfr. #" "")
(property "Sheetfile" "pmw3360_pcb_pinheader.kicad_sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(property "ki_description" "Mounting Hole without connection")
(property "ki_keywords" "mounting hole")
(path "/e061f4c0-2079-457d-af85-881108589828")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "H4" (at 0 -3.75) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fece554a-cc1d-4e12-a766-21db94d8392f)
)
(fp_text value "MountingHole_Pad" (at 0 3.75) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp baf28ddc-57e7-4b2f-af0c-c58a7218c9b2)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 85515039-edf4-4008-b8ae-a29311cfc3cc)
)
(fp_circle (center 0 0) (end 2.75 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp 8df44fe0-09cc-47a0-90dd-dcefbb40fcd7))
(fp_circle (center 0 0) (end 3 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp a2ae3cbe-7971-45fb-b808-3556041bb804))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.2 3.2) (drill 3.2) (layers "*.Cu" "*.Mask") (tstamp 715a9bcc-a050-4843-880f-98599ea756d4))
)
(footprint "TestPoint:TestPoint_Pad_D1.5mm" (layer "F.Cu")
(tstamp 4c89c707-5709-4bcd-8a3b-91ae35e9d952)
(at 148.889 80.0338)
(descr "SMD pad as test Point, diameter 1.5mm")
(tags "test point SMD pad")
(property "LCSC" "")
(property "Mfr. #" "")
(property "Sheetfile" "pmw3360_pcb_pinheader.kicad_sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(property "ki_description" "test point")
(property "ki_keywords" "test point tp")
(path "/2b2454b4-a75e-470e-b3d6-7aecc9f1ad03")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "TP2" (at 0 -1.648) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c43994cb-508f-44c6-a4a5-714666d17418)
)
(fp_text value "VDD" (at 0 1.75) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2ee3d0df-e522-426d-8c20-40f7f269e1d3)
)
(fp_text user "V_{DD}" (at 0 -1.72665 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 343858e3-af78-48c2-8757-e73f8babac33)
)
(fp_text user "${REFERENCE}" (at 0 -1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0d75aa38-502b-46ac-9057-5ee5082a7f6b)
)
(fp_circle (center 0 0) (end 0 0.95)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp f340c0b0-6e70-4af1-9faa-94e7a93ecdba))
(fp_circle (center 0 0) (end 1.25 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp d7a3dfce-fe9a-41ce-92c7-604feeb0f3f6))
(pad "1" smd circle (at 0 0) (size 1.5 1.5) (layers "F.Cu" "F.Mask")
(net 8 "VDD") (pinfunction "1") (pintype "passive") (tstamp 3bfbce89-2b81-4343-9c35-a726aa48f266))
)
(footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu")
(tstamp 5e035a4f-8d8e-4df1-b3d2-3e4d852dda58)
(at 143.944 103.33535 180)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (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 handsolder")
(property "LCSC" "C23154")
(property "Mfr. #" "0603WAF390JT5E")
(property "Sheetfile" "pmw3360_pcb_pinheader.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/a4d7b811-2256-4b90-a4a7-d5bbebcec36e")
(attr smd)
(fp_text reference "R3" (at -2.54 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 79504ae9-7750-40ba-95df-0eec9a8cc20d)
)
(fp_text value "39R" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 170310b0-741f-4c07-99fb-e6ddd0c64198)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 95bb9d9c-b58d-40f1-9a30-bc087438e928)
)
(fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c2236966-5d24-4d37-9fce-49f4b67edeaa))
(fp_line (start -0.254724 0.5225) (end 0.254724 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7c3cf880-e2ec-4b1a-986e-cf4f242bf6b4))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 71a26a16-bc33-4985-8d33-8706f60e53f2))
(fp_line (start -1.65 0.73) (end -1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bf5e5995-2f3a-44a1-836f-bc121d63e6b4))
(fp_line (start 1.65 -0.73) (end 1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cf7bc0a0-6037-400d-90fd-7b6b15231035))
(fp_line (start 1.65 0.73) (end -1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a8317244-0bc9-4d2b-a9cf-5aa020adcb4f))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c192f367-4ade-4c9e-8c56-da653711b107))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f56368cb-abb3-4025-bee6-ea3aa1cd7900))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 109f3470-19b5-4409-8460-3b580f1d65c2))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c274877f-8b08-49e3-a07d-b3a6fe56ef39))
(pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "VDD") (pintype "passive") (tstamp 53a534e1-1bbe-441d-93a0-945b4ec59d80))
(pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 18 "Net-(U1-LED_P)") (pintype "passive") (tstamp 022fa211-8900-4cda-85a7-3d56fbd5fec4))
(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_Pad1.08x0.95mm_HandSolder" (layer "F.Cu")
(tstamp 60e45f89-7940-4086-a72d-6caebc1738af)
(at 147.112 107.1448 -90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (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 handsolder")
(property "LCSC" "C15849")
(property "Mfr. #" "CL10A105KB8NNNC")
(property "Sheetfile" "pmw3360_pcb_pinheader.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/27b9400d-98b1-4dd0-8676-4dd699e1bceb")
(attr smd)
(fp_text reference "C4" (at -2.28545 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a77463a4-4078-4796-a773-45034a210a77)
)
(fp_text value "1uF" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ed7d819f-904e-4c30-a266-f42ade5b51b4)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 2433d769-4d09-4273-8d1b-3e60866703cc)
)
(fp_line (start -0.146267 -0.51) (end 0.146267 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2e3c5b63-d963-46c6-aef8-f96558e217ac))
(fp_line (start -0.146267 0.51) (end 0.146267 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp aa6039d3-5384-4e30-9b34-a0f7b0ab584a))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8fcf1019-ed50-4163-8119-5aac64a23fae))
(fp_line (start -1.65 0.73) (end -1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3e437bb6-6275-42fe-86a1-1626b1590525))
(fp_line (start 1.65 -0.73) (end 1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ea22e487-c5fe-43b1-b676-abf49f1b9e24))
(fp_line (start 1.65 0.73) (end -1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 94eeb225-cc92-4520-8378-c43a72c14874))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 493952b9-0253-43fd-a8dd-51f08d841262))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 86ce9316-3b24-439f-a23c-0752ed51f2c3))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ffeb7a6c-54c7-4b25-832b-31b009074465))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bd9eab3c-c837-4e25-83e9-fbe412bc0fb6))
(pad "1" smd roundrect (at -0.8625 0 270) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "VDD") (pintype "passive") (tstamp a1a9e6bb-50b6-4275-a50f-669ae0539204))
(pad "2" smd roundrect (at 0.8625 0 270) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 3556e13d-5986-4e66-b8bf-c82202d6dc99))
(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 "MountingHole:MountingHole_3.2mm_M3_ISO14580" locked (layer "F.Cu")
(tstamp 6c4dd56d-7673-4432-9b71-a65dc38cfdc3)
(at 154.389 79.5338)
(descr "Mounting Hole 3.2mm, no annular, M3, ISO14580")
(tags "mounting hole 3.2mm no annular m3 iso14580")
(property "LCSC" "")
(property "Mfr. #" "")
(property "Sheetfile" "pmw3360_pcb_pinheader.kicad_sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(property "ki_description" "Mounting Hole without connection")
(property "ki_keywords" "mounting hole")
(path "/3d036f29-f44e-4403-b3e7-6ec61e6f8d92")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "H3" (at 0 -3.75) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b0da4b58-0818-420c-b5a7-c5890fa0a844)
)
(fp_text value "MountingHole_Pad" (at 0 3.75) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f71a51c5-38e9-40ca-91b1-08e525df7fcb)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bb6b74dd-cf12-4692-8937-1692f9842254)
)
(fp_circle (center 0 0) (end 2.75 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp 1d49d03e-6889-4ee6-9016-23a8c2a5637f))
(fp_circle (center 0 0) (end 3 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 88e75823-66a5-48e5-ba4f-2e0dae86b4b5))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.2 3.2) (drill 3.2) (layers "*.Cu" "*.Mask") (tstamp d557df78-694b-40a9-85d5-904b810a60fd))
)
(footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu")
(tstamp 854b8182-8a57-49ca-8c5f-1c961db14b44)
(at 149.652 108.0338 180)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (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 handsolder")
(property "LCSC" "C21122")
(property "Mfr. #" "CL10B223KB8NNNC")
(property "Sheetfile" "pmw3360_pcb_pinheader.kicad_sch")
(property "Sheetname" "")
(property "dnp" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/3696e467-4807-4909-ac9d-a4bc45889cca")
(attr smd)
(fp_text reference "C5" (at -2.237 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d298fd0b-bcfc-4d89-8db4-79aa7818e8c5)
)
(fp_text value "22nF" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 479920ed-cae5-4d55-8370-97e1135bba3f)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 14457d1f-2ddd-4627-85c4-315a2911f4ef)
)
(fp_line (start -0.146267 -0.51) (end 0.146267 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0b19bd4a-a01c-4fe7-8e5d-11363471bc99))
(fp_line (start -0.146267 0.51) (end 0.146267 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 34c45a36-9e71-4e3b-b000-82b698689ef9))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f016fba0-d8d5-49dc-ae82-9f8f152de88c))
(fp_line (start -1.65 0.73) (end -1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ee4d40b9-d131-4013-b586-b9866928d30c))
(fp_line (start 1.65 -0.73) (end 1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 376d0c8e-ee22-44e3-9897-357828c5f831))
(fp_line (start 1.65 0.73) (end -1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3f69e726-6f86-4a11-94ce-b027391890c5))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f8a8eb58-bf4f-4c11-a361-d23bbe84e3c0))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6613c6f8-a29f-437e-b1a4-279f31873f93))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a7008516-e52e-499c-bf24-a343545ef9dd))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4a4c06a2-c06f-497b-b872-237e1f91bcac))
(pad "1" smd roundrect (at -0.8625 0 180) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "Net-(U2-NC)") (pintype "passive") (tstamp 6084200d-3334-466b-8a74-06c9e9d15502))
(pad "2" smd roundrect (at 0.8625 0 180) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 6e613272-8e84-4032-be91-fa9bad59986a))
(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 "TestPoint:TestPoint_Pad_D1.5mm" (layer "F.Cu")
(tstamp 9307ccd8-8c0a-463d-ad3c-f994ca574347)
(at 145.639 80.0338)
(descr "SMD pad as test Point, diameter 1.5mm")
(tags "test point SMD pad")
(property "LCSC" "")
(property "Mfr. #" "")
(property "Sheetfile" "pmw3360_pcb_pinheader.kicad_sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(property "ki_description" "test point")
(property "ki_keywords" "test point tp")
(path "/492ff555-b5b4-427f-8264-7208174413ab")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "TP1" (at 0 -1.648) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2d01ce62-ea26-4470-8a02-b6847662c775)
)
(fp_text value "VIO" (at 0 1.75) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 64b95f77-c495-46f7-b9d9-c432fc410841)
)
(fp_text user "V_{IO}" (at 0 -1.72665 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4ec7c177-8f87-4a8e-ba7d-fe5df67f98ef)
)
(fp_text user "${REFERENCE}" (at 0 -1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a1d41927-a1e9-4547-8d64-eb6a3c68161e)
)
(fp_circle (center 0 0) (end 0 0.95)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp 21d4ff87-91ea-4c4b-b943-543093ef29d3))
(fp_circle (center 0 0) (end 1.25 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp c7adb60c-9ef4-4a94-87d4-2b7e43bcd7a2))
(pad "1" smd circle (at 0 0) (size 1.5 1.5) (layers "F.Cu" "F.Mask")
(net 10 "V_{IO}") (pinfunction "1") (pintype "passive") (tstamp 74a21d44-7aaa-46b2-9402-49cecc23df46))
)
(footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu")
(tstamp a4d81f4f-af64-4295-a21d-88d6ff305471)
(at 140.889 107.1448 -90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (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 handsolder")
(property "LCSC" "C15849")
(property "Mfr. #" "CL10A105KB8NNNC")
(property "Sheetfile" "pmw3360_pcb_pinheader.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/3e61697c-5867-4410-b34c-dea9f981687a")
(attr smd)
(fp_text reference "C3" (at -2.28545 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b80f74c0-2c90-4d02-ac3b-90de9caac02f)
)
(fp_text value "1uF" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fdaa104c-1b14-42bc-bded-fd3ee1f14e90)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp aa86420b-8478-410b-826c-194707f9e058)
)
(fp_line (start -0.146267 -0.51) (end 0.146267 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c67dc1a0-d4ec-4a70-98e5-f919d2b69252))
(fp_line (start -0.146267 0.51) (end 0.146267 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5e9a9996-75fb-44fc-a986-901550bf1def))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 939039e1-f07b-463c-9930-8c78112f0c7f))
(fp_line (start -1.65 0.73) (end -1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 385eff5c-d907-44c3-8bf3-b7d51be44be2))
(fp_line (start 1.65 -0.73) (end 1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 77fe9b41-80d1-437a-84ce-8418d4f15c7f))
(fp_line (start 1.65 0.73) (end -1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0937bfbd-58ab-4194-b6f9-ca302b55608f))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c8bdfd10-84c7-440f-a12c-2d44564eeae2))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ee941f07-dcb1-40a0-8cfa-0a2608ddb783))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f32b3791-b06c-402e-b804-81016d56f865))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4a61beb3-3cb0-4117-b725-e76c05ee076b))
(pad "1" smd roundrect (at -0.8625 0 270) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "V_{IN}") (pintype "passive") (clearance 0.135) (tstamp d29e5db0-9e1e-48f7-bb82-2fcd327a5c43))
(pad "2" smd roundrect (at 0.8625 0 270) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (clearance 0.135) (tstamp 5e65b3b6-26d7-4e2c-9f94-253dd0ba9e9e))
(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 "TestPoint:TestPoint_Pad_D1.5mm" (layer "F.Cu")
(tstamp b794d5df-c581-452c-9623-827ece01a501)
(at 142.389 80.0338)
(descr "SMD pad as test Point, diameter 1.5mm")
(tags "test point SMD pad")
(property "LCSC" "")
(property "Mfr. #" "")
(property "Sheetfile" "pmw3360_pcb_pinheader.kicad_sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(property "ki_description" "test point")
(property "ki_keywords" "test point tp")
(path "/ec344470-f51b-4889-adfa-bd63f1203787")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "TP3" (at 0 -1.648) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5183f364-3ef1-4813-aae6-2244c094debb)
)
(fp_text value "GND" (at 0 1.75) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e80fcfa4-2dc6-47d7-8d6e-d06473317bba)
)
(fp_text user "GND" (at 0 -1.57425 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e9136365-d2ab-452d-86f3-fc89c90275f6)
)
(fp_text user "${REFERENCE}" (at 0 -1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 01ffbc8f-cfdd-41e3-b2ae-e8f637c6b62e)
)
(fp_circle (center 0 0) (end 0 0.95)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp 7b78b023-a401-4293-b173-ca908a0f6c21))
(fp_circle (center 0 0) (end 1.25 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp dd0354d5-3600-4ff2-a05d-9a822018f6b7))
(pad "1" smd circle (at 0 0) (size 1.5 1.5) (layers "F.Cu" "F.Mask")
(net 1 "GND") (pinfunction "1") (pintype "passive") (tstamp 9477025b-6120-44e7-9a64-44f21d5e1f28))
)
(footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu")
(tstamp c2e93c74-ceac-4a46-a555-544087b51b83)
(at 154.139 96.0338)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (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 handsolder")
(property "LCSC" "C14663")
(property "Mfr. #" "CC0603KRX7R9BB104")
(property "Sheetfile" "pmw3360_pcb_pinheader.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/56d5b5c4-ea1f-48ae-861a-2d8c8b7a2dd8")
(attr smd)
(fp_text reference "C2" (at 2.25 0.25 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d4a1948a-2cc5-440e-b466-15887877c849)
)
(fp_text value "100nF" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dfaafbb6-3c5b-4267-aa82-743cca43620c)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp bf6cc049-c76e-4a20-af96-d8a3ba3b93d6)
)
(fp_line (start -0.146267 -0.51) (end 0.146267 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3dd37daf-56d1-4735-a52c-8e6239d8dfc1))
(fp_line (start -0.146267 0.51) (end 0.146267 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3ea42d2f-c7e2-4212-8ae5-93a5e904b1f1))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4cd2fefb-1cc3-4f21-a289-d06f0a49abcd))
(fp_line (start -1.65 0.73) (end -1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 069ab850-10cc-44c4-beab-56efef74b65a))
(fp_line (start 1.65 -0.73) (end 1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e63bbd58-4fdf-4ee6-a413-a3ee1184aa33))
(fp_line (start 1.65 0.73) (end -1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 12a42124-3a94-45e4-b59e-753b2b96b91a))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a6f78585-c60e-4025-8434-b75edf074308))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f4dd2427-c4e5-4136-8d48-f85941f544f0))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b59aaca4-79ea-4caa-ae71-6fff17b04d43))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ed53d932-cb70-450e-bd66-53b73d04b43b))
(pad "1" smd roundrect (at -0.8625 0) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 17 "Net-(U1-VDDPIX)") (pintype "passive") (tstamp 1bbbd487-e6af-4f36-94db-c8a43a062ad7))
(pad "2" smd roundrect (at 0.8625 0) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 687eb7a1-a798-41b0-85c6-ef59660625c1))
(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 "Package_TO_SOT_SMD:SOT-23-5" (layer "F.Cu")
(tstamp d43508b7-d239-4b86-9638-f61238af939c)
(at 144.0695 107.1448)
(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" "C485152")
(property "Mfr. #" "TLV74318PDBVR")
(property "Sheetfile" "pmw3360_pcb_pinheader.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "LDO Voltage Regulators 300-mA low-IQ low-dropout (LDO) voltage regulator with enable 5-SOT-23 -40 to 125")
(path "/1dccb600-526d-4c83-9440-1b931e9b4020")
(attr smd)
(fp_text reference "U2" (at -0.1325 -2.28545) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d95a199d-12d0-436f-a5c4-9668ee896d51)
)
(fp_text value "TLV74318PDBVR" (at 0 2.4) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a88371a8-f1ba-49e7-804f-f64238932b19)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 6ecc2672-9f60-4a10-867e-28efdd476fa2)
)
(fp_line (start 0 -1.56) (end -1.8 -1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a45e2969-dd65-4500-9792-55cc0bf20261))
(fp_line (start 0 -1.56) (end 0.8 -1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 09335b3b-2ae2-4ab0-9e70-d2fb67359382))
(fp_line (start 0 1.56) (end -0.8 1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8084453e-3978-4123-b323-f6b29320b86f))
(fp_line (start 0 1.56) (end 0.8 1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d2a9e562-f445-4864-8e31-6223c42e2a35))
(fp_line (start -2.05 -1.7) (end -2.05 1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4b55ddf6-5fc4-4bc5-8cea-12f7b12408f0))
(fp_line (start -2.05 1.7) (end 2.05 1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a16a6dfc-0627-4f9a-bc81-49aafcc5d2c5))
(fp_line (start 2.05 -1.7) (end -2.05 -1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b1790cb2-ac2a-4d59-bdce-3c8d3ca94a63))
(fp_line (start 2.05 1.7) (end 2.05 -1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d4db18c5-f83a-4020-a009-b7381285c12c))
(fp_line (start -0.8 -1.05) (end -0.4 -1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0cd99bb4-6349-4352-b15b-d266485608dc))
(fp_line (start -0.8 1.45) (end -0.8 -1.05)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 04a19cff-ca8b-41a8-85c3-8a3a33bf8d6e))
(fp_line (start -0.4 -1.45) (end 0.8 -1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e8201162-35f8-405b-833e-02babd5f4274))
(fp_line (start 0.8 -1.45) (end 0.8 1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0e15b550-56db-4965-8a0c-e67fd9e406d7))
(fp_line (start 0.8 1.45) (end -0.8 1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9dcc7656-8b77-40f5-8fc3-e6daac3d611f))
(pad "1" smd roundrect (at -1.1375 -0.95) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "V_{IN}") (pinfunction "IN") (pintype "power_in") (tstamp a5d2b0d8-90bc-4043-91cd-86ab8873e8ca))
(pad "2" smd roundrect (at -1.1375 0) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 7e858594-8931-4e8b-8314-a623b27d105e))
(pad "3" smd roundrect (at -1.1375 0.95) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "V_{IN}") (pinfunction "EN") (pintype "input") (tstamp ff9dbddc-26f3-407f-b38e-f938018dd24c))
(pad "4" smd roundrect (at 1.1375 0.95) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "Net-(U2-NC)") (pinfunction "NC") (pintype "output") (tstamp be7f784c-e59a-43a3-bef3-ca52176a4f82))
(pad "5" smd roundrect (at 1.1375 -0.95) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "VDD") (pinfunction "OUT") (pintype "power_out") (tstamp 7ba3f405-49af-4970-bb18-fda844a3c955))
(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 "MountingHole:MountingHole_3.2mm_M3_ISO14580" locked (layer "F.Cu")
(tstamp dad42304-7044-41ac-a7ef-78732e7ad3df)
(at 136.889 79.5338)
(descr "Mounting Hole 3.2mm, no annular, M3, ISO14580")
(tags "mounting hole 3.2mm no annular m3 iso14580")