-
Notifications
You must be signed in to change notification settings - Fork 3
/
nsumo.kicad_pcb
10686 lines (10598 loc) · 600 KB
/
nsumo.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" jumper)
(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.05)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile false)
(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 "manufacture/rev2/assembly/")
)
)
(net 0 "")
(net 1 "GND")
(net 2 "Net-(C1-Pad1)")
(net 3 "Net-(C2-Pad1)")
(net 4 "+5V")
(net 5 "+3V3")
(net 6 "RST")
(net 7 "Net-(C7-Pad1)")
(net 8 "+BATT")
(net 9 "Net-(D3-Pad2)")
(net 10 "Net-(D5-Pad2)")
(net 11 "IR_RECEIVER")
(net 12 "Net-(D6-Pad2)")
(net 13 "SCL")
(net 14 "SDA")
(net 15 "Net-(J3-Pad1)")
(net 16 "LD_FRONT_LEFT")
(net 17 "LD_BACK_LEFT")
(net 18 "LD_FRONT_RIGHT")
(net 19 "LD_BACK_RIGHT")
(net 20 "MOTS_RIGHT_PWM")
(net 21 "MOTS_LEFT_PWM")
(net 22 "Net-(C3-Pad1)")
(net 23 "Net-(C4-Pad1)")
(net 24 "Net-(D2-Pad2)")
(net 25 "Net-(J3-Pad2)")
(net 26 "Net-(C4-Pad2)")
(net 27 "Net-(R12-Pad2)")
(net 28 "Net-(R3-Pad2)")
(net 29 "Net-(SW2-Pad2)")
(net 30 "SBWTCK")
(net 31 "XSHUT_LEFT")
(net 32 "XSHUT_FRONT")
(net 33 "INT_FRONT")
(net 34 "XSHUT_FLEFT")
(net 35 "XSHUT_FRIGHT")
(net 36 "UNUSED_2")
(net 37 "UNUSED_1")
(net 38 "XSHUT_RIGHT")
(net 39 "TEST_LED")
(net 40 "MOTS_RIGHT_CH2")
(net 41 "MOTS_RIGHT_CH1")
(net 42 "MOTS_LEFT_CH2")
(net 43 "MOTS_LEFT_CH1")
(net 44 "UART_TX")
(net 45 "UART_RX")
(net 46 "MR_B01")
(net 47 "MR_B02")
(net 48 "MR_A02")
(net 49 "MR_A01")
(net 50 "ML_B01")
(net 51 "ML_B02")
(net 52 "ML_A02")
(net 53 "ML_A01")
(net 54 "Net-(D1-Pad2)")
(net 55 "Net-(D7-Pad2)")
(net 56 "Net-(D8-Pad2)")
(net 57 "Net-(D9-Pad2)")
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-0000609cde11)
(at 138.66 93.34 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-0000609d9389")
(attr smd)
(fp_text reference "C8" (at -0.62 -1.34 90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 82914227-3c4b-483b-a930-04aff92c73ce)
)
(fp_text value "100nF" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 29aa7255-4535-4402-9651-8cd792feb408)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 57bb90af-663a-41d6-b400-0d4f24259321)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 4e3ce3b2-0062-4894-90c9-d123f1516483))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp eecc54f1-353d-4bbc-bb3a-293df7de7d03))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 66f6f596-d133-4b42-be47-c4fe19e2ffad))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp ab43ca15-9c06-47f9-b257-1383a2b21523))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp b270f771-721b-49fe-aa42-63a5cebe1f4d))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp b816ca3f-a882-4972-80a7-12605138b1a3))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 2d665c4d-1437-426f-b9cd-c53451fe5b1a))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 2e68d109-cc4d-465c-aef0-0344d11ba114))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 72263aa2-32c4-4252-a768-30b77365cca2))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp b4b71689-5ffe-4e48-b200-1a13c10bff4a))
(pad "1" smd roundrect (at -0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "+3V3") (tstamp ae6839cd-d76e-41ae-9d9d-d53496654de7))
(pad "2" smd roundrect (at 0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (tstamp 5a0d2da8-4bb5-4a74-b5da-474a571f78e2))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-0000609cde22)
(at 141.86 113.34 -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-000060a0fdb3")
(attr smd)
(fp_text reference "C9" (at -0.9 -1.6 90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp bede1092-872b-4e49-9d3a-d552aec96b57)
)
(fp_text value "0.1uF" (at 0 1.68 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 83d90ef5-ba1f-4396-a807-2497210769f8)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 71507327-aca7-400b-91af-35ed0f809b8f)
)
(fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer "F.SilkS") (width 0.12) (tstamp 31d58769-4cff-4557-a551-62670289ca77))
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer "F.SilkS") (width 0.12) (tstamp e2543627-5409-4a7b-8859-04e0792eebb7))
(fp_line (start 1.7 -0.98) (end 1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 37d3bf2b-1361-43a6-a660-8e584912f573))
(fp_line (start 1.7 0.98) (end -1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 561099e0-143b-4476-90ab-c417c91b1a04))
(fp_line (start -1.7 -0.98) (end 1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp 7a4a755d-2ace-41c1-b10d-7757788b8203))
(fp_line (start -1.7 0.98) (end -1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp e7c62455-092d-4b40-96ae-88b150e3c5b0))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp 50383816-a4cc-4b5e-9339-20372903bf5c))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 5fd956ea-65d6-43f8-ada9-d42beef6dfb4))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 72eb8031-447e-41e3-aaa5-59f792bf0a9e))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp 85ae0676-f861-4514-b9fb-20bc3f549861))
(pad "1" smd roundrect (at -0.95 0 270) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "+3V3") (tstamp e0c90fa4-34d6-4bdd-8060-6f1e3b1600cd))
(pad "2" smd roundrect (at 0.95 0 270) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (tstamp e4c50208-faff-4dc6-92f3-177bc479ae49))
(model "${KICAD6_3DMODEL_DIR}/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-0000609cde44)
(at 138.26 118.59 180)
(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-000060a12aa2")
(attr smd)
(fp_text reference "C11" (at -1.4 -1.55 180) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 39b32f38-e85c-4148-a7da-5963c53275c0)
)
(fp_text value "0.1uF" (at 0 1.68) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4c436fb9-5de1-4241-82c9-60c46b745983)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 1a583d77-1271-468e-9e6d-48c6b4b96c33)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 3ace8ec6-69f0-440a-a0d0-6974f2827dfc))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer "F.SilkS") (width 0.12) (tstamp 4e9748b4-9793-4c68-99f7-24ad5e00abd4))
(fp_line (start 1.7 -0.98) (end 1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp b6e81dd6-ac21-44c4-b41e-33986174ff12))
(fp_line (start -1.7 0.98) (end -1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp d038719f-bd10-44ee-af1d-bbbbd049eabf))
(fp_line (start 1.7 0.98) (end -1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp e0e2ca39-d81d-4638-b2d7-b3eff9325a7e))
(fp_line (start -1.7 -0.98) (end 1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp f1d21065-3e98-4f76-bf00-449e62d84735))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 360c2bbd-a0a3-46a6-a8fc-000e22263bb0))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp 73ff453e-6e39-4800-947b-a5ba4142b15e))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp 8367ac6f-a401-42a3-80d6-61003e3b96b7))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 92d05aad-ed2d-48a1-8722-6f04baafafa8))
(pad "1" smd roundrect (at -0.95 0 180) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "+BATT") (tstamp 514b636b-fcea-4b24-9700-348d8bb6d8c3))
(pad "2" smd roundrect (at 0.95 0 180) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (tstamp 756c57ca-b724-416e-bbc3-080fcadffb70))
(model "${KICAD6_3DMODEL_DIR}/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-0000609cde55)
(at 153.02 109.14 -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-000060a5b01e")
(attr smd)
(fp_text reference "C12" (at 0.67 2.23 90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp b71ddef6-c4f1-4638-88a2-70b8198ce713)
)
(fp_text value "0.1uF" (at 0 1.68 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6c1254ea-bcca-4e9f-8154-57ba0c018bda)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 2a5167dd-b099-47f4-a80e-65ed416f30a6)
)
(fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer "F.SilkS") (width 0.12) (tstamp 53eb5fc0-41cc-43ad-8003-3a7163adca82))
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 8470e88a-4561-440d-a9ed-06e09e74cee0))
(fp_line (start 1.7 -0.98) (end 1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 05948aca-5f7e-4444-bc98-26836b70ffa7))
(fp_line (start -1.7 -0.98) (end 1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp 750bc78c-9e0f-4eac-bb57-b7a331ff8fb6))
(fp_line (start 1.7 0.98) (end -1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 9d703bfa-623c-4a73-94ce-75987d3b3490))
(fp_line (start -1.7 0.98) (end -1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp ad3d2496-9d91-4c3e-a06b-0ce2ea4713c0))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp 0be47f5e-8728-4813-9da5-3e9b67d971d3))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 98fac554-e694-479c-a41a-2d5451b79e52))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp cc2cc001-3014-4352-a9f3-8f23cffbd334))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp e547fe25-99ba-4e40-b44f-26baa2850f1a))
(pad "1" smd roundrect (at -0.95 0 270) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "+BATT") (tstamp 1462d938-5411-4e22-aa72-27d46121d151))
(pad "2" smd roundrect (at 0.95 0 270) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (tstamp add861c7-e8f7-4cfa-8bd4-7e4de3f19f7c))
(model "${KICAD6_3DMODEL_DIR}/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-0000609cde66)
(at 141.86 117.44 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-000060a11b38")
(attr smd)
(fp_text reference "C13" (at 0.8 2.4 90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 2c8d589a-b9f4-4b08-9a5c-2a4974fdd278)
)
(fp_text value "10uF" (at 0 1.68 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 874c218a-578e-4a62-a8c1-fe8414dd125f)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp cecc35a9-9205-4ae7-a0bd-74fd3ba1022e)
)
(fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer "F.SilkS") (width 0.12) (tstamp ce052e62-9895-4eaf-b763-02bb1f2f2fc0))
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer "F.SilkS") (width 0.12) (tstamp eacb8113-e0ce-4580-bfb3-1a131027d34b))
(fp_line (start 1.7 -0.98) (end 1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp c1138cb6-aa60-4fae-9b51-8c58b8d505bb))
(fp_line (start 1.7 0.98) (end -1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp d738ee88-2b80-4bb4-9428-856217969013))
(fp_line (start -1.7 0.98) (end -1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp e2cf0e60-d46d-43a0-8c43-11f95b75bd32))
(fp_line (start -1.7 -0.98) (end 1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp f3ba663e-8563-4c48-a8cc-72c18d8d96e8))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp 5d28ac6a-038b-41fa-a41c-77399bf887bc))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp d4cd87e2-b977-4912-8c02-b958c3339182))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp dc48cb12-ea35-4f7d-a2e1-838d59de09d2))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp e8276d7a-599d-4ddf-b976-d27fd2070882))
(pad "1" smd roundrect (at -0.95 0 90) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "+BATT") (tstamp 1865e3cc-eab3-47af-9960-88cfba1e9259))
(pad "2" smd roundrect (at 0.95 0 90) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (tstamp 557bb52d-e17c-47df-b43b-bdb1b2282920))
(model "${KICAD6_3DMODEL_DIR}/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-0000609cde77)
(at 156.1 107.57)
(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-000060a5aac0")
(attr smd)
(fp_text reference "C14" (at 0.36 -2.13) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 4710b798-1e70-479f-a9cf-8924483eb95b)
)
(fp_text value "10uF" (at 0 1.68) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b710020c-0f3a-4776-a938-eddc58b26b95)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 6afec823-4e19-4f9a-a174-3fabb349aa58)
)
(fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer "F.SilkS") (width 0.12) (tstamp 76307877-93d9-4c0f-a5f9-0aed627694c8))
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer "F.SilkS") (width 0.12) (tstamp ea6b98e2-a2ec-4613-9464-fbb4b8668dde))
(fp_line (start -1.7 0.98) (end -1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp 11b01bb4-39ea-409f-925f-51bc6ae57194))
(fp_line (start 1.7 0.98) (end -1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 1f06b6a4-22d3-4d97-9ac5-ac4136235e28))
(fp_line (start 1.7 -0.98) (end 1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp bfe587c3-599b-43a0-925f-0e6550c42540))
(fp_line (start -1.7 -0.98) (end 1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp c343f10f-7158-458c-9d27-44b39b47bd87))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 3167853e-d988-452f-8725-12f67a4c957c))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp 64221fe8-21fa-49d0-9f10-9851134afcf1))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 76004765-6e34-42e5-bef2-e8d5daedc3a7))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp f2266ac4-6863-413a-9b83-62c15f9ec3b5))
(pad "1" smd roundrect (at -0.95 0) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "+BATT") (tstamp ec7425db-97df-4e3f-a1d9-7fa3fa52762c))
(pad "2" smd roundrect (at 0.95 0) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (tstamp 114173d4-7413-449e-a4bf-f5b2e91f1f4e))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.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-0000609cdedc)
(at 151.76 103.34)
(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-0000609516f5")
(attr smd)
(fp_text reference "D6" (at -0.9 -1.5) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 4ac39e6e-a6ad-43fd-a8a9-7dcc022ec2a8)
)
(fp_text value "BLUE" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 754bf98a-8769-4626-8a48-f7ea25e97916)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp a8caaf32-6833-4065-a1df-1481de0313ff)
)
(fp_line (start 0.8 -0.735) (end -1.485 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 2902cb0a-8f42-4c95-9ea3-5e179bfad9e8))
(fp_line (start -1.485 0.735) (end 0.8 0.735) (layer "F.SilkS") (width 0.12) (tstamp 6a625978-850a-45fd-8737-a5233c233ebd))
(fp_line (start -1.485 -0.735) (end -1.485 0.735) (layer "F.SilkS") (width 0.12) (tstamp ca75c077-f24e-4105-bb17-e07a86a020b8))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 0a2fc805-5bca-434a-b0c2-d0d22d640cec))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 26c54d9e-426a-46a2-8f80-7ac178df51ff))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 54ecaf46-4bb4-4ad0-885c-b288908b184a))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp c36f8251-808c-4f72-8a4b-d0fe3ef6d78f))
(fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 575a00a1-dec2-49af-ab3a-df281627a881))
(fp_line (start -0.5 -0.4) (end -0.8 -0.1) (layer "F.Fab") (width 0.1) (tstamp 8e2bb03d-9e85-4adc-9962-f0a6d5e6180c))
(fp_line (start -0.8 -0.1) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp ad88d1c1-a355-41d5-9f44-f354b8bdcfb9))
(fp_line (start -0.8 0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp afde7c3c-69e5-42e6-a877-f5b517d6b101))
(fp_line (start 0.8 -0.4) (end -0.5 -0.4) (layer "F.Fab") (width 0.1) (tstamp f748c853-29f7-4110-bf47-e0834adfce78))
(pad "1" smd roundrect (at -0.7875 0) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (tstamp 471eb4c1-1fb6-4731-b769-cc81195874cc))
(pad "2" smd roundrect (at 0.7875 0) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "Net-(D6-Pad2)") (tstamp 29da739d-c2ca-49f2-9ee2-ee6636ae1dea))
(model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_2.2mm_M2_Pad_Via" (layer "F.Cu")
(tedit 56DDB9C7) (tstamp 00000000-0000-0000-0000-0000609cdf0e)
(at 169.46 124.04)
(descr "Mounting Hole 2.2mm, M2")
(tags "mounting hole 2.2mm m2")
(path "/00000000-0000-0000-0000-000062941189")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "H1" (at -3.7 1.1) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1d951c73-3340-406f-913b-29953a74ecaf)
)
(fp_text value "MountingHole_Pad" (at 0 3.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6d1dfd97-4859-4482-9e7b-8df75fcc7c9b)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 27792339-96aa-456f-97bd-92f46f99c363)
)
(fp_circle (center 0 0) (end 2.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp f1edfb03-e4be-48d6-8c11-f9cfbb2135de))
(fp_circle (center 0 0) (end 2.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 16dd7632-1c5d-4f48-b1fe-004194c18703))
(pad "1" thru_hole circle (at 0 0) (size 4.4 4.4) (drill 2.2) (layers *.Cu *.Mask)
(net 1 "GND") (tstamp 1649514f-be2c-4397-84a3-b203c4176700))
(pad "1" thru_hole circle (at -1.65 0) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 1 "GND") (tstamp 35af6bdd-53ff-42e4-b72a-2b3ff4a35922))
(pad "1" thru_hole circle (at -1.166726 -1.166726) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 1 "GND") (tstamp 5d0d7524-b89d-4f6c-9d44-8457b02a6678))
(pad "1" thru_hole circle (at 1.166726 1.166726) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 1 "GND") (tstamp 5f285648-9d61-4112-a5f7-49852771fb7f))
(pad "1" thru_hole circle (at 1.166726 -1.166726) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 1 "GND") (tstamp 73c3bc2f-5c04-45ab-a74e-bb865b4065e4))
(pad "1" thru_hole circle (at 0 1.65) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 1 "GND") (tstamp 87af81b5-cad9-406d-8283-65af2b602860))
(pad "1" thru_hole circle (at -1.166726 1.166726) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 1 "GND") (tstamp b28ef261-063d-448f-8ef0-25d86b62b1da))
(pad "1" thru_hole circle (at 0 -1.65) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 1 "GND") (tstamp cd63438d-19a2-4af3-acb2-4b7b2f4b4eda))
(pad "1" thru_hole circle (at 1.65 0) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 1 "GND") (tstamp f6f1d552-75bb-4b55-b8a4-e2bf105fbebb))
)
(footprint "MountingHole:MountingHole_2.2mm_M2_Pad_Via" (layer "F.Cu")
(tedit 56DDB9C7) (tstamp 00000000-0000-0000-0000-0000609cdf1e)
(at 125.46 124.04)
(descr "Mounting Hole 2.2mm, M2")
(tags "mounting hole 2.2mm m2")
(path "/00000000-0000-0000-0000-00006295bff8")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "H2" (at 3.6 1.3) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 56736959-a6ac-419b-abfb-5783ac2576e0)
)
(fp_text value "MountingHole_Pad" (at 0 3.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6325db16-d337-46ef-8950-87c3050a5897)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 86283825-26b2-484d-a379-58509c7afb04)
)
(fp_circle (center 0 0) (end 2.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 8af92a00-d5f4-44c2-808c-388f9f4dff42))
(fp_circle (center 0 0) (end 2.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp f63310ec-6ab5-4dc4-b39c-007271092b15))
(pad "1" thru_hole circle (at 1.166726 1.166726) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 1 "GND") (tstamp 0a21e7d0-6c69-4634-b2b6-f0d0223d8049))
(pad "1" thru_hole circle (at 0 -1.65) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 1 "GND") (tstamp 2d804580-45d8-4d5b-af99-e9291a298cf1))
(pad "1" thru_hole circle (at -1.166726 1.166726) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 1 "GND") (tstamp 5776c7b2-505a-4422-8b44-5d47c379972c))
(pad "1" thru_hole circle (at 0 1.65) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 1 "GND") (tstamp 77dbfddd-e2d7-43c4-9e2f-d61569f3a788))
(pad "1" thru_hole circle (at 1.166726 -1.166726) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 1 "GND") (tstamp 7b4f6d54-7ed6-4901-bb69-20ba0e1e7347))
(pad "1" thru_hole circle (at -1.65 0) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 1 "GND") (tstamp 9036254a-4409-4c3b-aa32-ac5ac201e1cc))
(pad "1" thru_hole circle (at -1.166726 -1.166726) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 1 "GND") (tstamp cb848295-591b-4fc5-a51a-bce8a59b5c70))
(pad "1" thru_hole circle (at 0 0) (size 4.4 4.4) (drill 2.2) (layers *.Cu *.Mask)
(net 1 "GND") (tstamp f20e7d11-a476-4b8a-926b-dff7faa8a7ed))
(pad "1" thru_hole circle (at 1.65 0) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 1 "GND") (tstamp f6ed04a0-ba11-4b67-938a-2ac59d652fb6))
)
(footprint "MountingHole:MountingHole_2.2mm_M2_Pad_Via" (layer "F.Cu")
(tedit 56DDB9C7) (tstamp 00000000-0000-0000-0000-0000609cdf2e)
(at 169.46 65.04)
(descr "Mounting Hole 2.2mm, M2")
(tags "mounting hole 2.2mm m2")
(path "/00000000-0000-0000-0000-000062963455")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "H3" (at 0 -3.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e2bca42a-ec74-4cf4-ad33-e5df024b4233)
)
(fp_text value "MountingHole_Pad" (at 0 3.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6d012fbc-a5e9-4e1f-84d4-e411fd28d128)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3a0155a8-2358-4768-b398-e7751d6c5ecc)
)
(fp_circle (center 0 0) (end 2.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp ed6eac1d-cbe2-4fed-8bae-5f5999b4509d))
(fp_circle (center 0 0) (end 2.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 57213f4c-92e3-4d08-8a8c-4b0179c0d87e))
(pad "1" thru_hole circle (at -1.65 0) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 1 "GND") (tstamp 0b47a2df-49cd-4668-b0c4-1fbc36b963fe))
(pad "1" thru_hole circle (at -1.166726 1.166726) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 1 "GND") (tstamp 463ef955-df04-4e3f-a3b0-531d202b4f5e))
(pad "1" thru_hole circle (at 1.166726 -1.166726) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 1 "GND") (tstamp 57d2206c-a4ba-4c98-97c6-a583fecd3e2d))
(pad "1" thru_hole circle (at 1.65 0) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 1 "GND") (tstamp 6f252de8-4e33-4d64-8d6f-88700c27788c))
(pad "1" thru_hole circle (at 0 1.65) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 1 "GND") (tstamp 74d268c9-25be-4958-a09c-af7914daec91))
(pad "1" thru_hole circle (at 0 0) (size 4.4 4.4) (drill 2.2) (layers *.Cu *.Mask)
(net 1 "GND") (tstamp 89e7c424-2927-41ed-9462-887c20f01298))
(pad "1" thru_hole circle (at -1.166726 -1.166726) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 1 "GND") (tstamp bd5b91f6-b8ff-4dfe-8838-df5a4239b202))
(pad "1" thru_hole circle (at 1.166726 1.166726) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 1 "GND") (tstamp be61f1ea-ef51-46ab-8e39-8bbf9dc2cda7))
(pad "1" thru_hole circle (at 0 -1.65) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 1 "GND") (tstamp fade96c7-0c0f-4c4d-a287-8f5d4debf57d))
)
(footprint "MountingHole:MountingHole_2.2mm_M2_Pad_Via" (layer "F.Cu")
(tedit 56DDB9C7) (tstamp 00000000-0000-0000-0000-0000609cdf3e)
(at 125.46 65.04)
(descr "Mounting Hole 2.2mm, M2")
(tags "mounting hole 2.2mm m2")
(path "/00000000-0000-0000-0000-0000629635d1")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "H4" (at 0 -3.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5f37d1c5-2973-42d6-8e87-1c596d447096)
)
(fp_text value "MountingHole_Pad" (at 0 3.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8a50b5f7-d609-409d-947b-39530ce2e158)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ac284b14-05ec-4e61-b8f3-fbc0418a37e4)
)
(fp_circle (center 0 0) (end 2.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 191d745f-09ac-41b7-84e9-9c35abccd72d))
(fp_circle (center 0 0) (end 2.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp f4cf14d6-a305-4ad5-aaf1-abdbcac9663e))
(pad "1" thru_hole circle (at 0 -1.65) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 1 "GND") (tstamp 01338850-e9ed-4272-b85d-8d56e9298864))
(pad "1" thru_hole circle (at 0 0) (size 4.4 4.4) (drill 2.2) (layers *.Cu *.Mask)
(net 1 "GND") (tstamp 51e081dd-14da-453b-ad0a-f912cce13100))
(pad "1" thru_hole circle (at -1.65 0) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 1 "GND") (tstamp 7f7703d5-e789-4ab7-a485-ccdff65948bf))
(pad "1" thru_hole circle (at 1.65 0) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 1 "GND") (tstamp 9486eaf1-02fa-4cbc-9ed7-eb03d1bc9760))
(pad "1" thru_hole circle (at -1.166726 1.166726) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 1 "GND") (tstamp a562bf8a-bb22-4059-bc6c-2f407e692f21))
(pad "1" thru_hole circle (at 1.166726 1.166726) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 1 "GND") (tstamp b7f80015-e90a-4fbe-b601-45518e1720d7))
(pad "1" thru_hole circle (at 1.166726 -1.166726) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 1 "GND") (tstamp c2abb88c-aba0-4079-831a-8856a9968f8e))
(pad "1" thru_hole circle (at 0 1.65) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 1 "GND") (tstamp ce8a405e-63bd-4622-b309-87d904dba135))
(pad "1" thru_hole circle (at -1.166726 -1.166726) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 1 "GND") (tstamp d6846ea7-7fd6-41fd-b190-936bea2a4eb0))
)
(footprint "Connector_Molex:Molex_PicoBlade_53048-0510_1x05_P1.25mm_Horizontal" (layer "F.Cu")
(tedit 5B783024) (tstamp 00000000-0000-0000-0000-0000609cdf8a)
(at 127.66 76.94 -90)
(descr "Molex PicoBlade Connector System, 53048-0510, 5 Pins per row (http://www.molex.com/pdm_docs/sd/530480210_sd.pdf), generated with kicad-footprint-generator")
(tags "connector Molex PicoBlade top entry")
(path "/00000000-0000-0000-0000-000060a49102")
(attr through_hole)
(fp_text reference "J1" (at 2.5 -1.95 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4205242e-b1c9-487a-b0b5-87d7b7c82d79)
)
(fp_text value "Range_sensor_left" (at 2.5 5.65 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e06e8aa7-e153-48c0-a9d1-a19b5089c920)
)
(fp_text user "${REFERENCE}" (at 2.5 3.75 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b30de638-2fd9-4098-99da-1162e6d2e91d)
)
(fp_line (start -0.54 -0.86) (end -0.54 -1.16) (layer "F.SilkS") (width 0.12) (tstamp 06279e58-47a9-4b33-bb57-83d7a618b3cc))
(fp_line (start 2.5 -0.86) (end 5.54 -0.86) (layer "F.SilkS") (width 0.12) (tstamp 0aa4d9f2-137f-407a-ab80-92e4471b52a7))
(fp_line (start 6.61 -1.16) (end 6.61 4.56) (layer "F.SilkS") (width 0.12) (tstamp 1809bff9-7d40-4a06-bcd7-279ae832f60e))
(fp_line (start 2.5 -0.86) (end -0.54 -0.86) (layer "F.SilkS") (width 0.12) (tstamp 27f37be1-f41b-4f91-9608-f709ea51242b))
(fp_line (start 5.54 -0.86) (end 5.54 -1.16) (layer "F.SilkS") (width 0.12) (tstamp 2e0dabf9-9d03-4ae2-a692-3c4816b0e21f))
(fp_line (start 5.54 -1.16) (end 6.61 -1.16) (layer "F.SilkS") (width 0.12) (tstamp 3a6bc91f-e221-4153-93e9-30b371cec447))
(fp_line (start -0.25 -1.45) (end -0.75 -1.45) (layer "F.SilkS") (width 0.12) (tstamp 3c9fdb2f-ecf9-44d3-83c1-9c763d03af90))
(fp_line (start -1.61 -1.16) (end -1.61 4.56) (layer "F.SilkS") (width 0.12) (tstamp 53f47836-096c-448f-8c94-f2235e5557d3))
(fp_line (start 6.61 4.56) (end 2.5 4.56) (layer "F.SilkS") (width 0.12) (tstamp 617527c2-4fe3-4dff-85c0-d07a89eb4c1f))
(fp_line (start -0.25 -1.15) (end -0.25 -1.45) (layer "F.SilkS") (width 0.12) (tstamp 63a80e7b-5e29-492a-8025-d9ff6addda0f))
(fp_line (start -0.54 -1.16) (end -1.61 -1.16) (layer "F.SilkS") (width 0.12) (tstamp 9803e1ae-6c0f-483a-b618-d2b73b6bdcd6))
(fp_line (start -1.61 4.56) (end 2.5 4.56) (layer "F.SilkS") (width 0.12) (tstamp ffee5a36-5bf2-4c4a-b1fe-60fb5fb6d661))
(fp_line (start 7 4.95) (end 2.5 4.95) (layer "F.CrtYd") (width 0.05) (tstamp 01a1e18e-1544-4b7c-930a-f0329542b117))
(fp_line (start 5.15 -1.55) (end 7 -1.55) (layer "F.CrtYd") (width 0.05) (tstamp 028ac1b4-e1ed-461b-997d-aadb6b1ef972))
(fp_line (start 7 -1.55) (end 7 4.95) (layer "F.CrtYd") (width 0.05) (tstamp 55278d41-f42d-4e48-a850-2204c21d0135))
(fp_line (start 2.5 -1.25) (end -0.15 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp 6c6c213f-0125-4841-a04e-5210f411774b))
(fp_line (start -2 4.95) (end 2.5 4.95) (layer "F.CrtYd") (width 0.05) (tstamp 711d1f2b-7c6f-4406-bf53-35aa8485f67f))
(fp_line (start 2.5 -1.25) (end 5.15 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp b7ec94eb-e377-4843-a9d4-6c4661f41afb))
(fp_line (start -2 -1.55) (end -2 4.95) (layer "F.CrtYd") (width 0.05) (tstamp c5ebcd84-ea47-4584-9ce7-ad7ea72104ec))
(fp_line (start -0.15 -1.25) (end -0.15 -1.55) (layer "F.CrtYd") (width 0.05) (tstamp d8249d3a-6081-432d-aa74-a584290619e8))
(fp_line (start 5.15 -1.25) (end 5.15 -1.55) (layer "F.CrtYd") (width 0.05) (tstamp dffd2941-2541-43ee-97a9-79a0ab15f57d))
(fp_line (start -0.15 -1.55) (end -2 -1.55) (layer "F.CrtYd") (width 0.05) (tstamp e84c1345-f09e-4367-a88c-c0057c80e52f))
(fp_line (start 6.5 4.45) (end 2.5 4.45) (layer "F.Fab") (width 0.1) (tstamp 0574e075-2594-4438-bbc0-8c8fc583653d))
(fp_line (start 2.5 -0.75) (end 5.65 -0.75) (layer "F.Fab") (width 0.1) (tstamp 39cc8ef5-d8dd-44aa-b9d9-32d81db2ef2a))
(fp_line (start 2.5 -0.75) (end -0.65 -0.75) (layer "F.Fab") (width 0.1) (tstamp 63f8faf9-ce7a-4843-8f70-16e6659d5142))
(fp_line (start 6.5 -1.05) (end 6.5 4.45) (layer "F.Fab") (width 0.1) (tstamp 68749e4e-c6fe-41eb-af3a-29aeb0706aa3))
(fp_line (start 5.65 -0.75) (end 5.65 -1.05) (layer "F.Fab") (width 0.1) (tstamp 6ca7e4a5-7bde-4f72-a85f-5d11aea31a8e))
(fp_line (start -0.5 -0.75) (end 0 -0.042893) (layer "F.Fab") (width 0.1) (tstamp 7739676f-74a4-4276-8300-a92486fee4dc))
(fp_line (start -1.5 -1.05) (end -1.5 4.45) (layer "F.Fab") (width 0.1) (tstamp 9ff08661-8e9f-4ada-a725-f016115e7a02))
(fp_line (start 5.65 -1.05) (end 6.5 -1.05) (layer "F.Fab") (width 0.1) (tstamp c040fca7-83ca-4963-98a1-edcfa0a6d8d9))
(fp_line (start 0 -0.042893) (end 0.5 -0.75) (layer "F.Fab") (width 0.1) (tstamp d87da4fe-21f0-4657-8205-602e9208abb8))
(fp_line (start -1.5 4.45) (end 2.5 4.45) (layer "F.Fab") (width 0.1) (tstamp d9ad94bb-34f0-4f1a-8524-bdaeaee863fb))
(fp_line (start -0.65 -1.05) (end -1.5 -1.05) (layer "F.Fab") (width 0.1) (tstamp e78a0281-86b2-4c0d-817d-12bc27d269bb))
(fp_line (start -0.65 -0.75) (end -0.65 -1.05) (layer "F.Fab") (width 0.1) (tstamp f2c4bfc6-de7b-44b0-8929-ec4bd5cebfe1))
(pad "1" thru_hole roundrect (at 0 0 270) (size 0.8 1.3) (drill 0.5) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
(net 31 "XSHUT_LEFT") (tstamp de3ce46c-5c87-4cb1-9104-e7cf5c283084))
(pad "2" thru_hole oval (at 1.25 0 270) (size 0.8 1.3) (drill 0.5) (layers *.Cu *.Mask)
(net 14 "SDA") (tstamp e6125ca4-8c3c-48b2-807d-2c2fe81d8bc7))
(pad "3" thru_hole oval (at 2.5 0 270) (size 0.8 1.3) (drill 0.5) (layers *.Cu *.Mask)
(net 13 "SCL") (tstamp ce8469ff-bdaf-456b-85f8-067d98052b18))
(pad "4" thru_hole oval (at 3.75 0 270) (size 0.8 1.3) (drill 0.5) (layers *.Cu *.Mask)
(net 1 "GND") (tstamp 62415d82-40ba-4b9c-9a09-a1c3dfd66a68))
(pad "5" thru_hole oval (at 5 0 270) (size 0.8 1.3) (drill 0.5) (layers *.Cu *.Mask)
(net 5 "+3V3") (tstamp bce5b1ac-044e-4b74-9db6-acb90b2d00f2))
(model "${KICAD6_3DMODEL_DIR}/Connector_Molex.3dshapes/Molex_PicoBlade_53048-0510_1x05_P1.25mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model "${KIPRJMOD}/libs/3dmodels/530480510.stp"
(offset (xyz 2.5 -3.5 2))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 180))
)
)
(footprint "Connector_Molex:Molex_PicoBlade_53048-0510_1x05_P1.25mm_Horizontal" (layer "F.Cu")
(tedit 5B783024) (tstamp 00000000-0000-0000-0000-0000609ce007)
(at 139.41 67.24 180)
(descr "Molex PicoBlade Connector System, 53048-0510, 5 Pins per row (http://www.molex.com/pdm_docs/sd/530480210_sd.pdf), generated with kicad-footprint-generator")
(tags "connector Molex PicoBlade top entry")
(path "/00000000-0000-0000-0000-000060a1da36")
(attr through_hole)
(fp_text reference "J4" (at 2.5 -1.95) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 005f7bba-a8a9-4e07-ad6d-de2e5146ff30)
)
(fp_text value "Range_sensor_front_left" (at 2.5 5.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e443601b-4cd7-4597-8edb-fe734fe053c8)
)
(fp_text user "${REFERENCE}" (at 2.5 3.75) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b8413942-d6c5-419c-abde-ad0808ce4040)
)
(fp_line (start 5.54 -1.16) (end 6.61 -1.16) (layer "F.SilkS") (width 0.12) (tstamp 0a607643-7cbe-40aa-8963-65165d337d58))
(fp_line (start -0.25 -1.45) (end -0.75 -1.45) (layer "F.SilkS") (width 0.12) (tstamp 0c3504f3-b1ac-4d16-89e8-22bd078339b8))
(fp_line (start -1.61 -1.16) (end -1.61 4.56) (layer "F.SilkS") (width 0.12) (tstamp 11e5ad7c-b3cd-4d0a-b629-21b4d9115b6f))
(fp_line (start 6.61 -1.16) (end 6.61 4.56) (layer "F.SilkS") (width 0.12) (tstamp 1c14fcf7-7afe-40ba-a136-a2c0456a4f51))
(fp_line (start -0.25 -1.15) (end -0.25 -1.45) (layer "F.SilkS") (width 0.12) (tstamp 3a0a9998-2cda-4da2-9cf5-e90d754bd38f))
(fp_line (start 2.5 -0.86) (end -0.54 -0.86) (layer "F.SilkS") (width 0.12) (tstamp 45099ef8-b470-4f34-a90e-0a936a6b6d10))
(fp_line (start 6.61 4.56) (end 2.5 4.56) (layer "F.SilkS") (width 0.12) (tstamp 4c2296af-32ad-43f5-a2a0-7acff7a8cb73))
(fp_line (start -0.54 -1.16) (end -1.61 -1.16) (layer "F.SilkS") (width 0.12) (tstamp 764e9b26-4057-4449-8217-56505e0f3401))
(fp_line (start 2.5 -0.86) (end 5.54 -0.86) (layer "F.SilkS") (width 0.12) (tstamp 8fb20e93-f7b0-4261-985f-c093706f08ba))
(fp_line (start -0.54 -0.86) (end -0.54 -1.16) (layer "F.SilkS") (width 0.12) (tstamp d326ebbf-79b6-48d2-a6a7-ad8abb56bf3d))
(fp_line (start 5.54 -0.86) (end 5.54 -1.16) (layer "F.SilkS") (width 0.12) (tstamp e95bc7e1-afa8-4e79-944d-b78ff54851e4))
(fp_line (start -1.61 4.56) (end 2.5 4.56) (layer "F.SilkS") (width 0.12) (tstamp fbe3d599-804b-4434-a0f7-d1228fca0003))
(fp_line (start -0.15 -1.25) (end -0.15 -1.55) (layer "F.CrtYd") (width 0.05) (tstamp 004a02e4-0272-470d-a14e-2fe52fe82593))
(fp_line (start 5.15 -1.25) (end 5.15 -1.55) (layer "F.CrtYd") (width 0.05) (tstamp 605ef108-bf65-4b3c-b035-f1692fd7a098))
(fp_line (start 2.5 -1.25) (end -0.15 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp 85ad4ffc-0ea1-43e4-92d8-353fb427e768))
(fp_line (start 7 4.95) (end 2.5 4.95) (layer "F.CrtYd") (width 0.05) (tstamp 8784da16-aab1-4084-9421-1d07ddb5ea1f))
(fp_line (start 5.15 -1.55) (end 7 -1.55) (layer "F.CrtYd") (width 0.05) (tstamp b5084c89-9ef9-4fc9-83c8-88e6bc8e892b))
(fp_line (start -0.15 -1.55) (end -2 -1.55) (layer "F.CrtYd") (width 0.05) (tstamp bb4dbbaa-4b5d-4e6d-8c43-1b8be9dab861))
(fp_line (start 7 -1.55) (end 7 4.95) (layer "F.CrtYd") (width 0.05) (tstamp bcd658cb-5289-4019-8d06-04898f56833f))
(fp_line (start -2 -1.55) (end -2 4.95) (layer "F.CrtYd") (width 0.05) (tstamp c901e045-695f-4c29-83cc-8cb0a4bb27cf))
(fp_line (start 2.5 -1.25) (end 5.15 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp cffab4f5-85f3-407b-a649-74bb72009e9b))
(fp_line (start -2 4.95) (end 2.5 4.95) (layer "F.CrtYd") (width 0.05) (tstamp dc672fc4-349f-4386-9438-aaaac984aa5b))
(fp_line (start -0.5 -0.75) (end 0 -0.042893) (layer "F.Fab") (width 0.1) (tstamp 10114497-f494-407b-abed-85fabc05bbd8))
(fp_line (start 6.5 -1.05) (end 6.5 4.45) (layer "F.Fab") (width 0.1) (tstamp 206fa646-d4f1-47db-8708-f40ae9f3e078))
(fp_line (start -1.5 4.45) (end 2.5 4.45) (layer "F.Fab") (width 0.1) (tstamp 2ce31869-dfa4-442d-b82c-c59ac0baaa21))
(fp_line (start 2.5 -0.75) (end -0.65 -0.75) (layer "F.Fab") (width 0.1) (tstamp 3d93a757-86c3-452d-8e7e-e1472380bc48))
(fp_line (start 5.65 -0.75) (end 5.65 -1.05) (layer "F.Fab") (width 0.1) (tstamp 3f27385f-cbe1-45c9-ac9a-1c2672a2a35d))
(fp_line (start 2.5 -0.75) (end 5.65 -0.75) (layer "F.Fab") (width 0.1) (tstamp 4b4e7679-acd2-4382-b146-320233504a7f))
(fp_line (start -0.65 -1.05) (end -1.5 -1.05) (layer "F.Fab") (width 0.1) (tstamp 6623e3de-2118-4923-8ec4-49e3b68e063a))
(fp_line (start 5.65 -1.05) (end 6.5 -1.05) (layer "F.Fab") (width 0.1) (tstamp 6ffa4a0b-131d-4bfe-aa83-11979c841713))
(fp_line (start -1.5 -1.05) (end -1.5 4.45) (layer "F.Fab") (width 0.1) (tstamp 71b5bf6c-9c51-4eb1-aafa-cdb78154edfa))
(fp_line (start 0 -0.042893) (end 0.5 -0.75) (layer "F.Fab") (width 0.1) (tstamp 723e582b-e1c6-4601-84c2-ae29b576e53a))
(fp_line (start -0.65 -0.75) (end -0.65 -1.05) (layer "F.Fab") (width 0.1) (tstamp ba546f3f-9f91-45b7-b7e2-ee37445d0461))
(fp_line (start 6.5 4.45) (end 2.5 4.45) (layer "F.Fab") (width 0.1) (tstamp f5606098-a4b5-4eeb-9fa5-f9d99a2e7a01))
(pad "1" thru_hole roundrect (at 0 0 180) (size 0.8 1.3) (drill 0.5) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
(net 34 "XSHUT_FLEFT") (tstamp 4ee0ea3c-39fa-4305-9302-2ee36fb0816a))
(pad "2" thru_hole oval (at 1.25 0 180) (size 0.8 1.3) (drill 0.5) (layers *.Cu *.Mask)
(net 14 "SDA") (tstamp 10d0e8f3-fddb-4eac-917f-4364013d5539))
(pad "3" thru_hole oval (at 2.5 0 180) (size 0.8 1.3) (drill 0.5) (layers *.Cu *.Mask)
(net 13 "SCL") (tstamp 6a7769c3-c80d-4f67-890e-9d198d478ddd))
(pad "4" thru_hole oval (at 3.75 0 180) (size 0.8 1.3) (drill 0.5) (layers *.Cu *.Mask)
(net 1 "GND") (tstamp 2e074f39-f341-4958-bef7-3b1a944c481f))
(pad "5" thru_hole oval (at 5 0 180) (size 0.8 1.3) (drill 0.5) (layers *.Cu *.Mask)
(net 5 "+3V3") (tstamp bfd87b05-4ebc-4172-9869-55843457474c))
(model "${KICAD6_3DMODEL_DIR}/Connector_Molex.3dshapes/Molex_PicoBlade_53048-0510_1x05_P1.25mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model "${KIPRJMOD}/libs/3dmodels/530480510.stp"
(offset (xyz 2.5 -3.5 2))
(scale (xyz 1 1 1))
(rotate (xyz -180 180 0))
)
)
(footprint "Connector_JST:JST_PH_S2B-PH-K_1x02_P2.00mm_Horizontal" (layer "F.Cu")
(tedit 5B7745C6) (tstamp 00000000-0000-0000-0000-0000609ce038)
(at 165.46 89.34 90)
(descr "JST PH series connector, S2B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator")
(tags "connector JST PH top entry")
(path "/00000000-0000-0000-0000-0000609a218d")
(attr through_hole)
(fp_text reference "J5" (at 5.3 -0.8 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9a2c90c4-d108-490c-a4ef-f90839b42fec)
)
(fp_text value "BattConn0" (at 1 7.45 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp afe0cfde-94cc-4693-91a4-31be17812179)
)
(fp_text user "${REFERENCE}" (at 1 2.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 30e6da1a-ec42-41f7-ae0a-ea640aeea44d)
)
(fp_line (start -1.14 0.14) (end -1.14 -1.46) (layer "F.SilkS") (width 0.12) (tstamp 03c52c21-9f81-4a19-9890-eb9cfb396402))
(fp_line (start 0.5 2) (end 1.5 2) (layer "F.SilkS") (width 0.12) (tstamp 064b9ab8-0beb-4dbf-ade3-e5bc4486b94b))
(fp_line (start -0.3 2.5) (end -1.3 2.5) (layer "F.SilkS") (width 0.12) (tstamp 0a7ad466-7b8b-4d6b-93ef-3281d9e54a91))
(fp_line (start 3.3 2.5) (end 3.3 4.1) (layer "F.SilkS") (width 0.12) (tstamp 29e940a4-5585-4ada-9128-8f5117fdfd22))
(fp_line (start -2.06 6.36) (end 4.06 6.36) (layer "F.SilkS") (width 0.12) (tstamp 3292aeac-3252-4f8c-bd26-e21f54d3d5b1))
(fp_line (start -0.8 4.1) (end -0.8 6.36) (layer "F.SilkS") (width 0.12) (tstamp 3d91e159-b28f-4016-b781-d485dbd0a7a5))
(fp_line (start -1.3 2.5) (end -1.3 4.1) (layer "F.SilkS") (width 0.12) (tstamp 49cb8972-6f22-4d13-a568-a1f0fbf7c0c8))
(fp_line (start -2.06 0.14) (end -1.14 0.14) (layer "F.SilkS") (width 0.12) (tstamp 53279ea3-2f0b-40ec-b25e-0a09cafac841))
(fp_line (start 3.14 -1.46) (end 3.14 0.14) (layer "F.SilkS") (width 0.12) (tstamp 5446b27e-a028-47da-9660-5b63165e967a))
(fp_line (start -0.86 0.14) (end -0.86 -1.075) (layer "F.SilkS") (width 0.12) (tstamp 6c3934dd-f810-43cc-8ae1-96240df64d43))
(fp_line (start 2.3 4.1) (end 2.3 2.5) (layer "F.SilkS") (width 0.12) (tstamp 6f2d24f7-ad92-48c4-acf3-fa47d8165bf8))
(fp_line (start 4.06 6.36) (end 4.06 -1.46) (layer "F.SilkS") (width 0.12) (tstamp 71517e18-659e-4b8b-96d1-04596acf7ee1))
(fp_line (start -1.14 -1.46) (end -2.06 -1.46) (layer "F.SilkS") (width 0.12) (tstamp 74bfcd55-5e85-4660-be65-06062a0c760e))
(fp_line (start 3.14 0.14) (end 2.86 0.14) (layer "F.SilkS") (width 0.12) (tstamp 7ad70d78-f911-4e78-bfa3-eb4384fdc5b5))
(fp_line (start -0.3 4.1) (end -0.3 6.36) (layer "F.SilkS") (width 0.12) (tstamp 7f6fba64-d703-43eb-b7f6-258edb7c6c13))
(fp_line (start 4.06 -1.46) (end 3.14 -1.46) (layer "F.SilkS") (width 0.12) (tstamp 80fff2e6-73a5-4e2a-9349-b3401445275e))
(fp_line (start -0.86 0.14) (end -1.14 0.14) (layer "F.SilkS") (width 0.12) (tstamp 850aa5f6-5bb1-4c2a-99c5-f3161b79c2ed))
(fp_line (start 0.5 6.36) (end 0.5 2) (layer "F.SilkS") (width 0.12) (tstamp 933bdaf9-bdfa-49e6-9976-af82252c335b))
(fp_line (start 1.5 2) (end 1.5 6.36) (layer "F.SilkS") (width 0.12) (tstamp 985bbd29-6d41-4ae3-9f3e-e089452a70cf))
(fp_line (start -1.3 4.1) (end -0.3 4.1) (layer "F.SilkS") (width 0.12) (tstamp 9fb77340-8959-4e08-80d3-d396d0f40578))
(fp_line (start 3.3 4.1) (end 2.3 4.1) (layer "F.SilkS") (width 0.12) (tstamp a57a044f-1e0a-4f57-b98f-7a871f824575))
(fp_line (start 2.3 2.5) (end 3.3 2.5) (layer "F.SilkS") (width 0.12) (tstamp c1cde119-1828-42e3-ba3f-bb14b24a1fe9))
(fp_line (start -0.3 4.1) (end -0.3 2.5) (layer "F.SilkS") (width 0.12) (tstamp cd2bb6f9-575e-4667-9ed7-a872f550651d))
(fp_line (start 4.06 0.14) (end 3.14 0.14) (layer "F.SilkS") (width 0.12) (tstamp e9c78314-8654-4ecf-a53f-5325fdab5e45))
(fp_line (start -2.06 -1.46) (end -2.06 6.36) (layer "F.SilkS") (width 0.12) (tstamp fce99f12-458b-4b11-8764-608b1da370db))
(fp_line (start 4.45 -1.85) (end -2.45 -1.85) (layer "F.CrtYd") (width 0.05) (tstamp 5662e5d6-bc2a-4462-87fe-107c6d9ab49d))
(fp_line (start -2.45 6.75) (end 4.45 6.75) (layer "F.CrtYd") (width 0.05) (tstamp 8d53e9c9-18a3-4109-aa53-d44adf9141cf))
(fp_line (start 4.45 6.75) (end 4.45 -1.85) (layer "F.CrtYd") (width 0.05) (tstamp c2037d43-7f25-42d0-b395-5b43175f9944))
(fp_line (start -2.45 -1.85) (end -2.45 6.75) (layer "F.CrtYd") (width 0.05) (tstamp cf3a14b3-a3f8-4538-a7f3-850ef7d491e7))
(fp_line (start 3.25 -1.35) (end 3.25 0.25) (layer "F.Fab") (width 0.1) (tstamp 11250ad8-3722-467e-b9c0-3f871702e38b))
(fp_line (start 0 0.875) (end -0.5 1.375) (layer "F.Fab") (width 0.1) (tstamp 28524fc6-37a9-43e6-ad36-677957a0532a))
(fp_line (start 3.95 -1.35) (end 3.25 -1.35) (layer "F.Fab") (width 0.1) (tstamp 3b85451a-6e12-45fc-96a1-77360bc18215))
(fp_line (start -1.25 0.25) (end -1.25 -1.35) (layer "F.Fab") (width 0.1) (tstamp 6182facb-9838-4626-8330-5d06c1a16807))
(fp_line (start -0.5 1.375) (end 0.5 1.375) (layer "F.Fab") (width 0.1) (tstamp 62fd7450-d4b9-4ff8-a253-d4fe84a74245))
(fp_line (start -1.95 -1.35) (end -1.95 6.25) (layer "F.Fab") (width 0.1) (tstamp 7bb94872-8dbb-49c9-ba04-f5628db9fbfd))
(fp_line (start 3.95 6.25) (end 3.95 -1.35) (layer "F.Fab") (width 0.1) (tstamp 9ba4c7ff-e95d-44f3-9130-7648a30c506e))
(fp_line (start -1.95 6.25) (end 3.95 6.25) (layer "F.Fab") (width 0.1) (tstamp a83fc53b-f2e4-4a01-9c00-7538b050eb9c))
(fp_line (start 0.5 1.375) (end 0 0.875) (layer "F.Fab") (width 0.1) (tstamp cfee6a30-8392-4b95-afc6-b9d992173f75))
(fp_line (start -1.25 -1.35) (end -1.95 -1.35) (layer "F.Fab") (width 0.1) (tstamp e60135aa-f13b-4d7f-a02d-9f5e9a476e7c))
(fp_line (start 3.25 0.25) (end -1.25 0.25) (layer "F.Fab") (width 0.1) (tstamp e8954351-c94d-4870-9463-71cfee4378c5))
(pad "1" thru_hole roundrect (at 0 0 90) (size 1.2 1.75) (drill 0.75) (layers *.Cu *.Mask) (roundrect_rratio 0.208333)
(net 25 "Net-(J3-Pad2)") (tstamp ba02f3db-57f7-4799-9ce3-03986dd885d6))
(pad "2" thru_hole oval (at 2 0 90) (size 1.2 1.75) (drill 0.75) (layers *.Cu *.Mask)
(net 1 "GND") (tstamp 8fca82dc-76fc-4c97-bdbc-ecc655347bdd))
(model "${KICAD6_3DMODEL_DIR}/Connector_JST.3dshapes/JST_PH_S2B-PH-K_1x02_P2.00mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_Molex:Molex_PicoBlade_53048-0510_1x05_P1.25mm_Horizontal" (layer "F.Cu")
(tedit 5B783024) (tstamp 00000000-0000-0000-0000-0000609ce084)
(at 160.46 67.24 180)
(descr "Molex PicoBlade Connector System, 53048-0510, 5 Pins per row (http://www.molex.com/pdm_docs/sd/530480210_sd.pdf), generated with kicad-footprint-generator")
(tags "connector Molex PicoBlade top entry")
(path "/00000000-0000-0000-0000-000060a3029e")
(attr through_hole)
(fp_text reference "J7" (at 2.5 -1.95) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fcd0e196-8d7e-4c4c-a99c-c0d8a5f57856)
)
(fp_text value "Range_sensor_front_right" (at 2.5 5.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c8928d2d-8cea-43ac-afea-ea4baec6d359)
)
(fp_text user "${REFERENCE}" (at 2.5 3.75) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c3571a90-f3db-4d0f-b074-e6cc898f7921)
)
(fp_line (start 2.5 -0.86) (end 5.54 -0.86) (layer "F.SilkS") (width 0.12) (tstamp 0311fc11-2032-440f-a4be-df1fd105e702))
(fp_line (start -0.25 -1.45) (end -0.75 -1.45) (layer "F.SilkS") (width 0.12) (tstamp 08fac9fb-bd01-4e29-bb0a-a4ebc41404d7))
(fp_line (start -0.54 -1.16) (end -1.61 -1.16) (layer "F.SilkS") (width 0.12) (tstamp 27650710-7c55-4cb4-bd34-c80fcc619774))
(fp_line (start 2.5 -0.86) (end -0.54 -0.86) (layer "F.SilkS") (width 0.12) (tstamp 3a0ae96c-df09-4372-b20d-54fddebbdf39))
(fp_line (start -0.25 -1.15) (end -0.25 -1.45) (layer "F.SilkS") (width 0.12) (tstamp 70587800-7a81-4d85-8f29-25c4513540ec))
(fp_line (start -1.61 -1.16) (end -1.61 4.56) (layer "F.SilkS") (width 0.12) (tstamp 85ab3b9b-c1e5-4710-9414-2f3fc15e90a8))
(fp_line (start -1.61 4.56) (end 2.5 4.56) (layer "F.SilkS") (width 0.12) (tstamp 9e08eaf7-a538-49e1-acb3-91e047bc3fd7))
(fp_line (start 6.61 4.56) (end 2.5 4.56) (layer "F.SilkS") (width 0.12) (tstamp a2eb388d-0b35-4968-b572-1fb6a3e2fda5))
(fp_line (start 5.54 -1.16) (end 6.61 -1.16) (layer "F.SilkS") (width 0.12) (tstamp c7afafc6-d548-4bba-b86b-59cb1615caf9))
(fp_line (start 6.61 -1.16) (end 6.61 4.56) (layer "F.SilkS") (width 0.12) (tstamp e3433533-3c75-4c09-9fd7-b400a02b8643))
(fp_line (start -0.54 -0.86) (end -0.54 -1.16) (layer "F.SilkS") (width 0.12) (tstamp e420f8e5-ffc8-42a9-9342-9eec085f7288))
(fp_line (start 5.54 -0.86) (end 5.54 -1.16) (layer "F.SilkS") (width 0.12) (tstamp f03fc069-cba6-471f-842b-09342e567306))
(fp_line (start -0.15 -1.25) (end -0.15 -1.55) (layer "F.CrtYd") (width 0.05) (tstamp 0737a056-888e-4abf-8e90-747fcb02ac5b))
(fp_line (start 7 4.95) (end 2.5 4.95) (layer "F.CrtYd") (width 0.05) (tstamp 0be98f3e-b1de-48aa-bf2f-b705e6291adc))
(fp_line (start 2.5 -1.25) (end -0.15 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp 23b3bf9d-8854-4004-98d8-f0ad17c5a13a))
(fp_line (start -2 -1.55) (end -2 4.95) (layer "F.CrtYd") (width 0.05) (tstamp 31722a14-7c0c-48ed-a9ba-b6a2e0a2f3ad))
(fp_line (start 2.5 -1.25) (end 5.15 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp 3f36ae2b-271c-4042-baa2-71f36dd4a92c))
(fp_line (start 5.15 -1.55) (end 7 -1.55) (layer "F.CrtYd") (width 0.05) (tstamp 4beafc0d-b0ab-4186-951b-fd14bb9f83b5))
(fp_line (start 7 -1.55) (end 7 4.95) (layer "F.CrtYd") (width 0.05) (tstamp 5a81c55e-ac9f-41e3-b747-46a9bd8d0814))
(fp_line (start -0.15 -1.55) (end -2 -1.55) (layer "F.CrtYd") (width 0.05) (tstamp 5d2c038b-6646-4fcb-986f-765218b65ea0))
(fp_line (start 5.15 -1.25) (end 5.15 -1.55) (layer "F.CrtYd") (width 0.05) (tstamp 5ecc883d-1aa9-4578-8b5c-1384fffb9705))
(fp_line (start -2 4.95) (end 2.5 4.95) (layer "F.CrtYd") (width 0.05) (tstamp ae32f0d6-28f3-4cba-a889-c8c4f4e4b03b))
(fp_line (start -1.5 -1.05) (end -1.5 4.45) (layer "F.Fab") (width 0.1) (tstamp 024aec87-418d-43e2-982b-d40b3ec576b4))
(fp_line (start 5.65 -1.05) (end 6.5 -1.05) (layer "F.Fab") (width 0.1) (tstamp 2b886276-dd55-4b24-9805-ffa937415d2c))
(fp_line (start 6.5 4.45) (end 2.5 4.45) (layer "F.Fab") (width 0.1) (tstamp 4888375b-5458-4871-a1fa-505252626301))
(fp_line (start 0 -0.042893) (end 0.5 -0.75) (layer "F.Fab") (width 0.1) (tstamp 573709ba-970a-43b6-bdd2-b76923af50ff))
(fp_line (start -0.65 -0.75) (end -0.65 -1.05) (layer "F.Fab") (width 0.1) (tstamp 712360a5-aaf8-4267-800c-0958b8a0ea4d))
(fp_line (start -1.5 4.45) (end 2.5 4.45) (layer "F.Fab") (width 0.1) (tstamp 82379ead-3508-4425-94ba-5e4ce4df8beb))
(fp_line (start 2.5 -0.75) (end -0.65 -0.75) (layer "F.Fab") (width 0.1) (tstamp 82393777-34e1-4bbb-88d1-89e4aa816583))
(fp_line (start 2.5 -0.75) (end 5.65 -0.75) (layer "F.Fab") (width 0.1) (tstamp 8af47142-29dc-40d4-aa7a-27ae26471a34))
(fp_line (start 5.65 -0.75) (end 5.65 -1.05) (layer "F.Fab") (width 0.1) (tstamp a15b1a81-421d-431c-975d-5ca2fb5503b1))
(fp_line (start -0.65 -1.05) (end -1.5 -1.05) (layer "F.Fab") (width 0.1) (tstamp b341dfd3-46d2-4fd8-b31c-966da7e6faf5))
(fp_line (start 6.5 -1.05) (end 6.5 4.45) (layer "F.Fab") (width 0.1) (tstamp c1dbaaae-23f6-44fb-bee9-acc7bb52b326))
(fp_line (start -0.5 -0.75) (end 0 -0.042893) (layer "F.Fab") (width 0.1) (tstamp d6a7f71a-4da6-4997-9a3d-af77c0308253))
(pad "1" thru_hole roundrect (at 0 0 180) (size 0.8 1.3) (drill 0.5) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
(net 35 "XSHUT_FRIGHT") (tstamp 1290b743-65ab-4980-b135-236ff3e100b0))
(pad "2" thru_hole oval (at 1.25 0 180) (size 0.8 1.3) (drill 0.5) (layers *.Cu *.Mask)
(net 14 "SDA") (tstamp 5d3209c8-1fa2-42e1-89a8-60ec6ab2682a))
(pad "3" thru_hole oval (at 2.5 0 180) (size 0.8 1.3) (drill 0.5) (layers *.Cu *.Mask)
(net 13 "SCL") (tstamp 4ccddf64-8097-4c49-bf42-d86353b5f7b0))
(pad "4" thru_hole oval (at 3.75 0 180) (size 0.8 1.3) (drill 0.5) (layers *.Cu *.Mask)
(net 1 "GND") (tstamp 567a84aa-faec-4f5e-b4f6-63f428439809))
(pad "5" thru_hole oval (at 5 0 180) (size 0.8 1.3) (drill 0.5) (layers *.Cu *.Mask)
(net 5 "+3V3") (tstamp aefc27eb-12fe-4b03-82b8-4f5ea1b48fef))
(model "${KICAD6_3DMODEL_DIR}/Connector_Molex.3dshapes/Molex_PicoBlade_53048-0510_1x05_P1.25mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model "${KIPRJMOD}/libs/3dmodels/530480510.stp"
(offset (xyz 2.5 -3.5 2))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 180))
)
)
(footprint "Connector_Molex:Molex_PicoBlade_53048-0510_1x05_P1.25mm_Horizontal" (layer "F.Cu")
(tedit 5B783024) (tstamp 00000000-0000-0000-0000-0000609ce11c)
(at 167.26 82.24 90)
(descr "Molex PicoBlade Connector System, 53048-0510, 5 Pins per row (http://www.molex.com/pdm_docs/sd/530480210_sd.pdf), generated with kicad-footprint-generator")
(tags "connector Molex PicoBlade top entry")
(path "/00000000-0000-0000-0000-000060a3fff4")
(attr through_hole)
(fp_text reference "J9" (at 2.5 -1.95 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c3ff307f-501b-4398-bfbe-c3dbcec3c80e)
)
(fp_text value "Range_sensor_right" (at 2.5 5.65 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp df586398-15bb-43ad-9ce4-b6a3c8d718d7)
)
(fp_text user "${REFERENCE}" (at 2.5 3.75 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8e1c7203-9931-4994-8c3c-15dd9e303d95)
)
(fp_line (start -0.54 -0.86) (end -0.54 -1.16) (layer "F.SilkS") (width 0.12) (tstamp 08732a30-5b7f-491c-9f7e-c143a39ece72))
(fp_line (start 5.54 -1.16) (end 6.61 -1.16) (layer "F.SilkS") (width 0.12) (tstamp 0b7445ea-e103-4e5b-9a00-dd53e991655e))
(fp_line (start 6.61 4.56) (end 2.5 4.56) (layer "F.SilkS") (width 0.12) (tstamp 0f5e332d-aeaa-4ead-958c-993a39728c19))
(fp_line (start -1.61 -1.16) (end -1.61 4.56) (layer "F.SilkS") (width 0.12) (tstamp 323166a4-910a-417b-8c7d-c03feb7ffad4))
(fp_line (start 5.54 -0.86) (end 5.54 -1.16) (layer "F.SilkS") (width 0.12) (tstamp 8797612e-14ed-44eb-a090-2a8aad427753))
(fp_line (start -0.25 -1.45) (end -0.75 -1.45) (layer "F.SilkS") (width 0.12) (tstamp 89e5d9c8-0bb3-4443-b8fd-6941fecb950e))
(fp_line (start 2.5 -0.86) (end 5.54 -0.86) (layer "F.SilkS") (width 0.12) (tstamp 906b5f7a-936d-45b9-9540-4d3934a93429))
(fp_line (start 6.61 -1.16) (end 6.61 4.56) (layer "F.SilkS") (width 0.12) (tstamp a63bc584-eeb6-40c6-8804-6cb35a542b24))
(fp_line (start -1.61 4.56) (end 2.5 4.56) (layer "F.SilkS") (width 0.12) (tstamp c6e0a66c-1a0d-4a98-bcfd-2d9fcc773fcc))
(fp_line (start 2.5 -0.86) (end -0.54 -0.86) (layer "F.SilkS") (width 0.12) (tstamp c98d36b8-9034-4cc3-842e-e855c4c8d2d2))
(fp_line (start -0.54 -1.16) (end -1.61 -1.16) (layer "F.SilkS") (width 0.12) (tstamp e9ceb823-c334-4f2e-8d99-229361de873b))
(fp_line (start -0.25 -1.15) (end -0.25 -1.45) (layer "F.SilkS") (width 0.12) (tstamp eaa51897-930a-4f8d-a8ef-555c39f2a2a9))
(fp_line (start 7 4.95) (end 2.5 4.95) (layer "F.CrtYd") (width 0.05) (tstamp 076e6292-e03c-4264-8e1a-38fc388ff7ba))
(fp_line (start 2.5 -1.25) (end 5.15 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp 0ccea004-159c-4140-b5bd-f9753bf6d9f0))
(fp_line (start 5.15 -1.55) (end 7 -1.55) (layer "F.CrtYd") (width 0.05) (tstamp 251dee92-c362-41db-a1bd-8b45e6177357))
(fp_line (start -0.15 -1.25) (end -0.15 -1.55) (layer "F.CrtYd") (width 0.05) (tstamp 3e23ff80-976e-481f-b649-d3b6afc29a05))
(fp_line (start 7 -1.55) (end 7 4.95) (layer "F.CrtYd") (width 0.05) (tstamp 4afbcab0-8772-4bb7-8c18-21fe06bf2973))
(fp_line (start 5.15 -1.25) (end 5.15 -1.55) (layer "F.CrtYd") (width 0.05) (tstamp 5b945d17-5db9-4f27-954f-2f26254feeb9))
(fp_line (start 2.5 -1.25) (end -0.15 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp 9b5d8fad-a9d5-4261-94ae-888d349a7fb4))
(fp_line (start -2 4.95) (end 2.5 4.95) (layer "F.CrtYd") (width 0.05) (tstamp a2634fce-63a7-464e-949e-676604bb3aff))
(fp_line (start -2 -1.55) (end -2 4.95) (layer "F.CrtYd") (width 0.05) (tstamp b59c4726-b377-4e6b-88de-b9168b63598e))
(fp_line (start -0.15 -1.55) (end -2 -1.55) (layer "F.CrtYd") (width 0.05) (tstamp f5a2439b-06cb-41f4-a35c-c0e90d1afb13))
(fp_line (start 6.5 -1.05) (end 6.5 4.45) (layer "F.Fab") (width 0.1) (tstamp 058f45a1-dd8e-4168-b397-fb3e1bc2348f))
(fp_line (start 2.5 -0.75) (end -0.65 -0.75) (layer "F.Fab") (width 0.1) (tstamp 1f52d044-35a1-4971-a033-158db0c09f89))
(fp_line (start 2.5 -0.75) (end 5.65 -0.75) (layer "F.Fab") (width 0.1) (tstamp 2cd4200f-d3e2-47d7-9e04-6340e4870ffc))
(fp_line (start -1.5 4.45) (end 2.5 4.45) (layer "F.Fab") (width 0.1) (tstamp 44ceed4d-02f1-4589-87bb-12242eec59cf))
(fp_line (start -0.65 -1.05) (end -1.5 -1.05) (layer "F.Fab") (width 0.1) (tstamp 60e57f7a-b7c2-462d-8ea4-3cfe65fa213f))
(fp_line (start -1.5 -1.05) (end -1.5 4.45) (layer "F.Fab") (width 0.1) (tstamp 696fc689-c13d-4a9e-abe6-d97c1df0b026))
(fp_line (start 0 -0.042893) (end 0.5 -0.75) (layer "F.Fab") (width 0.1) (tstamp 87107e8d-4714-46d3-85da-82a3135d91f4))
(fp_line (start -0.65 -0.75) (end -0.65 -1.05) (layer "F.Fab") (width 0.1) (tstamp a28caf18-fdd6-4a0c-871f-ca6a401f0fb2))
(fp_line (start 6.5 4.45) (end 2.5 4.45) (layer "F.Fab") (width 0.1) (tstamp ac7bce60-1c51-4a11-8e7a-4d41cdbafddb))
(fp_line (start 5.65 -1.05) (end 6.5 -1.05) (layer "F.Fab") (width 0.1) (tstamp d0ddeb8e-759f-4e61-939c-35c1d55a0f23))
(fp_line (start 5.65 -0.75) (end 5.65 -1.05) (layer "F.Fab") (width 0.1) (tstamp f9a301ba-8e22-467c-a4bf-770701a350e1))
(fp_line (start -0.5 -0.75) (end 0 -0.042893) (layer "F.Fab") (width 0.1) (tstamp fd359357-19b0-4f4e-8f3e-cbd63c2c758b))
(pad "1" thru_hole roundrect (at 0 0 90) (size 0.8 1.3) (drill 0.5) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
(net 13 "SCL") (tstamp 6ab0df03-3bba-4c66-ae19-73cf336e8ecc))
(pad "2" thru_hole oval (at 1.25 0 90) (size 0.8 1.3) (drill 0.5) (layers *.Cu *.Mask)
(net 14 "SDA") (tstamp 511544ba-bbf8-4f33-a977-0fcd63e86ccc))
(pad "3" thru_hole oval (at 2.5 0 90) (size 0.8 1.3) (drill 0.5) (layers *.Cu *.Mask)
(net 38 "XSHUT_RIGHT") (tstamp dbac7066-2fdd-4dac-b00e-c1d1e9a2ff24))
(pad "4" thru_hole oval (at 3.75 0 90) (size 0.8 1.3) (drill 0.5) (layers *.Cu *.Mask)
(net 1 "GND") (tstamp 896232b1-e057-4484-b9cd-53ea18de7753))
(pad "5" thru_hole oval (at 5 0 90) (size 0.8 1.3) (drill 0.5) (layers *.Cu *.Mask)
(net 5 "+3V3") (tstamp 1fa53ba4-9572-4824-9c7a-49a94b999a8e))
(model "${KICAD6_3DMODEL_DIR}/Connector_Molex.3dshapes/Molex_PicoBlade_53048-0510_1x05_P1.25mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model "${KIPRJMOD}/libs/3dmodels/530480510.stp"
(offset (xyz 2.5 -3.5 2))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 180))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp 00000000-0000-0000-0000-0000609ce134)
(at 135.66 91.58 180)
(descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x02 2.54mm single row")
(path "/00000000-0000-0000-0000-000061624a61")
(attr through_hole)
(fp_text reference "J10" (at 2.5 0 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5de151cb-70ef-4de6-8791-7554d8803ed7)
)
(fp_text value "UART" (at 0 4.87) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp adeb541d-0e55-423b-b1a5-ac8cec777f8d)
)
(fp_text user "${REFERENCE}" (at 0 1.27 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f7af00b0-76c3-459f-8c46-f5a83dd3bee8)
)
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 08f043dd-bcf7-4acd-8635-32f5deb1da95))
(fp_line (start 1.33 1.27) (end 1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp 77c3608e-7555-4ea2-9cf6-8b737d2fa1ab))
(fp_line (start -1.33 3.87) (end 1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp 7d646651-5aef-453f-ad93-710225b27da3))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp a98f71dd-c354-4853-808a-84ac5a6fd5b8))
(fp_line (start -1.33 1.27) (end -1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp cada0bea-1c13-43de-8c76-f71887adf217))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp da8c55c6-63df-473c-9e1e-fdce7c38b264))
(fp_line (start -1.8 -1.8) (end -1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp 1c29e414-397e-4fe3-9282-d1236b08d101))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 24217754-65f8-4058-9ca8-8216e58d0e1a))
(fp_line (start -1.8 4.35) (end 1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp 27208b49-19e9-4d2b-ae5f-f9d3f61dd96a))
(fp_line (start 1.8 4.35) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 8a32e254-34b1-4b9c-b7a4-13d903135be2))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 52a0f0b5-ecc7-4927-b13c-0655c9a7b663))
(fp_line (start 1.27 -1.27) (end 1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp 6c900bf0-cac7-4987-a689-121ebc5161e1))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 80e098c7-ff0f-40d9-839f-9ee0ada137c7))
(fp_line (start -1.27 3.81) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 931b2192-b16b-4ebe-b929-3a8ff8451b32))
(fp_line (start 1.27 3.81) (end -1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp e1db068e-8ed8-4edf-a7f4-035239f5ddee))
(pad "1" thru_hole rect (at 0 0 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 45 "UART_RX") (tstamp dd833fe9-3e27-4443-b300-ef655e704311))
(pad "2" thru_hole oval (at 0 2.54 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 44 "UART_TX") (tstamp 8f379579-e294-46e7-ab1c-e5e4b2ef7d0c))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Custom_Connectors:Molex_PicoBlade_53048-0310_1x03_P1.25mm_Horizontal" (layer "F.Cu")
(tedit 60BE6621) (tstamp 00000000-0000-0000-0000-0000609ce221)
(at 127.66 70.24 -90)
(descr "Molex PicoBlade Connector System, 53048-0310, 3 Pins per row (http://www.molex.com/pdm_docs/sd/530480210_sd.pdf), generated with kicad-footprint-generator")
(tags "connector Molex PicoBlade top entry")
(path "/00000000-0000-0000-0000-00006240f4c4")
(attr through_hole)
(fp_text reference "J19" (at 1.25 -1.95 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d2d8b90f-1cc3-46b8-ae12-2efddeab106a)
)
(fp_text value "Ld_front_left" (at 1.25 5.65 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))