-
Notifications
You must be signed in to change notification settings - Fork 3
/
Mouse.kicad_pcb-bak
1608 lines (1569 loc) · 97.1 KB
/
Mouse.kicad_pcb-bak
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 20171130) (host pcbnew "(5.1.10)-1")
(general
(thickness 1.6)
(drawings 38)
(tracks 212)
(zones 0)
(modules 31)
(nets 26)
)
(page A4)
(layers
(0 F.Cu signal)
(31 B.Cu signal)
(32 B.Adhes user)
(33 F.Adhes user)
(34 B.Paste user)
(35 F.Paste user)
(36 B.SilkS user)
(37 F.SilkS user)
(38 B.Mask user)
(39 F.Mask user)
(40 Dwgs.User user)
(41 Cmts.User user)
(42 Eco1.User user)
(43 Eco2.User user)
(44 Edge.Cuts user)
(45 Margin user)
(46 B.CrtYd user hide)
(47 F.CrtYd user)
(48 B.Fab user hide)
(49 F.Fab user hide)
)
(setup
(last_trace_width 0.25)
(user_trace_width 0.2)
(user_trace_width 0.25)
(user_trace_width 0.5)
(user_trace_width 0.75)
(trace_clearance 0.2)
(zone_clearance 0.508)
(zone_45_only no)
(trace_min 0.2)
(via_size 0.8)
(via_drill 0.4)
(via_min_size 0.4)
(via_min_drill 0.3)
(uvia_size 0.3)
(uvia_drill 0.1)
(uvias_allowed no)
(uvia_min_size 0.2)
(uvia_min_drill 0.1)
(edge_width 0.05)
(segment_width 0.2)
(pcb_text_width 0.3)
(pcb_text_size 1.5 1.5)
(mod_edge_width 0.12)
(mod_text_size 1 1)
(mod_text_width 0.15)
(pad_size 1.308 1.308)
(pad_drill 0.8)
(pad_to_mask_clearance 0)
(aux_axis_origin 0 0)
(visible_elements 7FFFFFFF)
(pcbplotparams
(layerselection 0x010fc_ffffffff)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(excludeedgelayer true)
(linewidth 0.100000)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(padsonsilk false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 1)
(scaleselection 1)
(outputdirectory ""))
)
(net 0 "")
(net 1 GNDREF)
(net 2 D+)
(net 3 Pin_5)
(net 4 Pin_2)
(net 5 "Net-(C14-Pad2)")
(net 6 "Net-(LD1-Pad1)")
(net 7 Pin_1)
(net 8 "Net-(J1-Pad5)")
(net 9 "Net-(J1-Pad4)")
(net 10 "Net-(R9-Pad2)")
(net 11 "Net-(R10-Pad1)")
(net 12 Pin_3)
(net 13 VCC)
(net 14 Pin_4)
(net 15 "Net-(C13-Pad2)")
(net 16 "Net-(JP2-Pad2)")
(net 17 "Net-(JP2-Pad1)")
(net 18 "Net-(JP3-Pad1)")
(net 19 "Net-(JP4-Pad1)")
(net 20 "Net-(LD2-Pad2)")
(net 21 Pin_2J)
(net 22 D-)
(net 23 "Net-(SW1-Pad3)")
(net 24 "Net-(SW2-Pad3)")
(net 25 "Net-(SW3-Pad3)")
(net_class Default "This is the default net class."
(clearance 0.2)
(trace_width 0.25)
(via_dia 0.8)
(via_drill 0.4)
(uvia_dia 0.3)
(uvia_drill 0.1)
(add_net D+)
(add_net D-)
(add_net GNDREF)
(add_net "Net-(C13-Pad2)")
(add_net "Net-(C14-Pad2)")
(add_net "Net-(J1-Pad4)")
(add_net "Net-(J1-Pad5)")
(add_net "Net-(JP2-Pad1)")
(add_net "Net-(JP2-Pad2)")
(add_net "Net-(JP3-Pad1)")
(add_net "Net-(JP4-Pad1)")
(add_net "Net-(LD1-Pad1)")
(add_net "Net-(LD2-Pad2)")
(add_net "Net-(R10-Pad1)")
(add_net "Net-(R9-Pad2)")
(add_net "Net-(SW1-Pad3)")
(add_net "Net-(SW2-Pad3)")
(add_net "Net-(SW3-Pad3)")
(add_net Pin_1)
(add_net Pin_2)
(add_net Pin_2J)
(add_net Pin_3)
(add_net Pin_4)
(add_net Pin_5)
(add_net VCC)
)
(module Mouse:R_0603_1608_Logi (layer F.Cu) (tedit 63ED3203) (tstamp 62F807A3)
(at 108.712 120.8278)
(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)
(path /62FC41C4)
(attr smd)
(fp_text reference C8 (at 2.794 0) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value "C 0.01uF" (at 0 1.43) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer F.Fab) (width 0.1))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer F.Fab) (width 0.1))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer F.Fab) (width 0.1))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer F.Fab) (width 0.1))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer F.SilkS) (width 0.12))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer F.SilkS) (width 0.12))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 0) (layer F.Fab)
(effects (font (size 0.4 0.4) (thickness 0.06)))
)
(pad 2 smd roundrect (at 0.8128 0) (size 0.8 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 1 GNDREF))
(pad 1 smd roundrect (at -0.80518 0) (size 0.8 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 22 D-))
(model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Mouse:LED_Sensor (layer B.Cu) (tedit 63ED2DD1) (tstamp 62F8082D)
(at 96.7994 150.2918)
(descr "LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 15.0mm, 2 pins, diameter 5.0mm z-position of LED center 15.0mm, 2 pins, diameter 5.0mm z-position of LED center 15.0mm, 2 pins")
(tags "LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 15.0mm 2 pins diameter 5.0mm z-position of LED center 15.0mm 2 pins diameter 5.0mm z-position of LED center 15.0mm 2 pins")
(path /62F8164E)
(fp_text reference LD2 (at 3.5814 1.1938) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value "Sensor illumination" (at 0.0254 -15.9592) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start 2.0574 1.2954) (end 2.064515 -1.284028) (layer B.SilkS) (width 0.12))
(fp_line (start 1.2954 0.0508) (end 1.2954 0.0508) (layer B.Fab) (width 0.1))
(fp_line (start -1.2446 0.0508) (end -1.2446 0.0508) (layer B.Fab) (width 0.1))
(fp_arc (start 0 0) (end 2.057399 1.295399) (angle 295.9246692) (layer B.SilkS) (width 0.12))
(fp_text user v (at -3.6322 -0.9398) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text user + (at -3.6322 0.0762) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text user - (at 2.8448 0.0508) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(pad 2 thru_hole rect (at 1.2954 0.0508) (size 1.2 1.2) (drill 0.75) (layers *.Cu *.Mask)
(net 20 "Net-(LD2-Pad2)"))
(pad 1 thru_hole oval (at -1.2446 0.0508 270) (size 1.2 1.6) (drill 0.75) (layers *.Cu *.Mask)
(net 18 "Net-(JP3-Pad1)"))
)
(module Mouse:Sensor (layer B.Cu) (tedit 63ED10C0) (tstamp 63E72EEC)
(at 96.4692 116.3828 270)
(path /62F7519C)
(fp_text reference U1 (at 6.4262 6.9342) (layer B.SilkS)
(effects (font (size 1.001992 1.001992) (thickness 0.15)) (justify mirror))
)
(fp_text value Optical_Sensor (at -3.603005 -2.256925 270) (layer B.Fab)
(effects (font (size 1.001409 1.001409) (thickness 0.15)) (justify mirror))
)
(fp_line (start 4.5 7.3152) (end -3.556 7.3152) (layer F.SilkS) (width 0.12))
(fp_line (start -3.556 5.3152) (end 4.5 5.3152) (layer F.SilkS) (width 0.12))
(fp_line (start 4.5 7.3152) (end 4.5 5.3152) (layer F.SilkS) (width 0.12))
(fp_line (start -2.5146 -7.334) (end -2.5146 -5.334) (layer F.SilkS) (width 0.12))
(fp_line (start -3.556 5.3152) (end -3.556 7.3152) (layer F.SilkS) (width 0.12))
(fp_line (start 5.4854 -7.334) (end -2.5146 -7.334) (layer F.SilkS) (width 0.12))
(fp_line (start 5.4854 -5.334) (end 5.4854 -7.334) (layer F.SilkS) (width 0.12))
(fp_line (start 5.4854 -5.334) (end -2.5146 -5.334) (layer F.SilkS) (width 0.12))
(fp_circle (center 5.08 8.001) (end 4.88 8.001) (layer F.SilkS) (width 0.4))
(fp_line (start 5.9044 4.5492) (end -3.9956 4.5492) (layer B.Fab) (width 0.127))
(fp_line (start -3.9956 4.5492) (end -3.9956 -4.5508) (layer B.Fab) (width 0.127))
(fp_line (start -3.9956 -4.5508) (end 5.9044 -4.5508) (layer B.Fab) (width 0.127))
(fp_line (start 5.9044 -4.5508) (end 5.9044 4.5492) (layer B.Fab) (width 0.127))
(fp_line (start 29.3306 -5.0492) (end -9.1694 -5.0492) (layer B.Fab) (width 0.127))
(fp_line (start 29.3306 4.8008) (end -9.1694 4.8008) (layer B.Fab) (width 0.127))
(fp_line (start -9.1694 4.8008) (end -9.1694 -5.0492) (layer B.Fab) (width 0.127))
(fp_line (start 29.3306 4.8008) (end 29.3306 -5.0492) (layer B.Fab) (width 0.127))
(fp_circle (center 5.08 8.001) (end 4.88 8.001) (layer B.SilkS) (width 0.4))
(fp_circle (center 0.4544 -0.0008) (end -2.3456 -0.0008) (layer B.Fab) (width 0.127))
(fp_circle (center 33.800764 -1.577171) (end 34.207164 -1.577171) (layer B.Fab) (width 0.2032))
(fp_circle (center 33.800764 0.962829) (end 34.207164 0.962829) (layer B.Fab) (width 0.2032))
(fp_line (start 29.3306 4.8008) (end -9.1694 4.8008) (layer Edge.Cuts) (width 0.01))
(fp_line (start -9.1694 4.8008) (end -9.1694 -5.0492) (layer Edge.Cuts) (width 0.01))
(fp_line (start 29.3306 4.8008) (end 29.3306 -5.0492) (layer Edge.Cuts) (width 0.01))
(fp_line (start 29.3306 -5.0492) (end -9.1694 -5.0492) (layer Edge.Cuts) (width 0.01))
(fp_line (start -9.3354 7.2058) (end 29.6926 7.2058) (layer B.CrtYd) (width 0.05))
(fp_line (start 29.6926 7.2058) (end 29.6926 -7.2042) (layer B.CrtYd) (width 0.05))
(fp_line (start 29.6926 -7.2042) (end -9.3354 -7.2042) (layer B.CrtYd) (width 0.05))
(fp_line (start -9.3354 -7.2042) (end -9.3354 7.2058) (layer B.CrtYd) (width 0.05))
(fp_line (start 6.9469 -5.5118) (end 6.9469 5.4864) (layer B.SilkS) (width 0.12))
(fp_line (start 6.9469 -5.5118) (end -5.0531 -5.5118) (layer B.SilkS) (width 0.12))
(fp_line (start 6.9469 5.4864) (end -5.0531 5.4864) (layer B.SilkS) (width 0.12))
(fp_line (start -5.0531 -5.5118) (end -5.0531 5.4864) (layer B.SilkS) (width 0.12))
(fp_text user "LED Placement " (at 32.3088 -0.1778) (layer B.Fab)
(effects (font (size 0.702333 0.702333) (thickness 0.15)) (justify mirror))
)
(pad 1 thru_hole rect (at 3.4544 6.2992 90) (size 1.308 1.308) (drill 0.8) (layers *.Cu *.Mask)
(net 7 Pin_1))
(pad 2 thru_hole circle (at 1.4544 6.2992 90) (size 1.308 1.308) (drill 0.8) (layers *.Cu *.Mask)
(net 4 Pin_2))
(pad 3 thru_hole circle (at -0.5456 6.2992 90) (size 1.308 1.308) (drill 0.8) (layers *.Cu *.Mask)
(net 12 Pin_3))
(pad 4 thru_hole rect (at -2.5456 6.2992 90) (size 1.308 1.308) (drill 0.8) (layers *.Cu *.Mask)
(net 14 Pin_4))
(pad 8 thru_hole rect (at 4.4544 -6.3008 90) (size 1.308 1.308) (drill 0.8) (layers *.Cu *.Mask)
(net 22 D-))
(pad 7 thru_hole circle (at 2.4544 -6.3008 90) (size 1.308 1.308) (drill 0.8) (layers *.Cu *.Mask)
(net 2 D+))
(pad 6 thru_hole circle (at 0.4544 -6.3008 90) (size 1.308 1.308) (drill 0.8) (layers *.Cu *.Mask)
(net 1 GNDREF))
(pad 5 thru_hole rect (at -1.5456 -6.3008 90) (size 1.308 1.308) (drill 0.8) (layers *.Cu *.Mask)
(net 3 Pin_5))
)
(module Mouse:R_0603_1608_Logi (layer F.Cu) (tedit 63ED3203) (tstamp 62F87134)
(at 108.4453 96.5581 180)
(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)
(path /62FADAD6)
(attr smd)
(fp_text reference C16 (at 0 -1.651) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value "C NC" (at 0 1.43) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer F.Fab) (width 0.1))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer F.Fab) (width 0.1))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer F.Fab) (width 0.1))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer F.Fab) (width 0.1))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer F.SilkS) (width 0.12))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer F.SilkS) (width 0.12))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 0) (layer F.Fab)
(effects (font (size 0.4 0.4) (thickness 0.06)))
)
(pad 2 smd roundrect (at 0.8128 0 180) (size 0.8 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 1 GNDREF))
(pad 1 smd roundrect (at -0.80518 0 180) (size 0.8 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 21 Pin_2J))
(model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Mouse:R_0603_1608_Logi (layer F.Cu) (tedit 63ED3203) (tstamp 62F80809)
(at 108.7016 133.9088)
(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)
(path /62FA0A45)
(attr smd)
(fp_text reference C15 (at -3.3932 -0.0508) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value "C 0.1uF" (at 0 1.43) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer F.Fab) (width 0.1))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer F.Fab) (width 0.1))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer F.Fab) (width 0.1))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer F.Fab) (width 0.1))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer F.SilkS) (width 0.12))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer F.SilkS) (width 0.12))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 0) (layer F.Fab)
(effects (font (size 0.4 0.4) (thickness 0.06)))
)
(pad 2 smd roundrect (at 0.8128 0) (size 0.8 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 1 GNDREF))
(pad 1 smd roundrect (at -0.80518 0) (size 0.8 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 5 "Net-(C14-Pad2)"))
(model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Mouse:R_0603_1608_Logi (layer F.Cu) (tedit 63ED3203) (tstamp 62F807F8)
(at 108.712 131.7752 180)
(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)
(path /62FA0303)
(attr smd)
(fp_text reference C14 (at 3.4036 -0.0508) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value "C 4.7uF" (at 0 1.43) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer F.Fab) (width 0.1))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer F.Fab) (width 0.1))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer F.Fab) (width 0.1))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer F.Fab) (width 0.1))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer F.SilkS) (width 0.12))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer F.SilkS) (width 0.12))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 0) (layer F.Fab)
(effects (font (size 0.4 0.4) (thickness 0.06)))
)
(pad 2 smd roundrect (at 0.8128 0 180) (size 0.8 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 5 "Net-(C14-Pad2)"))
(pad 1 smd roundrect (at -0.80518 0 180) (size 0.8 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 1 GNDREF))
(model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Mouse:R_0603_1608_Logi (layer F.Cu) (tedit 63ED3203) (tstamp 62F807D6)
(at 86.4362 118.1608)
(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)
(path /62F98763)
(attr smd)
(fp_text reference C13 (at -3.5052 0.0762) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value "C NC" (at 0 1.43) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer F.Fab) (width 0.1))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer F.Fab) (width 0.1))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer F.Fab) (width 0.1))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer F.Fab) (width 0.1))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer F.SilkS) (width 0.12))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer F.SilkS) (width 0.12))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 0) (layer F.Fab)
(effects (font (size 0.4 0.4) (thickness 0.06)))
)
(pad 2 smd roundrect (at 0.8128 0) (size 0.8 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 15 "Net-(C13-Pad2)"))
(pad 1 smd roundrect (at -0.80518 0) (size 0.8 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 1 GNDREF))
(model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Mouse:R_0603_1608_Logi (layer F.Cu) (tedit 63ED3203) (tstamp 62F807E7)
(at 86.4489 116.4209)
(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)
(path /62F9902F)
(attr smd)
(fp_text reference C12 (at -3.51028 -0.02286) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value "C 0.1uF" (at 0 1.43) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer F.Fab) (width 0.1))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer F.Fab) (width 0.1))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer F.Fab) (width 0.1))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer F.Fab) (width 0.1))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer F.SilkS) (width 0.12))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer F.SilkS) (width 0.12))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 0) (layer F.Fab)
(effects (font (size 0.4 0.4) (thickness 0.06)))
)
(pad 2 smd roundrect (at 0.8128 0) (size 0.8 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 4 Pin_2))
(pad 1 smd roundrect (at -0.80518 0) (size 0.8 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 1 GNDREF))
(model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Mouse:R_0603_1608_Logi (layer F.Cu) (tedit 63ED3203) (tstamp 62F807C5)
(at 108.712 113.2332 180)
(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)
(path /62FAF89C)
(attr smd)
(fp_text reference C11 (at -3.302 -0.0508) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value "C NC" (at 0 1.43) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer F.Fab) (width 0.1))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer F.Fab) (width 0.1))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer F.Fab) (width 0.1))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer F.Fab) (width 0.1))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer F.SilkS) (width 0.12))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer F.SilkS) (width 0.12))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 0) (layer F.Fab)
(effects (font (size 0.4 0.4) (thickness 0.06)))
)
(pad 2 smd roundrect (at 0.8128 0 180) (size 0.8 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 3 Pin_5))
(pad 1 smd roundrect (at -0.80518 0 180) (size 0.8 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 1 GNDREF))
(model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Mouse:R_0603_1608_Logi (layer F.Cu) (tedit 63ED3203) (tstamp 62F807B4)
(at 108.712 118.872)
(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)
(path /62FC49F6)
(attr smd)
(fp_text reference C9 (at 2.8448 -0.0508) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value "C 0.01uF" (at 0 1.43) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer F.Fab) (width 0.1))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer F.Fab) (width 0.1))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer F.Fab) (width 0.1))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer F.Fab) (width 0.1))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer F.SilkS) (width 0.12))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer F.SilkS) (width 0.12))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 0) (layer F.Fab)
(effects (font (size 0.4 0.4) (thickness 0.06)))
)
(pad 2 smd roundrect (at 0.8128 0) (size 0.8 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 1 GNDREF))
(pad 1 smd roundrect (at -0.80518 0) (size 0.8 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 2 D+))
(model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Mouse:Rot_LED (layer B.Cu) (tedit 63ECEE69) (tstamp 62F8081B)
(at 109.0295 89.4642 270)
(path /62F81B20)
(fp_text reference LD1 (at 5.1254 1.4224 180) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value "Rotary illumintion" (at -12.4968 6.6976 90) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start -2.75 6.1162) (end 2.75 6.1162) (layer B.SilkS) (width 0.12))
(fp_line (start 2.75 6.1162) (end 2.75 2.6162) (layer B.SilkS) (width 0.12))
(fp_line (start -2.75 2.6162) (end 2.75 2.6162) (layer B.SilkS) (width 0.12))
(fp_line (start -2.75 6.1162) (end -2.75 2.6162) (layer B.SilkS) (width 0.12))
(fp_text user V+ (at 3.1442 0 90) (layer B.SilkS)
(effects (font (size 0.5 0.5) (thickness 0.1)) (justify mirror))
)
(pad 2 thru_hole circle (at 1.25 0 270) (size 1.5 1.5) (drill 0.75) (layers *.Cu *.Mask)
(net 21 Pin_2J))
(pad 1 thru_hole rect (at -1.25 0 270) (size 1.5 1.5) (drill 0.75) (layers *.Cu *.Mask)
(net 6 "Net-(LD1-Pad1)"))
)
(module Mouse:SPDT_Switch (layer B.Cu) (tedit 63ECB607) (tstamp 62FFE47E)
(at 111.0996 81.3943 200)
(path /62F7695E)
(fp_text reference SW1 (at 4.920822 5.900652 200) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value "Left click" (at 3.865 -1.805 200) (layer Dwgs.User)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.5 4) (end 1.5 6.4) (layer B.SilkS) (width 0.127))
(fp_line (start -1.5 4) (end 1.5 4) (layer B.SilkS) (width 0.127))
(fp_line (start -1.5 6.4) (end -1.5 4) (layer B.SilkS) (width 0.127))
(fp_line (start -2.9 -6.4) (end -2.9 6.4) (layer B.SilkS) (width 0.127))
(fp_line (start 2.9 -6.4) (end -2.9 -6.4) (layer B.SilkS) (width 0.127))
(fp_line (start 2.9 6.4) (end 2.9 -6.4) (layer B.SilkS) (width 0.127))
(fp_line (start 1.5 6.4) (end 2.9 6.4) (layer B.SilkS) (width 0.127))
(fp_line (start -1.5 6.4) (end 1.5 6.4) (layer B.SilkS) (width 0.127))
(fp_line (start -2.9 6.4) (end -1.5 6.4) (layer B.SilkS) (width 0.127))
(pad 1 thru_hole rect (at 0 5.08 200) (size 1.8 1.8) (drill 1.2) (layers *.Cu *.Mask)
(net 10 "Net-(R9-Pad2)"))
(pad 2 thru_hole circle (at 0 0 200) (size 1.8 1.8) (drill 1.2) (layers *.Cu *.Mask)
(net 21 Pin_2J))
(pad 3 thru_hole circle (at 0 -5.08 200) (size 1.8 1.8) (drill 1.2) (layers *.Cu *.Mask)
(net 23 "Net-(SW1-Pad3)"))
)
(module Mouse:SPDT_Switch (layer B.Cu) (tedit 63ECB607) (tstamp 62FFE48F)
(at 113.3729 94.0435 180)
(path /62F76FC9)
(fp_text reference SW3 (at -0.11684 -7.62 180) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value "Middle click" (at 3.865 -1.805 270) (layer Dwgs.User)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.5 4) (end 1.5 6.4) (layer B.SilkS) (width 0.127))
(fp_line (start -1.5 4) (end 1.5 4) (layer B.SilkS) (width 0.127))
(fp_line (start -1.5 6.4) (end -1.5 4) (layer B.SilkS) (width 0.127))
(fp_line (start -2.9 -6.4) (end -2.9 6.4) (layer B.SilkS) (width 0.127))
(fp_line (start 2.9 -6.4) (end -2.9 -6.4) (layer B.SilkS) (width 0.127))
(fp_line (start 2.9 6.4) (end 2.9 -6.4) (layer B.SilkS) (width 0.127))
(fp_line (start 1.5 6.4) (end 2.9 6.4) (layer B.SilkS) (width 0.127))
(fp_line (start -1.5 6.4) (end 1.5 6.4) (layer B.SilkS) (width 0.127))
(fp_line (start -2.9 6.4) (end -1.5 6.4) (layer B.SilkS) (width 0.127))
(pad 1 thru_hole rect (at 0 5.08 180) (size 1.8 1.8) (drill 1.2) (layers *.Cu *.Mask)
(net 17 "Net-(JP2-Pad1)"))
(pad 2 thru_hole circle (at 0 0 180) (size 1.8 1.8) (drill 1.2) (layers *.Cu *.Mask)
(net 1 GNDREF))
(pad 3 thru_hole circle (at 0 -5.08 180) (size 1.8 1.8) (drill 1.2) (layers *.Cu *.Mask)
(net 25 "Net-(SW3-Pad3)"))
)
(module Mouse:R_0603_1608_Logi (layer F.Cu) (tedit 63ED3203) (tstamp 62F8084F)
(at 108.712 127.8128 180)
(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)
(path /62FCF553)
(attr smd)
(fp_text reference R8 (at 2.921 -0.0508) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value "R 270" (at 0 1.43) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer F.Fab) (width 0.1))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer F.Fab) (width 0.1))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer F.Fab) (width 0.1))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer F.Fab) (width 0.1))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer F.SilkS) (width 0.12))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer F.SilkS) (width 0.12))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 0) (layer F.Fab)
(effects (font (size 0.4 0.4) (thickness 0.06)))
)
(pad 2 smd roundrect (at 0.8128 0 180) (size 0.8 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 2 D+))
(pad 1 smd roundrect (at -0.80518 0 180) (size 0.8 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 9 "Net-(J1-Pad4)"))
(model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Mouse:R_0603_1608_Logi (layer F.Cu) (tedit 63ED3203) (tstamp 62F8083E)
(at 108.712 125.8316)
(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)
(path /62FCEC69)
(attr smd)
(fp_text reference R7 (at -2.921 0.0254) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value "R 270" (at 0 1.43) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer F.Fab) (width 0.1))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer F.Fab) (width 0.1))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer F.Fab) (width 0.1))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer F.Fab) (width 0.1))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer F.SilkS) (width 0.12))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer F.SilkS) (width 0.12))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 0) (layer F.Fab)
(effects (font (size 0.4 0.4) (thickness 0.06)))
)
(pad 2 smd roundrect (at 0.8128 0) (size 0.8 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 8 "Net-(J1-Pad5)"))
(pad 1 smd roundrect (at -0.80518 0) (size 0.8 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 22 D-))
(model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Mouse:R_0603_1608_Logi (layer F.Cu) (tedit 63ED3203) (tstamp 62F808E8)
(at 86.4362 119.888)
(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)
(path /62F97895)
(attr smd)
(fp_text reference R17 (at -3.5052 0) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value "R NC" (at 0 1.43) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer F.Fab) (width 0.1))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer F.Fab) (width 0.1))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer F.Fab) (width 0.1))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer F.Fab) (width 0.1))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer F.SilkS) (width 0.12))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer F.SilkS) (width 0.12))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 0) (layer F.Fab)
(effects (font (size 0.4 0.4) (thickness 0.06)))
)
(pad 2 smd roundrect (at 0.8128 0) (size 0.8 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 4 Pin_2))
(pad 1 smd roundrect (at -0.80518 0) (size 0.8 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 15 "Net-(C13-Pad2)"))
(model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Mouse:R_0603_1608_Logi (layer F.Cu) (tedit 63ED3203) (tstamp 62F808D7)
(at 108.712 123.571 180)
(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)
(path /62F9F594)
(attr smd)
(fp_text reference R16 (at 3.302 0.0508) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value "R 000" (at 0 1.43) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer F.Fab) (width 0.1))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer F.Fab) (width 0.1))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer F.Fab) (width 0.1))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer F.Fab) (width 0.1))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer F.SilkS) (width 0.12))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer F.SilkS) (width 0.12))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 0) (layer F.Fab)
(effects (font (size 0.4 0.4) (thickness 0.06)))
)
(pad 2 smd roundrect (at 0.8128 0 180) (size 0.8 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 5 "Net-(C14-Pad2)"))
(pad 1 smd roundrect (at -0.80518 0 180) (size 0.8 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 19 "Net-(JP4-Pad1)"))
(model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Mouse:R_0603_1608_Logi (layer F.Cu) (tedit 63ED3203) (tstamp 62F808C6)
(at 108.712 129.8956)
(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)
(path /62F9F9E0)
(attr smd)
(fp_text reference R15 (at -3.4036 0.0508) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value "R 1R0" (at -4.1656 0.2794) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer F.Fab) (width 0.1))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer F.Fab) (width 0.1))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer F.Fab) (width 0.1))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer F.Fab) (width 0.1))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer F.SilkS) (width 0.12))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer F.SilkS) (width 0.12))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 0) (layer F.Fab)
(effects (font (size 0.4 0.4) (thickness 0.06)))
)
(pad 2 smd roundrect (at 0.8128 0) (size 0.8 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 13 VCC))
(pad 1 smd roundrect (at -0.80518 0) (size 0.8 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 5 "Net-(C14-Pad2)"))
(model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Mouse:JP_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal (layer B.Cu) (tedit 63ECB900) (tstamp 62F808B5)
(at 82.473099 102.936794 285)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path /62FDEBB7)
(fp_text reference R14 (at 3.118151 3.267162 195) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value "R 1500ohm ± 5%" (at 5.08 -2.37 105) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start 1.93 1.25) (end 1.93 -1.25) (layer B.Fab) (width 0.1))
(fp_line (start 1.93 -1.25) (end 8.23 -1.25) (layer B.Fab) (width 0.1))
(fp_line (start 8.23 -1.25) (end 8.23 1.25) (layer B.Fab) (width 0.1))
(fp_line (start 8.23 1.25) (end 1.93 1.25) (layer B.Fab) (width 0.1))
(fp_line (start 0 0) (end 1.93 0) (layer B.Fab) (width 0.1))
(fp_line (start 10.16 0) (end 8.23 0) (layer B.Fab) (width 0.1))
(fp_line (start 1.81 1.37) (end 1.81 -1.37) (layer B.SilkS) (width 0.12))
(fp_line (start 1.81 -1.37) (end 8.35 -1.37) (layer B.SilkS) (width 0.12))
(fp_line (start 8.35 -1.37) (end 8.35 1.37) (layer B.SilkS) (width 0.12))
(fp_line (start 8.35 1.37) (end 1.81 1.37) (layer B.SilkS) (width 0.12))
(fp_line (start 1.04 0) (end 1.81 0) (layer B.SilkS) (width 0.12))
(fp_line (start 9.12 0) (end 8.35 0) (layer B.SilkS) (width 0.12))
(fp_line (start -1.05 1.5) (end -1.05 -1.5) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.05 -1.5) (end 11.21 -1.5) (layer B.CrtYd) (width 0.05))
(fp_line (start 11.21 -1.5) (end 11.21 1.5) (layer B.CrtYd) (width 0.05))
(fp_line (start 11.21 1.5) (end -1.05 1.5) (layer B.CrtYd) (width 0.05))
(fp_text user %R (at 5.08 0 105) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(pad 2 thru_hole oval (at 10.16 0 285) (size 1 1) (drill 0.6) (layers *.Cu *.Mask)
(net 12 Pin_3))
(pad 1 thru_hole circle (at 0 0 285) (size 1 1) (drill 0.6) (layers *.Cu *.Mask)
(net 6 "Net-(LD1-Pad1)"))
(model ${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Mouse:R_0603_1608_Logi (layer F.Cu) (tedit 63ED3203) (tstamp 62F808A4)
(at 108.7374 109.347 180)
(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)
(path /62F9FE60)
(attr smd)
(fp_text reference R13 (at -3.4036 -0.0508) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value "R 105" (at 0 1.43) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer F.Fab) (width 0.1))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer F.Fab) (width 0.1))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer F.Fab) (width 0.1))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer F.Fab) (width 0.1))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer F.SilkS) (width 0.12))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer F.SilkS) (width 0.12))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 0) (layer F.Fab)
(effects (font (size 0.4 0.4) (thickness 0.06)))
)
(pad 2 smd roundrect (at 0.8128 0 180) (size 0.8 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 4 Pin_2))
(pad 1 smd roundrect (at -0.80518 0 180) (size 0.8 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 3 Pin_5))
(model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Mouse:R_0603_1608_Logi (layer F.Cu) (tedit 63ED3203) (tstamp 62F80893)
(at 108.712 114.808)
(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)
(path /62F83C24)
(attr smd)
(fp_text reference R12 (at 3.3274 0.0508) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value "R 330 " (at 0 1.43) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer F.Fab) (width 0.1))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer F.Fab) (width 0.1))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer F.Fab) (width 0.1))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer F.Fab) (width 0.1))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer F.SilkS) (width 0.12))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer F.SilkS) (width 0.12))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 0) (layer F.Fab)
(effects (font (size 0.4 0.4) (thickness 0.06)))
)
(pad 2 smd roundrect (at 0.8128 0) (size 0.8 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 20 "Net-(LD2-Pad2)"))
(pad 1 smd roundrect (at -0.80518 0) (size 0.8 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 3 Pin_5))
(model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Mouse:R_0603_1608_Logi (layer F.Cu) (tedit 63ED3203) (tstamp 62F80882)
(at 86.4108 121.6152 180)
(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)
(path /62F8570A)
(attr smd)
(fp_text reference R11 (at 2.0828 -1.8288) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value "R 303" (at 0 1.43) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer F.Fab) (width 0.1))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer F.Fab) (width 0.1))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer F.Fab) (width 0.1))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer F.Fab) (width 0.1))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer F.SilkS) (width 0.12))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer F.SilkS) (width 0.12))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 0) (layer F.Fab)
(effects (font (size 0.4 0.4) (thickness 0.06)))
)
(pad 2 smd roundrect (at 0.8128 0 180) (size 0.8 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 16 "Net-(JP2-Pad2)"))
(pad 1 smd roundrect (at -0.80518 0 180) (size 0.8 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 7 Pin_1))
(model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Mouse:R_0603_1608_Logi (layer F.Cu) (tedit 63ED3203) (tstamp 62F80871)
(at 108.7374 107.6706)
(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)
(path /62FB531F)
(attr smd)
(fp_text reference R10 (at 3.4036 0.1016) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value "R 303" (at 0 1.43) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer F.Fab) (width 0.1))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer F.Fab) (width 0.1))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer F.Fab) (width 0.1))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer F.Fab) (width 0.1))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer F.SilkS) (width 0.12))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer F.SilkS) (width 0.12))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 0) (layer F.Fab)
(effects (font (size 0.4 0.4) (thickness 0.06)))
)
(pad 2 smd roundrect (at 0.8128 0) (size 0.8 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 3 Pin_5))
(pad 1 smd roundrect (at -0.80518 0) (size 0.8 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 11 "Net-(R10-Pad1)"))
(model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Mouse:R_0603_1608_Logi (layer F.Cu) (tedit 63ED3203) (tstamp 62F80860)
(at 108.7628 105.9942 180)
(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)
(path /62FB4CF2)
(attr smd)
(fp_text reference R9 (at -2.8702 -0.0508) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value "R 303" (at 0 1.43) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer F.Fab) (width 0.1))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer F.Fab) (width 0.1))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer F.Fab) (width 0.1))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer F.Fab) (width 0.1))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer F.SilkS) (width 0.12))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer F.SilkS) (width 0.12))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer F.CrtYd) (width 0.05))