-
Notifications
You must be signed in to change notification settings - Fork 0
/
tiny-touch-auto-route.kicad_pcb-bak
3724 lines (3594 loc) · 221 KB
/
tiny-touch-auto-route.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.2-1)-1")
(general
(thickness 1.6)
(drawings 8)
(tracks 0)
(zones 0)
(modules 122)
(nets 101)
)
(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)
(47 F.CrtYd user)
(48 B.Fab user)
(49 F.Fab user)
)
(setup
(last_trace_width 0.25)
(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.524 1.524)
(pad_drill 0.762)
(pad_to_mask_clearance 0.051)
(solder_mask_min_width 0.25)
(aux_axis_origin 0 0)
(visible_elements FFFFF77F)
(pcbplotparams
(layerselection 0x010fc_ffffffff)
(usegerberextensions false)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(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 +3V3)
(net 2 GND)
(net 3 +5V)
(net 4 BOOTO)
(net 5 NRST)
(net 6 "Net-(D2-Pad2)")
(net 7 "Net-(H1-Pad1)")
(net 8 E1)
(net 9 E0)
(net 10 B9)
(net 11 B8)
(net 12 B7)
(net 13 B6)
(net 14 B5)
(net 15 B4)
(net 16 B3)
(net 17 D7)
(net 18 D6)
(net 19 D5)
(net 20 D4)
(net 21 D3)
(net 22 D2)
(net 23 D1)
(net 24 D0)
(net 25 C12)
(net 26 C11)
(net 27 C10)
(net 28 A15)
(net 29 A14)
(net 30 F6)
(net 31 A13)
(net 32 D+)
(net 33 D-)
(net 34 A10)
(net 35 A9)
(net 36 A8)
(net 37 C9)
(net 38 C8)
(net 39 C7)
(net 40 C6)
(net 41 D15)
(net 42 D14)
(net 43 D13)
(net 44 D12)
(net 45 D11)
(net 46 D10)
(net 47 D9)
(net 48 D8)
(net 49 B15)
(net 50 "Net-(IC1-Pad53)")
(net 51 "Net-(IC1-Pad52)")
(net 52 B12)
(net 53 B11)
(net 54 B10)
(net 55 E15)
(net 56 E14)
(net 57 E13)
(net 58 E12)
(net 59 E11)
(net 60 E10)
(net 61 E9)
(net 62 E8)
(net 63 E7)
(net 64 B2)
(net 65 B1)
(net 66 B0)
(net 67 C5)
(net 68 C4)
(net 69 A7)
(net 70 A6)
(net 71 A5)
(net 72 A4)
(net 73 A3)
(net 74 A2)
(net 75 A1)
(net 76 A0)
(net 77 F3)
(net 78 F2)
(net 79 C3)
(net 80 C2)
(net 81 C1)
(net 82 C0)
(net 83 F1)
(net 84 F0)
(net 85 F10)
(net 86 F9)
(net 87 "Net-(IC1-Pad9)")
(net 88 C14)
(net 89 C13)
(net 90 E6)
(net 91 E5)
(net 92 E4)
(net 93 E3)
(net 94 E2)
(net 95 VBUS)
(net 96 GNDREF)
(net 97 "Net-(R5-Pad2)")
(net 98 "Net-(R6-Pad2)")
(net 99 "Net-(USB1-Pad3)")
(net 100 "Net-(USB1-Pad9)")
(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 A0)
(add_net A1)
(add_net A10)
(add_net A13)
(add_net A14)
(add_net A15)
(add_net A2)
(add_net A3)
(add_net A4)
(add_net A5)
(add_net A6)
(add_net A7)
(add_net A8)
(add_net A9)
(add_net B0)
(add_net B1)
(add_net B10)
(add_net B11)
(add_net B12)
(add_net B15)
(add_net B2)
(add_net B3)
(add_net B4)
(add_net B5)
(add_net B6)
(add_net B7)
(add_net B8)
(add_net B9)
(add_net BOOTO)
(add_net C0)
(add_net C1)
(add_net C10)
(add_net C11)
(add_net C12)
(add_net C13)
(add_net C14)
(add_net C2)
(add_net C3)
(add_net C4)
(add_net C5)
(add_net C6)
(add_net C7)
(add_net C8)
(add_net C9)
(add_net D+)
(add_net D-)
(add_net D0)
(add_net D1)
(add_net D10)
(add_net D11)
(add_net D12)
(add_net D13)
(add_net D14)
(add_net D15)
(add_net D2)
(add_net D3)
(add_net D4)
(add_net D5)
(add_net D6)
(add_net D7)
(add_net D8)
(add_net D9)
(add_net E0)
(add_net E1)
(add_net E10)
(add_net E11)
(add_net E12)
(add_net E13)
(add_net E14)
(add_net E15)
(add_net E2)
(add_net E3)
(add_net E4)
(add_net E5)
(add_net E6)
(add_net E7)
(add_net E8)
(add_net E9)
(add_net F0)
(add_net F1)
(add_net F10)
(add_net F2)
(add_net F3)
(add_net F6)
(add_net F9)
(add_net "Net-(D2-Pad2)")
(add_net "Net-(H1-Pad1)")
(add_net "Net-(IC1-Pad52)")
(add_net "Net-(IC1-Pad53)")
(add_net "Net-(IC1-Pad9)")
(add_net "Net-(R5-Pad2)")
(add_net "Net-(R6-Pad2)")
(add_net "Net-(USB1-Pad3)")
(add_net "Net-(USB1-Pad9)")
)
(net_class PWR ""
(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 +3V3)
(add_net +5V)
(add_net GND)
(add_net GNDREF)
(add_net NRST)
(add_net VBUS)
)
(module MountingHole:MountingHole_2.2mm_M2 (layer F.Cu) (tedit 56D1B4CB) (tstamp 5F0F3C66)
(at 114.4 137)
(descr "Mounting Hole 2.2mm, no annular, M2")
(tags "mounting hole 2.2mm no annular m2")
(attr virtual)
(fp_text reference REF** (at 0 -3.2) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value MountingHole_2.2mm_M2 (at 0 3.2) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_circle (center 0 0) (end 2.45 0) (layer F.CrtYd) (width 0.05))
(fp_circle (center 0 0) (end 2.2 0) (layer Cmts.User) (width 0.15))
(fp_text user %R (at 0.3 0) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 np_thru_hole circle (at 0 0) (size 2.2 2.2) (drill 2.2) (layers *.Cu *.Mask))
)
(module MountingHole:MountingHole_2.2mm_M2 (layer F.Cu) (tedit 56D1B4CB) (tstamp 5F0F4842)
(at 114.4 66)
(descr "Mounting Hole 2.2mm, no annular, M2")
(tags "mounting hole 2.2mm no annular m2")
(attr virtual)
(fp_text reference REF** (at 0 -3.2) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value MountingHole_2.2mm_M2 (at 0 3.2) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 0.3 0) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_circle (center 0 0) (end 2.2 0) (layer Cmts.User) (width 0.15))
(fp_circle (center 0 0) (end 2.45 0) (layer F.CrtYd) (width 0.05))
(pad 1 np_thru_hole circle (at 0 0) (size 2.2 2.2) (drill 2.2) (layers *.Cu *.Mask))
)
(module MountingHole:MountingHole_2.2mm_M2 (layer F.Cu) (tedit 56D1B4CB) (tstamp 5F0F3CC4)
(at 209.7 137)
(descr "Mounting Hole 2.2mm, no annular, M2")
(tags "mounting hole 2.2mm no annular m2")
(attr virtual)
(fp_text reference REF** (at 0 -3.2) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value MountingHole_2.2mm_M2 (at 0 3.2) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 0.3 0) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_circle (center 0 0) (end 2.2 0) (layer Cmts.User) (width 0.15))
(fp_circle (center 0 0) (end 2.45 0) (layer F.CrtYd) (width 0.05))
(pad 1 np_thru_hole circle (at 0 0) (size 2.2 2.2) (drill 2.2) (layers *.Cu *.Mask))
)
(module MountingHole:MountingHole_2.2mm_M2 (layer F.Cu) (tedit 56D1B4CB) (tstamp 5F0F482A)
(at 209.7 66)
(descr "Mounting Hole 2.2mm, no annular, M2")
(tags "mounting hole 2.2mm no annular m2")
(attr virtual)
(fp_text reference REF** (at 0 -3.2) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value MountingHole_2.2mm_M2 (at 0 3.2) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_circle (center 0 0) (end 2.45 0) (layer F.CrtYd) (width 0.05))
(fp_circle (center 0 0) (end 2.2 0) (layer Cmts.User) (width 0.15))
(fp_text user %R (at 0.3 0) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 np_thru_hole circle (at 0 0) (size 2.2 2.2) (drill 2.2) (layers *.Cu *.Mask))
)
(module ckeys:Tiny-Touch-Pad-3u (layer F.Cu) (tedit 5F0E8AAD) (tstamp 5F0F3636)
(at 153.1882 85.4812)
(path /5F59941F)
(fp_text reference SPACE (at -9.5482 0.4988) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify left))
)
(fp_text value Tiny-Touch-Pad (at 0 -0.5) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -10.5918 -0.1524) (end 8.9154 -0.1524) (layer Dwgs.User) (width 0.12))
(fp_line (start -10.5918 6.35) (end -10.5918 -0.1524) (layer Dwgs.User) (width 0.12))
(fp_line (start 8.9154 6.35) (end -10.5918 6.35) (layer Dwgs.User) (width 0.12))
(fp_line (start 8.9154 -0.1524) (end 8.9154 6.35) (layer Dwgs.User) (width 0.12))
(pad 1 smd roundrect (at -0.8382 3.0988) (size 17 4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.1)
(net 78 F2))
)
(module ckeys:Tiny-Touch-Pad-2u (layer F.Cu) (tedit 5F0E87E2) (tstamp 5F0F358E)
(at 201.9328 76.595)
(path /5F591A8F)
(fp_text reference PAD13 (at -5.0546 0.635) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)) (justify left))
)
(fp_text value Tiny-Touch-Pad (at 0 -0.5) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -7.3152 -0.0762) (end 5.6896 -0.0762) (layer Dwgs.User) (width 0.12))
(fp_line (start -7.3152 6.4262) (end -7.3152 -0.0762) (layer Dwgs.User) (width 0.12))
(fp_line (start 5.6896 6.4262) (end -7.3152 6.4262) (layer Dwgs.User) (width 0.12))
(fp_line (start 5.6896 -0.0762) (end 5.6896 6.4262) (layer Dwgs.User) (width 0.12))
(pad 1 smd roundrect (at -0.8128 3.175) (size 10.5 4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.1)
(net 81 C1))
)
(module ckeys:Tiny-Touch-Pad (layer F.Cu) (tedit 5F0D451A) (tstamp 5F0F364E)
(at 120.4396 76.4018)
(path /5F559231)
(fp_text reference F1 (at -2.8448 0.8382) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify left))
)
(fp_text value Tiny-Touch-Pad (at 0 -0.5) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -3.8608 6.6294) (end -3.8608 0.127) (layer Dwgs.User) (width 0.12))
(fp_line (start 2.6416 6.6294) (end -3.8608 6.6294) (layer Dwgs.User) (width 0.12))
(fp_line (start 2.6416 0.127) (end 2.6416 6.6294) (layer Dwgs.User) (width 0.12))
(fp_line (start -3.8608 0.127) (end 2.6416 0.127) (layer Dwgs.User) (width 0.12))
(pad 1 smd roundrect (at -0.6096 3.3782) (size 4 4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.1)
(net 94 E2))
)
(module ckeys:Tiny-Touch-Pad-2.25u (layer F.Cu) (tedit 5F0E8A98) (tstamp 5F0F340E)
(at 201.1228 94.2658)
(path /5F5C924B)
(fp_text reference DELETE (at -7.1228 0.5342) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify left))
)
(fp_text value Tiny-Touch-Pad (at 0 -0.5) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -8.128 -0.127) (end 6.5024 -0.127) (layer Dwgs.User) (width 0.12))
(fp_line (start -8.128 6.3754) (end -8.128 -0.127) (layer Dwgs.User) (width 0.12))
(fp_line (start 6.5024 6.3754) (end -8.128 6.3754) (layer Dwgs.User) (width 0.12))
(fp_line (start 6.5024 -0.127) (end 6.5024 6.3754) (layer Dwgs.User) (width 0.12))
(pad 1 smd roundrect (at -0.8128 3.1242) (size 12.125 4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.1)
(net 67 C5))
)
(module ckeys:Tiny-Touch-Pad-2.25u (layer F.Cu) (tedit 5F0E8A98) (tstamp 5F0F35BE)
(at 171.8628 94.2658)
(path /5F59945B)
(fp_text reference ENTER (at -7.1628 0.5342) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify left))
)
(fp_text value Tiny-Touch-Pad (at 0 -0.5) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -8.128 -0.127) (end 6.5024 -0.127) (layer Dwgs.User) (width 0.12))
(fp_line (start -8.128 6.3754) (end -8.128 -0.127) (layer Dwgs.User) (width 0.12))
(fp_line (start 6.5024 6.3754) (end -8.128 6.3754) (layer Dwgs.User) (width 0.12))
(fp_line (start 6.5024 -0.127) (end 6.5024 6.3754) (layer Dwgs.User) (width 0.12))
(pad 1 smd roundrect (at -0.8128 3.1242) (size 12.125 4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.1)
(net 69 A7))
)
(module ckeys:Tiny-Touch-Pad-1.5u (layer F.Cu) (tedit 5F0E894B) (tstamp 5F0F3576)
(at 145.109 94.2304)
(path /5F59944F)
(fp_text reference CAPS (at -4.809 0.5696) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify left))
)
(fp_text value Tiny-Touch-Pad (at 0 -0.5) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -5.7658 -0.1016) (end 3.9878 -0.1016) (layer Dwgs.User) (width 0.12))
(fp_line (start -5.7658 6.4008) (end -5.7658 -0.1016) (layer Dwgs.User) (width 0.12))
(fp_line (start 3.9878 6.4008) (end -5.7658 6.4008) (layer Dwgs.User) (width 0.12))
(fp_line (start 3.9878 -0.1016) (end 3.9878 6.4008) (layer Dwgs.User) (width 0.12))
(pad 1 smd roundrect (at -0.889 3.1496) (size 7.25 4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.1)
(net 71 A5))
)
(module ckeys:Tiny-Touch-Pad-1.5u (layer F.Cu) (tedit 5F0E894B) (tstamp 5F0F355E)
(at 135.349 94.2304)
(path /5F599449)
(fp_text reference TAB (at -4.849 0.5696) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify left))
)
(fp_text value Tiny-Touch-Pad (at 0 -0.5) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -5.7658 -0.1016) (end 3.9878 -0.1016) (layer Dwgs.User) (width 0.12))
(fp_line (start -5.7658 6.4008) (end -5.7658 -0.1016) (layer Dwgs.User) (width 0.12))
(fp_line (start 3.9878 6.4008) (end -5.7658 6.4008) (layer Dwgs.User) (width 0.12))
(fp_line (start 3.9878 -0.1016) (end 3.9878 6.4008) (layer Dwgs.User) (width 0.12))
(pad 1 smd roundrect (at -0.889 3.1496) (size 7.25 4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.1)
(net 72 A4))
)
(module ckeys:Tiny-Touch-Pad-1.75u (layer F.Cu) (tedit 5F0E87C7) (tstamp 5F0F352E)
(at 202.565 85.4912)
(path /5F599437)
(fp_text reference LEFT (at -5.365 0.5088) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify left))
)
(fp_text value Tiny-Touch-Pad (at 0 -0.5) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -6.3246 -0.1524) (end 5.0546 -0.1524) (layer Dwgs.User) (width 0.12))
(fp_line (start -6.3246 6.35) (end -6.3246 -0.1524) (layer Dwgs.User) (width 0.12))
(fp_line (start 5.0546 6.35) (end -6.3246 6.35) (layer Dwgs.User) (width 0.12))
(fp_line (start 5.0546 -0.1524) (end 5.0546 6.35) (layer Dwgs.User) (width 0.12))
(pad 1 smd roundrect (at -0.635 3.0988) (size 8.875 4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.1)
(net 74 A2))
)
(module ckeys:Tiny-Touch-Pad-2u (layer F.Cu) (tedit 5F0E87E2) (tstamp 5F0F3546)
(at 123.8928 94.205)
(path /5F599443)
(fp_text reference ESC (at -6.3528 0.585) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify left))
)
(fp_text value Tiny-Touch-Pad (at 0 -0.5) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -7.3152 -0.0762) (end 5.6896 -0.0762) (layer Dwgs.User) (width 0.12))
(fp_line (start -7.3152 6.4262) (end -7.3152 -0.0762) (layer Dwgs.User) (width 0.12))
(fp_line (start 5.6896 6.4262) (end -7.3152 6.4262) (layer Dwgs.User) (width 0.12))
(fp_line (start 5.6896 -0.0762) (end 5.6896 6.4262) (layer Dwgs.User) (width 0.12))
(pad 1 smd roundrect (at -0.8128 3.175) (size 10.5 4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.1)
(net 73 A3))
)
(module Button_Switch_SMD:SW_Push_1P1T_NO_6x6mm_H9.5mm (layer B.Cu) (tedit 5CA1CA7F) (tstamp 5F0D95B3)
(at 162.052 90.932 180)
(descr "tactile push button, 6x6mm e.g. PTS645xx series, height=9.5mm")
(tags "tact sw push 6mm smd")
(path /5F2BF5BB)
(attr smd)
(fp_text reference SW1 (at 0 4.05) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value SW_Push (at 0 -4.15) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_circle (center 0 0) (end 1.75 0.05) (layer B.Fab) (width 0.1))
(fp_line (start -3.23 -3.23) (end 3.23 -3.23) (layer B.SilkS) (width 0.12))
(fp_line (start -3.23 1.3) (end -3.23 -1.3) (layer B.SilkS) (width 0.12))
(fp_line (start -3.23 3.23) (end 3.23 3.23) (layer B.SilkS) (width 0.12))
(fp_line (start 3.23 1.3) (end 3.23 -1.3) (layer B.SilkS) (width 0.12))
(fp_line (start -3.23 3.2) (end -3.23 3.23) (layer B.SilkS) (width 0.12))
(fp_line (start -3.23 -3.23) (end -3.23 -3.2) (layer B.SilkS) (width 0.12))
(fp_line (start 3.23 -3.23) (end 3.23 -3.2) (layer B.SilkS) (width 0.12))
(fp_line (start 3.23 3.23) (end 3.23 3.2) (layer B.SilkS) (width 0.12))
(fp_line (start -5 3.25) (end 5 3.25) (layer B.CrtYd) (width 0.05))
(fp_line (start -5 -3.25) (end 5 -3.25) (layer B.CrtYd) (width 0.05))
(fp_line (start -5 3.25) (end -5 -3.25) (layer B.CrtYd) (width 0.05))
(fp_line (start 5 -3.25) (end 5 3.25) (layer B.CrtYd) (width 0.05))
(fp_line (start 3 3) (end -3 3) (layer B.Fab) (width 0.1))
(fp_line (start 3 -3) (end 3 3) (layer B.Fab) (width 0.1))
(fp_line (start -3 -3) (end 3 -3) (layer B.Fab) (width 0.1))
(fp_line (start -3 3) (end -3 -3) (layer B.Fab) (width 0.1))
(fp_text user %R (at 0 4.05) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(pad 2 smd rect (at 3.975 -2.25 180) (size 1.55 1.3) (layers B.Cu B.Paste B.Mask)
(net 6 "Net-(D2-Pad2)"))
(pad 1 smd rect (at 3.975 2.25 180) (size 1.55 1.3) (layers B.Cu B.Paste B.Mask)
(net 1 +3V3))
(pad 1 smd rect (at -3.975 2.25 180) (size 1.55 1.3) (layers B.Cu B.Paste B.Mask)
(net 1 +3V3))
(pad 2 smd rect (at -3.975 -2.25 180) (size 1.55 1.3) (layers B.Cu B.Paste B.Mask)
(net 6 "Net-(D2-Pad2)"))
(model ${KISYS3DMOD}/Button_Switch_SMD.3dshapes/SW_PUSH_6mm_H9.5mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Diode_SMD:D_SOD-323_HandSoldering (layer B.Cu) (tedit 58641869) (tstamp 5F0D92BB)
(at 179.324 78.74 180)
(descr SOD-323)
(tags SOD-323)
(path /5F2B4382)
(attr smd)
(fp_text reference D2 (at 0 -1.778) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value 1N4148 (at 0.1 -1.9) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start -1.9 0.85) (end 1.25 0.85) (layer B.SilkS) (width 0.12))
(fp_line (start -1.9 -0.85) (end 1.25 -0.85) (layer B.SilkS) (width 0.12))
(fp_line (start -2 0.95) (end -2 -0.95) (layer B.CrtYd) (width 0.05))
(fp_line (start -2 -0.95) (end 2 -0.95) (layer B.CrtYd) (width 0.05))
(fp_line (start 2 0.95) (end 2 -0.95) (layer B.CrtYd) (width 0.05))
(fp_line (start -2 0.95) (end 2 0.95) (layer B.CrtYd) (width 0.05))
(fp_line (start -0.9 0.7) (end 0.9 0.7) (layer B.Fab) (width 0.1))
(fp_line (start 0.9 0.7) (end 0.9 -0.7) (layer B.Fab) (width 0.1))
(fp_line (start 0.9 -0.7) (end -0.9 -0.7) (layer B.Fab) (width 0.1))
(fp_line (start -0.9 -0.7) (end -0.9 0.7) (layer B.Fab) (width 0.1))
(fp_line (start -0.3 0.35) (end -0.3 -0.35) (layer B.Fab) (width 0.1))
(fp_line (start -0.3 0) (end -0.5 0) (layer B.Fab) (width 0.1))
(fp_line (start -0.3 0) (end 0.2 0.35) (layer B.Fab) (width 0.1))
(fp_line (start 0.2 0.35) (end 0.2 -0.35) (layer B.Fab) (width 0.1))
(fp_line (start 0.2 -0.35) (end -0.3 0) (layer B.Fab) (width 0.1))
(fp_line (start 0.2 0) (end 0.45 0) (layer B.Fab) (width 0.1))
(fp_line (start -1.9 0.85) (end -1.9 -0.85) (layer B.SilkS) (width 0.12))
(fp_text user %R (at 0 -1.778) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(pad 2 smd rect (at 1.25 0 180) (size 1 1) (layers B.Cu B.Paste B.Mask)
(net 6 "Net-(D2-Pad2)"))
(pad 1 smd rect (at -1.25 0 180) (size 1 1) (layers B.Cu B.Paste B.Mask)
(net 4 BOOTO))
(model ${KISYS3DMOD}/Diode_SMD.3dshapes/D_SOD-323.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Type-C:HRO-TYPE-C-31-M-12-HandSoldering (layer B.Cu) (tedit 5C42C6AC) (tstamp 5F0D95F8)
(at 162.052 63.5)
(path /5F1DF8D9)
(attr smd)
(fp_text reference USB1 (at 0 10.2) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value HRO-TYPE-C-31-M-12 (at 0 -1.15) (layer Dwgs.User)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -4.47 0) (end 4.47 0) (layer Dwgs.User) (width 0.15))
(fp_line (start -4.47 0) (end -4.47 7.3) (layer Dwgs.User) (width 0.15))
(fp_line (start 4.47 0) (end 4.47 7.3) (layer Dwgs.User) (width 0.15))
(fp_line (start -4.47 7.3) (end 4.47 7.3) (layer Dwgs.User) (width 0.15))
(pad 12 smd rect (at 3.225 8.195) (size 0.6 2.45) (layers B.Cu B.Paste B.Mask)
(net 2 GND))
(pad 1 smd rect (at -3.225 8.195) (size 0.6 2.45) (layers B.Cu B.Paste B.Mask)
(net 2 GND))
(pad 11 smd rect (at 2.45 8.195) (size 0.6 2.45) (layers B.Cu B.Paste B.Mask)
(net 95 VBUS))
(pad 2 smd rect (at -2.45 8.195) (size 0.6 2.45) (layers B.Cu B.Paste B.Mask)
(net 95 VBUS))
(pad 3 smd rect (at -1.75 8.195) (size 0.3 2.45) (layers B.Cu B.Paste B.Mask)
(net 99 "Net-(USB1-Pad3)"))
(pad 10 smd rect (at 1.75 8.195) (size 0.3 2.45) (layers B.Cu B.Paste B.Mask)
(net 98 "Net-(R6-Pad2)"))
(pad 4 smd rect (at -1.25 8.195) (size 0.3 2.45) (layers B.Cu B.Paste B.Mask)
(net 97 "Net-(R5-Pad2)"))
(pad 9 smd rect (at 1.25 8.195) (size 0.3 2.45) (layers B.Cu B.Paste B.Mask)
(net 100 "Net-(USB1-Pad9)"))
(pad 5 smd rect (at -0.75 8.195) (size 0.3 2.45) (layers B.Cu B.Paste B.Mask)
(net 33 D-))
(pad 8 smd rect (at 0.75 8.195) (size 0.3 2.45) (layers B.Cu B.Paste B.Mask)
(net 32 D+))
(pad 7 smd rect (at 0.25 8.195) (size 0.3 2.45) (layers B.Cu B.Paste B.Mask)
(net 33 D-))
(pad 6 smd rect (at -0.25 8.195) (size 0.3 2.45) (layers B.Cu B.Paste B.Mask)
(net 32 D+))
(pad "" np_thru_hole circle (at 2.89 6.25) (size 0.65 0.65) (drill 0.65) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at -2.89 6.25) (size 0.65 0.65) (drill 0.65) (layers *.Cu *.Mask))
(pad 13 thru_hole oval (at -4.32 6.78) (size 1 2.1) (drill oval 0.6 1.7) (layers *.Cu F.Mask)
(net 96 GNDREF))
(pad 13 thru_hole oval (at 4.32 6.78) (size 1 2.1) (drill oval 0.6 1.7) (layers *.Cu F.Mask)
(net 96 GNDREF))
(pad 13 thru_hole oval (at -4.32 2.6) (size 1 1.6) (drill oval 0.6 1.2) (layers *.Cu F.Mask)
(net 96 GNDREF))
(pad 13 thru_hole oval (at 4.32 2.6) (size 1 1.6) (drill oval 0.6 1.2) (layers *.Cu F.Mask)
(net 96 GNDREF))
)
(module Package_TO_SOT_SMD:SOT-23-6 (layer B.Cu) (tedit 5A02FF57) (tstamp 5F0D95DE)
(at 158.92 78.552)
(descr "6-pin SOT-23 package")
(tags SOT-23-6)
(path /5F1EB196)
(attr smd)
(fp_text reference U2 (at 0 2.9) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value SRV05-4 (at 0 -2.9) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start 0.9 1.55) (end 0.9 -1.55) (layer B.Fab) (width 0.1))
(fp_line (start 0.9 -1.55) (end -0.9 -1.55) (layer B.Fab) (width 0.1))
(fp_line (start -0.9 0.9) (end -0.9 -1.55) (layer B.Fab) (width 0.1))
(fp_line (start 0.9 1.55) (end -0.25 1.55) (layer B.Fab) (width 0.1))
(fp_line (start -0.9 0.9) (end -0.25 1.55) (layer B.Fab) (width 0.1))
(fp_line (start -1.9 1.8) (end -1.9 -1.8) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.9 -1.8) (end 1.9 -1.8) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.9 -1.8) (end 1.9 1.8) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.9 1.8) (end -1.9 1.8) (layer B.CrtYd) (width 0.05))
(fp_line (start 0.9 1.61) (end -1.55 1.61) (layer B.SilkS) (width 0.12))
(fp_line (start -0.9 -1.61) (end 0.9 -1.61) (layer B.SilkS) (width 0.12))
(fp_text user %R (at 0 0 -90) (layer B.Fab)
(effects (font (size 0.5 0.5) (thickness 0.075)) (justify mirror))
)
(pad 5 smd rect (at 1.1 0) (size 1.06 0.65) (layers B.Cu B.Paste B.Mask)
(net 95 VBUS))
(pad 6 smd rect (at 1.1 0.95) (size 1.06 0.65) (layers B.Cu B.Paste B.Mask)
(net 32 D+))
(pad 4 smd rect (at 1.1 -0.95) (size 1.06 0.65) (layers B.Cu B.Paste B.Mask)
(net 33 D-))
(pad 3 smd rect (at -1.1 -0.95) (size 1.06 0.65) (layers B.Cu B.Paste B.Mask)
(net 32 D+))
(pad 2 smd rect (at -1.1 0) (size 1.06 0.65) (layers B.Cu B.Paste B.Mask)
(net 2 GND))
(pad 1 smd rect (at -1.1 0.95) (size 1.06 0.65) (layers B.Cu B.Paste B.Mask)
(net 33 D-))
(model ${KISYS3DMOD}/Package_TO_SOT_SMD.3dshapes/SOT-23-6.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Package_TO_SOT_SMD:SOT-23 (layer B.Cu) (tedit 5A02FF57) (tstamp 5F0D95C8)
(at 172.212 78.486)
(descr "SOT-23, Standard")
(tags SOT-23)
(path /5F1FAE10)
(attr smd)
(fp_text reference U1 (at 0 2.5) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value MCP1700-3002E_SOT23 (at 0 -2.5) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start 0.76 -1.58) (end -0.7 -1.58) (layer B.SilkS) (width 0.12))
(fp_line (start 0.76 1.58) (end -1.4 1.58) (layer B.SilkS) (width 0.12))
(fp_line (start -1.7 -1.75) (end -1.7 1.75) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.7 -1.75) (end -1.7 -1.75) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.7 1.75) (end 1.7 -1.75) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.7 1.75) (end 1.7 1.75) (layer B.CrtYd) (width 0.05))
(fp_line (start 0.76 1.58) (end 0.76 0.65) (layer B.SilkS) (width 0.12))
(fp_line (start 0.76 -1.58) (end 0.76 -0.65) (layer B.SilkS) (width 0.12))
(fp_line (start -0.7 -1.52) (end 0.7 -1.52) (layer B.Fab) (width 0.1))
(fp_line (start 0.7 1.52) (end 0.7 -1.52) (layer B.Fab) (width 0.1))
(fp_line (start -0.7 0.95) (end -0.15 1.52) (layer B.Fab) (width 0.1))
(fp_line (start -0.15 1.52) (end 0.7 1.52) (layer B.Fab) (width 0.1))
(fp_line (start -0.7 0.95) (end -0.7 -1.5) (layer B.Fab) (width 0.1))
(fp_text user %R (at 0 0 -90) (layer B.Fab)
(effects (font (size 0.5 0.5) (thickness 0.075)) (justify mirror))
)
(pad 3 smd rect (at 1 0) (size 0.9 0.8) (layers B.Cu B.Paste B.Mask)
(net 3 +5V))
(pad 2 smd rect (at -1 -0.95) (size 0.9 0.8) (layers B.Cu B.Paste B.Mask)
(net 1 +3V3))
(pad 1 smd rect (at -1 0.95) (size 0.9 0.8) (layers B.Cu B.Paste B.Mask)
(net 2 GND))
(model ${KISYS3DMOD}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder (layer B.Cu) (tedit 5B301BBD) (tstamp 5F0D9594)
(at 170.829 72.644)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(path /5F2EAECE)
(attr smd)
(fp_text reference R6 (at 0 1.43) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value 5k1 (at 0 -1.43) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text user %R (at 0 0) (layer B.Fab)
(effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror))
)
(fp_line (start 1.65 -0.73) (end -1.65 -0.73) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.65 0.73) (end 1.65 -0.73) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.65 0.73) (end 1.65 0.73) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.65 -0.73) (end -1.65 0.73) (layer B.CrtYd) (width 0.05))
(fp_line (start -0.171267 -0.51) (end 0.171267 -0.51) (layer B.SilkS) (width 0.12))
(fp_line (start -0.171267 0.51) (end 0.171267 0.51) (layer B.SilkS) (width 0.12))
(fp_line (start 0.8 -0.4) (end -0.8 -0.4) (layer B.Fab) (width 0.1))
(fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer B.Fab) (width 0.1))
(fp_line (start -0.8 0.4) (end 0.8 0.4) (layer B.Fab) (width 0.1))
(fp_line (start -0.8 -0.4) (end -0.8 0.4) (layer B.Fab) (width 0.1))
(pad 2 smd roundrect (at 0.875 0) (size 1.05 0.95) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 98 "Net-(R6-Pad2)"))
(pad 1 smd roundrect (at -0.875 0) (size 1.05 0.95) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 2 GND))
(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 Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder (layer B.Cu) (tedit 5B301BBD) (tstamp 5F0D9583)
(at 175.401 72.644)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(path /5F2F10AD)
(attr smd)
(fp_text reference R5 (at 0 1.43) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value 5k1 (at 0 -1.43) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text user %R (at 0 0) (layer B.Fab)
(effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror))
)
(fp_line (start 1.65 -0.73) (end -1.65 -0.73) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.65 0.73) (end 1.65 -0.73) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.65 0.73) (end 1.65 0.73) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.65 -0.73) (end -1.65 0.73) (layer B.CrtYd) (width 0.05))
(fp_line (start -0.171267 -0.51) (end 0.171267 -0.51) (layer B.SilkS) (width 0.12))
(fp_line (start -0.171267 0.51) (end 0.171267 0.51) (layer B.SilkS) (width 0.12))
(fp_line (start 0.8 -0.4) (end -0.8 -0.4) (layer B.Fab) (width 0.1))
(fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer B.Fab) (width 0.1))
(fp_line (start -0.8 0.4) (end 0.8 0.4) (layer B.Fab) (width 0.1))
(fp_line (start -0.8 -0.4) (end -0.8 0.4) (layer B.Fab) (width 0.1))
(pad 2 smd roundrect (at 0.875 0) (size 1.05 0.95) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 97 "Net-(R5-Pad2)"))
(pad 1 smd roundrect (at -0.875 0) (size 1.05 0.95) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 2 GND))
(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 Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder (layer B.Cu) (tedit 5B301BBD) (tstamp 5F0D9572)
(at 179.973 72.644)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(path /5F2CB241)
(attr smd)
(fp_text reference R4 (at 0 1.43) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value 100K (at 0 -1.43) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text user %R (at 0 0) (layer B.Fab)
(effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror))
)
(fp_line (start 1.65 -0.73) (end -1.65 -0.73) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.65 0.73) (end 1.65 -0.73) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.65 0.73) (end 1.65 0.73) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.65 -0.73) (end -1.65 0.73) (layer B.CrtYd) (width 0.05))
(fp_line (start -0.171267 -0.51) (end 0.171267 -0.51) (layer B.SilkS) (width 0.12))
(fp_line (start -0.171267 0.51) (end 0.171267 0.51) (layer B.SilkS) (width 0.12))
(fp_line (start 0.8 -0.4) (end -0.8 -0.4) (layer B.Fab) (width 0.1))
(fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer B.Fab) (width 0.1))
(fp_line (start -0.8 0.4) (end 0.8 0.4) (layer B.Fab) (width 0.1))
(fp_line (start -0.8 -0.4) (end -0.8 0.4) (layer B.Fab) (width 0.1))
(pad 2 smd roundrect (at 0.875 0) (size 1.05 0.95) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 2 GND))
(pad 1 smd roundrect (at -0.875 0) (size 1.05 0.95) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 4 BOOTO))
(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 Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder (layer B.Cu) (tedit 5B301BBD) (tstamp 5F0D9561)
(at 184.545 72.644)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(path /5F2DF3E1)
(attr smd)
(fp_text reference R3 (at 0 1.43) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value 1M (at 0 -1.43) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text user %R (at 0 0) (layer B.Fab)
(effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror))
)
(fp_line (start 1.65 -0.73) (end -1.65 -0.73) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.65 0.73) (end 1.65 -0.73) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.65 0.73) (end 1.65 0.73) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.65 -0.73) (end -1.65 0.73) (layer B.CrtYd) (width 0.05))
(fp_line (start -0.171267 -0.51) (end 0.171267 -0.51) (layer B.SilkS) (width 0.12))
(fp_line (start -0.171267 0.51) (end 0.171267 0.51) (layer B.SilkS) (width 0.12))
(fp_line (start 0.8 -0.4) (end -0.8 -0.4) (layer B.Fab) (width 0.1))
(fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer B.Fab) (width 0.1))
(fp_line (start -0.8 0.4) (end 0.8 0.4) (layer B.Fab) (width 0.1))
(fp_line (start -0.8 -0.4) (end -0.8 0.4) (layer B.Fab) (width 0.1))
(pad 2 smd roundrect (at 0.875 0) (size 1.05 0.95) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 96 GNDREF))
(pad 1 smd roundrect (at -0.875 0) (size 1.05 0.95) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 2 GND))
(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 Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder (layer B.Cu) (tedit 5B301BBD) (tstamp 5F0D9550)
(at 189.23 72.644)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(path /5F27AD0D)
(attr smd)
(fp_text reference R2 (at 0 1.43) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value 100K (at 0 -1.43) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text user %R (at 0 0) (layer B.Fab)
(effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror))
)
(fp_line (start 1.65 -0.73) (end -1.65 -0.73) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.65 0.73) (end 1.65 -0.73) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.65 0.73) (end 1.65 0.73) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.65 -0.73) (end -1.65 0.73) (layer B.CrtYd) (width 0.05))
(fp_line (start -0.171267 -0.51) (end 0.171267 -0.51) (layer B.SilkS) (width 0.12))
(fp_line (start -0.171267 0.51) (end 0.171267 0.51) (layer B.SilkS) (width 0.12))
(fp_line (start 0.8 -0.4) (end -0.8 -0.4) (layer B.Fab) (width 0.1))
(fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer B.Fab) (width 0.1))
(fp_line (start -0.8 0.4) (end 0.8 0.4) (layer B.Fab) (width 0.1))
(fp_line (start -0.8 -0.4) (end -0.8 0.4) (layer B.Fab) (width 0.1))
(pad 2 smd roundrect (at 0.875 0) (size 1.05 0.95) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 2 GND))
(pad 1 smd roundrect (at -0.875 0) (size 1.05 0.95) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 1 +3V3))
(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 Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder (layer B.Cu) (tedit 5B301BBD) (tstamp 5F0D953F)
(at 193.802 72.644)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(path /5F27DCF3)
(attr smd)
(fp_text reference R1 (at 0 1.43) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value 100K (at 0 -1.43) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text user %R (at 0 0) (layer B.Fab)
(effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror))
)
(fp_line (start 1.65 -0.73) (end -1.65 -0.73) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.65 0.73) (end 1.65 -0.73) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.65 0.73) (end 1.65 0.73) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.65 -0.73) (end -1.65 0.73) (layer B.CrtYd) (width 0.05))
(fp_line (start -0.171267 -0.51) (end 0.171267 -0.51) (layer B.SilkS) (width 0.12))
(fp_line (start -0.171267 0.51) (end 0.171267 0.51) (layer B.SilkS) (width 0.12))
(fp_line (start 0.8 -0.4) (end -0.8 -0.4) (layer B.Fab) (width 0.1))
(fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer B.Fab) (width 0.1))
(fp_line (start -0.8 0.4) (end 0.8 0.4) (layer B.Fab) (width 0.1))
(fp_line (start -0.8 -0.4) (end -0.8 0.4) (layer B.Fab) (width 0.1))
(pad 2 smd roundrect (at 0.875 0) (size 1.05 0.95) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 3 +5V))
(pad 1 smd roundrect (at -0.875 0) (size 1.05 0.95) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25)
(net 2 GND))
(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 ckeys:SOT65P210X100-3N (layer B.Cu) (tedit 0) (tstamp 5F12893F)
(at 165.1 78.232)
(descr UMT3)
(tags Transistor)
(path /5F395F7E)
(attr smd)
(fp_text reference Q1 (at 0 2.286) (layer B.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.254)) (justify mirror))
)
(fp_text value DTC123J (at 0 0) (layer B.SilkS) hide
(effects (font (size 1.27 1.27) (thickness 0.254)) (justify mirror))
)
(fp_line (start -1.475 1.1) (end -0.425 1.1) (layer B.SilkS) (width 0.2))
(fp_line (start -0.075 -1) (end -0.075 1) (layer B.SilkS) (width 0.2))
(fp_line (start 0.075 -1) (end -0.075 -1) (layer B.SilkS) (width 0.2))
(fp_line (start 0.075 1) (end 0.075 -1) (layer B.SilkS) (width 0.2))
(fp_line (start -0.075 1) (end 0.075 1) (layer B.SilkS) (width 0.2))