-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpmw3610_pcb.kicad_pcb
6247 lines (6212 loc) · 254 KB
/
pmw3610_pcb.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 "PMW3610 PCB")
(rev "1.0")
(company "SideraKB")
(comment 1 "Open Source Hardware, CERN-OHL-P v2")
(comment 2 "PMW3610DM-SUDU laser mouse sensor breakout board")
)
(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
(pad_to_mask_clearance 0)
(aux_axis_origin 138.25 84.25)
(grid_origin 138.25 84.25)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 4)
(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 true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 1)
(scaleselection 1)
(outputdirectory "")
)
)
(net 0 "")
(net 1 "GND")
(net 2 "+1V8")
(net 3 "VIO")
(net 4 "VIN")
(net 5 "nRESET")
(net 6 "SDIO")
(net 7 "SCLK")
(net 8 "nCS")
(net 9 "MOTION")
(net 10 "Net-(U1-CN)")
(net 11 "Net-(U1-CP)")
(net 12 "Net-(U1-+VCSEL)")
(net 13 "Net-(U1-VCP)")
(net 14 "Net-(U2-NC)")
(net 15 "unconnected-(U1-NC-Pad4)")
(net 16 "Net-(U1--VCSEL)")
(net 17 "unconnected-(J2-Pin_4-Pad4)")
(net 18 "unconnected-(J2-Pin_8-Pad8)")
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x06_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 02bad727-fe16-4859-876e-f5035a4c4605)
(at 139.75 93.65)
(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" "pmw3610_pcb.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 "/71c4fa4d-801f-4a53-a54b-36b4031f36f1")
(attr through_hole)
(fp_text reference "J1" (at 0 -2.33) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp ec399ec8-702a-4819-8d55-0fc02d14a0b4)
)
(fp_text value "Conn_01x06" (at 0 15.03) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 095c4213-7e52-4bf5-93b8-f9e7b459e8fa)
)
(fp_text user "${REFERENCE}" (at 0 6.35 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6c1ea0ac-b13e-4cb1-92f4-a071f7aa08c4)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 14aecc43-b669-43f3-8a45-5376abaa5adb))
(fp_line (start -1.33 0) (end -1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5e938aec-02ec-4ba7-bab0-bc7f907e46f8))
(fp_line (start -1.33 1.27) (end -1.33 14.03)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp eb419659-7578-4276-96c3-e9a53b192d06))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5064d1f4-fcdb-4106-95e7-c81611eee192))
(fp_line (start -1.33 14.03) (end 1.33 14.03)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b34c971e-d8a8-4f8d-8fe4-535e49f0d126))
(fp_line (start 1.33 1.27) (end 1.33 14.03)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 67669515-2b29-4ca1-ae6a-b11df0e4fc99))
(fp_line (start -1.8 -1.8) (end -1.8 14.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 814d6150-e3c1-464f-8180-87bfee09a5e3))
(fp_line (start -1.8 14.5) (end 1.8 14.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6e4fe407-5579-4884-a565-9de3c04ff09a))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fcc65551-39a8-4a5d-829e-ca4fb5fbc9e0))
(fp_line (start 1.8 14.5) (end 1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ad7b6de7-0eae-49a2-b06a-34df874ad5f7))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a921039a-36e8-4074-bd89-ea78640194d1))
(fp_line (start -1.27 13.97) (end -1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a3b8fdf6-271c-4d9c-b15f-5c57819cc9bb))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0cf2b2b3-6425-4947-ad9f-ee4de1e1ca2e))
(fp_line (start 1.27 -1.27) (end 1.27 13.97)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 11bfa401-5a15-4d6e-910d-213f0c075e8b))
(fp_line (start 1.27 13.97) (end -1.27 13.97)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0f171821-7db2-4e5d-b8aa-2276ce0e2665))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 4 "VIN") (pinfunction "Pin_1") (pintype "passive") (tstamp 89fd4b0b-ef1a-4145-b3fa-386aebc4ab30))
(pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "Pin_2") (pintype "passive") (thermal_bridge_angle 45) (tstamp e3cacab9-9689-4443-b943-c6534e82e4b4))
(pad "3" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 6 "SDIO") (pinfunction "Pin_3") (pintype "passive") (tstamp 59857212-56dd-4d75-9e98-fa6582c6a97b))
(pad "4" thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 7 "SCLK") (pinfunction "Pin_4") (pintype "passive") (tstamp e31e684e-9c23-45cf-8463-7815a796079b))
(pad "5" thru_hole oval (at 0 10.16) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 8 "nCS") (pinfunction "Pin_5") (pintype "passive") (tstamp bb05b3ee-b0c9-424d-a330-0a1e748a03b1))
(pad "6" thru_hole oval (at 0 12.7) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 9 "MOTION") (pinfunction "Pin_6") (pintype "passive") (tstamp 4733d3a0-914a-4851-a8c5-59ec49f43612))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x06_P2.54mm_Vertical.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 1790a02d-d01d-4224-a3be-81b6af84edf2)
(at 150.75 86.5)
(descr "SMD pad as test Point, diameter 1.5mm")
(tags "test point SMD pad")
(property "Sheetfile" "pmw3610_pcb.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "test point")
(property "ki_keywords" "test point tp")
(path "/d626c07c-ee21-4b00-b772-dd80d6e5e88a")
(attr exclude_from_pos_files)
(fp_text reference "TP3" (at 0 -1.648) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 42c89488-466d-4861-ad55-5b2de9fddd92)
)
(fp_text value "TestPoint" (at 0 1.75) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 55a4a55a-a03c-44ac-ab09-c517e30e9130)
)
(fp_text user "1V8" (at 0 -1.5 unlocked) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp e508dc61-83d5-4cdd-8297-c10bbdb84a31)
)
(fp_text user "${REFERENCE}" (at 0 -1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a8a67f7b-c7ab-4896-b73f-4c1f3e3853ce)
)
(fp_circle (center 0 0) (end 0 0.95)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp 5d0de1bc-ff7f-44e0-aa41-8340b5629331))
(fp_circle (center 0 0) (end 1.25 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp eabbc6d4-f7a4-4e92-9bd9-ab96eb71cb17))
(pad "1" smd circle (at 0 0) (size 1.5 1.5) (layers "F.Cu" "F.Mask")
(net 2 "+1V8") (pinfunction "1") (pintype "passive") (tstamp 03c71f50-2f44-4338-b4bb-01e4979d5efe))
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tstamp 232b6ca2-af7e-413b-951a-fe2db57b4a9b)
(at 153.775 90.75)
(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 "Sheetfile" "pmw3610_pcb.kicad_sch")
(property "Sheetname" "")
(property "dnp" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/dd039357-3c42-4cd5-b6b9-050698076d80")
(attr smd)
(fp_text reference "C10" (at 2.763 0) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp ec8c40b3-55b1-4a74-87b1-faffdb94c613)
)
(fp_text value "22nF" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 44de0b73-bb36-4bd8-84ae-77afef6cfaad)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp d3bc6903-313c-4abc-9df7-82f97ffd2ef4)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c4a428a9-fc25-493b-b610-bd6c30108330))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9025159b-1d48-4605-8f90-8e7f6f860574))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp dc4f539b-fbc8-4aaa-9cf3-a961a0e47ebf))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cf0d9fc8-1e18-43d2-afe8-3f81dfeb1a00))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 81c5181e-f3ec-4e99-9d2b-5177aa7e5701))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ff210737-72e4-43c1-a8d6-65b9965aeb73))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6f628b7b-8166-4907-9564-2b2775f93408))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1df4e73c-ddda-4ebf-9212-acbf82403571))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 070b8783-51d1-4f70-8db1-3eb9dc18069b))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a8ded3dd-272d-41ed-ac8d-df08e081d9f9))
(pad "1" smd roundrect (at -0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 14 "Net-(U2-NC)") (pintype "passive") (tstamp c14ac406-a40a-4378-b0d3-0516d3e1e093))
(pad "2" smd roundrect (at 0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp c7253a56-bd39-4d8f-9d22-6f1d1131b19b))
(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 "F.Cu")
(tstamp 2ae0b783-d9e4-4f52-9ab7-aad47ef2b471)
(at 157.5 108 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 "Sheetfile" "pmw3610_pcb.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/d1e5adc9-70b1-49dd-8714-0383a9a670b5")
(attr smd)
(fp_text reference "C7" (at -2.158 -0.2 180) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp bfe419b7-f2db-43e9-b4bc-0ba311fd8b81)
)
(fp_text value "10nF X7R" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a04efd66-c1f9-4112-8ed2-35c8e169ae9d)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp af001917-7f21-4742-8457-df4e08f7d6a7)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5b3264e8-2521-47ae-b591-28daae67f994))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 33aa6b20-3116-45dc-af20-80bfe3906606))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5011a735-1e51-4f02-945f-1ae22285dc16))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 92810a48-d020-4633-b4cc-5415987b5e2a))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8c656a56-6ca5-4535-be20-04d5bad6b762))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 965d13e0-2233-4dce-8488-623970b58594))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 26441565-9865-4076-b404-3faa95a03125))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9b09d6c5-bb93-4a37-b3c0-340df8f6df72))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a7fdb1de-227e-43b2-b3b3-29f24e8651f3))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cb6f4cbc-e64a-4986-9390-c5598279b5a4))
(pad "1" smd roundrect (at -0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 13 "Net-(U1-VCP)") (pintype "passive") (tstamp 1b98e13c-5265-45b9-a206-4723fb452199))
(pad "2" smd roundrect (at 0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 0f671859-82c1-469d-b1a6-c336bbf1aab2))
(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 "pmw3610_pcb:PMW3610DM-SUDU 16Pin" locked (layer "F.Cu")
(tstamp 2bb99c10-3ee4-425c-8173-3a97333c6e3f)
(at 150 102.988 90)
(descr "PMW3610DM-SUDU special 16pin molded lead-frame DIP")
(property "Sheetfile" "pmw3610_pcb.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Optical mouse sensor")
(property "ki_keywords" "PMW3610")
(path "/1559ce49-c7ee-466c-8fe6-96e2e7fc4127")
(attr through_hole)
(fp_text reference "U1" (at -10 0) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp e816416f-8bfc-4791-ae6a-737382831925)
)
(fp_text value "PMW3610" (at 0 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e410fd9a-b1ad-4619-880d-b95196d5efbe)
)
(fp_text user "Optical Center" (at 1.5 0 unlocked) (layer "Cmts.User")
(effects (font (size 0.7 0.7) (thickness 0.1)))
(tstamp a43059ca-68c9-45de-a37f-743a617acf50)
)
(fp_line (start -9.0772 -5.334) (end -7.1628 -5.334)
(stroke (width 0.2) (type solid)) (layer "F.SilkS") (tstamp 2128376c-ca93-4842-ae43-04a1b82270e4))
(fp_line (start -9.0772 5.166) (end -9.0772 -5.334)
(stroke (width 0.2) (type solid)) (layer "F.SilkS") (tstamp 068324ca-7376-4c12-a477-25d1db86e176))
(fp_line (start -9.0772 5.166) (end -8.0772 5.166)
(stroke (width 0.2) (type solid)) (layer "F.SilkS") (tstamp 30cae26d-a049-4325-8be8-d6ad6b460001))
(fp_line (start 7.168 -5.35) (end 8.468 -5.35)
(stroke (width 0.2) (type solid)) (layer "F.SilkS") (tstamp 07bb97fb-256a-4d26-beac-5d850feb7843))
(fp_line (start 8.468 -5.35) (end 9.668 -4.35)
(stroke (width 0.2) (type solid)) (layer "F.SilkS") (tstamp d90a22e5-3f20-426a-8d48-675e3baf42ba))
(fp_line (start 9.668 -4.35) (end 9.668 5.15)
(stroke (width 0.2) (type solid)) (layer "F.SilkS") (tstamp 4816e1d2-94cc-4ce4-855f-1b5992e1f013))
(fp_line (start 9.668 5.15) (end 6.168 5.15)
(stroke (width 0.2) (type solid)) (layer "F.SilkS") (tstamp d72fba02-0e96-4302-9b59-9ed4ffb9d7b7))
(fp_circle (center 6.168 -3.75) (end 6.368 -3.75)
(stroke (width 0.1) (type solid)) (fill solid) (layer "Dwgs.User") (tstamp 500db86c-90fa-46b0-a39e-f432c80f113a))
(fp_line (start 2.988 1.016) (end 2.988 -1.016)
(stroke (width 0.1) (type solid)) (layer "Cmts.User") (tstamp c81e2c5c-03e4-4b58-b898-726a540d691d))
(fp_line (start 4.004 0) (end 1.972 0)
(stroke (width 0.1) (type solid)) (layer "Cmts.User") (tstamp 75a8cc2c-3eb8-4089-95df-31bc5358d8c3))
(fp_circle (center 2.988 0) (end 2.48 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "Cmts.User") (tstamp 354c9477-5828-4df3-bf64-15149ef17c5d))
(fp_rect (start 8.968 -4.35) (end -8.332 4.35)
(stroke (width 0.15) (type solid)) (fill none) (layer "Edge.Cuts") (tstamp 2a1a847c-b7b1-4ea5-953c-fb93e7994347))
(fp_rect (start -9.5 6.5) (end 10 -6.5)
(stroke (width 0.05) (type default)) (fill none) (layer "F.CrtYd") (tstamp e399abaa-eaf1-4441-800f-d546919488d6))
(pad "1" thru_hole roundrect locked (at 6.168 -5.35 270) (size 1.25 1.25) (drill 0.75) (layers "*.Cu" "*.Mask") (roundrect_rratio 0.15)
(net 12 "Net-(U1-+VCSEL)") (pinfunction "+VCSEL") (pintype "input") (tstamp 117001d6-d73f-4029-a0c8-dd06010b74e5))
(pad "2" thru_hole oval locked (at 4.388 -5.35 270) (size 1.25 1.25) (drill 0.75) (layers "*.Cu" "*.Mask")
(net 6 "SDIO") (pinfunction "SDIO") (pintype "bidirectional") (tstamp 287b96ac-c623-42b6-b6a4-499671a25087))
(pad "3" thru_hole oval locked (at 2.608 -5.35 270) (size 1.25 1.25) (drill 0.75) (layers "*.Cu" "*.Mask")
(net 7 "SCLK") (pinfunction "SCLK") (pintype "input") (tstamp 4146c3e0-1335-44b3-bada-c860a2f38eda))
(pad "4" thru_hole oval locked (at 0.828 -5.35 270) (size 1.25 1.25) (drill 0.75) (layers "*.Cu" "*.Mask")
(net 15 "unconnected-(U1-NC-Pad4)") (pinfunction "NC") (pintype "no_connect") (tstamp 5034f124-166e-403a-93f9-aa82eea2b23a))
(pad "5" thru_hole oval locked (at -0.952 -5.35 270) (size 1.25 1.25) (drill 0.75) (layers "*.Cu" "*.Mask")
(net 8 "nCS") (pinfunction "NCS") (pintype "input") (tstamp dab29bb4-d27f-4592-ad88-491e98e2ddcf))
(pad "6" thru_hole oval locked (at -2.732 -5.35 270) (size 1.25 1.25) (drill 0.75) (layers "*.Cu" "*.Mask")
(net 3 "VIO") (pinfunction "VDDIO") (pintype "power_in") (tstamp 477c6192-5902-49f2-9cc6-d6b97ea3f3cb))
(pad "7" thru_hole oval locked (at -4.512 -5.35 270) (size 1.25 1.25) (drill 0.75) (layers "*.Cu" "*.Mask")
(net 5 "nRESET") (pinfunction "NRESET") (pintype "input") (tstamp 38025b4b-f66c-445c-b45a-e67312d7c042))
(pad "8" thru_hole oval locked (at -6.292 -5.35 270) (size 1.25 1.25) (drill 0.75) (layers "*.Cu" "*.Mask")
(net 9 "MOTION") (pinfunction "MOTION") (pintype "output") (tstamp 6353233e-4ead-440b-89ad-1159afa0e1ee))
(pad "9" thru_hole oval locked (at -7.182 5.35 270) (size 1.25 1.25) (drill 0.75) (layers "*.Cu" "*.Mask")
(net 13 "Net-(U1-VCP)") (pinfunction "VCP") (pintype "power_in") (tstamp 18860621-269d-4e97-9c7a-d4d841e1820b))
(pad "10" thru_hole oval locked (at -5.402 5.35 270) (size 1.25 1.25) (drill 0.75) (layers "*.Cu" "*.Mask")
(net 12 "Net-(U1-+VCSEL)") (pinfunction "PASS_T") (pintype "power_in") (tstamp 77f473fb-faf4-4838-9ceb-e5cbcd2282be))
(pad "11" thru_hole oval locked (at -3.622 5.35 270) (size 1.25 1.25) (drill 0.75) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (thermal_bridge_angle 45) (tstamp 6a808cd8-6e09-46c1-a0a9-d317510b2356))
(pad "12" thru_hole oval locked (at -1.842 5.35 270) (size 1.25 1.25) (drill 0.75) (layers "*.Cu" "*.Mask")
(net 11 "Net-(U1-CP)") (pinfunction "CP") (pintype "power_in") (tstamp 116d93bb-0e2b-481c-adb8-d92a63d8f7f3))
(pad "13" thru_hole oval locked (at -0.062 5.35 270) (size 1.25 1.25) (drill 0.75) (layers "*.Cu" "*.Mask")
(net 10 "Net-(U1-CN)") (pinfunction "CN") (pintype "power_in") (tstamp e8cb3b34-0426-4c31-bd84-280f24f698ff))
(pad "14" thru_hole oval locked (at 1.718 5.35 270) (size 1.25 1.25) (drill 0.75) (layers "*.Cu" "*.Mask")
(net 2 "+1V8") (pinfunction "VDD") (pintype "power_in") (tstamp f31d44d0-772e-4838-b322-e33a9fe777cc))
(pad "15" thru_hole oval locked (at 3.498 5.35 270) (size 1.25 1.25) (drill 0.75) (layers "*.Cu" "*.Mask")
(net 16 "Net-(U1--VCSEL)") (pinfunction "XYLASER") (pintype "input") (tstamp ca8ddbda-7974-4158-a621-007f6a6924c6))
(pad "16" thru_hole oval locked (at 5.278 5.35 270) (size 1.25 1.25) (drill 0.75) (layers "*.Cu" "*.Mask")
(net 16 "Net-(U1--VCSEL)") (pinfunction "-VCSEL") (pintype "input") (tstamp 581a8481-fa7c-4617-8dd1-165c75e1ab40))
(zone (net 0) (net_name "") (layers "*.Cu" "F.CrtYd") (tstamp 34d386f3-bb0d-45e7-aff5-7a029e69653f) (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 145.6312 111.3192)
(xy 145.682 93.9964)
(xy 154.3688 93.9964)
(xy 154.3688 111.3192)
)
)
)
(group "" (id 38b2132f-2a57-4e4c-b6a8-b9affabb72e1)
(members
354c9477-5828-4df3-bf64-15149ef17c5d
75a8cc2c-3eb8-4089-95df-31bc5358d8c3
c81e2c5c-03e4-4b58-b898-726a540d691d
)
)
)
(footprint "MountingHole:MountingHole_3.2mm_M3_ISO14580" locked (layer "F.Cu")
(tstamp 2eb03e1c-de9c-4d3d-898e-ffb9f765ae9c)
(at 158.75 87.25)
(descr "Mounting Hole 3.2mm, no annular, M3, ISO14580")
(tags "mounting hole 3.2mm no annular m3 iso14580")
(property "Sheetfile" "pmw3610_pcb.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Mounting Hole without connection")
(property "ki_keywords" "mounting hole")
(path "/4a4acd07-8f18-47d8-ae9c-a412378aa687")
(attr exclude_from_pos_files)
(fp_text reference "H3" (at 0 -3.75) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e102297b-451e-4674-a5b8-dc862fc76932)
)
(fp_text value "MountingHole" (at 0 3.75) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c06ad076-6aae-4351-bd10-635aab8ce521)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 588cc4b5-6a35-48c0-b5ba-4209bae12fa3)
)
(fp_circle (center 0 0) (end 2.75 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp 527ab6d2-53f1-482f-94f3-1a50b586d8ea))
(fp_circle (center 0 0) (end 3 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 8566adba-4bfa-4b1d-9702-0bb94869bba0))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.2 3.2) (drill 3.2) (layers "*.Cu" "*.Mask") (tstamp 784698e5-9b40-4b49-b749-9f65ba1a079f))
)
(footprint "MountingHole:MountingHole_3.2mm_M3_ISO14580" locked (layer "F.Cu")
(tstamp 320a1555-da71-47d2-8483-5ce5d03894e5)
(at 141.25 112.75)
(descr "Mounting Hole 3.2mm, no annular, M3, ISO14580")
(tags "mounting hole 3.2mm no annular m3 iso14580")
(property "Sheetfile" "pmw3610_pcb.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Mounting Hole without connection")
(property "ki_keywords" "mounting hole")
(path "/1dd4f044-7089-4eb8-a59b-ea85fbd68a67")
(attr exclude_from_pos_files)
(fp_text reference "H1" (at 0 -3.75) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 774c4856-94c6-4e1e-8bf2-03144bc36fdb)
)
(fp_text value "MountingHole" (at 0 3.75) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 379276e4-8711-4218-aca9-dd3fc37a2a3c)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a0d78fda-bdad-4003-9e3e-664f1274c329)
)
(fp_circle (center 0 0) (end 2.75 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp 28aff082-5742-44fc-bf4b-528019f6bccb))
(fp_circle (center 0 0) (end 3 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp f836fa44-22e6-4bc2-baed-3f5cdc64662d))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.2 3.2) (drill 3.2) (layers "*.Cu" "*.Mask") (tstamp c0167e80-5970-4e9c-ac72-00c189561dd9))
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tstamp 3dfafc89-c1d1-410d-b7f1-5d714340eed7)
(at 142.5 96 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 "Sheetfile" "pmw3610_pcb.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/f5fd24ee-fbbd-41ea-a763-4c15d859f078")
(attr smd)
(fp_text reference "C5" (at 2 0 180) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp d9061dfd-f263-4052-b9ca-7897aa2d4d72)
)
(fp_text value "10nF" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 734cd165-10a4-4407-8e26-884d0c97a0f8)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp aa16a0f6-6858-472a-8a23-e75672206ddc)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c43ac09b-6b05-4f41-94d2-30ea9bd12f70))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ffb47b3f-8e3b-44b4-9460-738f3df7f31e))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8913d2b4-f8e0-4784-ba67-f0b418d0ede7))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cfcea46a-7a68-4991-bc74-1808b8a35ed5))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cbbbfd96-415b-471b-8558-86903c3efec2))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 043f4329-adba-4a88-8e89-54fb11f6a889))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0e012ee2-4dfc-42cc-8168-c9998ab15da8))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4e2553e3-19a3-4c76-af24-b35e6a0a1357))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 100cc1d5-1e1c-4b69-a903-15e5d297e70f))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7c9269a9-4268-432a-b7de-5d3ef640ee18))
(pad "1" smd roundrect (at -0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "Net-(U1-+VCSEL)") (pintype "passive") (tstamp 7c886b2d-1ac8-48ee-a4aa-d666a5ca231b))
(pad "2" smd roundrect (at 0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 559d094f-d1b4-4363-96c1-db23e8c5fc01))
(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 40dad5fd-ec36-469a-8fae-4b1705688dfa)
(at 147.75 86.5)
(descr "SMD pad as test Point, diameter 1.5mm")
(tags "test point SMD pad")
(property "Sheetfile" "pmw3610_pcb.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "test point")
(property "ki_keywords" "test point tp")
(path "/8fc80876-6c94-4904-a885-886245d2fb7e")
(attr exclude_from_pos_files)
(fp_text reference "TP2" (at 0 -1.648) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2aaac979-4fb3-403c-b669-546ec47a0231)
)
(fp_text value "TestPoint" (at 0 1.75) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp afe9c14a-13b5-43ce-b541-40511ee98b96)
)
(fp_text user "VIN" (at 0 -1.5 unlocked) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 8994bf18-c155-4063-824c-36b833c74c39)
)
(fp_text user "${REFERENCE}" (at 0 -1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 38c6b1c5-6b8f-48ce-bb8e-8cb0d1880adb)
)
(fp_circle (center 0 0) (end 0 0.95)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp b3ab7a1c-5662-4e62-9c90-cf2af810b425))
(fp_circle (center 0 0) (end 1.25 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 5acf0694-d6ad-4fb3-a4d3-467c53b1f7d8))
(pad "1" smd circle (at 0 0) (size 1.5 1.5) (layers "F.Cu" "F.Mask")
(net 4 "VIN") (pinfunction "1") (pintype "passive") (tstamp 15e6ce7f-61eb-4aa0-8402-4bcf6b6c05c0))
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tstamp 415dfec1-2c0b-435c-afd1-dd203c13a2a3)
(at 157.5 100.25 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 "Sheetfile" "pmw3610_pcb.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/526d1914-2a29-4768-8ed4-9d7611ea7320")
(attr smd)
(fp_text reference "C2" (at -1.95 -0.2 180) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 41ac99d3-da61-4fe0-91ca-257294549641)
)
(fp_text value "100nF" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6a8981cf-0d5e-4b0a-a0a8-743a4b53d44d)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp de398fbc-1046-4928-a6c5-754d6af8a1ba)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 25c40a1e-8802-4a40-b769-f540d276808f))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8e419a05-9fac-445a-999a-d0e5065c2798))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9c7f0384-0a7f-4dc8-a48d-95cd4f91789c))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e9209a9f-107e-4eb8-8458-59bb592711d1))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1529b1e7-5aec-4ce6-8cfd-045a110191bd))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 40c1cc96-1f34-41c6-83c4-2bfd72674eaf))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3d5d2d0f-fa18-481a-b0c5-9ed558df5db2))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5142dea3-44f1-4e70-9d01-9501506856eb))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e7bf1544-bb75-4a7d-942e-a30570a34b41))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 49582a5b-ae7c-42cd-8b30-f240b75de13c))
(pad "1" smd roundrect (at -0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "+1V8") (pintype "passive") (tstamp 3429df6f-3ff9-4c29-9223-846d50cfb694))
(pad "2" smd roundrect (at 0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 9d202e50-4a25-43df-b94c-9904c1112565))
(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 "F.Cu")
(tstamp 439aa952-e75d-43f7-9b16-472b52b8a9f6)
(at 142.5 107.75 -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" "pmw3610_pcb.kicad_sch")
(property "Sheetname" "")
(property "dnp" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/f1faa9db-1d98-402c-a014-4fde104ce52f")
(attr smd)
(fp_text reference "R1" (at 2 0 -180) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp a56960d2-a32c-4df1-9e5c-cfff784abf42)
)
(fp_text value "10k" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fa67a284-56f1-4996-b2e7-60041a091990)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 9ad9e314-7e3a-4639-b270-20d1603c6354)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 62a11834-93d6-47de-8618-f4ba1e559b39))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3ad96880-69c4-46b9-98c7-def8a3ad5ec8))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c41bcd0f-ac09-48a5-bab0-c6c591e66f05))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0428c0d0-aa2b-479b-822b-4d768a5ea820))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9a7e3c37-fc47-49e6-b039-f1eabba380fe))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp adb4f3db-cce2-4829-87a6-c75bd28f8057))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 85b5d8be-5438-48a6-82ee-1bfeb52eba15))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ada347f5-a8e4-45d2-8eb4-b523a5231918))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 08ecb9d3-ab7e-481a-874f-57eb4eb23e16))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d70b433e-a127-4067-b03c-95bed7c64c90))
(pad "1" smd roundrect (at -0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "VIO") (pintype "passive") (tstamp 16d1cfc7-9077-440a-bf4b-ffe03f1b8303))
(pad "2" smd roundrect (at 0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "nRESET") (pintype "passive") (tstamp 34ae51e1-2127-41cc-9d7c-17fec8a65f0e))
(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 "F.Cu")
(tstamp 46ec4483-5b30-491c-9231-d66a48460bc0)
(at 142.5 104.5 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 "Sheetfile" "pmw3610_pcb.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/79a5ec96-6413-4b0b-88db-fbcdc988207d")
(attr smd)
(fp_text reference "C3" (at 2 0 180) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp edc1ff1a-6b75-45af-8d3e-165bbc49edc9)
)
(fp_text value "100nF" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 894e70e9-16e7-494a-9a54-7c1c32c140d2)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp dee0c7f7-99cc-4edf-9481-a488cd042386)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b0155e05-0456-4f86-9a50-940f73721be5))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ecb77849-37c6-42b6-9f3b-c3574b3411f2))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1d364de0-3b48-424c-951b-104df5659306))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c6a50558-8662-417e-b696-19764f117765))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 817054e7-2193-432c-96ce-ce5d502f208f))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 90e6a95e-6485-421b-ab0c-1f32e2a07e54))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a9ea7472-ffa5-4b29-8444-403558468096))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 81dcf463-b393-444b-9cc3-498bc45044a6))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e8369ce4-d3b8-460f-8ab6-2dccfd10662a))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f0ac3cfc-f5de-4fba-b813-f805ae897a0f))
(pad "1" smd roundrect (at -0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "VIO") (pintype "passive") (tstamp 612ece20-fe65-4c72-98dc-ffcf9f4b3784))
(pad "2" smd roundrect (at 0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp d3b831dc-cb0c-48b1-a803-99e9dacacaa6))
(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_HandSoldering" (layer "F.Cu")
(tstamp 4e0e8874-9620-40f7-a9f9-f475cf538642)
(at 149.275 89.75)
(descr "5-pin SOT23 package")
(tags "SOT-23-5 hand-soldering")
(property "Sheetfile" "pmw3610_pcb.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 "/96342820-9854-4a88-bd21-f6d78c64b235")
(attr smd)
(fp_text reference "U2" (at 0 2.45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 10750b8e-fd15-4555-9c15-1f774bdeda38)
)
(fp_text value "TLV74318PDBVR" (at 0 2.9) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 67a72b3f-8219-45a2-beda-da628f689505)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp c22650d3-8829-4f45-af6a-3fc342595624)
)
(fp_line (start -0.9 1.61) (end 0.9 1.61)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 028e9085-6137-4302-9206-b656771629b5))
(fp_line (start 0.9 -1.61) (end -1.55 -1.61)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 485f2e2a-983c-4d72-9a5e-52fdcdcdef54))
(fp_line (start -2.38 -1.8) (end -2.38 1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3ae91d78-bfee-470d-8a0a-e715082a9506))
(fp_line (start -2.38 -1.8) (end 2.38 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4315812e-cb35-44b2-85bd-46d38452e8d0))
(fp_line (start 2.38 1.8) (end -2.38 1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bc2423c3-65f4-4eea-8a51-56e466f5ddb1))
(fp_line (start 2.38 1.8) (end 2.38 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fe130245-0289-4bbc-928d-84ff5c7796e0))
(fp_line (start -0.9 -0.9) (end -0.9 1.55)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e60bf72a-dfc9-4446-b39b-d867cadc7655))
(fp_line (start -0.9 -0.9) (end -0.25 -1.55)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b7685646-2a4f-4706-8ffa-e9d9bf019a30))
(fp_line (start 0.9 -1.55) (end -0.25 -1.55)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 08601584-350c-4f43-8674-1515ae604451))
(fp_line (start 0.9 -1.55) (end 0.9 1.55)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7736803a-f82a-4c43-a297-2b62a12b8166))
(fp_line (start 0.9 1.55) (end -0.9 1.55)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5c4607bb-d616-4b0f-91ff-a5cd7e54bb52))
(pad "1" smd rect (at -1.35 -0.95) (size 1.56 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "VIN") (pinfunction "IN") (pintype "power_in") (tstamp 9040ff42-23b8-4c06-a004-0d672e5c0b20))
(pad "2" smd rect (at -1.35 0) (size 1.56 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp d25bb098-4e47-4abd-bec5-cb6c3fc7b6b0))
(pad "3" smd rect (at -1.35 0.95) (size 1.56 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "VIN") (pinfunction "EN") (pintype "input") (tstamp 89870f3d-4e3f-46a7-9abe-a9810cbac0fe))
(pad "4" smd rect (at 1.35 0.95) (size 1.56 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 14 "Net-(U2-NC)") (pinfunction "NC") (pintype "output") (tstamp 302ed87d-9691-495b-b54b-819a597cd1fa))
(pad "5" smd rect (at 1.35 -0.95) (size 1.56 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "+1V8") (pinfunction "OUT") (pintype "power_out") (tstamp bd87e700-e451-452a-b7fb-ea774e5c8eda))
(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 "F.Cu")
(tstamp 6bf2a62b-fcd2-47fc-8dff-cdea27d9e6ea)
(at 145.525 89.75 -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 "Sheetfile" "pmw3610_pcb.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/241e8d38-fd20-4683-9427-42ede6088478")
(attr smd)
(fp_text reference "C8" (at 2 0.025 -180) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 2a7d8759-36dc-4fa2-b3b7-222ebec2f2e5)
)
(fp_text value "1uF" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp afb98fe7-7acb-4888-83e3-9410092c9746)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp b9d56958-3038-4257-a8f0-f6765c82c710)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6e54e0b6-4eb2-4dd9-b6f5-e88b332b2349))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 62248a01-f936-4f3e-85f6-2a9b5f12dd0d))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f63bd46f-590a-4b6e-b005-d4f99f887274))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 09f5571e-53fc-45ce-953f-49c719edad19))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d8bf4829-2b01-4575-b3f6-86930f9dd693))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4136a9ed-3b40-40b1-8b8a-4cb4222506d1))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9efcdb9f-5771-4491-b9bd-2efa5d6599a8))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a7e03c10-f534-41e5-ac31-d9f44f708be7))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6473cf55-311c-4958-bd8a-0479c6420b80))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7d71314a-af9d-4f28-853a-7da836fb30a7))
(pad "1" smd roundrect (at -0.775 0 270) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "VIN") (pintype "passive") (tstamp d7fa6305-4135-4264-854c-5e5c18f5bb33))
(pad "2" smd roundrect (at 0.775 0 270) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 0ce37178-781e-4c83-a94c-60fb74afc5c7))
(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 76694dbc-74ef-4da6-a0d7-403e9ea2704e)
(at 153.75 86.5)
(descr "SMD pad as test Point, diameter 1.5mm")
(tags "test point SMD pad")
(property "Sheetfile" "pmw3610_pcb.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "test point")
(property "ki_keywords" "test point tp")
(path "/5ed40fe8-aa74-4a58-a851-e48f2e46779f")
(attr exclude_from_pos_files)
(fp_text reference "TP4" (at 0 -1.648) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ffdc8e1d-531c-4a35-886e-19367446767d)
)
(fp_text value "TestPoint" (at 0 1.75) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1dfcdf26-7621-442f-a170-2cd253cf8d6f)
)
(fp_text user "GND" (at 0 -1.5 unlocked) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp f65e76c0-3056-4953-aef4-276153df2095)
)
(fp_text user "${REFERENCE}" (at 0 -1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7b372006-94cc-4c1b-a536-97fdb7b974f6)
)
(fp_circle (center 0 0) (end 0 0.95)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp 31034007-855c-43e7-a0ad-d07fc13ecb49))
(fp_circle (center 0 0) (end 1.25 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 2990fc10-658a-43d2-8497-7a2cb66fc917))
(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 1741c485-298d-4960-90cf-93829e3324b3))
)
(footprint "Jumper:SolderJumper-3_P1.3mm_Open_RoundedPad1.0x1.5mm_NumberLabels" (layer "F.Cu")
(tstamp 7e755fea-4874-4569-a2b1-8e73094aa29a)
(at 158.5 95.75 -90)
(descr "SMD Solder 3-pad Jumper, 1x1.5mm rounded Pads, 0.3mm gap, open, labeled with numbers")
(tags "solder jumper open")
(property "Sheetfile" "pmw3610_pcb.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Solder Jumper, 3-pole, open")
(property "ki_keywords" "Solder Jumper SPDT")
(path "/094e2dc8-c33b-4406-b06c-c510a15f9cf2")
(attr exclude_from_pos_files)
(fp_text reference "JP1" (at 0 1.75 90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 6d7313da-835e-4e7e-8bf2-a7f50a3e5b8d)
)
(fp_text value "SolderJumper_3_Open" (at 0 1.9 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e24cce40-1931-46d7-8480-d2c0c2f55e24)
)
(fp_text user "3" (at 2.6 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 08e649d8-c015-47c6-a190-86752f479bc8)
)
(fp_text user "1" (at -2.6 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 697d800b-b419-4ce9-8398-5363291f4b23)
)
(fp_line (start -2.05 0.3) (end -2.05 -0.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7e0a7b1f-d2f3-4831-ad59-a1e0188ba1b5))
(fp_line (start -1.4 -1) (end 1.4 -1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 95a51d13-1c15-4b03-a0e7-21cb02ba7e0c))
(fp_line (start 1.4 1) (end -1.4 1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0bf290c5-2668-4e92-ad4b-5532dff0af37))
(fp_line (start 2.05 -0.3) (end 2.05 0.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b72f6ed1-b611-4d19-be12-ebef36e02e9d))
(fp_arc (start -2.05 -0.3) (mid -1.844975 -0.794975) (end -1.35 -1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2cea30e5-220a-4b76-8a40-e60c4d0c8329))
(fp_arc (start -1.35 1) (mid -1.844975 0.794975) (end -2.05 0.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b2b67c77-c2ff-4729-ab30-ab469249d380))
(fp_arc (start 1.35 -1) (mid 1.844975 -0.794975) (end 2.05 -0.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 39e8042c-4b5b-49fa-8cdc-0b9deb131f68))
(fp_arc (start 2.05 0.3) (mid 1.844975 0.794975) (end 1.35 1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6266dd50-08aa-4375-b17e-434f9aff1bb7))
(fp_line (start -2.3 -1.25) (end -2.3 1.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4f8a255f-66da-4f59-9ce4-3e280e07ba67))
(fp_line (start -2.3 -1.25) (end 2.3 -1.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 080fc5bd-e82d-4afb-8428-66d8c7148258))
(fp_line (start 2.3 1.25) (end -2.3 1.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2067fef2-179d-4ae6-bcdd-73f60312e952))
(fp_line (start 2.3 1.25) (end 2.3 -1.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d73ab47a-0187-4620-8859-8580d7bba05c))
(pad "1" smd custom (at -1.3 0 270) (size 1 0.5) (layers "F.Cu" "F.Mask")
(net 4 "VIN") (pinfunction "A") (pintype "passive") (zone_connect 2)
(options (clearance outline) (anchor rect))
(primitives
(gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes))
(gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes))
(gr_poly
(pts
(xy 0.55 0.75)
(xy 0 0.75)
(xy 0 -0.75)
(xy 0.55 -0.75)
)
(width 0) (fill yes))
) (tstamp af3d8e2d-230c-4365-906f-4dc00e45144e))
(pad "2" smd rect (at 0 0 270) (size 1 1.5) (layers "F.Cu" "F.Mask")
(net 3 "VIO") (pinfunction "C") (pintype "passive") (tstamp 044165be-f0e6-4e65-9341-8e971482ff5d))
(pad "3" smd custom (at 1.3 0 270) (size 1 0.5) (layers "F.Cu" "F.Mask")
(net 2 "+1V8") (pinfunction "B") (pintype "passive") (zone_connect 2)
(options (clearance outline) (anchor rect))
(primitives
(gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes))
(gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes))
(gr_poly
(pts
(xy 0 0.75)
(xy -0.55 0.75)
(xy -0.55 -0.75)
(xy 0 -0.75)
)
(width 0) (fill yes))
) (tstamp 6e0132fb-c77c-4893-a6b2-829d8564da9c))
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tstamp 99feb2b1-581b-421d-b532-b909cb16a0d4)
(at 153.775 88.75)
(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 "Sheetfile" "pmw3610_pcb.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/4c50f85d-0ab6-4e3d-9dda-1dcede2504ff")
(attr smd)
(fp_text reference "C9" (at 2.255 0) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 094cedda-a689-40f4-809b-602479867c1c)
)
(fp_text value "1uF" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fc286876-d0ab-4896-868a-f6659b1c56ff)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp ad47ec8c-567e-4fa7-b8ce-1de491e9a1a4)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp aba2b3c7-91d7-4cbb-9e4b-8abec64c4ef2))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5e851afb-946d-4646-97e8-103f991b09cc))