-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSYZYGY-PMOD4.kicad_pcb
10750 lines (10704 loc) · 517 KB
/
SYZYGY-PMOD4.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20211014) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(title_block
(title "SYZYGY-PMOD4")
(date "2021-01-17")
(rev "1")
(comment 1 "License: CC-BY-SA 4.0")
(comment 2 "Author: Tobias Müller, twam.info")
)
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
)
(setup
(pad_to_mask_clearance 0)
(solder_mask_min_width 0.12)
(grid_origin 150 100)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "Gerber/")
)
)
(net 0 "")
(net 1 "GND")
(net 2 "/R_GA")
(net 3 "/PMOD3_IO10")
(net 4 "/PMOD3_IO4")
(net 5 "/PMOD3_IO9")
(net 6 "/PMOD3_IO3")
(net 7 "/PMOD3_IO8")
(net 8 "/PMOD3_IO2")
(net 9 "/PMOD3_IO7")
(net 10 "/PMOD3_IO1")
(net 11 "/PMOD1_IO10")
(net 12 "/PMOD1_IO4")
(net 13 "/PMOD1_IO9")
(net 14 "/PMOD1_IO3")
(net 15 "/PMOD1_IO8")
(net 16 "/PMOD1_IO2")
(net 17 "/PMOD1_IO7")
(net 18 "/PMOD1_IO1")
(net 19 "/PMOD2_IO4")
(net 20 "/PMOD2_IO10")
(net 21 "/PMOD2_IO3")
(net 22 "/PMOD2_IO9")
(net 23 "/PMOD2_IO2")
(net 24 "/PMOD2_IO8")
(net 25 "/PMOD2_IO1")
(net 26 "/PMOD2_IO7")
(net 27 "/PMOD4_IO10")
(net 28 "/PMOD4_IO4")
(net 29 "/PMOD4_IO9")
(net 30 "/PMOD4_IO3")
(net 31 "/PMOD4_IO8")
(net 32 "/PMOD4_IO2")
(net 33 "/PMOD4_IO7")
(net 34 "/PMOD4_IO1")
(net 35 "+3V3")
(net 36 "Net-(U1-Pad12)")
(net 37 "Net-(U1-Pad11)")
(net 38 "Net-(U1-Pad10)")
(net 39 "Net-(U1-Pad6)")
(net 40 "Net-(U1-Pad5)")
(net 41 "Net-(U1-Pad3)")
(net 42 "Net-(U1-Pad2)")
(net 43 "Net-(J5-Pad2)")
(net 44 "Net-(J5-Pad37)")
(net 45 "Net-(J5-Pad38)")
(net 46 "Net-(J5-Pad39)")
(net 47 "/~{RESET}")
(net 48 "/SDA_MOSI")
(net 49 "/SCL_SCK")
(net 50 "/MISO")
(net 51 "Net-(D9-Pad2)")
(net 52 "/P1_4")
(net 53 "/P1_3")
(net 54 "/P1_2")
(net 55 "/P1_1")
(net 56 "/P1_7")
(net 57 "/P1_8")
(net 58 "/P1_9")
(net 59 "/P1_10")
(net 60 "/P2_4")
(net 61 "/P2_3")
(net 62 "/P2_2")
(net 63 "/P2_1")
(net 64 "/P2_7")
(net 65 "/P2_8")
(net 66 "/P2_9")
(net 67 "/P2_10")
(net 68 "/P3_4")
(net 69 "/P3_3")
(net 70 "/P3_2")
(net 71 "/P3_1")
(net 72 "/P3_7")
(net 73 "/P3_8")
(net 74 "/P3_9")
(net 75 "/P3_10")
(net 76 "/P4_4")
(net 77 "/P4_3")
(net 78 "/P4_2")
(net 79 "/P4_1")
(net 80 "/P4_7")
(net 81 "/P4_8")
(net 82 "/P4_9")
(net 83 "/P4_10")
(footprint "MountingHole:MountingHole_3.2mm_M3" locked (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 00000000-0000-0000-0000-000060040e90)
(at 133 66)
(descr "Mounting Hole 3.2mm, no annular, M3")
(tags "mounting hole 3.2mm no annular m3")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "REF**" (at 0 -4.2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d05faa1f-5f69-41bf-86d3-2cd224432e1b)
)
(fp_text value "MountingHole_3.2mm_M3" (at 0 4.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2f424da3-8fae-4941-bc6d-20044787372f)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 41485de5-6ed3-4c83-b69e-ef83ae18093c)
)
(fp_circle (center 0 0) (end 3.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 3bca658b-a598-4669-a7cb-3f9b5f47bb5a))
(fp_circle (center 0 0) (end 3.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp bef2abc2-bf3e-4a72-ad03-f8da3cd893cb))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.2 3.2) (drill 3.2) (layers *.Cu *.Mask) (tstamp b7aa0362-7c9e-4a42-b191-ab15a38bf3c5))
)
(footprint "MountingHole:MountingHole_3.2mm_M3" locked (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 00000000-0000-0000-0000-000060040ec9)
(at 167 66)
(descr "Mounting Hole 3.2mm, no annular, M3")
(tags "mounting hole 3.2mm no annular m3")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "REF**" (at 0 -4.2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e65bab67-68b7-4b22-a939-6f2c05164d2a)
)
(fp_text value "MountingHole_3.2mm_M3" (at 0 4.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bc3b3f93-69e0-44a5-b919-319b81d13095)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8aeae536-fd36-430e-be47-1a856eced2fc)
)
(fp_circle (center 0 0) (end 3.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp eb473bfd-fc2d-4cf0-8714-6b7dd95b0a03))
(fp_circle (center 0 0) (end 3.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp fb35e3b1-aff6-41a7-9cf0-52694b95edeb))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.2 3.2) (drill 3.2) (layers *.Cu *.Mask) (tstamp fa20e708-ec85-4e0b-8402-f74a2724f920))
)
(footprint "MountingHole:MountingHole_3.2mm_M3" locked (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 00000000-0000-0000-0000-000060040f02)
(at 132.5 76)
(descr "Mounting Hole 3.2mm, no annular, M3")
(tags "mounting hole 3.2mm no annular m3")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "REF**" (at 0 -4.2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4fd9bc4f-0ae3-42d4-a1b4-9fb1b2a0a7fd)
)
(fp_text value "MountingHole_3.2mm_M3" (at 0 4.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 86e98417-f5e4-48ba-8147-ef66cc03dde6)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 02f8904b-a7b2-49dd-b392-764e7e29fb51)
)
(fp_circle (center 0 0) (end 3.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp e70d061b-28f0-4421-ad15-0598604086e8))
(fp_circle (center 0 0) (end 3.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 8bd46048-cab7-4adf-af9a-bc2710c1894c))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.2 3.2) (drill 3.2) (layers *.Cu *.Mask) (tstamp 992a2b00-5e28-4edd-88b5-994891512d8d))
)
(footprint "MountingHole:MountingHole_3.2mm_M3" locked (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 00000000-0000-0000-0000-000060040f3b)
(at 167.5 76)
(descr "Mounting Hole 3.2mm, no annular, M3")
(tags "mounting hole 3.2mm no annular m3")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "REF**" (at 0 -4.2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp df3dc9a2-ba40-4c3a-87fe-61cc8e23d71b)
)
(fp_text value "MountingHole_3.2mm_M3" (at 0 4.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e87a6f80-914f-4f62-9c9f-9ba62a88ee3d)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b0b4c3cb-e7ea-49c0-8162-be3bbab3e4ec)
)
(fp_circle (center 0 0) (end 3.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp b794d099-f823-4d35-9755-ca1c45247ee9))
(fp_circle (center 0 0) (end 3.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp de370984-7922-4327-a0ba-7cd613995df4))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.2 3.2) (drill 3.2) (layers *.Cu *.Mask) (tstamp 99e6b8eb-b08e-4d42-84dd-8b7f6765b7b7))
)
(footprint "MountingHole:MountingHole_3.2mm_M3" locked (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 00000000-0000-0000-0000-000060040f74)
(at 132.5 101)
(descr "Mounting Hole 3.2mm, no annular, M3")
(tags "mounting hole 3.2mm no annular m3")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "REF**" (at 0 -4.2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ea2ea877-1ce1-4cd6-ad19-1da87f51601d)
)
(fp_text value "MountingHole_3.2mm_M3" (at 0 4.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f699494a-77d6-4c73-bd50-29c1c1c5b879)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 05d3e08e-e1f9-46cf-93d0-836d1306d03a)
)
(fp_circle (center 0 0) (end 3.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 6bd46644-7209-4d4d-acd8-f4c0d045bc61))
(fp_circle (center 0 0) (end 3.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp befdfbe5-f3e5-423b-a34e-7bba3f218536))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.2 3.2) (drill 3.2) (layers *.Cu *.Mask) (tstamp 1c052668-6749-425a-9a77-35f046c8aa39))
)
(footprint "MountingHole:MountingHole_3.2mm_M3" locked (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 00000000-0000-0000-0000-000060040fad)
(at 167.5 101)
(descr "Mounting Hole 3.2mm, no annular, M3")
(tags "mounting hole 3.2mm no annular m3")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "REF**" (at 0 -4.2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp db742b9e-1fed-4e0c-b783-f911ab5116aa)
)
(fp_text value "MountingHole_3.2mm_M3" (at 0 4.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4344bc11-e822-474b-8d61-d12211e719b1)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 12c8f4c9-cb79-4390-b96c-a717c693de17)
)
(fp_circle (center 0 0) (end 3.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 12f8e43c-8f83-48d3-a9b5-5f3ebc0b6c43))
(fp_circle (center 0 0) (end 3.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp eaa0d51a-ee4e-4d3a-a801-bddb7027e94c))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.2 3.2) (drill 3.2) (layers *.Cu *.Mask) (tstamp 5f38bdb2-3657-474e-8e86-d6bb0b298110))
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-000060042cb8)
(at 156.6675 78.41 -90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(path "/00000000-0000-0000-0000-00006008d11e")
(attr smd)
(fp_text reference "C2" (at -2.54 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2b64d2cb-d62a-4762-97ea-f1b0d4293c4f)
)
(fp_text value "100n" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 99186658-0361-40ba-ae93-62f23c5622e6)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 5f312b85-6822-40a3-b417-2df49696ca2d)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 083becc8-e25d-4206-9636-55457650bbe3))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp 7acd513a-187b-4936-9f93-2e521ce33ad5))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 4a7e3849-3bc9-4bb3-b16a-fab2f5cee0e5))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 79451892-db6b-4999-916d-6392174ee493))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 888fd7cb-2fc6-480c-bcfa-0b71303087d3))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 8e295ed4-82cb-4d9f-8888-7ad2dd4d5129))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 123968c6-74e7-4754-8c36-08ea08e42555))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 3e3d55c8-e0ea-48fb-8421-a84b7cb7055b))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 725cdf26-4b92-46db-bca9-10d930002dda))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp ee29d712-3378-4507-a00b-003526b29bb1))
(pad "1" smd roundrect locked (at -0.775 0 270) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "/R_GA") (tstamp aa1c6f47-cbd4-4cbd-8265-e5ac08b7ffc8))
(pad "2" smd roundrect locked (at 0.775 0 270) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (tstamp a92f3b72-ed6d-4d99-9da6-35771bec3c77))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-353_SC-70-5" (layer "F.Cu")
(tedit 5A02FF57) (tstamp 00000000-0000-0000-0000-000060042ce6)
(at 143.015 102.2225 90)
(descr "SOT-353, SC-70-5")
(tags "SOT-353 SC-70-5")
(path "/00000000-0000-0000-0000-0000600a5fd2")
(attr smd)
(fp_text reference "D2" (at 0 2.2225 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 75ffc65c-7132-4411-9f2a-ae0c73d79338)
)
(fp_text value "NSQA6V8AW5T2G" (at 0 2 270) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6475547d-3216-45a4-a15c-48314f1dd0f9)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp 8c6a821f-8e19-48f3-8f44-9b340f7689bc)
)
(fp_line (start 0.7 -1.16) (end -1.2 -1.16) (layer "F.SilkS") (width 0.12) (tstamp 45008225-f50f-4d6b-b508-6730a9408caf))
(fp_line (start -0.7 1.16) (end 0.7 1.16) (layer "F.SilkS") (width 0.12) (tstamp a544eb0a-75db-4baf-bf54-9ca21744343b))
(fp_line (start -1.6 -1.4) (end 1.6 -1.4) (layer "F.CrtYd") (width 0.05) (tstamp 12422a89-3d0c-485c-9386-f77121fd68fd))
(fp_line (start 1.6 1.4) (end 1.6 -1.4) (layer "F.CrtYd") (width 0.05) (tstamp 1a6d2848-e78e-49fe-8978-e1890f07836f))
(fp_line (start -1.6 -1.4) (end -1.6 1.4) (layer "F.CrtYd") (width 0.05) (tstamp 7d34f6b1-ab31-49be-b011-c67fe67a8a56))
(fp_line (start -1.6 1.4) (end 1.6 1.4) (layer "F.CrtYd") (width 0.05) (tstamp 7e023245-2c2b-4e2b-bfb9-5d35176e88f2))
(fp_line (start -0.675 -0.6) (end -0.675 1.1) (layer "F.Fab") (width 0.1) (tstamp 40165eda-4ba6-4565-9bb4-b9df6dbb08da))
(fp_line (start 0.675 -1.1) (end 0.675 1.1) (layer "F.Fab") (width 0.1) (tstamp 4780a290-d25c-4459-9579-eba3f7678762))
(fp_line (start 0.675 -1.1) (end -0.175 -1.1) (layer "F.Fab") (width 0.1) (tstamp 8e06ba1f-e3ba-4eb9-a10e-887dffd566d6))
(fp_line (start -0.175 -1.1) (end -0.675 -0.6) (layer "F.Fab") (width 0.1) (tstamp babeabf2-f3b0-4ed5-8d9e-0215947e6cf3))
(fp_line (start 0.675 1.1) (end -0.675 1.1) (layer "F.Fab") (width 0.1) (tstamp df68c26a-03b5-4466-aecf-ba34b7dce6b7))
(pad "1" smd rect locked (at -0.95 -0.65 90) (size 0.65 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 58 "/P1_9") (tstamp c830e3bc-dc64-4f65-8f47-3b106bae2807))
(pad "2" smd rect locked (at -0.95 0 90) (size 0.65 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (tstamp aca4de92-9c41-4c2b-9afa-540d02dafa1c))
(pad "3" smd rect locked (at -0.95 0.65 90) (size 0.65 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 57 "/P1_8") (tstamp c43663ee-9a0d-4f27-a292-89ba89964065))
(pad "4" smd rect locked (at 0.95 0.65 90) (size 0.65 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 56 "/P1_7") (tstamp d7269d2a-b8c0-422d-8f25-f79ea31bf75e))
(pad "5" smd rect locked (at 0.95 -0.65 90) (size 0.65 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 59 "/P1_10") (tstamp e8c50f1b-c316-4110-9cce-5c24c65a1eaa))
(model "${KISYS3DMOD}/Package_TO_SOT_SMD.3dshapes/SOT-353_SC-70-5.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-353_SC-70-5" (layer "F.Cu")
(tedit 5A02FF57) (tstamp 00000000-0000-0000-0000-000060042cfd)
(at 158.255 102.2225 90)
(descr "SOT-353, SC-70-5")
(tags "SOT-353 SC-70-5")
(path "/00000000-0000-0000-0000-0000600f8cf8")
(attr smd)
(fp_text reference "D3" (at 0 -2.2225 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7edc9030-db7b-43ac-a1b3-b87eeacb4c2d)
)
(fp_text value "NSQA6V8AW5T2G" (at 0 2 270) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 08a7c925-7fae-4530-b0c9-120e185cb318)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp 4a4ec8d9-3d72-4952-83d4-808f65849a2b)
)
(fp_line (start 0.7 -1.16) (end -1.2 -1.16) (layer "F.SilkS") (width 0.12) (tstamp cbd8faed-e1f8-4406-87c8-58b2c504a5d4))
(fp_line (start -0.7 1.16) (end 0.7 1.16) (layer "F.SilkS") (width 0.12) (tstamp f2c93195-af12-4d3e-acdf-bdd0ff675c24))
(fp_line (start -1.6 -1.4) (end -1.6 1.4) (layer "F.CrtYd") (width 0.05) (tstamp 003c2200-0632-4808-a662-8ddd5d30c768))
(fp_line (start 1.6 1.4) (end 1.6 -1.4) (layer "F.CrtYd") (width 0.05) (tstamp 240e07e1-770b-4b27-894f-29fd601c924d))
(fp_line (start -1.6 1.4) (end 1.6 1.4) (layer "F.CrtYd") (width 0.05) (tstamp 9e1b837f-0d34-4a18-9644-9ee68f141f46))
(fp_line (start -1.6 -1.4) (end 1.6 -1.4) (layer "F.CrtYd") (width 0.05) (tstamp ee27d19c-8dca-4ac8-a760-6dfd54d28071))
(fp_line (start -0.175 -1.1) (end -0.675 -0.6) (layer "F.Fab") (width 0.1) (tstamp 61fe293f-6808-4b7f-9340-9aaac7054a97))
(fp_line (start 0.675 -1.1) (end 0.675 1.1) (layer "F.Fab") (width 0.1) (tstamp 63ff1c93-3f96-4c33-b498-5dd8c33bccc0))
(fp_line (start 0.675 -1.1) (end -0.175 -1.1) (layer "F.Fab") (width 0.1) (tstamp 9b0a1687-7e1b-4a04-a30b-c27a072a2949))
(fp_line (start 0.675 1.1) (end -0.675 1.1) (layer "F.Fab") (width 0.1) (tstamp b88717bd-086f-46cd-9d3f-0396009d0996))
(fp_line (start -0.675 -0.6) (end -0.675 1.1) (layer "F.Fab") (width 0.1) (tstamp c01d25cd-f4bb-4ef3-b5ea-533a2a4ddb2b))
(pad "1" smd rect locked (at -0.95 -0.65 90) (size 0.65 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 61 "/P2_3") (tstamp c0eca5ed-bc5e-4618-9bcd-80945bea41ed))
(pad "2" smd rect locked (at -0.95 0 90) (size 0.65 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (tstamp bd5408e4-362d-4e43-9d39-78fb99eb52c8))
(pad "3" smd rect locked (at -0.95 0.65 90) (size 0.65 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 62 "/P2_2") (tstamp 0217dfc4-fc13-4699-99ad-d9948522648e))
(pad "4" smd rect locked (at 0.95 0.65 90) (size 0.65 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 63 "/P2_1") (tstamp 8da933a9-35f8-42e6-8504-d1bab7264306))
(pad "5" smd rect locked (at 0.95 -0.65 90) (size 0.65 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 60 "/P2_4") (tstamp 2f215f15-3d52-4c91-93e6-3ea03a95622f))
(model "${KISYS3DMOD}/Package_TO_SOT_SMD.3dshapes/SOT-353_SC-70-5.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-353_SC-70-5" (layer "F.Cu")
(tedit 5A02FF57) (tstamp 00000000-0000-0000-0000-000060042d14)
(at 162.065 102.2225 90)
(descr "SOT-353, SC-70-5")
(tags "SOT-353 SC-70-5")
(path "/00000000-0000-0000-0000-0000600f8d12")
(attr smd)
(fp_text reference "D4" (at 0 2.2225 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 666713b0-70f4-42df-8761-f65bc212d03b)
)
(fp_text value "NSQA6V8AW5T2G" (at 0 2 270) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7dc880bc-e7eb-4cce-8d8c-0b65a9dd788e)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp 9157f4ae-0244-4ff1-9f73-3cb4cbb5f280)
)
(fp_line (start -0.7 1.16) (end 0.7 1.16) (layer "F.SilkS") (width 0.12) (tstamp 1a1ab354-5f85-45f9-938c-9f6c4c8c3ea2))
(fp_line (start 0.7 -1.16) (end -1.2 -1.16) (layer "F.SilkS") (width 0.12) (tstamp 7aed3a71-054b-4aaa-9c0a-030523c32827))
(fp_line (start -1.6 -1.4) (end 1.6 -1.4) (layer "F.CrtYd") (width 0.05) (tstamp 1bf544e3-5940-4576-9291-2464e95c0ee2))
(fp_line (start 1.6 1.4) (end 1.6 -1.4) (layer "F.CrtYd") (width 0.05) (tstamp 42713045-fffd-4b2d-ae1e-7232d705fb12))
(fp_line (start -1.6 1.4) (end 1.6 1.4) (layer "F.CrtYd") (width 0.05) (tstamp 97fe9c60-586f-4895-8504-4d3729f5f81a))
(fp_line (start -1.6 -1.4) (end -1.6 1.4) (layer "F.CrtYd") (width 0.05) (tstamp c0515cd2-cdaa-467e-8354-0f6eadfa35c9))
(fp_line (start 0.675 1.1) (end -0.675 1.1) (layer "F.Fab") (width 0.1) (tstamp 0f54db53-a272-4955-88fb-d7ab00657bb0))
(fp_line (start 0.675 -1.1) (end -0.175 -1.1) (layer "F.Fab") (width 0.1) (tstamp 3aaee4c4-dbf7-49a5-a620-9465d8cc3ae7))
(fp_line (start -0.175 -1.1) (end -0.675 -0.6) (layer "F.Fab") (width 0.1) (tstamp 80094b70-85ab-4ff6-934b-60d5ee65023a))
(fp_line (start 0.675 -1.1) (end 0.675 1.1) (layer "F.Fab") (width 0.1) (tstamp 922058ca-d09a-45fd-8394-05f3e2c1e03a))
(fp_line (start -0.675 -0.6) (end -0.675 1.1) (layer "F.Fab") (width 0.1) (tstamp bdc7face-9f7c-4701-80bb-4cc144448db1))
(pad "1" smd rect locked (at -0.95 -0.65 90) (size 0.65 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 66 "/P2_9") (tstamp b5352a33-563a-4ffe-a231-2e68fb54afa3))
(pad "2" smd rect locked (at -0.95 0 90) (size 0.65 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (tstamp 6441b183-b8f2-458f-a23d-60e2b1f66dd6))
(pad "3" smd rect locked (at -0.95 0.65 90) (size 0.65 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 65 "/P2_8") (tstamp 31e08896-1992-4725-96d9-9d2728bca7a3))
(pad "4" smd rect locked (at 0.95 0.65 90) (size 0.65 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 64 "/P2_7") (tstamp bfc0aadc-38cf-466e-a642-68fdc3138c78))
(pad "5" smd rect locked (at 0.95 -0.65 90) (size 0.65 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 67 "/P2_10") (tstamp d4a1d3c4-b315-4bec-9220-d12a9eab51e0))
(model "${KISYS3DMOD}/Package_TO_SOT_SMD.3dshapes/SOT-353_SC-70-5.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_SMD:LED_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEF1) (tstamp 00000000-0000-0000-0000-000060042d27)
(at 162.7 79.045 180)
(descr "LED SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "LED")
(path "/00000000-0000-0000-0000-0000603605a4")
(attr smd)
(fp_text reference "D9" (at 0 1.5875) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cb083d38-4f11-4a80-8b19-ab751c405e4a)
)
(fp_text value "green" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 347562f5-b152-4e7b-8a69-40ca6daaaad4)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp f50dae73-c5b5-475d-ac8c-5b555be54fa3)
)
(fp_line (start 0.8 -0.735) (end -1.485 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 1b023dd4-5185-4576-b544-68a05b9c360b))
(fp_line (start -1.485 0.735) (end 0.8 0.735) (layer "F.SilkS") (width 0.12) (tstamp 946404ba-9297-43ec-9d67-30184041145f))
(fp_line (start -1.485 -0.735) (end -1.485 0.735) (layer "F.SilkS") (width 0.12) (tstamp a64aeb89-c24a-493b-9aab-87a6be930bde))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 0b9f21ed-3d41-4f23-ae45-74117a5f3153))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 76afa8e0-9b3a-439d-843c-ad039d3b6354))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 8486c294-aa7e-43c3-b257-1ca3356dd17a))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp a76a574b-1cac-43eb-81e6-0e2e278cea39))
(fp_line (start -0.5 -0.4) (end -0.8 -0.1) (layer "F.Fab") (width 0.1) (tstamp 3249bd81-9fd4-4194-9b4f-2e333b2195b8))
(fp_line (start -0.8 -0.1) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 718e5c6d-0e4c-46d8-a149-2f2bfc54c7f1))
(fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 90f81af1-b6de-44aa-a46b-6504a157ce6c))
(fp_line (start -0.8 0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 9e0e6fc0-a269-4822-b93d-4c5e6689ff11))
(fp_line (start 0.8 -0.4) (end -0.5 -0.4) (layer "F.Fab") (width 0.1) (tstamp cbde200f-1075-469a-89f8-abbdcf30e36a))
(pad "1" smd roundrect locked (at -0.7875 0 180) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (tstamp aee7520e-3bfc-435f-a66b-1dd1f5aa6a87))
(pad "2" smd roundrect locked (at 0.7875 0 180) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 51 "Net-(D9-Pad2)") (tstamp 2c95b9a6-9c71-4108-9cde-57ddfdd2dd19))
(model "${KISYS3DMOD}/LED_SMD.3dshapes/LED_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-353_SC-70-5" (layer "F.Cu")
(tedit 5A02FF57) (tstamp 00000000-0000-0000-0000-000060042d3e)
(at 144.285 89.205)
(descr "SOT-353, SC-70-5")
(tags "SOT-353 SC-70-5")
(path "/00000000-0000-0000-0000-000060105cc1")
(attr smd)
(fp_text reference "D5" (at 0 -2.2225) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fd470e95-4861-44fe-b1e4-6d8a7c66e144)
)
(fp_text value "NSQA6V8AW5T2G" (at 0 2 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8174b4de-74b1-48db-ab8e-c8432251095b)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp 704d6d51-bb34-4cbf-83d8-841e208048d8)
)
(fp_line (start 0.7 -1.16) (end -1.2 -1.16) (layer "F.SilkS") (width 0.12) (tstamp 0eaa98f0-9565-4637-ace3-42a5231b07f7))
(fp_line (start -0.7 1.16) (end 0.7 1.16) (layer "F.SilkS") (width 0.12) (tstamp 181abe7a-f941-42b6-bd46-aaa3131f90fb))
(fp_line (start -1.6 -1.4) (end 1.6 -1.4) (layer "F.CrtYd") (width 0.05) (tstamp 9340c285-5767-42d5-8b6d-63fe2a40ddf3))
(fp_line (start -1.6 -1.4) (end -1.6 1.4) (layer "F.CrtYd") (width 0.05) (tstamp c41b3c8b-634e-435a-b582-96b83bbd4032))
(fp_line (start 1.6 1.4) (end 1.6 -1.4) (layer "F.CrtYd") (width 0.05) (tstamp ce83728b-bebd-48c2-8734-b6a50d837931))
(fp_line (start -1.6 1.4) (end 1.6 1.4) (layer "F.CrtYd") (width 0.05) (tstamp fe8d9267-7834-48d6-a191-c8724b2ee78d))
(fp_line (start 0.675 -1.1) (end 0.675 1.1) (layer "F.Fab") (width 0.1) (tstamp 0b21a65d-d20b-411e-920a-75c343ac5136))
(fp_line (start -0.675 -0.6) (end -0.675 1.1) (layer "F.Fab") (width 0.1) (tstamp 0f22151c-f260-4674-b486-4710a2c42a55))
(fp_line (start 0.675 -1.1) (end -0.175 -1.1) (layer "F.Fab") (width 0.1) (tstamp 1831fb37-1c5d-42c4-b898-151be6fca9dc))
(fp_line (start 0.675 1.1) (end -0.675 1.1) (layer "F.Fab") (width 0.1) (tstamp 3cd1bda0-18db-417d-b581-a0c50623df68))
(fp_line (start -0.175 -1.1) (end -0.675 -0.6) (layer "F.Fab") (width 0.1) (tstamp d57dcfee-5058-4fc2-a68b-05f9a48f685b))
(pad "1" smd rect locked (at -0.95 -0.65) (size 0.65 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 69 "/P3_3") (tstamp 4c8eb964-bdf4-44de-90e9-e2ab82dd5313))
(pad "2" smd rect locked (at -0.95 0) (size 0.65 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (tstamp 29e78086-2175-405e-9ba3-c48766d2f50c))
(pad "3" smd rect locked (at -0.95 0.65) (size 0.65 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 70 "/P3_2") (tstamp 94a873dc-af67-4ef9-8159-1f7c93eeb3d7))
(pad "4" smd rect locked (at 0.95 0.65) (size 0.65 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 71 "/P3_1") (tstamp a1823eb2-fb0d-4ed8-8b96-04184ac3a9d5))
(pad "5" smd rect locked (at 0.95 -0.65) (size 0.65 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 68 "/P3_4") (tstamp 03c52831-5dc5-43c5-a442-8d23643b46fb))
(model "${KISYS3DMOD}/Package_TO_SOT_SMD.3dshapes/SOT-353_SC-70-5.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-353_SC-70-5" (layer "F.Cu")
(tedit 5A02FF57) (tstamp 00000000-0000-0000-0000-000060042d55)
(at 144.285 93.015)
(descr "SOT-353, SC-70-5")
(tags "SOT-353 SC-70-5")
(path "/00000000-0000-0000-0000-000060105cdb")
(attr smd)
(fp_text reference "D6" (at 0 2.2225) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 66116376-6967-4178-9f23-a26cdeafc400)
)
(fp_text value "NSQA6V8AW5T2G" (at 0 2 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 749dfe75-c0d6-4872-9330-29c5bbcb8ff8)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp 3b838d52-596d-4e4d-a6ac-e4c8e7621137)
)
(fp_line (start -0.7 1.16) (end 0.7 1.16) (layer "F.SilkS") (width 0.12) (tstamp 1e1b062d-fad0-427c-a622-c5b8a80b5268))
(fp_line (start 0.7 -1.16) (end -1.2 -1.16) (layer "F.SilkS") (width 0.12) (tstamp cbdcaa78-3bbc-413f-91bf-2709119373ce))
(fp_line (start -1.6 -1.4) (end -1.6 1.4) (layer "F.CrtYd") (width 0.05) (tstamp 30f15357-ce1d-48b9-93dc-7d9b1b2aa048))
(fp_line (start -1.6 -1.4) (end 1.6 -1.4) (layer "F.CrtYd") (width 0.05) (tstamp 87371631-aa02-498a-998a-09bdb74784c1))
(fp_line (start -1.6 1.4) (end 1.6 1.4) (layer "F.CrtYd") (width 0.05) (tstamp ac264c30-3e9a-4be2-b97a-9949b68bd497))
(fp_line (start 1.6 1.4) (end 1.6 -1.4) (layer "F.CrtYd") (width 0.05) (tstamp d8603679-3e7b-4337-8dbc-1827f5f54d8a))
(fp_line (start 0.675 -1.1) (end -0.175 -1.1) (layer "F.Fab") (width 0.1) (tstamp 2e642b3e-a476-4c54-9a52-dcea955640cd))
(fp_line (start -0.675 -0.6) (end -0.675 1.1) (layer "F.Fab") (width 0.1) (tstamp 5038e144-5119-49db-b6cf-f7c345f1cf03))
(fp_line (start 0.675 -1.1) (end 0.675 1.1) (layer "F.Fab") (width 0.1) (tstamp 54365317-1355-4216-bb75-829375abc4ec))
(fp_line (start 0.675 1.1) (end -0.675 1.1) (layer "F.Fab") (width 0.1) (tstamp a3e4f0ae-9f86-49e9-b386-ed8b42e012fb))
(fp_line (start -0.175 -1.1) (end -0.675 -0.6) (layer "F.Fab") (width 0.1) (tstamp a690fc6c-55d9-47e6-b533-faa4b67e20f3))
(pad "1" smd rect locked (at -0.95 -0.65) (size 0.65 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 74 "/P3_9") (tstamp 6a45789b-3855-401f-8139-3c734f7f52f9))
(pad "2" smd rect locked (at -0.95 0) (size 0.65 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (tstamp 5fc27c35-3e1c-4f96-817c-93b5570858a6))
(pad "3" smd rect locked (at -0.95 0.65) (size 0.65 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 73 "/P3_8") (tstamp 6c9b793c-e74d-4754-a2c0-901e73b26f1c))
(pad "4" smd rect locked (at 0.95 0.65) (size 0.65 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 72 "/P3_7") (tstamp efeac2a2-7682-4dc7-83ee-f6f1b23da506))
(pad "5" smd rect locked (at 0.95 -0.65) (size 0.65 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 75 "/P3_10") (tstamp c144caa5-b0d4-4cef-840a-d4ad178a2102))
(model "${KISYS3DMOD}/Package_TO_SOT_SMD.3dshapes/SOT-353_SC-70-5.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-353_SC-70-5" (layer "F.Cu")
(tedit 5A02FF57) (tstamp 00000000-0000-0000-0000-000060042d6c)
(at 155.715 87.935 180)
(descr "SOT-353, SC-70-5")
(tags "SOT-353 SC-70-5")
(path "/00000000-0000-0000-0000-000060122f58")
(attr smd)
(fp_text reference "D7" (at 0 -2.2225) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e9bb29b2-2bb9-4ea2-acd9-2bb3ca677a12)
)
(fp_text value "NSQA6V8AW5T2G" (at 0 2 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 62c076a3-d618-44a2-9042-9a08b3576787)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp da469d11-a8a4-414b-9449-d151eeaf4853)
)
(fp_line (start -0.7 1.16) (end 0.7 1.16) (layer "F.SilkS") (width 0.12) (tstamp 5cbb5968-dbb5-4b84-864a-ead1cacf75b9))
(fp_line (start 0.7 -1.16) (end -1.2 -1.16) (layer "F.SilkS") (width 0.12) (tstamp afb8e687-4a13-41a1-b8c0-89a749e897fe))
(fp_line (start 1.6 1.4) (end 1.6 -1.4) (layer "F.CrtYd") (width 0.05) (tstamp 3f5fe6b7-98fc-4d3e-9567-f9f7202d1455))
(fp_line (start -1.6 -1.4) (end -1.6 1.4) (layer "F.CrtYd") (width 0.05) (tstamp bb7f0588-d4d8-44bf-9ebf-3c533fe4d6ae))
(fp_line (start -1.6 1.4) (end 1.6 1.4) (layer "F.CrtYd") (width 0.05) (tstamp e10b5627-3247-4c86-b9f6-ef474ca11543))
(fp_line (start -1.6 -1.4) (end 1.6 -1.4) (layer "F.CrtYd") (width 0.05) (tstamp f1830a1b-f0cc-47ae-a2c9-679c82032f14))
(fp_line (start -0.175 -1.1) (end -0.675 -0.6) (layer "F.Fab") (width 0.1) (tstamp 10109f84-4940-47f8-8640-91f185ac9bc1))
(fp_line (start 0.675 -1.1) (end -0.175 -1.1) (layer "F.Fab") (width 0.1) (tstamp 6a955fc7-39d9-4c75-9a69-676ca8c0b9b2))
(fp_line (start 0.675 1.1) (end -0.675 1.1) (layer "F.Fab") (width 0.1) (tstamp 71c31975-2c45-4d18-a25a-18e07a55d11e))
(fp_line (start 0.675 -1.1) (end 0.675 1.1) (layer "F.Fab") (width 0.1) (tstamp 746ba970-8279-4e7b-aed3-f28687777c21))
(fp_line (start -0.675 -0.6) (end -0.675 1.1) (layer "F.Fab") (width 0.1) (tstamp e8314017-7be6-4011-9179-37449a29b311))
(pad "1" smd rect locked (at -0.95 -0.65 180) (size 0.65 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 77 "/P4_3") (tstamp 77ed3941-d133-4aef-a9af-5a39322d14eb))
(pad "2" smd rect locked (at -0.95 0 180) (size 0.65 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (tstamp c022004a-c968-410e-b59e-fbab0e561e9d))
(pad "3" smd rect locked (at -0.95 0.65 180) (size 0.65 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 78 "/P4_2") (tstamp 47baf4b1-0938-497d-88f9-671136aa8be7))
(pad "4" smd rect locked (at 0.95 0.65 180) (size 0.65 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 79 "/P4_1") (tstamp f4f99e3d-7269-4f6a-a759-16ad2a258779))
(pad "5" smd rect locked (at 0.95 -0.65 180) (size 0.65 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 76 "/P4_4") (tstamp 55e740a3-0735-4744-896e-2bf5437093b9))
(model "${KISYS3DMOD}/Package_TO_SOT_SMD.3dshapes/SOT-353_SC-70-5.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinSocket_2.54mm:PinSocket_2x06_P2.54mm_Horizontal" (layer "F.Cu")
(tedit 5A19A42C) (tstamp 00000000-0000-0000-0000-000060042e4b)
(at 155.08 106.3 90)
(descr "Through hole angled socket strip, 2x06, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated")
(tags "Through hole angled socket strip THT 2x06 2.54mm double row")
(path "/00000000-0000-0000-0000-0000600f8cbb")
(attr through_hole)
(fp_text reference "J2" (at -11.7 -2.58 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c8a7af6e-c432-4fa3-91ee-c8bf0c5a9ebe)
)
(fp_text value "PMOD2" (at -5.65 15.47 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 91fe070a-a49b-4bc5-805a-42f23e10d114)
)
(fp_text user "${REFERENCE}" (at -8.315 6.35) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 501880c3-8633-456f-9add-0e8fa1932ba6)
)
(fp_line (start -12.63 -1.091905) (end -4 -1.091905) (layer "F.SilkS") (width 0.12) (tstamp 05f2859d-2820-4e84-b395-696011feb13b))
(fp_line (start -12.63 11.43) (end -4 11.43) (layer "F.SilkS") (width 0.12) (tstamp 0dfdfa9f-1e3f-4e14-b64b-12bde76a80c7))
(fp_line (start -1.49 5.44) (end -1.05 5.44) (layer "F.SilkS") (width 0.12) (tstamp 1dfbf353-5b24-4c0f-8322-8fcd514ae75e))
(fp_line (start 1.11 -1.33) (end 1.11 0) (layer "F.SilkS") (width 0.12) (tstamp 252f1275-081d-4d77-8bd5-3b9e6916ef42))
(fp_line (start -12.63 0.67952) (end -4 0.67952) (layer "F.SilkS") (width 0.12) (tstamp 25bc3602-3fb4-4a04-94e3-21ba22562c24))
(fp_line (start -4 2.18) (end -3.59 2.18) (layer "F.SilkS") (width 0.12) (tstamp 269f19c3-6824-45a8-be29-fa58d70cbb42))
(fp_line (start -12.63 1.033805) (end -4 1.033805) (layer "F.SilkS") (width 0.12) (tstamp 283c990c-ae5a-4e41-a3ad-b40ca29fe90e))
(fp_line (start -12.63 -0.147145) (end -4 -0.147145) (layer "F.SilkS") (width 0.12) (tstamp 2c60448a-e30f-46b2-89e1-a44f51688efc))
(fp_line (start -1.49 4.72) (end -1.05 4.72) (layer "F.SilkS") (width 0.12) (tstamp 2e0a9f64-1b78-4597-8d50-d12d2268a95a))
(fp_line (start -1.49 7.26) (end -1.05 7.26) (layer "F.SilkS") (width 0.12) (tstamp 337e8520-cbd2-42c0-8d17-743bab17cbbd))
(fp_line (start -1.49 0.36) (end -1.11 0.36) (layer "F.SilkS") (width 0.12) (tstamp 38cfe839-c630-43d3-a9ec-6a89ba9e318a))
(fp_line (start -12.63 8.89) (end -4 8.89) (layer "F.SilkS") (width 0.12) (tstamp 3a41dd27-ec14-44d5-b505-aad1d829f79a))
(fp_line (start -12.63 1.1519) (end -4 1.1519) (layer "F.SilkS") (width 0.12) (tstamp 49575217-40b0-4890-8acf-12982cca52b5))
(fp_line (start -12.63 0.44333) (end -4 0.44333) (layer "F.SilkS") (width 0.12) (tstamp 4a54c707-7b6f-4a3d-a74d-5e3526114aba))
(fp_line (start -12.63 0.561425) (end -4 0.561425) (layer "F.SilkS") (width 0.12) (tstamp 4aa97874-2fd2-414c-b381-9420384c2fd8))
(fp_line (start -12.63 0.089045) (end -4 0.089045) (layer "F.SilkS") (width 0.12) (tstamp 4b1fce17-dec7-457e-ba3b-a77604e77dc9))
(fp_line (start -4 -0.36) (end -3.59 -0.36) (layer "F.SilkS") (width 0.12) (tstamp 4cafb73d-1ad8-4d24-acf7-63d78095ae46))
(fp_line (start -12.63 -0.73762) (end -4 -0.73762) (layer "F.SilkS") (width 0.12) (tstamp 576f00e6-a1be-45d3-9b93-e26d9e0fe306))
(fp_line (start -4 5.44) (end -3.59 5.44) (layer "F.SilkS") (width 0.12) (tstamp 582622a2-fad4-4737-9a80-be9fffbba8ab))
(fp_line (start -4 0.36) (end -3.59 0.36) (layer "F.SilkS") (width 0.12) (tstamp 5889287d-b845-4684-b23e-663811b25d27))
(fp_line (start -1.49 9.8) (end -1.05 9.8) (layer "F.SilkS") (width 0.12) (tstamp 59fc765e-1357-4c94-9529-5635418c7d73))
(fp_line (start -1.49 13.06) (end -1.05 13.06) (layer "F.SilkS") (width 0.12) (tstamp 5c7d6eaf-f256-4349-8203-d2e836872231))
(fp_line (start -12.63 -1.33) (end -12.63 14.03) (layer "F.SilkS") (width 0.12) (tstamp 62e8c4d4-266c-4e53-8981-1028251d724c))
(fp_line (start 0 -1.33) (end 1.11 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 6b91a3ee-fdcd-4bfe-ad57-c8d5ea9903a8))
(fp_line (start -1.49 12.34) (end -1.05 12.34) (layer "F.SilkS") (width 0.12) (tstamp 6f580eb1-88cc-489d-a7ca-9efa5e590715))
(fp_line (start -12.63 -0.855715) (end -4 -0.855715) (layer "F.SilkS") (width 0.12) (tstamp 713e0777-58b2-4487-baca-60d0ebed27c3))
(fp_line (start -12.63 0.797615) (end -4 0.797615) (layer "F.SilkS") (width 0.12) (tstamp 7760a75a-d74b-4185-b34e-cbc7b2c339b6))
(fp_line (start -12.63 0.20714) (end -4 0.20714) (layer "F.SilkS") (width 0.12) (tstamp 869d6302-ae22-478f-9723-3feacbb12eef))
(fp_line (start -4 10.52) (end -3.59 10.52) (layer "F.SilkS") (width 0.12) (tstamp 89a8e170-a222-41c0-b545-c9f4c5604011))
(fp_line (start -12.63 -0.26524) (end -4 -0.26524) (layer "F.SilkS") (width 0.12) (tstamp 901440f4-e2a6-4447-83cc-f58a2b26f5c4))
(fp_line (start -1.49 10.52) (end -1.05 10.52) (layer "F.SilkS") (width 0.12) (tstamp 9529c01f-e1cd-40be-b7f0-83780a544249))
(fp_line (start -4 9.8) (end -3.59 9.8) (layer "F.SilkS") (width 0.12) (tstamp 96db52e2-6336-4f5e-846e-528c594d0509))
(fp_line (start -4 -1.33) (end -4 14.03) (layer "F.SilkS") (width 0.12) (tstamp 98fe66f3-ec8b-4515-ae34-617f2124a7ec))
(fp_line (start -4 4.72) (end -3.59 4.72) (layer "F.SilkS") (width 0.12) (tstamp 9aaeec6e-84fe-4644-b0bc-5de24626ff48))
(fp_line (start -12.63 -0.50143) (end -4 -0.50143) (layer "F.SilkS") (width 0.12) (tstamp a0dee8e6-f88a-4f05-aba0-bab3aafdf2bc))
(fp_line (start -12.63 -0.97381) (end -4 -0.97381) (layer "F.SilkS") (width 0.12) (tstamp a8fb8ee0-623f-4870-a716-ecc88f37ef9a))
(fp_line (start -4 13.06) (end -3.59 13.06) (layer "F.SilkS") (width 0.12) (tstamp b13e8448-bf35-4ec0-9c70-3f2250718cc2))
(fp_line (start -1.49 -0.36) (end -1.11 -0.36) (layer "F.SilkS") (width 0.12) (tstamp be4b72db-0e02-4d9b-844a-aff689b4e648))
(fp_line (start -12.63 0.91571) (end -4 0.91571) (layer "F.SilkS") (width 0.12) (tstamp c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09))
(fp_line (start -12.63 3.81) (end -4 3.81) (layer "F.SilkS") (width 0.12) (tstamp c7df8431-dcf5-4ab4-b8f8-21c1cafc5246))
(fp_line (start -12.63 6.35) (end -4 6.35) (layer "F.SilkS") (width 0.12) (tstamp d38aa458-d7c4-47af-ba08-2b6be506a3fd))
(fp_line (start -1.49 2.9) (end -1.05 2.9) (layer "F.SilkS") (width 0.12) (tstamp d3e133b7-2c84-4206-a2b1-e693cb57fe56))
(fp_line (start -12.63 -0.02905) (end -4 -0.02905) (layer "F.SilkS") (width 0.12) (tstamp d66d3c12-11ce-4566-9a45-962e329503d8))
(fp_line (start -4 12.34) (end -3.59 12.34) (layer "F.SilkS") (width 0.12) (tstamp d68e5ddb-039c-483f-88a3-1b0b7964b482))
(fp_line (start -12.63 -0.383335) (end -4 -0.383335) (layer "F.SilkS") (width 0.12) (tstamp d7e5a060-eb57-4238-9312-26bc885fc97d))
(fp_line (start -1.49 2.18) (end -1.05 2.18) (layer "F.SilkS") (width 0.12) (tstamp da481376-0e49-44d3-91b8-aaa39b869dd1))
(fp_line (start -12.63 1.27) (end -4 1.27) (layer "F.SilkS") (width 0.12) (tstamp dde8619c-5a8c-40eb-9845-65e6a654222d))
(fp_line (start -4 7.26) (end -3.59 7.26) (layer "F.SilkS") (width 0.12) (tstamp e0c7ddff-8c90-465f-be62-21fb49b059fa))
(fp_line (start -12.63 0.325235) (end -4 0.325235) (layer "F.SilkS") (width 0.12) (tstamp e1b88aa4-d887-4eea-83ff-5c009f4390c4))
(fp_line (start -12.63 -1.33) (end -4 -1.33) (layer "F.SilkS") (width 0.12) (tstamp e7d81bce-286e-41e4-9181-3511e9c0455e))
(fp_line (start -1.49 7.98) (end -1.05 7.98) (layer "F.SilkS") (width 0.12) (tstamp f0ff5d1c-5481-4958-b844-4f68a17d4166))
(fp_line (start -12.63 -0.619525) (end -4 -0.619525) (layer "F.SilkS") (width 0.12) (tstamp f19c9655-8ddb-411a-96dd-bd986870c3c6))
(fp_line (start -12.63 -1.21) (end -4 -1.21) (layer "F.SilkS") (width 0.12) (tstamp f3044f68-903d-4063-b253-30d8e3a83eae))
(fp_line (start -4 2.9) (end -3.59 2.9) (layer "F.SilkS") (width 0.12) (tstamp f988d6ea-11c5-4837-b1d1-5c292ded50c6))
(fp_line (start -12.63 14.03) (end -4 14.03) (layer "F.SilkS") (width 0.12) (tstamp fc3d51c1-8b35-4da3-a742-0ebe104989d7))
(fp_line (start -4 7.98) (end -3.59 7.98) (layer "F.SilkS") (width 0.12) (tstamp fdc60c06-30fa-4dfb-96b4-809b755999e1))
(fp_line (start -13.05 -1.8) (end -13.05 14.45) (layer "F.CrtYd") (width 0.05) (tstamp 10e52e95-44f3-4059-a86d-dcda603e0623))
(fp_line (start -13.05 14.45) (end 1.8 14.45) (layer "F.CrtYd") (width 0.05) (tstamp 74f5ec08-7600-4a0b-a9e4-aae29f9ea08a))
(fp_line (start 1.8 -1.8) (end -13.05 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp bd793ae5-cde5-43f6-8def-1f95f35b1be6))
(fp_line (start 1.8 14.45) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp e70b6168-f98e-4322-bc55-500948ef7b77))
(fp_line (start -4.06 0.3) (end 0 0.3) (layer "F.Fab") (width 0.1) (tstamp 03f57fb4-32a3-4bc6-85b9-fd8ece4a9592))
(fp_line (start 0 7.32) (end -4.06 7.32) (layer "F.Fab") (width 0.1) (tstamp 07d160b6-23e1-4aa0-95cb-440482e6fc15))
(fp_line (start -12.57 13.97) (end -12.57 -1.27) (layer "F.Fab") (width 0.1) (tstamp 18ca5aef-6a2c-41ac-9e7f-bf7acb716e53))
(fp_line (start 0 5.38) (end 0 4.78) (layer "F.Fab") (width 0.1) (tstamp 1e48966e-d29d-4521-8939-ec8ac570431d))
(fp_line (start 0 2.84) (end 0 2.24) (layer "F.Fab") (width 0.1) (tstamp 24b72b0d-63b8-4e06-89d0-e94dcf39a600))
(fp_line (start 0 13) (end 0 12.4) (layer "F.Fab") (width 0.1) (tstamp 2a1de22d-6451-488d-af77-0bf8841bd695))
(fp_line (start -4.06 2.84) (end 0 2.84) (layer "F.Fab") (width 0.1) (tstamp 4431c0f6-83ea-4eee-95a8-991da2f03ccd))
(fp_line (start -4.06 -0.3) (end -4.06 13.97) (layer "F.Fab") (width 0.1) (tstamp 528fd7da-c9a6-40ae-9f1a-60f6a7f4d534))
(fp_line (start 0 12.4) (end -4.06 12.4) (layer "F.Fab") (width 0.1) (tstamp 6ac3ab53-7523-4805-bfd2-5de19dff127e))
(fp_line (start -5.03 -1.27) (end -4.06 -0.3) (layer "F.Fab") (width 0.1) (tstamp 7a879184-fad8-4feb-afb5-86fe8d34f1f7))
(fp_line (start 0 7.92) (end 0 7.32) (layer "F.Fab") (width 0.1) (tstamp 844d7d7a-b386-45a8-aaf6-bf41bbcb43b5))
(fp_line (start 0 2.24) (end -4.06 2.24) (layer "F.Fab") (width 0.1) (tstamp 90e761f6-1432-4f73-ad28-fa8869b7ec31))
(fp_line (start -4.06 10.46) (end 0 10.46) (layer "F.Fab") (width 0.1) (tstamp a07b6b2b-7179-4297-b163-5e47ffbe76d3))
(fp_line (start -4.06 7.92) (end 0 7.92) (layer "F.Fab") (width 0.1) (tstamp a62609cd-29b7-4918-b97d-7b2404ba61cf))
(fp_line (start 0 4.78) (end -4.06 4.78) (layer "F.Fab") (width 0.1) (tstamp a6738794-75ae-48a6-8949-ed8717400d71))
(fp_line (start -4.06 13) (end 0 13) (layer "F.Fab") (width 0.1) (tstamp a8219a78-6b33-4efa-a789-6a67ce8f7a50))
(fp_line (start 0 0.3) (end 0 -0.3) (layer "F.Fab") (width 0.1) (tstamp b78cb2c1-ae4b-4d9b-acd8-d7fe342342f2))
(fp_line (start -12.57 -1.27) (end -5.03 -1.27) (layer "F.Fab") (width 0.1) (tstamp c454102f-dc92-4550-9492-797fc8e6b49c))
(fp_line (start 0 10.46) (end 0 9.86) (layer "F.Fab") (width 0.1) (tstamp d1a9be32-38ba-44e6-bc35-f031541ab1fe))
(fp_line (start -4.06 5.38) (end 0 5.38) (layer "F.Fab") (width 0.1) (tstamp d692b5e6-71b2-4fa6-bc83-618add8d8fef))
(fp_line (start -4.06 13.97) (end -12.57 13.97) (layer "F.Fab") (width 0.1) (tstamp e413cfad-d7bd-41ab-b8dd-4b67484671a6))
(fp_line (start 0 9.86) (end -4.06 9.86) (layer "F.Fab") (width 0.1) (tstamp ebca7c5e-ae52-43e5-ac6c-69a96a9a5b24))
(fp_line (start 0 -0.3) (end -4.06 -0.3) (layer "F.Fab") (width 0.1) (tstamp f9b1563b-384a-447c-9f47-736504e995c8))
(pad "1" thru_hole rect locked (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 35 "+3V3") (tstamp f447e585-df78-4239-b8cb-4653b3837bb1))
(pad "2" thru_hole oval locked (at -2.54 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 35 "+3V3") (tstamp 2f291a4b-4ecb-4692-9ad2-324f9784c0d4))
(pad "3" thru_hole oval locked (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (tstamp 20caf6d2-76a7-497e-ac56-f6d31eb9027b))
(pad "4" thru_hole oval locked (at -2.54 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (tstamp 759788bd-3cb9-4d38-b58c-5cb10b7dca6b))
(pad "5" thru_hole oval locked (at 0 5.08 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 60 "/P2_4") (tstamp f44d04c5-0d17-4d52-8328-ef3b4fdfba5f))
(pad "6" thru_hole oval locked (at -2.54 5.08 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 67 "/P2_10") (tstamp f6983918-fe05-46ea-b355-bc522ec53440))
(pad "7" thru_hole oval locked (at 0 7.62 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 61 "/P2_3") (tstamp bb59b92a-e4d0-4b9e-82cd-26304f5c15b8))
(pad "8" thru_hole oval locked (at -2.54 7.62 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 66 "/P2_9") (tstamp 3d6cdd62-5634-4e30-acf8-1b9c1dbf6653))
(pad "9" thru_hole oval locked (at 0 10.16 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 62 "/P2_2") (tstamp 0fc5db66-6188-4c1f-bb14-0868bef113eb))
(pad "10" thru_hole oval locked (at -2.54 10.16 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 65 "/P2_8") (tstamp 15a82541-58d8-45b5-99c5-fb52e017e3ea))
(pad "11" thru_hole oval locked (at 0 12.7 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 63 "/P2_1") (tstamp 142dd724-2a9f-4eea-ab21-209b1bc7ec65))
(pad "12" thru_hole oval locked (at -2.54 12.7 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 64 "/P2_7") (tstamp 3c8d03bf-f31d-4aa0-b8db-a227ffd7d8d6))
(model "${KISYS3DMOD}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_2x06_P2.54mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinSocket_2.54mm:PinSocket_2x06_P2.54mm_Horizontal" (layer "F.Cu")
(tedit 5A19A42C) (tstamp 00000000-0000-0000-0000-000060042f13)
(at 159.8 94.92 180)
(descr "Through hole angled socket strip, 2x06, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated")
(tags "Through hole angled socket strip THT 2x06 2.54mm double row")
(path "/00000000-0000-0000-0000-000060122f1b")
(attr through_hole)
(fp_text reference "J4" (at -11.7 -2.58) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 795e68e2-c9ba-45cf-9bff-89b8fae05b5a)
)
(fp_text value "PMOD4" (at -5.65 15.47) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8fcec304-c6b1-4655-8326-beacd0476953)
)
(fp_text user "${REFERENCE}" (at -8.315 6.35 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 411d4270-c66c-4318-b7fb-1470d34862b8)
)
(fp_line (start -1.49 -0.36) (end -1.11 -0.36) (layer "F.SilkS") (width 0.12) (tstamp 076046ab-4b56-4060-b8d9-0d80806d0277))
(fp_line (start -4 0.36) (end -3.59 0.36) (layer "F.SilkS") (width 0.12) (tstamp 1171ce37-6ad7-4662-bb68-5592c945ebf3))
(fp_line (start -12.63 -0.147145) (end -4 -0.147145) (layer "F.SilkS") (width 0.12) (tstamp 16121028-bdf5-49c0-aae7-e28fe5bfa771))
(fp_line (start -1.49 7.26) (end -1.05 7.26) (layer "F.SilkS") (width 0.12) (tstamp 180245d9-4a3f-4d1b-adcc-b4eafac722e0))
(fp_line (start -12.63 1.1519) (end -4 1.1519) (layer "F.SilkS") (width 0.12) (tstamp 196a8dd5-5fd6-4c7f-ae4a-0104bd82e61b))
(fp_line (start -1.49 4.72) (end -1.05 4.72) (layer "F.SilkS") (width 0.12) (tstamp 1fbb0219-551e-409b-a61b-76e8cebdfb9d))
(fp_line (start -12.63 0.797615) (end -4 0.797615) (layer "F.SilkS") (width 0.12) (tstamp 2454fd1b-3484-4838-8b7e-d26357238fe1))
(fp_line (start -1.49 7.98) (end -1.05 7.98) (layer "F.SilkS") (width 0.12) (tstamp 28e37b45-f843-47c2-85c9-ca19f5430ece))
(fp_line (start -12.63 3.81) (end -4 3.81) (layer "F.SilkS") (width 0.12) (tstamp 3326423d-8df7-4a7e-a354-349430b8fbd7))
(fp_line (start -4 10.52) (end -3.59 10.52) (layer "F.SilkS") (width 0.12) (tstamp 3c5e5ea9-793d-46e3-86bc-5884c4490dc7))
(fp_line (start -12.63 -1.21) (end -4 -1.21) (layer "F.SilkS") (width 0.12) (tstamp 3f43d730-2a73-49fe-9672-32428e7f5b49))
(fp_line (start 0 -1.33) (end 1.11 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 4185c36c-c66e-4dbd-be5d-841e551f4885))
(fp_line (start -4 2.18) (end -3.59 2.18) (layer "F.SilkS") (width 0.12) (tstamp 43707e99-bdd7-4b02-9974-540ed6c2b0aa))
(fp_line (start -12.63 0.91571) (end -4 0.91571) (layer "F.SilkS") (width 0.12) (tstamp 45884597-7014-4461-83ee-9975c42b9a53))
(fp_line (start -12.63 6.35) (end -4 6.35) (layer "F.SilkS") (width 0.12) (tstamp 4d4fecdd-be4a-47e9-9085-2268d5852d8f))
(fp_line (start -12.63 -0.383335) (end -4 -0.383335) (layer "F.SilkS") (width 0.12) (tstamp 4db55cb8-197b-4402-871f-ce582b65664b))
(fp_line (start -12.63 1.27) (end -4 1.27) (layer "F.SilkS") (width 0.12) (tstamp 4ec618ae-096f-4256-9328-005ee04f13d6))
(fp_line (start -4 7.26) (end -3.59 7.26) (layer "F.SilkS") (width 0.12) (tstamp 54212c01-b363-47b8-a145-45c40df316f4))
(fp_line (start -1.49 12.34) (end -1.05 12.34) (layer "F.SilkS") (width 0.12) (tstamp 5d9921f1-08b3-4cc9-8cf7-e9a72ca2fdb7))
(fp_line (start -12.63 0.089045) (end -4 0.089045) (layer "F.SilkS") (width 0.12) (tstamp 6bd115d6-07e0-45db-8f2e-3cbb0429104f))
(fp_line (start -12.63 14.03) (end -4 14.03) (layer "F.SilkS") (width 0.12) (tstamp 71c6e723-673c-45a9-a0e4-9742220c52a3))
(fp_line (start -1.49 2.9) (end -1.05 2.9) (layer "F.SilkS") (width 0.12) (tstamp 79770cd5-32d7-429a-8248-0d9e6212231a))
(fp_line (start -4 5.44) (end -3.59 5.44) (layer "F.SilkS") (width 0.12) (tstamp 7bfba61b-6752-4a45-9ee6-5984dcb15041))
(fp_line (start -12.63 8.89) (end -4 8.89) (layer "F.SilkS") (width 0.12) (tstamp 8458d41c-5d62-455d-b6e1-9f718c0faac9))
(fp_line (start -4 9.8) (end -3.59 9.8) (layer "F.SilkS") (width 0.12) (tstamp 88610282-a92d-4c3d-917a-ea95d59e0759))
(fp_line (start -12.63 11.43) (end -4 11.43) (layer "F.SilkS") (width 0.12) (tstamp 8de2d84c-ff45-4d4f-bc49-c166f6ae6b91))
(fp_line (start -12.63 -0.73762) (end -4 -0.73762) (layer "F.SilkS") (width 0.12) (tstamp 9031bb33-c6aa-4758-bf5c-3274ed3ebab7))
(fp_line (start -12.63 -1.091905) (end -4 -1.091905) (layer "F.SilkS") (width 0.12) (tstamp 9186dae5-6dc3-4744-9f90-e697559c6ac8))
(fp_line (start -1.49 13.06) (end -1.05 13.06) (layer "F.SilkS") (width 0.12) (tstamp 92035a88-6c95-4a61-bd8a-cb8dd9e5018a))
(fp_line (start -12.63 -1.33) (end -4 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 935057d5-6882-4c15-9a35-54677912ba12))
(fp_line (start -12.63 0.20714) (end -4 0.20714) (layer "F.SilkS") (width 0.12) (tstamp 97fe2a5c-4eee-4c7a-9c43-47749b396494))
(fp_line (start -1.49 9.8) (end -1.05 9.8) (layer "F.SilkS") (width 0.12) (tstamp 98914cc3-56fe-40bb-820a-3d157225c145))
(fp_line (start -4 4.72) (end -3.59 4.72) (layer "F.SilkS") (width 0.12) (tstamp 99332785-d9f1-4363-9377-26ddc18e6d2c))
(fp_line (start -1.49 5.44) (end -1.05 5.44) (layer "F.SilkS") (width 0.12) (tstamp 99dfa524-0366-4808-b4e8-328fc38e8656))
(fp_line (start -12.63 -0.50143) (end -4 -0.50143) (layer "F.SilkS") (width 0.12) (tstamp 9aedbb9e-8340-4899-b813-05b23382a36b))
(fp_line (start -1.49 10.52) (end -1.05 10.52) (layer "F.SilkS") (width 0.12) (tstamp 9dcdc92b-2219-4a4a-8954-45f02cc3ab25))
(fp_line (start -12.63 0.67952) (end -4 0.67952) (layer "F.SilkS") (width 0.12) (tstamp ae77c3c8-1144-468e-ad5b-a0b4090735bd))
(fp_line (start -4 -0.36) (end -3.59 -0.36) (layer "F.SilkS") (width 0.12) (tstamp b0271cdd-de22-4bf4-8f55-fc137cfbd4ec))
(fp_line (start -12.63 -1.33) (end -12.63 14.03) (layer "F.SilkS") (width 0.12) (tstamp b4833916-7a3e-4498-86fb-ec6d13262ffe))
(fp_line (start -12.63 0.561425) (end -4 0.561425) (layer "F.SilkS") (width 0.12) (tstamp c3c499b1-9227-4e4b-9982-f9f1aa6203b9))
(fp_line (start -12.63 1.033805) (end -4 1.033805) (layer "F.SilkS") (width 0.12) (tstamp c514e30c-e48e-4ca5-ab44-8b3afedef1f2))
(fp_line (start -4 13.06) (end -3.59 13.06) (layer "F.SilkS") (width 0.12) (tstamp c8b6b273-3d20-4a46-8069-f6d608563604))
(fp_line (start 1.11 -1.33) (end 1.11 0) (layer "F.SilkS") (width 0.12) (tstamp cc48dd41-7768-48d3-b096-2c4cc2126c9d))
(fp_line (start -12.63 0.325235) (end -4 0.325235) (layer "F.SilkS") (width 0.12) (tstamp ce72ea62-9343-4a4f-81bf-8ac601f5d005))
(fp_line (start -12.63 -0.02905) (end -4 -0.02905) (layer "F.SilkS") (width 0.12) (tstamp d0a0deb1-4f0f-4ede-b730-2c6d67cb9618))
(fp_line (start -1.49 0.36) (end -1.11 0.36) (layer "F.SilkS") (width 0.12) (tstamp d4c9471f-7503-4339-928c-d1abae1eede6))
(fp_line (start -4 12.34) (end -3.59 12.34) (layer "F.SilkS") (width 0.12) (tstamp dae72997-44fc-4275-b36f-cd70bf46cfba))
(fp_line (start -4 -1.33) (end -4 14.03) (layer "F.SilkS") (width 0.12) (tstamp e091e263-c616-48ef-a460-465c70218987))
(fp_line (start -1.49 2.18) (end -1.05 2.18) (layer "F.SilkS") (width 0.12) (tstamp e17e6c0e-7e5b-43f0-ad48-0a2760b45b04))
(fp_line (start -4 2.9) (end -3.59 2.9) (layer "F.SilkS") (width 0.12) (tstamp e4e20505-1208-4100-a4aa-676f50844c06))
(fp_line (start -12.63 -0.26524) (end -4 -0.26524) (layer "F.SilkS") (width 0.12) (tstamp e97b5984-9f0f-43a4-9b8a-838eef4cceb2))
(fp_line (start -12.63 -0.97381) (end -4 -0.97381) (layer "F.SilkS") (width 0.12) (tstamp f1a9fb80-4cc4-410f-9616-e19c969dcab5))
(fp_line (start -4 7.98) (end -3.59 7.98) (layer "F.SilkS") (width 0.12) (tstamp f8f3a9fc-1e34-4573-a767-508104e8d242))
(fp_line (start -12.63 -0.619525) (end -4 -0.619525) (layer "F.SilkS") (width 0.12) (tstamp fa918b6d-f6cf-4471-be3b-4ff713f55a2e))
(fp_line (start -12.63 0.44333) (end -4 0.44333) (layer "F.SilkS") (width 0.12) (tstamp fb30f9bb-6a0b-4d8a-82b0-266eab794bc6))
(fp_line (start -12.63 -0.855715) (end -4 -0.855715) (layer "F.SilkS") (width 0.12) (tstamp fea7c5d1-76d6-41a0-b5e3-29889dbb8ce0))
(fp_line (start -13.05 -1.8) (end -13.05 14.45) (layer "F.CrtYd") (width 0.05) (tstamp 0fd35a3e-b394-4aae-875a-fac843f9cbb7))
(fp_line (start 1.8 -1.8) (end -13.05 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp a8b4bc7e-da32-4fb8-b71a-d7b47c6f741f))
(fp_line (start -13.05 14.45) (end 1.8 14.45) (layer "F.CrtYd") (width 0.05) (tstamp c088f712-1abe-4cac-9a8b-d564931395aa))
(fp_line (start 1.8 14.45) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp ea6fde00-59dc-4a79-a647-7e38199fae0e))
(fp_line (start -12.57 13.97) (end -12.57 -1.27) (layer "F.Fab") (width 0.1) (tstamp 009b5465-0a65-4237-93e7-eb65321eeb18))
(fp_line (start -4.06 13.97) (end -12.57 13.97) (layer "F.Fab") (width 0.1) (tstamp 00f3ea8b-8a54-4e56-84ff-d98f6c00496c))
(fp_line (start -12.57 -1.27) (end -5.03 -1.27) (layer "F.Fab") (width 0.1) (tstamp 0520f61d-4522-4301-a3fa-8ed0bf060f69))
(fp_line (start 0 9.86) (end -4.06 9.86) (layer "F.Fab") (width 0.1) (tstamp 1199146e-a60b-416a-b503-e77d6d2892f9))
(fp_line (start 0 -0.3) (end -4.06 -0.3) (layer "F.Fab") (width 0.1) (tstamp 221bef83-3ea7-4d3f-adeb-53a8a07c6273))
(fp_line (start 0 5.38) (end 0 4.78) (layer "F.Fab") (width 0.1) (tstamp 477892a1-722e-4cda-bb6c-fcdb8ba5f93e))
(fp_line (start -4.06 7.92) (end 0 7.92) (layer "F.Fab") (width 0.1) (tstamp 479331ff-c540-41f4-84e6-b48d65171e59))
(fp_line (start 0 0.3) (end 0 -0.3) (layer "F.Fab") (width 0.1) (tstamp 4ba06b66-7669-4c70-b585-f5d4c9c33527))
(fp_line (start -4.06 5.38) (end 0 5.38) (layer "F.Fab") (width 0.1) (tstamp 4d586a18-26c5-441e-a9ff-8125ee516126))
(fp_line (start 0 2.24) (end -4.06 2.24) (layer "F.Fab") (width 0.1) (tstamp 60ff6322-62e2-4602-9bc0-7a0f0a5ecfbf))
(fp_line (start 0 4.78) (end -4.06 4.78) (layer "F.Fab") (width 0.1) (tstamp 9186fd02-f30d-4e17-aa38-378ab73e3908))
(fp_line (start -4.06 13) (end 0 13) (layer "F.Fab") (width 0.1) (tstamp 98b00c9d-9188-4bce-aa70-92d12dd9cf82))
(fp_line (start -4.06 10.46) (end 0 10.46) (layer "F.Fab") (width 0.1) (tstamp 997c2f12-73ba-4c01-9ee0-42e37cbab790))
(fp_line (start 0 13) (end 0 12.4) (layer "F.Fab") (width 0.1) (tstamp a24ce0e2-fdd3-4e6a-b754-5dee9713dd27))
(fp_line (start 0 2.84) (end 0 2.24) (layer "F.Fab") (width 0.1) (tstamp aa130053-a451-4f12-97f7-3d4d891a5f83))
(fp_line (start 0 10.46) (end 0 9.86) (layer "F.Fab") (width 0.1) (tstamp afd38b10-2eca-4abe-aed1-a96fb07ffdbe))
(fp_line (start 0 7.32) (end -4.06 7.32) (layer "F.Fab") (width 0.1) (tstamp b09666f9-12f1-4ee9-8877-2292c94258ca))
(fp_line (start -4.06 0.3) (end 0 0.3) (layer "F.Fab") (width 0.1) (tstamp b52d6ff3-fef1-496e-8dd5-ebb89b6bce6a))
(fp_line (start -4.06 -0.3) (end -4.06 13.97) (layer "F.Fab") (width 0.1) (tstamp bc0dbc57-3ae8-4ce5-a05c-2d6003bba475))
(fp_line (start -5.03 -1.27) (end -4.06 -0.3) (layer "F.Fab") (width 0.1) (tstamp c8b92953-cd23-44e6-85ce-083fb8c3f20f))
(fp_line (start 0 12.4) (end -4.06 12.4) (layer "F.Fab") (width 0.1) (tstamp c8fd9dd3-06ad-4146-9239-0065013959ef))
(fp_line (start 0 7.92) (end 0 7.32) (layer "F.Fab") (width 0.1) (tstamp cc15f583-a41b-43af-ba94-a75455506a96))
(fp_line (start -4.06 2.84) (end 0 2.84) (layer "F.Fab") (width 0.1) (tstamp e7369115-d491-4ef3-be3d-f5298992c3e8))
(pad "1" thru_hole rect locked (at 0 0 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 35 "+3V3") (tstamp 1f9ae101-c652-4998-a503-17aedf3d5746))
(pad "2" thru_hole oval locked (at -2.54 0 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 35 "+3V3") (tstamp e5b328f6-dc69-4905-ae98-2dc3200a51d6))
(pad "3" thru_hole oval locked (at 0 2.54 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (tstamp 88cb65f4-7e9e-44eb-8692-3b6e2e788a94))
(pad "4" thru_hole oval locked (at -2.54 2.54 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (tstamp faa1812c-fdf3-47ae-9cf4-ae06a263bfbd))
(pad "5" thru_hole oval locked (at 0 5.08 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 76 "/P4_4") (tstamp d4db7f11-8cfe-40d2-b021-b36f05241701))
(pad "6" thru_hole oval locked (at -2.54 5.08 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 83 "/P4_10") (tstamp cb721686-5255-4788-a3b0-ce4312e32eb7))
(pad "7" thru_hole oval locked (at 0 7.62 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 77 "/P4_3") (tstamp f959907b-1cef-4760-b043-4260a660a2ae))
(pad "8" thru_hole oval locked (at -2.54 7.62 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 82 "/P4_9") (tstamp 30317bf0-88bb-49e7-bf8b-9f3883982225))
(pad "9" thru_hole oval locked (at 0 10.16 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 78 "/P4_2") (tstamp 3e915099-a18e-49f4-89bb-abe64c2dade5))
(pad "10" thru_hole oval locked (at -2.54 10.16 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 81 "/P4_8") (tstamp eab9c52c-3aa0-43a7-bc7f-7e234ff1e9f4))
(pad "11" thru_hole oval locked (at 0 12.7 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 79 "/P4_1") (tstamp d3d57924-54a6-421d-a3a0-a044fc909e88))
(pad "12" thru_hole oval locked (at -2.54 12.7 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 80 "/P4_7") (tstamp f73b5500-6337-4860-a114-6e307f65ec9f))
(model "${KISYS3DMOD}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_2x06_P2.54mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-000060042f7f)
(at 154.7625 78.41 90)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(path "/00000000-0000-0000-0000-00006007ac81")
(attr smd)
(fp_text reference "R1" (at 2.54 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d21cc5e4-177a-4e1d-a8d5-060ed33e5b8e)
)
(fp_text value "10k" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 89c0bc4d-eee5-4a77-ac35-d30b35db5cbe)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp e1c30a32-820e-4b17-aec9-5cb8b76f0ccc)
)
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 37b6c6d6-3e12-4736-912a-ea6e2bf06721))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp bb4b1afc-c46e-451d-8dad-36b7dec82f26))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 026ac84e-b8b2-4dd2-b675-8323c24fd778))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 0bcafe80-ffba-4f1e-ae51-95a595b006db))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 86dc7a78-7d51-4111-9eea-8a8f7977eb16))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp e32ee344-1030-4498-9cac-bfbf7540faf4))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 34d03349-6d78-4165-a683-2d8b76f2bae8))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 88d2c4b8-79f2-4e8b-9f70-b7e0ed9c70f8))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp a7531a95-7ca1-4f34-955e-18120cec99e6))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp f8fc38ec-0b98-40bc-ae2f-e5cc29973bca))
(pad "1" smd roundrect locked (at -0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 35 "+3V3") (tstamp 34cdc1c9-c9e2-44c4-9677-c1c7d7efd83d))
(pad "2" smd roundrect locked (at 0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "/R_GA") (tstamp da25bf79-0abb-4fac-a221-ca5c574dfc29))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-000060042fa1)
(at 152.8575 78.41 -90)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(path "/00000000-0000-0000-0000-00006008f842")
(attr smd)
(fp_text reference "R3" (at -2.54 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e4d2f565-25a0-48c6-be59-f4bf31ad2558)
)
(fp_text value "10k" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e502d1d5-04b0-4d4b-b5c3-8c52d09668e7)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 7c04618d-9115-4179-b234-a8faf854ea92)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 8c1605f9-6c91-4701-96bf-e753661d5e23))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp f1447ad6-651c-45be-a2d6-33bddf672c2c))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 0cc45b5b-96b3-4284-9cae-a3a9e324a916))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 4a850cb6-bb24-4274-a902-e49f34f0a0e3))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 6b7c1048-12b6-46b2-b762-fa3ad30472dd))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp f6c644f4-3036-41a6-9e14-2c08c079c6cd))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 109caac1-5036-4f23-9a66-f569d871501b))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 19b0959e-a79b-43b2-a5ad-525ced7e9131))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 31540a7e-dc9e-4e4d-96b1-dab15efa5f4b))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp e67b9f8c-019b-4145-98a4-96545f6bb128))
(pad "1" smd roundrect locked (at -0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)