-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGyro-klokke-PCB.kicad_pcb
3400 lines (3371 loc) · 183 KB
/
Gyro-klokke-PCB.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20211014) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(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)
(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 "plot")
)
)
(net 0 "")
(net 1 "+3V3")
(net 2 "GNDREF")
(net 3 "mot2-A2")
(net 4 "mot2-A1")
(net 5 "mot1-B2")
(net 6 "mot1-B1")
(net 7 "mot1-A2")
(net 8 "mot1-A1")
(net 9 "Net-(J1-Pad4)")
(net 10 "Net-(J1-Pad3)")
(net 11 "Net-(J1-Pad2)")
(net 12 "Net-(J1-Pad1)")
(net 13 "Net-(J2-Pad4)")
(net 14 "Net-(J2-Pad3)")
(net 15 "Net-(J2-Pad2)")
(net 16 "Net-(J2-Pad1)")
(net 17 "Net-(R3-Pad2)")
(net 18 "Net-(R4-Pad2)")
(net 19 "sw2")
(net 20 "sw1")
(net 21 "mot2-B2")
(net 22 "mot2-B1")
(net 23 "Net-(U1-Pad11)")
(net 24 "Net-(U1-Pad13)")
(net 25 "SWC")
(net 26 "SWD")
(net 27 "/VBUS")
(net 28 "/D+")
(net 29 "/D-")
(net 30 "Net-(J7-PadA5)")
(net 31 "Net-(J7-PadB5)")
(net 32 "Net-(J8-Pad2)")
(footprint "Capacitor_SMD:C_0805_2012Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-00005fc52914)
(at 164.592 112.268 90)
(descr "Capacitor SMD 0805 (2012 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, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor")
(path "/00000000-0000-0000-0000-00005fbb1ff4")
(attr smd)
(fp_text reference "C1" (at 0 -1.68 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9b1b7c1e-b3a9-4315-b9bc-6ef3192fb419)
)
(fp_text value "100nF" (at 0 1.68 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8a4ec6c7-5b31-486b-ad5f-3f018385bf9a)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp e5e21ff4-43f1-473c-87ba-1ff7f0089d73)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 9e2e1287-0a27-45b5-8a7f-87b94e655bb2))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer "F.SilkS") (width 0.12) (tstamp c2288b5e-5c72-41c3-8ab9-7b58c1cd3af6))
(fp_line (start -1.7 0.98) (end -1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp 2b9fa652-b41b-4766-8982-28907267efa1))
(fp_line (start -1.7 -0.98) (end 1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp 5a593b50-cb01-47be-a903-081499c918a0))
(fp_line (start 1.7 -0.98) (end 1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 84cd50b1-e474-4753-8561-5233a88bcb75))
(fp_line (start 1.7 0.98) (end -1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp dbfb1558-608b-4f17-9dc1-79ba8a7b8c48))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp 3d82e93f-5f69-4975-93e0-9601f3488960))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 6dc81dcc-0427-4941-a7a9-50dbe824d3aa))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp 9e693bc7-31b0-4571-a5a2-395436aab72f))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp d273b761-e163-404b-91c0-43aff6a5131e))
(pad "1" smd roundrect locked (at -0.95 0 90) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 19 "sw2") (tstamp 5a55de62-957b-4fa6-9319-64ee7dfc76cb))
(pad "2" smd roundrect locked (at 0.95 0 90) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GNDREF") (tstamp 2646f188-3590-4360-a675-de3e7c8d77f6))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-00005fc52925)
(at 158.496 112.268 90)
(descr "Capacitor SMD 0805 (2012 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, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor")
(path "/00000000-0000-0000-0000-00005fbb2e16")
(attr smd)
(fp_text reference "C2" (at 0 -1.68 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 22acc372-6855-416e-b50d-562b5aadf4be)
)
(fp_text value "100nF" (at 0 1.68 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4ea9425e-fc84-4565-a243-71ea8907eda5)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp af827ad4-2f55-4383-87c4-a34aa6ed60a7)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 57de9a24-47d4-452f-864e-c6dcb652f37c))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer "F.SilkS") (width 0.12) (tstamp f9cef170-be94-4c5e-accd-731831a4420e))
(fp_line (start -1.7 -0.98) (end 1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp 639436c0-ec91-4b0c-aab8-f9a563161124))
(fp_line (start -1.7 0.98) (end -1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp 67a80275-c18a-47fd-a274-7d74f532daeb))
(fp_line (start 1.7 -0.98) (end 1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp c4e52415-de90-4e5e-a0c0-110c9b7ed9a8))
(fp_line (start 1.7 0.98) (end -1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp c5934979-5c5e-423a-bbcf-afc356eed9f4))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp 0ce0611b-c63f-4f2d-99cf-666c7e437f42))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 9151de53-d810-4513-9f4c-28a956fbee78))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp bcdd3eaf-ce11-4200-bca9-22ef874da80c))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp c74f3174-0d1f-45bd-995f-8bdb0c8df34b))
(pad "1" smd roundrect locked (at -0.95 0 90) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 20 "sw1") (tstamp 03d01557-f9db-4440-b084-a0907bf3f313))
(pad "2" smd roundrect locked (at 0.95 0 90) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GNDREF") (tstamp 4c771c65-89fe-41f4-9b61-dac222671447))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_Molex:Molex_PicoBlade_53261-0471_1x04-1MP_P1.25mm_Horizontal" (layer "F.Cu")
(tedit 5B78AD89) (tstamp 00000000-0000-0000-0000-00005fc5294e)
(at 191 123.825 90)
(descr "Molex PicoBlade series connector, 53261-0471 (http://www.molex.com/pdm_docs/sd/532610271_sd.pdf), generated with kicad-footprint-generator")
(tags "connector Molex PicoBlade top entry")
(path "/00000000-0000-0000-0000-00005fbba124")
(attr smd)
(fp_text reference "J1" (at 0 -4.4 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 59bbcdb7-a5d7-4934-8b68-0b8a47a5db13)
)
(fp_text value "Conn_01x04_Male" (at 0 3.8 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b941ba70-d570-4d3e-86e3-45e08d742629)
)
(fp_text user "${REFERENCE}" (at 0 1.9 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 54d40f10-4b6a-4bd9-a15d-9ec455f58025)
)
(fp_line (start 3.485 2.71) (end 3.485 2.26) (layer "F.SilkS") (width 0.12) (tstamp 39775699-677a-49ea-a075-c0ba633b301e))
(fp_line (start -3.485 -1.26) (end -3.485 -1.71) (layer "F.SilkS") (width 0.12) (tstamp 90192f1a-e9b1-4916-a500-dcd701faaf27))
(fp_line (start 3.485 -1.26) (end 3.485 -1.71) (layer "F.SilkS") (width 0.12) (tstamp baa13baf-ea97-4cec-84a4-78cdb5ca593c))
(fp_line (start 3.485 -1.71) (end 2.535 -1.71) (layer "F.SilkS") (width 0.12) (tstamp bb61e293-b85c-4bd6-a935-6b0d951b01c3))
(fp_line (start -2.535 -1.71) (end -2.535 -3.2) (layer "F.SilkS") (width 0.12) (tstamp c3a50cf5-9fb5-4406-bf4b-7fb670d6a084))
(fp_line (start -3.485 2.26) (end -3.485 2.71) (layer "F.SilkS") (width 0.12) (tstamp e91e1050-2308-424e-b931-0e73206dbb61))
(fp_line (start -3.485 2.71) (end 3.485 2.71) (layer "F.SilkS") (width 0.12) (tstamp eaff2ae6-eba5-4fc2-86d9-5dc3d22fb40c))
(fp_line (start -3.485 -1.71) (end -2.535 -1.71) (layer "F.SilkS") (width 0.12) (tstamp f868fa58-86d9-4784-9df4-82121cefac2a))
(fp_line (start 5.98 3.1) (end 5.98 -3.7) (layer "F.CrtYd") (width 0.05) (tstamp 05ca7699-ffed-4960-959c-b416e0854816))
(fp_line (start -5.98 3.1) (end 5.98 3.1) (layer "F.CrtYd") (width 0.05) (tstamp 7cf0c134-ab8e-4568-92fe-7a0b8cd490a2))
(fp_line (start -5.98 -3.7) (end -5.98 3.1) (layer "F.CrtYd") (width 0.05) (tstamp a9d69b5f-2d77-4b18-9989-3441f50a2b70))
(fp_line (start 5.98 -3.7) (end -5.98 -3.7) (layer "F.CrtYd") (width 0.05) (tstamp bbf619ac-8759-4e3e-820c-9f6faa2a5c45))
(fp_line (start 5.075 1.4) (end 4.875 1.6) (layer "F.Fab") (width 0.1) (tstamp 037b4319-2fb5-4537-a344-9448be1671eb))
(fp_line (start -3.375 -0.6) (end -4.875 -0.6) (layer "F.Fab") (width 0.1) (tstamp 0ab30f1b-6981-46b3-a040-13f22645a2af))
(fp_line (start 3.375 -0.6) (end 4.875 -0.6) (layer "F.Fab") (width 0.1) (tstamp 0b6d7f0d-3c40-4519-96d6-90f20963755f))
(fp_line (start 3.375 -1.6) (end 3.375 2.6) (layer "F.Fab") (width 0.1) (tstamp 221a17b0-447c-426c-a7fc-a7d99e11cd77))
(fp_line (start 4.875 1.6) (end 4.875 2.2) (layer "F.Fab") (width 0.1) (tstamp 22c77483-8f38-4d03-a90f-a49e43ff7aef))
(fp_line (start -4.875 1.6) (end -4.875 2.2) (layer "F.Fab") (width 0.1) (tstamp 28008c26-6a47-4d30-9826-f4745e7b09d5))
(fp_line (start -3.375 2.6) (end 3.375 2.6) (layer "F.Fab") (width 0.1) (tstamp 42ed3aea-83a6-42f0-97b7-d7294e43bd8c))
(fp_line (start -4.875 2.2) (end -3.375 2.2) (layer "F.Fab") (width 0.1) (tstamp 62a17d4f-8f6c-4757-9692-7820d59db37e))
(fp_line (start -1.875 -0.892893) (end -1.375 -1.6) (layer "F.Fab") (width 0.1) (tstamp 69c1e5a1-5cd4-4b91-b581-c7fc7e086f5d))
(fp_line (start -5.075 1.4) (end -4.875 1.6) (layer "F.Fab") (width 0.1) (tstamp 6f880034-4ad1-4436-b838-c8a7be5d22f2))
(fp_line (start -2.375 -1.6) (end -1.875 -0.892893) (layer "F.Fab") (width 0.1) (tstamp 6fd33df4-8de5-44c0-8706-eaf4899174ce))
(fp_line (start 4.875 -0.6) (end 5.075 -0.4) (layer "F.Fab") (width 0.1) (tstamp 73a2c672-df15-41c5-9d5a-6122c479af1f))
(fp_line (start -5.075 -0.4) (end -5.075 1.4) (layer "F.Fab") (width 0.1) (tstamp a0fd5915-caa6-40ed-a5cc-1fad706c9b58))
(fp_line (start -3.375 -1.6) (end 3.375 -1.6) (layer "F.Fab") (width 0.1) (tstamp a877fc4e-2b60-4807-b9a3-6649169b1b7a))
(fp_line (start 5.075 -0.4) (end 5.075 1.4) (layer "F.Fab") (width 0.1) (tstamp adccae38-ade0-4a74-bf39-b2cc78a08532))
(fp_line (start -4.875 -0.6) (end -5.075 -0.4) (layer "F.Fab") (width 0.1) (tstamp b6ae1cf9-a6e9-40bb-953f-1f9b1bca746f))
(fp_line (start 4.875 2.2) (end 3.375 2.2) (layer "F.Fab") (width 0.1) (tstamp e55a69fe-992d-490b-bfd6-34da3027a08a))
(fp_line (start -3.375 -1.6) (end -3.375 2.6) (layer "F.Fab") (width 0.1) (tstamp ec1977f7-15e1-49fe-a8a9-34df3873f9f6))
(pad "1" smd roundrect locked (at -1.875 -2.4 90) (size 0.8 1.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "Net-(J1-Pad1)") (tstamp 5127f367-a6e4-4935-bf17-7b7d1b29c815))
(pad "2" smd roundrect locked (at -0.625 -2.4 90) (size 0.8 1.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "Net-(J1-Pad2)") (tstamp 326f3015-28b6-466a-b40b-25a734d53010))
(pad "3" smd roundrect locked (at 0.625 -2.4 90) (size 0.8 1.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "Net-(J1-Pad3)") (tstamp 7c576d0d-819a-46fa-9ec7-536ab82da252))
(pad "4" smd roundrect locked (at 1.875 -2.4 90) (size 0.8 1.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "Net-(J1-Pad4)") (tstamp 75fc2f1c-e291-4a20-85b0-f3909e568aa2))
(pad "MP" smd roundrect locked (at 4.425 0.5 90) (size 2.1 3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1190471429) (tstamp 3347b5ba-7d86-4ff7-b5c0-ef9fc72b1682))
(pad "MP" smd roundrect locked (at -4.425 0.5 90) (size 2.1 3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1190471429) (tstamp 6146d4f2-1e9c-4c70-a071-f45d58e45752))
(model "${KISYS3DMOD}/Connector_Molex.3dshapes/Molex_PicoBlade_53261-0471_1x04-1MP_P1.25mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_Molex:Molex_PicoBlade_53261-0471_1x04-1MP_P1.25mm_Horizontal" (layer "F.Cu")
(tedit 5B78AD89) (tstamp 00000000-0000-0000-0000-00005fc52977)
(at 191 111.76 90)
(descr "Molex PicoBlade series connector, 53261-0471 (http://www.molex.com/pdm_docs/sd/532610271_sd.pdf), generated with kicad-footprint-generator")
(tags "connector Molex PicoBlade top entry")
(path "/00000000-0000-0000-0000-00005fbd1c44")
(attr smd)
(fp_text reference "J2" (at 0 -4.4 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0bcd8caf-d479-41e1-8a83-d60e79e74374)
)
(fp_text value "Conn_01x04_Male" (at 0 3.8 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e905f0f0-7f36-40e6-bc99-0b2148b19ef9)
)
(fp_text user "${REFERENCE}" (at 0 1.9 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dce1ad5e-eceb-4f8e-b20b-1185a20170bb)
)
(fp_line (start -3.485 -1.26) (end -3.485 -1.71) (layer "F.SilkS") (width 0.12) (tstamp 37f5b463-0a9e-4e82-8a18-b687b8c4ae41))
(fp_line (start -3.485 2.71) (end 3.485 2.71) (layer "F.SilkS") (width 0.12) (tstamp 65112505-06c7-4447-810c-70eeb6c79344))
(fp_line (start 3.485 -1.26) (end 3.485 -1.71) (layer "F.SilkS") (width 0.12) (tstamp 87d71035-15a4-47fc-9290-fd5bef7be5c3))
(fp_line (start -2.535 -1.71) (end -2.535 -3.2) (layer "F.SilkS") (width 0.12) (tstamp 8a1e50b6-3b95-4843-99d0-3f8cf951b461))
(fp_line (start -3.485 -1.71) (end -2.535 -1.71) (layer "F.SilkS") (width 0.12) (tstamp a19165ee-8eb5-4a23-bb0d-7b56b02f201f))
(fp_line (start 3.485 -1.71) (end 2.535 -1.71) (layer "F.SilkS") (width 0.12) (tstamp b198fb81-ed6b-46e4-8815-0b5e40dfedd0))
(fp_line (start 3.485 2.71) (end 3.485 2.26) (layer "F.SilkS") (width 0.12) (tstamp c2ca6949-ba8e-407d-b5aa-8b81b5ac66fd))
(fp_line (start -3.485 2.26) (end -3.485 2.71) (layer "F.SilkS") (width 0.12) (tstamp c4a4d237-760a-4961-af5c-c2fc67d6e8b3))
(fp_line (start -5.98 -3.7) (end -5.98 3.1) (layer "F.CrtYd") (width 0.05) (tstamp 0105fd51-d103-4bad-8de6-29d9ab8abe9c))
(fp_line (start 5.98 3.1) (end 5.98 -3.7) (layer "F.CrtYd") (width 0.05) (tstamp 9ff2d271-aea8-4f0c-a0ef-fec9d25b46f3))
(fp_line (start -5.98 3.1) (end 5.98 3.1) (layer "F.CrtYd") (width 0.05) (tstamp c843becc-705a-4c49-823e-3f0128e7825f))
(fp_line (start 5.98 -3.7) (end -5.98 -3.7) (layer "F.CrtYd") (width 0.05) (tstamp fcc86d52-720c-4c9b-b209-4ad071a5bf6c))
(fp_line (start -4.875 2.2) (end -3.375 2.2) (layer "F.Fab") (width 0.1) (tstamp 075c76b3-5ae0-4fb7-9d56-c7f200d4da83))
(fp_line (start -3.375 2.6) (end 3.375 2.6) (layer "F.Fab") (width 0.1) (tstamp 0c876626-fe4c-4bcf-91d8-f2c510bb127d))
(fp_line (start 4.875 2.2) (end 3.375 2.2) (layer "F.Fab") (width 0.1) (tstamp 1221859a-26d2-47ad-b1a6-5cb8df69cd2f))
(fp_line (start 5.075 -0.4) (end 5.075 1.4) (layer "F.Fab") (width 0.1) (tstamp 1460208a-65af-4d9d-81bd-541520159561))
(fp_line (start -3.375 -0.6) (end -4.875 -0.6) (layer "F.Fab") (width 0.1) (tstamp 1d3c34b5-ffd7-4d88-90b8-3758cfc91921))
(fp_line (start 3.375 -0.6) (end 4.875 -0.6) (layer "F.Fab") (width 0.1) (tstamp 222dbe44-311e-447c-8259-65f6cf8d2dc2))
(fp_line (start -2.375 -1.6) (end -1.875 -0.892893) (layer "F.Fab") (width 0.1) (tstamp 26b37c09-e945-41a3-87c3-605c44427341))
(fp_line (start 4.875 -0.6) (end 5.075 -0.4) (layer "F.Fab") (width 0.1) (tstamp 351076b8-b2d2-46ac-a47e-8269f0b874b6))
(fp_line (start 4.875 1.6) (end 4.875 2.2) (layer "F.Fab") (width 0.1) (tstamp 40d9d678-6a5a-476f-8223-edb4425be40d))
(fp_line (start -5.075 1.4) (end -4.875 1.6) (layer "F.Fab") (width 0.1) (tstamp 410dbf40-23e2-42d9-9415-ab7e237cee2c))
(fp_line (start -4.875 -0.6) (end -5.075 -0.4) (layer "F.Fab") (width 0.1) (tstamp 45fe55bc-5a8d-4618-8c10-cd4dcff345c2))
(fp_line (start -5.075 -0.4) (end -5.075 1.4) (layer "F.Fab") (width 0.1) (tstamp 82407d43-dbbb-4ca3-bf22-6eb0e6e9642a))
(fp_line (start 5.075 1.4) (end 4.875 1.6) (layer "F.Fab") (width 0.1) (tstamp 862ea499-5c85-4cfe-bd91-4c2eec47c29d))
(fp_line (start -3.375 -1.6) (end -3.375 2.6) (layer "F.Fab") (width 0.1) (tstamp 8bd00953-19f4-4c02-995c-1402f1f716bf))
(fp_line (start -3.375 -1.6) (end 3.375 -1.6) (layer "F.Fab") (width 0.1) (tstamp 92606893-6da9-44e3-8bc9-7523c03e2f70))
(fp_line (start -4.875 1.6) (end -4.875 2.2) (layer "F.Fab") (width 0.1) (tstamp b8ec8f52-934b-4a09-9f9f-4ec64fa17d87))
(fp_line (start -1.875 -0.892893) (end -1.375 -1.6) (layer "F.Fab") (width 0.1) (tstamp d633648b-823f-4e7a-8dd2-a9a0dbaa9650))
(fp_line (start 3.375 -1.6) (end 3.375 2.6) (layer "F.Fab") (width 0.1) (tstamp f76eae09-a428-46fb-9987-c96c04fe90dc))
(pad "1" smd roundrect locked (at -1.875 -2.4 90) (size 0.8 1.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 16 "Net-(J2-Pad1)") (tstamp e323e291-f5fc-429b-a182-11d1eb738ca4))
(pad "2" smd roundrect locked (at -0.625 -2.4 90) (size 0.8 1.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 15 "Net-(J2-Pad2)") (tstamp 67b9ee28-36c3-468d-b3bf-374a4302c495))
(pad "3" smd roundrect locked (at 0.625 -2.4 90) (size 0.8 1.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 14 "Net-(J2-Pad3)") (tstamp eb8b8f11-b529-4405-bc4a-0f48fe631d8e))
(pad "4" smd roundrect locked (at 1.875 -2.4 90) (size 0.8 1.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 13 "Net-(J2-Pad4)") (tstamp 307c9520-7492-4c87-b0e6-c53dc8a83b85))
(pad "MP" smd roundrect locked (at -4.425 0.5 90) (size 2.1 3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1190471429) (tstamp 40065db1-7bd5-4757-aa67-76b669709c0a))
(pad "MP" smd roundrect locked (at 4.425 0.5 90) (size 2.1 3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1190471429) (tstamp ee8feb5c-a1b1-439f-8d27-c4e1b691851e))
(model "${KISYS3DMOD}/Connector_Molex.3dshapes/Molex_PicoBlade_53261-0471_1x04-1MP_P1.25mm_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-00005fc529dc)
(at 162.56 112.014 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-00005fbada44")
(attr smd)
(fp_text reference "R3" (at 0 -1.43 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1e96bd89-0704-4753-ab32-16db090a4a89)
)
(fp_text value "10K" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 253f5f72-8593-435f-a1ab-6daff8691dc9)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 670499e2-ad4a-4892-a072-e8cd7a268984)
)
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 4b1a7ffe-09b0-4bff-843c-30f5531f0429))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp cb88179c-cbb4-4f00-811d-42aa5dff041b))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp a8ddedab-76eb-47b0-9e15-822b4ca99d12))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp b5e974e9-d110-41a4-b6c5-e785fff5d5e9))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp d78867ab-2e84-4c77-aa6d-154ed44932a5))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp f96314c4-01cb-4932-8695-54b329f433ab))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 354b6a01-8e02-4080-af8d-08acf16a0ed9))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 7d3bd183-0b75-4f3d-b6cd-5532db15ae6d))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp a6087957-5d2a-4960-ba27-e661fd4fe1ba))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp c588b0ee-b03f-4f36-aa76-6a8b7afa1acb))
(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 19 "sw2") (tstamp 8010f1fa-304a-4ea6-bd62-5eaeeb2d4bc6))
(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 17 "Net-(R3-Pad2)") (tstamp 16c798f3-7193-402f-a275-fd46325b245d))
(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-00005fc529ed)
(at 160.528 112.014 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-00005fbb0232")
(attr smd)
(fp_text reference "R4" (at 0 -1.43 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1a0cd551-373c-433a-a784-228489bc0c48)
)
(fp_text value "10K" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4e01c754-b273-49a1-8b88-cd88f2ea6926)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp d5841695-2892-4309-9d90-675aa1400789)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 04cd4347-15ab-404d-9d78-c586711da59c))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 4e414162-b1e5-41a6-80f7-08ece917a174))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 41eee4d4-2982-4bd3-a9eb-93ac0bab689e))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 484323b8-4b09-46eb-b88f-7bb90891ae58))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 575fcf9a-c91c-4b03-afe4-286face449d5))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp ff88127e-592e-41cf-8dde-73ef0b6afcfd))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 04a2b310-dbc6-490d-a406-44d7968690d7))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 9e176682-e1cd-41c5-855d-63e7942e3544))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp de60b3ea-4da5-455e-ba2f-bbb4b8a191e7))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp e4f01b7d-2713-4cda-9154-5a5fe8f65fbd))
(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 20 "sw1") (tstamp e80c215f-7c3b-4afb-a3dd-7ef5fc090324))
(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 18 "Net-(R4-Pad2)") (tstamp e0870d44-43a4-468a-8a38-30d4b7f1d788))
(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-00005fc529fe)
(at 159.766 109.728 180)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(path "/00000000-0000-0000-0000-00005fba4df6")
(attr smd)
(fp_text reference "R5" (at 0 -1.43) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp be6d8798-2344-45af-ae17-e15a3b583817)
)
(fp_text value "10K" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8f9ed1ff-fb9f-4a9b-8ed4-7b88923e110c)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 2f702009-59c9-44a5-a535-b187e45e2de8)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 8476dbcf-21d4-4186-a4ac-e730d724f289))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp e2a60f45-ee72-4407-99d5-5114f7c3d596))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 3823802d-4524-43f2-8bf1-9836b8aac216))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp b5cfb3cf-d313-4b52-8224-c59fffe26c94))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp bb6ee4f7-852d-4dc3-b4a7-8f97c0f296b6))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp bbdbc6b3-9e00-4bf4-9e8a-6a2dbc3ecf7d))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 050bfd74-1afc-4fd7-8387-e9b167d67fb9))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 12f418f6-eb4d-4690-82b9-1493bf4c3fc6))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 3efd1186-9e87-4cd8-8101-cac28e7b7daa))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 9939e146-4f22-4a85-82d4-314a4c9735a5))
(pad "1" smd roundrect locked (at -0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "+3V3") (tstamp 8d975256-edbb-493b-8fc2-c8bce4d9f5d9))
(pad "2" smd roundrect locked (at 0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 18 "Net-(R4-Pad2)") (tstamp cf5bf417-7267-47d6-b601-869f15b53423))
(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-00005fc52a0f)
(at 164.084 109.728 180)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(path "/00000000-0000-0000-0000-00005fba34fd")
(attr smd)
(fp_text reference "R6" (at 0 -1.43) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c99ad8fa-ccc5-4632-92ff-802a6db57e5c)
)
(fp_text value "10K" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp eda97144-0b7b-4c41-9e22-51f6890f3d4e)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 49f10851-e311-45a7-9868-308697a9af00)
)
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 18f5dc72-31d8-4ecf-bb7b-ac029bd331a6))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp c0e51683-2971-4351-b214-f854444d37cf))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 7e760aac-8d8b-4d87-9568-3ea2ed219862))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp a6b5369b-4854-4a0e-a50d-29511d5a996e))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp ab656d44-c2d2-461b-ba46-53850734ea95))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp d3e3c9d5-3f3f-48fd-b769-5d0851378946))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 2f31eac5-d1f8-4bd7-b7d4-3ebd163d9625))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 49140d26-6560-45f4-9803-679f7435e00b))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 758e5fef-3b8a-4811-b489-bb24d9cd811a))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp f3e51de3-b664-40ab-a190-32fcedaf0519))
(pad "1" smd roundrect locked (at -0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "+3V3") (tstamp a93edc4d-f967-4266-b1c4-0502e4ffcef9))
(pad "2" smd roundrect locked (at 0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 17 "Net-(R3-Pad2)") (tstamp d057c6b9-bad1-4217-8a91-d83dee72f1f1))
(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 "Button_Switch_SMD:SW_SPST_EVQP7A" (layer "F.Cu")
(tedit 5A02FC95) (tstamp 00000000-0000-0000-0000-00005fc52a29)
(at 160.274 107.188 180)
(descr "Light Touch Switch,https://industrial.panasonic.com/cdbs/www-data/pdf/ATK0000/ATK0000CE20.pdf")
(path "/00000000-0000-0000-0000-00005fbb0106")
(attr smd)
(fp_text reference "SW1" (at 0 -2.5) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f20493af-c6a8-448f-94e9-3ed0a7c5a320)
)
(fp_text value "SW_Push" (at 0 3.25) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 22ba74a8-cd2a-48b1-a811-dfca30f8ca44)
)
(fp_text user "${REFERENCE}" (at 0 -2.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1cf8020b-fa1a-4485-a0c4-4bcdcb1a809a)
)
(fp_line (start -1.75 -1.55) (end 1.75 -1.55) (layer "F.SilkS") (width 0.12) (tstamp 748d81af-3d86-44ee-8158-56ae81825ef2))
(fp_line (start 0.95 1.55) (end 0.95 2.2) (layer "F.SilkS") (width 0.12) (tstamp 9f87c685-3188-4ff7-a3ff-460438dc3735))
(fp_line (start 0.95 2.2) (end -0.95 2.2) (layer "F.SilkS") (width 0.12) (tstamp ac5da43c-7da0-4eba-8b0b-b0d5ac839f17))
(fp_line (start 1.75 1.55) (end -1.75 1.55) (layer "F.SilkS") (width 0.12) (tstamp d8aa8954-2580-4769-81c9-f2904bc1cc97))
(fp_line (start -0.95 2.2) (end -0.95 1.55) (layer "F.SilkS") (width 0.12) (tstamp da62a881-41a9-46f5-8d04-4fd94004baf5))
(fp_line (start 1.1 2.35) (end -1.1 2.35) (layer "F.CrtYd") (width 0.05) (tstamp 1539cb1c-e06d-4e65-8fc5-1524c9910d59))
(fp_line (start 2.75 -1.7) (end 2.75 1.7) (layer "F.CrtYd") (width 0.05) (tstamp 7a535c05-028b-4109-8afd-7df8612d1679))
(fp_line (start -1.1 2.35) (end -1.1 1.7) (layer "F.CrtYd") (width 0.05) (tstamp 82a724a5-365a-4f6a-be57-27fbdd3a6976))
(fp_line (start -2.75 -1.7) (end 2.75 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp 95a29018-ecc7-4ecc-8543-b2f34604f4e3))
(fp_line (start -2.75 1.7) (end -2.75 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp b1c24448-581e-4a90-a7ba-1d300434a0aa))
(fp_line (start 2.75 1.7) (end 1.1 1.7) (layer "F.CrtYd") (width 0.05) (tstamp bc236b9e-8cc2-4c27-938d-2955785a0e2d))
(fp_line (start 1.1 1.7) (end 1.1 2.35) (layer "F.CrtYd") (width 0.05) (tstamp f217b5af-da25-4aff-9c8c-9b27ff9226a9))
(fp_line (start -1.1 1.7) (end -2.75 1.7) (layer "F.CrtYd") (width 0.05) (tstamp f297ddb2-2789-44be-8c91-0c30d49773b3))
(fp_line (start -1.75 1.45) (end -1.75 -1.4) (layer "F.Fab") (width 0.1) (tstamp 0d39f293-1a74-4a2f-ac4a-8c58394afcb9))
(fp_line (start -0.85 2.1) (end 0.85 2.1) (layer "F.Fab") (width 0.1) (tstamp 129f99b6-b318-414f-b155-e65ee8d84ff0))
(fp_line (start 0.85 2.1) (end 0.85 1.45) (layer "F.Fab") (width 0.1) (tstamp 1c7c3c5e-1a85-4f47-ae6a-40d9362e1609))
(fp_line (start -0.85 2.1) (end -0.85 1.45) (layer "F.Fab") (width 0.1) (tstamp 4272a43c-04a8-4443-9b14-7a68ef2fc2d5))
(fp_line (start -1.75 -1.45) (end 1.75 -1.45) (layer "F.Fab") (width 0.1) (tstamp 7562e202-6825-46d9-ae47-d5ca455aa26b))
(fp_line (start 1.75 1.45) (end -1.75 1.45) (layer "F.Fab") (width 0.1) (tstamp ea711283-3e5f-497e-a9b2-c3e3f5a9ea20))
(fp_line (start 1.75 -1.45) (end 1.75 1.45) (layer "F.Fab") (width 0.1) (tstamp eeb34e78-bc15-4d8b-a62c-39f044eea98b))
(pad "1" smd rect locked (at -1.8 -0.72 180) (size 1.4 1.05) (layers "F.Cu" "F.Paste" "F.Mask")
(net 18 "Net-(R4-Pad2)") (tstamp 91873df2-3a53-444e-afaf-eda7ccd21489))
(pad "1" smd rect locked (at 1.8 -0.72 180) (size 1.4 1.05) (layers "F.Cu" "F.Paste" "F.Mask")
(net 18 "Net-(R4-Pad2)") (tstamp dafe37b7-13e0-482c-b401-58c95654b47c))
(pad "2" smd rect locked (at -1.8 0.72 180) (size 1.4 1.05) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GNDREF") (tstamp 5a4a6aee-8a50-46d8-bab5-c2d627c90687))
(pad "2" smd rect locked (at 1.8 0.72 180) (size 1.4 1.05) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GNDREF") (tstamp caba3a78-86a7-4eef-9798-1b529903c3e3))
(model "${KISYS3DMOD}/Button_Switch_SMD.3dshapes/SW_SPST_EVQP7A.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Button_Switch_SMD:SW_SPST_EVQP7A" (layer "F.Cu")
(tedit 5A02FC95) (tstamp 00000000-0000-0000-0000-00005fc52a43)
(at 165.862 107.188 180)
(descr "Light Touch Switch,https://industrial.panasonic.com/cdbs/www-data/pdf/ATK0000/ATK0000CE20.pdf")
(path "/00000000-0000-0000-0000-00005fb9e92e")
(attr smd)
(fp_text reference "SW2" (at 0 -2.5) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0370392b-4ef9-49f1-9cab-846f1bdf8d65)
)
(fp_text value "SW_Push" (at 0 3.25) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 387c2fcf-d578-4751-b482-b9f19bb28114)
)
(fp_text user "${REFERENCE}" (at 0 -2.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b26757ef-67a5-46c8-a0ab-abd02226c36e)
)
(fp_line (start 0.95 1.55) (end 0.95 2.2) (layer "F.SilkS") (width 0.12) (tstamp 1064df9a-c10d-4f9f-a374-5c90cbe20a22))
(fp_line (start -0.95 2.2) (end -0.95 1.55) (layer "F.SilkS") (width 0.12) (tstamp 1f68a535-8005-48b7-a399-a1be14abe283))
(fp_line (start -1.75 -1.55) (end 1.75 -1.55) (layer "F.SilkS") (width 0.12) (tstamp 413f09fc-0cef-401f-b6ab-741067277aa4))
(fp_line (start 0.95 2.2) (end -0.95 2.2) (layer "F.SilkS") (width 0.12) (tstamp 770f48d5-deaf-45cb-b56e-24f350ac4618))
(fp_line (start 1.75 1.55) (end -1.75 1.55) (layer "F.SilkS") (width 0.12) (tstamp 9806732e-5112-448b-ac27-fa1ec2798650))
(fp_line (start 1.1 1.7) (end 1.1 2.35) (layer "F.CrtYd") (width 0.05) (tstamp 3627011d-318b-466f-8f83-0ff248583b51))
(fp_line (start 2.75 1.7) (end 1.1 1.7) (layer "F.CrtYd") (width 0.05) (tstamp 69718c0d-65bb-4111-92ea-ab857b095b09))
(fp_line (start -1.1 2.35) (end -1.1 1.7) (layer "F.CrtYd") (width 0.05) (tstamp 7c950ef2-c65f-4793-b78c-ead24f03dd03))
(fp_line (start -2.75 -1.7) (end 2.75 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp 8e3628dc-e536-4e8f-b832-51524068e61b))
(fp_line (start 1.1 2.35) (end -1.1 2.35) (layer "F.CrtYd") (width 0.05) (tstamp a7a9eb38-ed30-4fbb-9545-5a2c794a3b0f))
(fp_line (start 2.75 -1.7) (end 2.75 1.7) (layer "F.CrtYd") (width 0.05) (tstamp b29ade6f-b27b-4aba-8308-b2a362e791e2))
(fp_line (start -2.75 1.7) (end -2.75 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp bc90d003-aea6-46a6-9eaf-9558c65ce2ab))
(fp_line (start -1.1 1.7) (end -2.75 1.7) (layer "F.CrtYd") (width 0.05) (tstamp fe295712-6a87-4846-a940-e58bf009a228))
(fp_line (start -0.85 2.1) (end -0.85 1.45) (layer "F.Fab") (width 0.1) (tstamp 5e77aa51-1cbf-4228-a091-25d5d5c72513))
(fp_line (start 1.75 -1.45) (end 1.75 1.45) (layer "F.Fab") (width 0.1) (tstamp 635337b0-7c43-4883-bc97-9a09beed5971))
(fp_line (start 0.85 2.1) (end 0.85 1.45) (layer "F.Fab") (width 0.1) (tstamp 8a387024-44cc-4a75-b2c1-c4663708a610))
(fp_line (start 1.75 1.45) (end -1.75 1.45) (layer "F.Fab") (width 0.1) (tstamp 9b8d2385-162f-44b3-b91e-8911da38e431))
(fp_line (start -0.85 2.1) (end 0.85 2.1) (layer "F.Fab") (width 0.1) (tstamp a4c789e1-d6f5-47d1-bb3b-9cd5d4972f33))
(fp_line (start -1.75 -1.45) (end 1.75 -1.45) (layer "F.Fab") (width 0.1) (tstamp b2f45096-6c0a-40d4-8006-924798395c55))
(fp_line (start -1.75 1.45) (end -1.75 -1.4) (layer "F.Fab") (width 0.1) (tstamp cde44f98-e3b9-4f8b-926f-18c2e9c751e2))
(pad "1" smd rect locked (at -1.8 -0.72 180) (size 1.4 1.05) (layers "F.Cu" "F.Paste" "F.Mask")
(net 17 "Net-(R3-Pad2)") (tstamp 81c8ab11-dd0d-4a65-afa8-84a078628937))
(pad "1" smd rect locked (at 1.8 -0.72 180) (size 1.4 1.05) (layers "F.Cu" "F.Paste" "F.Mask")
(net 17 "Net-(R3-Pad2)") (tstamp 92a28f19-5789-48d1-ba69-397035acea54))
(pad "2" smd rect locked (at -1.8 0.72 180) (size 1.4 1.05) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GNDREF") (tstamp 9a7b5174-bf25-4983-bba1-72677c245ce1))
(pad "2" smd rect locked (at 1.8 0.72 180) (size 1.4 1.05) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GNDREF") (tstamp c325aec7-c9fe-4b60-8a1c-70aa888304b1))
(model "${KISYS3DMOD}/Button_Switch_SMD.3dshapes/SW_SPST_EVQP7A.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_SO:SSOP-10_3.9x4.9mm_P1.00mm" (layer "F.Cu")
(tedit 5AB07CF5) (tstamp 00000000-0000-0000-0000-00005fc52aa7)
(at 183.896 124.206)
(descr "10-Lead SSOP, 3.9 x 4.9mm body, 1.00mm pitch (http://www.st.com/resource/en/datasheet/viper01.pdf)")
(tags "SSOP 3.9 4.9 1.00")
(path "/00000000-0000-0000-0000-00005fbc38fd")
(attr smd)
(fp_text reference "U2" (at 0 -3.5) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5ce482c5-5380-46b1-94c8-b5939fb761d0)
)
(fp_text value "LB1948MC" (at 0 3.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d622a245-21c0-4002-87a3-fa6622aa4abe)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 68080f2d-6075-486a-8017-02d07d27354a)
)
(fp_line (start -3 -2.57) (end 2.07 -2.57) (layer "F.SilkS") (width 0.15) (tstamp 0aaea579-e776-4d43-a515-c01d445e0241))
(fp_line (start -2.07 2.57) (end 2.07 2.57) (layer "F.SilkS") (width 0.15) (tstamp 1eb90136-91e4-4c7d-8dc8-d276af573b68))
(fp_line (start -3.35 2.7) (end 3.35 2.7) (layer "F.CrtYd") (width 0.05) (tstamp 437d3292-97e3-461e-8e95-686afaa99d26))
(fp_line (start -3.35 -2.7) (end 3.35 -2.7) (layer "F.CrtYd") (width 0.05) (tstamp a5f67b57-2a4a-400d-a908-518c9962fd33))
(fp_line (start 3.35 -2.7) (end 3.35 2.7) (layer "F.CrtYd") (width 0.05) (tstamp b1435a13-c61d-44f0-ae09-aa7571583b78))
(fp_line (start -3.35 -2.7) (end -3.35 2.7) (layer "F.CrtYd") (width 0.05) (tstamp beacf4fb-f3af-4329-938f-7d23a2207366))
(fp_line (start -1.95 2.45) (end -1.95 -1.45) (layer "F.Fab") (width 0.1) (tstamp 3cbaa2c7-9c48-475c-b1bd-7fd2f4ec738e))
(fp_line (start 1.95 -2.45) (end 1.95 2.45) (layer "F.Fab") (width 0.1) (tstamp 60f88fa8-c803-4113-9155-4311d8416958))
(fp_line (start 1.95 2.45) (end -1.95 2.45) (layer "F.Fab") (width 0.1) (tstamp bea54828-b3f7-4787-a9e5-ed9ef0a2d979))
(fp_line (start -1.95 -1.45) (end -0.95 -2.45) (layer "F.Fab") (width 0.1) (tstamp c657142c-92e7-447e-9248-a9f2e56ac6de))
(fp_line (start -0.95 -2.45) (end 1.95 -2.45) (layer "F.Fab") (width 0.1) (tstamp c88bdea0-30f0-4f7a-b5c2-9102ae5a3709))
(pad "1" smd rect locked (at -2.55 -2) (size 1.1 0.51) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "+3V3") (tstamp 02d12c0e-27ea-46f6-89b2-aacc0092ef87))
(pad "2" smd rect locked (at -2.55 -1) (size 1.1 0.51) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "mot1-A1") (tstamp d1d5e611-1959-4b6d-87ee-4fa47bbf91bd))
(pad "3" smd rect locked (at -2.55 0) (size 1.1 0.51) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "mot1-A2") (tstamp 5913dd96-9b42-4123-9efe-9390738a690f))
(pad "4" smd rect locked (at -2.55 1) (size 1.1 0.51) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "mot1-B1") (tstamp f34a8b01-2182-4467-a0da-0710c1d9186a))
(pad "5" smd rect locked (at -2.55 2) (size 1.1 0.51) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "mot1-B2") (tstamp ba0d5e70-fd21-4343-93f5-5327e03d7511))
(pad "6" smd rect locked (at 2.55 2) (size 1.1 0.51) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GNDREF") (tstamp 3f49e25a-5dab-4785-b0e9-5c9166f19725))
(pad "7" smd rect locked (at 2.55 1) (size 1.1 0.51) (layers "F.Cu" "F.Paste" "F.Mask")
(net 12 "Net-(J1-Pad1)") (tstamp 7018ac82-3be9-4266-a67b-5eb09408d88c))
(pad "8" smd rect locked (at 2.55 0) (size 1.1 0.51) (layers "F.Cu" "F.Paste" "F.Mask")
(net 11 "Net-(J1-Pad2)") (tstamp 81efb2a1-16ea-4aad-8fea-66a070eac10b))
(pad "9" smd rect locked (at 2.55 -1) (size 1.1 0.51) (layers "F.Cu" "F.Paste" "F.Mask")
(net 10 "Net-(J1-Pad3)") (tstamp 6f88f812-6150-4349-8f63-27467a096072))
(pad "10" smd rect locked (at 2.55 -2) (size 1.1 0.51) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "Net-(J1-Pad4)") (tstamp cb9f14da-979e-4dd9-b181-154fe370554e))
(model "${KISYS3DMOD}/Package_SO.3dshapes/SSOP-10_3.9x4.9mm_P1.00mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_SO:SSOP-10_3.9x4.9mm_P1.00mm" (layer "F.Cu")
(tedit 5AB07CF5) (tstamp 00000000-0000-0000-0000-00005fc52ac1)
(at 183.388 115.316)
(descr "10-Lead SSOP, 3.9 x 4.9mm body, 1.00mm pitch (http://www.st.com/resource/en/datasheet/viper01.pdf)")
(tags "SSOP 3.9 4.9 1.00")
(path "/00000000-0000-0000-0000-00005fbd1e26")
(attr smd)
(fp_text reference "U3" (at 0.4318 3.3782) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4d424710-4177-44e0-b4ae-d40f1a114aa9)
)
(fp_text value "LB1948MC" (at 0 3.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4d1c68a2-8180-455a-b41c-5dceecd07a9e)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 74ed5f90-4a6e-4f54-b7d7-519623ca1c1c)
)
(fp_line (start -2.07 2.57) (end 2.07 2.57) (layer "F.SilkS") (width 0.15) (tstamp 0c5fd8dd-8a10-499d-85c2-e74e398541c6))
(fp_line (start -3 -2.57) (end 2.07 -2.57) (layer "F.SilkS") (width 0.15) (tstamp c5c4c0e7-e745-4d74-9f60-d80c580c2941))
(fp_line (start -3.35 2.7) (end 3.35 2.7) (layer "F.CrtYd") (width 0.05) (tstamp 2cf6bc98-8c7a-4dc7-a117-11e9c212ec7c))
(fp_line (start -3.35 -2.7) (end 3.35 -2.7) (layer "F.CrtYd") (width 0.05) (tstamp 71666b42-2ddb-4811-a493-c120c8c7c3eb))
(fp_line (start 3.35 -2.7) (end 3.35 2.7) (layer "F.CrtYd") (width 0.05) (tstamp 92f20834-1ba9-4f44-bd9b-611ef17c0c18))
(fp_line (start -3.35 -2.7) (end -3.35 2.7) (layer "F.CrtYd") (width 0.05) (tstamp d18c0ec7-4710-4a1a-b90e-191c1e84a03c))
(fp_line (start 1.95 -2.45) (end 1.95 2.45) (layer "F.Fab") (width 0.1) (tstamp 157b3095-9f91-48d3-8010-1c32b53463a5))
(fp_line (start -0.95 -2.45) (end 1.95 -2.45) (layer "F.Fab") (width 0.1) (tstamp 1874c24a-ac18-488a-9aff-39eb6639f600))
(fp_line (start 1.95 2.45) (end -1.95 2.45) (layer "F.Fab") (width 0.1) (tstamp 97160be3-2ebc-4c69-8586-00dc4d6c5ba9))
(fp_line (start -1.95 2.45) (end -1.95 -1.45) (layer "F.Fab") (width 0.1) (tstamp d6cd9a71-528f-40de-9730-eab93a911605))
(fp_line (start -1.95 -1.45) (end -0.95 -2.45) (layer "F.Fab") (width 0.1) (tstamp d90a74e9-0d22-491e-8a40-cca4ea70278e))
(pad "1" smd rect locked (at -2.55 -2) (size 1.1 0.51) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "+3V3") (tstamp 9a91dc86-2eb2-420b-aa3d-9d7e3cdbc5d2))
(pad "2" smd rect locked (at -2.55 -1) (size 1.1 0.51) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "mot2-A1") (tstamp 210ef3d9-49f8-4b75-b265-2d9af416473a))
(pad "3" smd rect locked (at -2.55 0) (size 1.1 0.51) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "mot2-A2") (tstamp df1dfe8a-778d-46bf-8870-9cac1d80cfea))
(pad "4" smd rect locked (at -2.55 1) (size 1.1 0.51) (layers "F.Cu" "F.Paste" "F.Mask")
(net 22 "mot2-B1") (tstamp 18a062a4-e7a1-46de-b2d1-1bd169a67399))
(pad "5" smd rect locked (at -2.55 2) (size 1.1 0.51) (layers "F.Cu" "F.Paste" "F.Mask")
(net 21 "mot2-B2") (tstamp 69cc388e-d032-4f9d-aa2a-d70335806861))
(pad "6" smd rect locked (at 2.55 2) (size 1.1 0.51) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GNDREF") (tstamp 64ac9ebd-f3bb-46b4-81a3-498c15007fa9))
(pad "7" smd rect locked (at 2.55 1) (size 1.1 0.51) (layers "F.Cu" "F.Paste" "F.Mask")
(net 16 "Net-(J2-Pad1)") (tstamp a8ce1d5a-98cb-4563-8284-087c6899f052))
(pad "8" smd rect locked (at 2.55 0) (size 1.1 0.51) (layers "F.Cu" "F.Paste" "F.Mask")
(net 15 "Net-(J2-Pad2)") (tstamp a2aea3ee-e01d-4dbc-9062-bc2e19cf7d72))
(pad "9" smd rect locked (at 2.55 -1) (size 1.1 0.51) (layers "F.Cu" "F.Paste" "F.Mask")
(net 14 "Net-(J2-Pad3)") (tstamp 4f30c91e-2d4c-4b68-b6e7-12e57301ffea))
(pad "10" smd rect locked (at 2.55 -2) (size 1.1 0.51) (layers "F.Cu" "F.Paste" "F.Mask")
(net 13 "Net-(J2-Pad4)") (tstamp 7ba83420-42f3-423c-824e-e3d58043cbb8))
(model "${KISYS3DMOD}/Package_SO.3dshapes/SSOP-10_3.9x4.9mm_P1.00mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Crystal:Crystal_SMD_3215-2Pin_3.2x1.5mm" (layer "F.Cu")
(tedit 5A0FD1B2) (tstamp 00000000-0000-0000-0000-00005fc536a7)
(at 182.88 111.252)
(descr "SMD Crystal FC-135 https://support.epson.biz/td/api/doc_check.php?dl=brief_FC-135R_en.pdf")
(tags "SMD SMT Crystal")
(path "/00000000-0000-0000-0000-00005fc778a0")
(attr smd)
(fp_text reference "Y1" (at -0.1778 -1.4478) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6df259da-69f1-42d1-81e7-8a770ab9dec7)
)
(fp_text value "Crystal_Small" (at 0 2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 48382419-4ae9-4fe9-8434-327b7b02e97a)
)
(fp_text user "${REFERENCE}" (at 0 -2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9deb38e7-10d8-4ffd-8fa2-7e3951e0739b)
)
(fp_line (start -0.675 -0.875) (end 0.675 -0.875) (layer "F.SilkS") (width 0.12) (tstamp 0c81b751-20a4-43b0-8a40-4ad235c4b0ce))
(fp_line (start -0.675 0.875) (end 0.675 0.875) (layer "F.SilkS") (width 0.12) (tstamp 55f1b0c5-f732-4783-b098-4a75bca0cd6b))
(fp_line (start -2 -1.15) (end 2 -1.15) (layer "F.CrtYd") (width 0.05) (tstamp 17d3398f-8d58-483f-afce-2f5e9a4f1919))
(fp_line (start -2 -1.15) (end -2 1.15) (layer "F.CrtYd") (width 0.05) (tstamp 2dcc759b-cacf-40d4-870c-7b88e2240ac7))
(fp_line (start 2 -1.15) (end 2 1.15) (layer "F.CrtYd") (width 0.05) (tstamp 69843832-24ec-43f1-bace-f28f5bf0f890))
(fp_line (start -2 1.15) (end 2 1.15) (layer "F.CrtYd") (width 0.05) (tstamp b0b8b4d2-1d12-48ec-b55d-f905c38f52d7))
(fp_line (start -1.6 0.75) (end 1.6 0.75) (layer "F.Fab") (width 0.1) (tstamp 6fba45f9-cfff-484b-9ed8-69896230ca2d))
(fp_line (start 1.6 -0.75) (end 1.6 0.75) (layer "F.Fab") (width 0.1) (tstamp b8b47001-9579-46ac-85ba-fee3f1d2fb30))
(fp_line (start -1.6 -0.75) (end 1.6 -0.75) (layer "F.Fab") (width 0.1) (tstamp c1764470-35ee-4798-b690-edfe5558c00a))
(fp_line (start -1.6 -0.75) (end -1.6 0.75) (layer "F.Fab") (width 0.1) (tstamp d7d919d7-eaf3-4316-8eb5-b3dc0a2ed629))
(pad "1" smd rect locked (at 1.25 0) (size 1 1.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 23 "Net-(U1-Pad11)") (tstamp b07db3bd-e7c9-447e-b9d3-c1093f4cf2fc))
(pad "2" smd rect locked (at -1.25 0) (size 1 1.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 24 "Net-(U1-Pad13)") (tstamp ef215f42-cdfd-4041-91fa-8b9dbf315a35))
(model "${KISYS3DMOD}/Crystal.3dshapes/Crystal_SMD_3215-2Pin_3.2x1.5mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_2.2mm_M2_ISO14580_Pad" (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 00000000-0000-0000-0000-00005fca2717)
(at 185.1406 107.696)
(descr "Mounting Hole 2.2mm, M2, ISO14580")
(tags "mounting hole 2.2mm m2 iso14580")
(path "/00000000-0000-0000-0000-00005fd95557")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "J5" (at 0 -2.9) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e37671a4-1b52-45fe-901d-61cc7a7775a3)
)
(fp_text value "Conn_01x01_Female" (at 0 2.9) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b7417519-28da-421e-965a-0bda5ce8cd4f)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dcc67306-0716-4d61-bf1e-3018daa092ae)
)
(fp_circle (center 0 0) (end 1.9 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp babe0da4-4894-42d0-91ec-b8dcb907e311))
(fp_circle (center 0 0) (end 2.15 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 184aaf2f-0002-4665-b6c4-4ec4c460a137))
(pad "1" thru_hole circle locked (at 0 0) (size 3.8 3.8) (drill 2.2) (layers *.Cu *.Mask)
(net 2 "GNDREF") (tstamp cfdc8860-b4d3-4624-9869-b4dd2df28946))
)
(footprint "MountingHole:MountingHole_2.2mm_M2_ISO14580_Pad" (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 00000000-0000-0000-0000-00005fca271f)
(at 161.036 126.746)
(descr "Mounting Hole 2.2mm, M2, ISO14580")
(tags "mounting hole 2.2mm m2 iso14580")
(path "/00000000-0000-0000-0000-00005fd8c1c4")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "J6" (at 0 -2.9) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 86332897-9661-4416-a107-24a57ca3b231)
)
(fp_text value "Conn_01x01_Female" (at 0 2.9) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7d66ba69-ca14-4c37-a32e-3674d15d9949)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cf95f339-1fe6-4f77-b052-f8fed0f45254)
)
(fp_circle (center 0 0) (end 1.9 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 8db9c3d8-a417-4e4c-aa0e-fef4b1c15837))
(fp_circle (center 0 0) (end 2.15 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 2b0fef55-3581-4801-9fc4-fddbbde0e6b3))
(pad "1" thru_hole circle locked (at 0 0) (size 3.8 3.8) (drill 2.2) (layers *.Cu *.Mask)
(net 2 "GNDREF") (tstamp f8a34a86-f8da-406d-abb7-086ee96a6579))
)
(footprint "nrfmicro:E73-2G4M08S1C-52840" (layer "F.Cu")
(tedit 60E63C18) (tstamp 00000000-0000-0000-0000-000060a6b288)
(at 172.466 111.76 -90)
(path "/00000000-0000-0000-0000-000060a5065e")
(attr through_hole)
(fp_text reference "U1" (at 7.746775 -0.000467 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c31d2e8c-6bd5-4223-8afc-a970310ef57e)
)
(fp_text value "E73-2G4M08S1C-52840" (at 9.778775 -0.635467 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b39b59cd-894c-4653-958b-c02373782768)
)
(fp_text user "E73-2G4M08S1C" (at 15.875 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 467b7609-1fed-4845-aef9-c6ad958260f5)
)
(fp_line (start 18.034 -6.604) (end -0.127 -6.604) (layer "F.Fab") (width 0.15) (tstamp 78805238-55cb-49c8-b07d-843c72b4bfaa))
(fp_line (start -0.127 6.604) (end 18.034 6.604) (layer "F.Fab") (width 0.15) (tstamp 789e0048-f229-4181-be6d-cb8c9b5c9827))
(fp_line (start 18.034 6.604) (end 18.034 -6.604) (layer "F.Fab") (width 0.15) (tstamp c6b1955e-e9d3-4984-b438-59c23d3fb4a2))
(fp_line (start -0.127 -6.604) (end -0.127 6.604) (layer "F.Fab") (width 0.15) (tstamp d85a7850-3037-46ed-a85c-c60064ba1a7d))
(pad "1" smd rect locked (at 14.03 -6.119 270) (size 0.65 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "mot1-B2") (tstamp 3e9e8428-1c1c-4818-af5a-312238eafff7))
(pad "2" smd rect locked (at 12.76 -6.119 270) (size 0.65 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "mot1-B1") (tstamp 0ccc29ac-974a-4dda-8f36-7c7d23ca4ad8))
(pad "3" smd rect locked (at 11.49 -6.119 270) (size 0.65 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "mot1-A2") (tstamp 4cae7a51-8f8b-4c68-9fec-681ecd10c4a3))
(pad "4" smd rect locked (at 10.22 -6.119 270) (size 0.65 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "mot1-A1") (tstamp 7c070e35-ddee-4d23-8bd9-1c08fd05381a))
(pad "5" smd rect locked (at 8.95 -6.119 270) (size 0.65 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GNDREF") (tstamp 7ff77333-0495-4fc3-8814-b911a0a1b17f))
(pad "6" smd rect locked (at 7.68 -6.119 270) (size 0.65 1) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 9647450e-3935-4a22-971f-387364d34337))
(pad "7" smd rect locked (at 6.41 -6.119 270) (size 0.65 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 21 "mot2-B2") (tstamp 8a35635a-e885-4547-9b25-48248290d3af))
(pad "8" smd rect locked (at 5.14 -6.119 270) (size 0.65 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 22 "mot2-B1") (tstamp fe22db69-c0b5-4e4d-b645-34d97457c14a))
(pad "9" smd rect locked (at 3.87 -6.119 270) (size 0.65 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "mot2-A2") (tstamp e59c0d41-fa46-45a2-a749-aa61f5ecff04))
(pad "10" smd rect locked (at 2.6 -6.119 270) (size 0.65 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "mot2-A1") (tstamp e3a0aa6c-3566-4af1-9018-6aa2b00deb24))
(pad "11" smd rect locked (at 0.381 -4.47) (size 0.65 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 23 "Net-(U1-Pad11)") (tstamp 8893844f-f0c2-44e6-9ad3-b847e7b5cfdd))
(pad "12" thru_hole rect locked (at 2.092 -3.833) (size 0.65 1) (drill 0.3) (layers *.Cu *.Mask) (tstamp 445da4e0-a0eb-4bb5-802c-9f3e40de0ce5))
(pad "13" smd rect locked (at 0.381 -3.2) (size 0.65 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 24 "Net-(U1-Pad13)") (tstamp 167e3c70-d898-4fd9-9465-9c1d76014ae0))
(pad "14" thru_hole rect locked (at 2.092 -2.563) (size 0.65 1) (drill 0.3) (layers *.Cu *.Mask) (tstamp 7c960072-9732-4a42-acec-0dcf00b3af1d))
(pad "15" smd rect locked (at 0.381 -1.93) (size 0.65 1) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 8523db8f-ff0d-4141-9828-f9d43a42a21c))
(pad "16" thru_hole rect locked (at 2.092 -1.293) (size 0.65 1) (drill 0.3) (layers *.Cu *.Mask) (tstamp 1594bdc5-e28d-42ad-9ece-f88bd4ebaf90))
(pad "17" smd rect locked (at 0.381 -0.66) (size 0.65 1) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 59a73102-bd5c-4b81-999c-84684c5fb0ad))
(pad "18" smd rect locked (at 2.092 -0.023) (size 0.65 1) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 4197309a-41e6-4ab9-9d63-beaf983c7c3b))
(pad "19" smd rect locked (at 0.381 0.61) (size 0.65 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "+3V3") (tstamp a277447c-6777-4063-91b4-65ce97dbdcfd))
(pad "20" smd rect locked (at 2.092 1.247) (size 0.65 1) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp f789f7eb-4b58-4f1a-9cce-0732917316d7))
(pad "21" thru_hole rect locked (at 0.381 1.88) (size 0.65 1) (drill 0.3) (layers *.Cu *.Mask)
(net 2 "GNDREF") (tstamp 6d38b518-02bb-41a6-b116-fb30965ba3ab))
(pad "22" thru_hole rect locked (at 2.092 2.517) (size 0.65 1) (drill 0.3) (layers *.Cu *.Mask) (tstamp ec10fe09-6789-4751-945d-e6e4e6631ac5))
(pad "23" smd rect locked (at 0.381 3.15) (size 0.65 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "+3V3") (tstamp cf43fa91-d80e-450a-b1b9-179e4560a37c))
(pad "24" thru_hole rect locked (at 2.092 3.787) (size 0.65 1) (drill 0.3) (layers *.Cu *.Mask)
(net 2 "GNDREF") (tstamp f4553c93-f321-4b33-b93a-54f0e3d556dc))
(pad "25" smd rect locked (at 0.381 4.42) (size 0.65 1) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 12338a9a-2f07-4f9c-b710-a4681fa1f97e))
(pad "26" smd rect locked (at 2.6 6.119 270) (size 0.65 1) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 601f6b10-7aee-4d5e-b29a-e72539dffba2))
(pad "27" smd rect locked (at 3.87 6.119 270) (size 0.65 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 32 "Net-(J8-Pad2)") (tstamp 72df7271-1610-4138-99f1-d4464b3cac3c))
(pad "28" smd rect locked (at 4.632 4.041 270) (size 0.65 1) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 48c9693e-b296-4872-b130-7630ee3b4dc5))
(pad "29" smd rect locked (at 5.14 6.119 270) (size 0.65 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 29 "/D-") (tstamp 99a667b1-680f-43df-b9a6-15c43c801881))
(pad "30" smd rect locked (at 5.902 4.041 270) (size 0.65 1) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp d08f7c04-f167-42f3-933d-2c147ef7e2b6))
(pad "31" thru_hole rect locked (at 6.41 6.119 270) (size 0.65 1) (drill 0.3) (layers *.Cu *.Mask)
(net 28 "/D+") (tstamp 42a5bb18-4314-4e88-935a-13b7cbb2c955))
(pad "32" thru_hole rect locked (at 7.172 4.041 270) (size 0.65 1) (drill 0.3) (layers *.Cu *.Mask) (tstamp 03ef5687-87d2-4ced-9eb1-79c808bbe7e9))
(pad "33" smd rect locked (at 7.68 6.119 270) (size 0.65 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 19 "sw2") (tstamp 3a9d1c83-cd8f-4215-9741-7f5870da5f26))
(pad "34" thru_hole rect locked (at 8.442 4.041 270) (size 0.65 1) (drill 0.3) (layers *.Cu *.Mask) (tstamp 011aa284-99e4-4d14-a9b6-65e1ac1d998c))
(pad "35" smd rect locked (at 8.95 6.119 270) (size 0.65 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 20 "sw1") (tstamp e1afb8f5-4187-498b-bcac-9b08849cdb3c))
(pad "36" thru_hole rect locked (at 9.712 4.041 270) (size 0.65 1) (drill 0.3) (layers *.Cu *.Mask) (tstamp f525457f-b837-4f2d-ba80-3f9bc6cc97ff))
(pad "37" smd rect locked (at 10.22 6.119 270) (size 0.65 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 26 "SWD") (tstamp 1be764a7-4806-4b50-b6d4-dc1aba16dd2e))
(pad "38" thru_hole rect locked (at 10.982 4.041 270) (size 0.65 1) (drill 0.3) (layers *.Cu *.Mask) (tstamp 86e70449-d73a-4935-b7a1-05deabfc504c))
(pad "39" smd rect locked (at 11.49 6.119 270) (size 0.65 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 25 "SWC") (tstamp 0cf38806-c76d-46e6-93c5-2ac6e5db58e2))
(pad "40" thru_hole rect locked (at 12.252 4.041 270) (size 0.65 1) (drill 0.3) (layers *.Cu *.Mask) (tstamp 94a5be80-e17a-4d54-a71c-77e6eb4068f0))
(pad "41" smd rect locked (at 12.76 6.119 270) (size 0.65 1) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp deda41cf-1877-4ee3-8225-c81179892429))
(pad "42" thru_hole rect locked (at 13.522 4.041 270) (size 0.65 1) (drill 0.3) (layers *.Cu *.Mask) (tstamp 99e206ee-4b04-4485-8d8b-f1155487d696))
(pad "43" smd rect locked (at 14.03 6.119 270) (size 0.65 1) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 15d20a84-c67d-406a-8f2f-001322d8cdba))
)
(footprint "Connector_PinHeader_1.27mm:PinHeader_1x04_P1.27mm_Vertical" (layer "F.Cu")
(tedit 59FED6E3) (tstamp 00000000-0000-0000-0000-000060a70d29)
(at 162.814 118.872)
(descr "Through hole straight pin header, 1x04, 1.27mm pitch, single row")
(tags "Through hole pin header THT 1x04 1.27mm single row")
(path "/00000000-0000-0000-0000-000060b130e0")
(attr through_hole)
(fp_text reference "J4" (at 0 -1.695) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f3935af2-4741-481e-a356-18669ba62852)
)
(fp_text value "Conn_01x04_Male" (at 0 5.505) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b0bc21cb-1c14-4a0d-a1e3-9f9cf2e15f53)
)
(fp_text user "${REFERENCE}" (at 0 1.905 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8a10dc19-6765-4c50-8798-3ff04b908505)
)
(fp_line (start -1.11 0) (end -1.11 -0.76) (layer "F.SilkS") (width 0.12) (tstamp 0de06a62-eceb-4406-88ce-79b08810a748))
(fp_line (start -1.11 0.76) (end -1.11 4.505) (layer "F.SilkS") (width 0.12) (tstamp 37b6076b-8683-4a6c-b148-8452cca7ac07))
(fp_line (start 0.30753 4.505) (end 1.11 4.505) (layer "F.SilkS") (width 0.12) (tstamp 45bb3251-b27c-47ec-b1ad-93c7b1e2d11a))
(fp_line (start 0.563471 0.76) (end 1.11 0.76) (layer "F.SilkS") (width 0.12) (tstamp 91a4b7f3-48c6-48c8-9ba0-3fb88b796880))
(fp_line (start -1.11 -0.76) (end 0 -0.76) (layer "F.SilkS") (width 0.12) (tstamp b134e113-688a-4714-afae-ed7b463b09b9))
(fp_line (start 1.11 0.76) (end 1.11 4.505) (layer "F.SilkS") (width 0.12) (tstamp e17ade98-cf3c-43a7-b865-ef7482f65226))
(fp_line (start -1.11 0.76) (end -0.563471 0.76) (layer "F.SilkS") (width 0.12) (tstamp ed55f6fa-7a17-45ce-8ffe-8ef03294b201))
(fp_line (start -1.11 4.505) (end -0.30753 4.505) (layer "F.SilkS") (width 0.12) (tstamp f3d6d515-e477-4147-9b82-71925eda380c))
(fp_line (start 1.55 4.95) (end 1.55 -1.15) (layer "F.CrtYd") (width 0.05) (tstamp 5e20d6ef-33a9-4bce-b43b-a69b0ba621e6))
(fp_line (start -1.55 4.95) (end 1.55 4.95) (layer "F.CrtYd") (width 0.05) (tstamp 787a19d4-8714-4e72-ba92-eaa214520009))
(fp_line (start -1.55 -1.15) (end -1.55 4.95) (layer "F.CrtYd") (width 0.05) (tstamp 95c95a2f-51bb-476f-a3b6-0d8d57098851))
(fp_line (start 1.55 -1.15) (end -1.55 -1.15) (layer "F.CrtYd") (width 0.05) (tstamp b4933169-a420-4b40-826a-9184cd1b40d9))
(fp_line (start -1.05 4.445) (end -1.05 -0.11) (layer "F.Fab") (width 0.1) (tstamp 568f9be1-6809-4512-8868-99101a647301))
(fp_line (start 1.05 -0.635) (end 1.05 4.445) (layer "F.Fab") (width 0.1) (tstamp 91fa5dff-8d0e-48a7-b7c8-c4fb66a68504))
(fp_line (start -1.05 -0.11) (end -0.525 -0.635) (layer "F.Fab") (width 0.1) (tstamp a1bbe781-1c96-4663-ad93-ac056b981e61))
(fp_line (start -0.525 -0.635) (end 1.05 -0.635) (layer "F.Fab") (width 0.1) (tstamp ae73f24e-7772-4c6a-ae6b-3b0849d95168))
(fp_line (start 1.05 4.445) (end -1.05 4.445) (layer "F.Fab") (width 0.1) (tstamp c762e47f-783e-431a-bdc7-a69886974243))
(pad "1" thru_hole rect locked (at 0 0) (size 1 1) (drill 0.65) (layers *.Cu *.Mask)
(net 1 "+3V3") (tstamp 64519ba5-8e8b-49cc-9737-9a4e8f167e53))
(pad "2" thru_hole oval locked (at 0 1.27) (size 1 1) (drill 0.65) (layers *.Cu *.Mask)
(net 2 "GNDREF") (tstamp 3afb223c-1217-4036-bca4-e7ed5d7c1294))
(pad "3" thru_hole oval locked (at 0 2.54) (size 1 1) (drill 0.65) (layers *.Cu *.Mask)
(net 26 "SWD") (tstamp a2367874-7242-4196-bf48-16eb9ad1fe13))
(pad "4" thru_hole oval locked (at 0 3.81) (size 1 1) (drill 0.65) (layers *.Cu *.Mask)
(net 25 "SWC") (tstamp e569daeb-089b-424f-bea2-fbd626986fa4))
(model "${KISYS3DMOD}/Connector_PinHeader_1.27mm.3dshapes/PinHeader_1x04_P1.27mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_1.27mm:PinHeader_2x01_P1.27mm_Vertical" (layer "F.Cu")
(tedit 59FED6E3) (tstamp 00000000-0000-0000-0000-000060e69757)
(at 182.0164 106.8832 -90)
(descr "Through hole straight pin header, 2x01, 1.27mm pitch, double rows")
(tags "Through hole pin header THT 2x01 1.27mm double row")
(path "/00000000-0000-0000-0000-000060ec4861")
(attr through_hole)
(fp_text reference "J8" (at -0.6604 1.7018 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b2419bd1-77f5-4404-9b6e-5788d77eab4e)
)
(fp_text value "Conn_01x02_Female" (at 0.635 1.695 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fa2fa0ff-f657-4977-b9a4-bcc0c1aa49e2)
)
(fp_text user "${REFERENCE}" (at 0.635 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 10a4129b-3b81-49ca-bc17-47a862b36c27)
)
(fp_line (start 0.76 -0.695) (end 0.96247 -0.695) (layer "F.SilkS") (width 0.12) (tstamp 14079b1e-0260-415b-b1da-7ff80dbf1fbe))
(fp_line (start 1.57753 -0.695) (end 2.4 -0.695) (layer "F.SilkS") (width 0.12) (tstamp 1c064535-5191-44da-bea0-17ce1a39c8d4))
(fp_line (start 0.76 -0.563471) (end 0.76 -0.695) (layer "F.SilkS") (width 0.12) (tstamp 1f7028cd-da7e-42ba-a0b6-2a1f6b228d90))
(fp_line (start 0.563471 0.76) (end 0.706529 0.76) (layer "F.SilkS") (width 0.12) (tstamp 253d6e25-a55f-4c1f-9b49-d8168e83e5e5))
(fp_line (start 2.4 -0.695) (end 2.4 0.695) (layer "F.SilkS") (width 0.12) (tstamp 399e6a28-d050-4d2f-89f0-8a142bbaa5dc))
(fp_line (start -1.13 0) (end -1.13 -0.76) (layer "F.SilkS") (width 0.12) (tstamp 5b350133-b3ac-4dd1-b0b7-30f5187cff4c))
(fp_line (start 0.76 0.706529) (end 0.76 0.563471) (layer "F.SilkS") (width 0.12) (tstamp a459148e-9d1f-40e7-92a4-ce2a544cffc8))
(fp_line (start -1.13 0.76) (end 2.4 0.76) (layer "F.SilkS") (width 0.12) (tstamp b929db23-9615-489f-8c82-17696c928442))
(fp_line (start -1.13 0.76) (end -0.563471 0.76) (layer "F.SilkS") (width 0.12) (tstamp cf06e555-f6ea-4427-b5eb-f9ff125066a6))
(fp_line (start -1.13 0.76) (end -1.13 0.695) (layer "F.SilkS") (width 0.12) (tstamp e3ec70bd-172f-4630-a9ca-2f59ee5bae49))
(fp_line (start -1.13 -0.76) (end 0 -0.76) (layer "F.SilkS") (width 0.12) (tstamp fa037100-8892-4d9c-bf48-1e2807d526fe))
(fp_line (start 2.85 -1.15) (end -1.6 -1.15) (layer "F.CrtYd") (width 0.05) (tstamp 283e4514-e78b-49a6-b982-dae4b38cdcf7))
(fp_line (start 2.85 1.15) (end 2.85 -1.15) (layer "F.CrtYd") (width 0.05) (tstamp 38514c8f-74ff-489a-8d64-c0c11266ce51))
(fp_line (start -1.6 -1.15) (end -1.6 1.15) (layer "F.CrtYd") (width 0.05) (tstamp d12501c4-241e-44d9-b0c5-5cdf3cf3cf66))
(fp_line (start -1.6 1.15) (end 2.85 1.15) (layer "F.CrtYd") (width 0.05) (tstamp dfe71917-43a9-4e85-89d4-7537ee92eaf9))
(fp_line (start -0.2175 -0.635) (end 2.34 -0.635) (layer "F.Fab") (width 0.1) (tstamp 05c45a9d-2b59-47da-8c77-00f8c0ddda35))
(fp_line (start 2.34 -0.635) (end 2.34 0.635) (layer "F.Fab") (width 0.1) (tstamp 0d4030fa-2e7d-463f-b5be-9afd5dbaeccf))
(fp_line (start 2.34 0.635) (end -1.07 0.635) (layer "F.Fab") (width 0.1) (tstamp 1af3fc7d-180b-41ae-9858-e365f7d2d41c))
(fp_line (start -1.07 0.2175) (end -0.2175 -0.635) (layer "F.Fab") (width 0.1) (tstamp 4436665d-1193-4037-98e3-5d24044cd3c1))
(fp_line (start -1.07 0.635) (end -1.07 0.2175) (layer "F.Fab") (width 0.1) (tstamp eab7ee47-517a-4d88-870c-7528d44c99b7))
(pad "1" thru_hole rect locked (at 0 0 270) (size 1 1) (drill 0.65) (layers *.Cu *.Mask)
(net 27 "/VBUS") (tstamp 84683ffa-5cc9-4a34-bd7e-dcb678ff6e1c))
(pad "2" thru_hole oval locked (at 1.27 0 270) (size 1 1) (drill 0.65) (layers *.Cu *.Mask)
(net 32 "Net-(J8-Pad2)") (tstamp fc63fde9-14e3-46b2-8f4c-be281098e6f3))
(model "${KISYS3DMOD}/Connector_PinHeader_1.27mm.3dshapes/PinHeader_2x01_P1.27mm_Vertical.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-000060e69768)
(at 179.1716 110.617 180)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(path "/00000000-0000-0000-0000-000060ed462e")
(attr smd)
(fp_text reference "R1" (at 2.1844 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6f3547b3-46b4-4083-bf9a-872fd6308247)
)
(fp_text value "5.7K" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f2f788d6-5c0d-4856-81a9-f94e13b1b209)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp aa708ba9-4a3e-4940-97d0-0861a8ca49df)
)
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 4415647a-e02f-44f6-8d66-04411d1ccc8a))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp b0d21357-3745-4798-a62b-f39e1af1a7e7))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 948c5066-cd4b-4b07-938c-bc8bb8a070bc))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp ad438c3b-4951-49e5-bd1e-aa98d16b6e32))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp be3de98c-f3e5-44a0-b291-85589cf19798))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp de426597-89c6-48af-8637-f61d895ac390))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 4729b932-e9a0-4d1c-8a8f-cc5d5aeb622d))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 79a9b4c3-67fc-4017-85c6-e6b56833a156))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 9de24d3b-53e8-45bc-899e-cd37ad80eea2))