-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtargetbunnybots.kicad_pcb
5704 lines (5681 loc) · 235 KB
/
targetbunnybots.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 20221018) (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)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010f0_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 4)
(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 "")
)
)
(net 0 "")
(net 1 "+6V")
(net 2 "GND")
(net 3 "GND1")
(net 4 "+5V")
(net 5 "/Switch1")
(net 6 "/Switch2")
(net 7 "/Switch3")
(net 8 "/Switch4")
(net 9 "+3.3V")
(net 10 "unconnected-(J5-SDA{slash}GPIO2-Pad3)")
(net 11 "Net-(J7-Pin_6)")
(net 12 "unconnected-(J5-SCL{slash}GPIO3-Pad5)")
(net 13 "unconnected-(J5-GCLK0{slash}GPIO4-Pad7)")
(net 14 "unconnected-(J5-GPIO14{slash}TXD-Pad8)")
(net 15 "unconnected-(J5-GPIO15{slash}RXD-Pad10)")
(net 16 "unconnected-(J5-GPIO17-Pad11)")
(net 17 "Net-(J5-GPIO18{slash}PWM0)")
(net 18 "unconnected-(J5-GPIO27-Pad13)")
(net 19 "unconnected-(J5-GPIO22-Pad15)")
(net 20 "unconnected-(J5-GPIO23-Pad16)")
(net 21 "unconnected-(J5-GPIO24-Pad18)")
(net 22 "unconnected-(J5-GPIO25-Pad22)")
(net 23 "unconnected-(J5-SCLK0{slash}GPIO11-Pad23)")
(net 24 "unconnected-(J5-ID_SD{slash}GPIO0-Pad27)")
(net 25 "unconnected-(J5-ID_SC{slash}GPIO1-Pad28)")
(net 26 "unconnected-(J5-GCLK1{slash}GPIO5-Pad29)")
(net 27 "unconnected-(J5-GCLK2{slash}GPIO6-Pad31)")
(net 28 "unconnected-(J5-PWM0{slash}GPIO12-Pad32)")
(net 29 "unconnected-(J5-PWM1{slash}GPIO13-Pad33)")
(net 30 "unconnected-(J5-GPIO19{slash}MISO1-Pad35)")
(net 31 "unconnected-(J5-GPIO16-Pad36)")
(net 32 "unconnected-(J5-GPIO26-Pad37)")
(net 33 "unconnected-(J5-GPIO20{slash}MOSI1-Pad38)")
(net 34 "unconnected-(J5-GPIO21{slash}SCLK1-Pad40)")
(net 35 "unconnected-(J6-Pin_1-Pad1)")
(net 36 "unconnected-(J6-Pin_2-Pad2)")
(net 37 "unconnected-(J6-Pin_5-Pad5)")
(net 38 "unconnected-(J7-Pin_1-Pad1)")
(net 39 "unconnected-(J7-Pin_2-Pad2)")
(net 40 "unconnected-(J7-Pin_5-Pad5)")
(net 41 "unconnected-(J9-Pin_2-Pad2)")
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 002bcb6f-d64e-475c-aab4-88d2d1efc4aa)
(at 114.3 132.08)
(descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x02 2.54mm single row")
(property "Sheetfile" "targetbunnybots.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/d536c618-d457-4600-8f67-924214f6e8f8")
(attr through_hole)
(fp_text reference "J1" (at 0 -2.33) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0831484b-2916-4076-afbf-7781a16caab5)
)
(fp_text value "Conn_01x02" (at 0 4.87) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f9a32d70-88d9-4559-8912-7684715bb748)
)
(fp_text user "${REFERENCE}" (at 0 1.27 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 12910d92-f729-43ed-8234-2c905d56eb48)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 86c18d9f-0713-4f3a-bb25-d912a418ee32))
(fp_line (start -1.33 0) (end -1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 495b1709-380e-426d-9eae-352fd869cc9c))
(fp_line (start -1.33 1.27) (end -1.33 3.87)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 54f3f04e-6a19-4561-9727-9fc0fe2174a5))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0980d367-6afc-4b4f-8023-ff445fd4ec39))
(fp_line (start -1.33 3.87) (end 1.33 3.87)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9b55f679-ca39-4efa-9586-963248885269))
(fp_line (start 1.33 1.27) (end 1.33 3.87)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2104588c-1f34-4e04-85af-2a44a1c18ce0))
(fp_line (start -1.8 -1.8) (end -1.8 4.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 10756110-d0ef-4706-ac3b-890aa7419a3c))
(fp_line (start -1.8 4.35) (end 1.8 4.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 74525e5b-e662-4963-8ada-5b5fa5b2e102))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d8998e53-2cec-4b37-a7fa-e17a7224dc55))
(fp_line (start 1.8 4.35) (end 1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 24b54842-bf71-4d5a-86c1-717da0a7cf52))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3cf442b5-72b4-49b7-97a6-eac0a38ce29d))
(fp_line (start -1.27 3.81) (end -1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp aa7b2558-bb5c-4a19-95ab-8ad087ed5ca5))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 21fa594c-b43f-46cd-a4dd-84e3358a18a3))
(fp_line (start 1.27 -1.27) (end 1.27 3.81)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f3b49076-144b-4161-8dc0-d7f7e8c755d9))
(fp_line (start 1.27 3.81) (end -1.27 3.81)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 93fb8664-dba2-4937-9d22-3f4128b8ef9c))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 1 "+6V") (pinfunction "Pin_1") (pintype "passive") (tstamp 375f8357-ce74-4329-a860-8b0244e59312))
(pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp dac45ece-9d81-4107-a7ee-77b3dae316bd))
(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 "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 3a7bd8e2-2757-42d0-afbf-f8b7598fc413)
(at 139.7 91.44 -90)
(descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x03 2.54mm single row")
(property "Sheetfile" "targetbunnybots.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/bd32415c-4b7b-4692-b693-00f0f592050e")
(attr through_hole)
(fp_text reference "J8" (at 0 -2.33 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 12051616-5575-4c8b-88b2-8046d1b71f85)
)
(fp_text value "Conn_01x03" (at 2.54 15.24 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2a869ccf-792a-454b-88cf-7307cf7786fe)
)
(fp_text user "${REFERENCE}" (at 0 2.54) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 41f9cf7d-2f85-41d8-abd6-f02b0cc139cf)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp eca5d3b9-9e94-4145-af94-2ad5fb2d8635))
(fp_line (start -1.33 0) (end -1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0e9ee5e3-0555-49e4-9d77-1c8d7c58f25b))
(fp_line (start -1.33 1.27) (end -1.33 6.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 497229e1-c5b3-41a5-bff8-9eafd2a3ab66))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 489a4023-b4f2-40fd-ba86-7acf4df84911))
(fp_line (start -1.33 6.41) (end 1.33 6.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e3743405-5ab1-4e30-bc70-6c54bd32af92))
(fp_line (start 1.33 1.27) (end 1.33 6.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 40c3cc23-e3fa-4cb8-aad8-9869b04bf5d7))
(fp_line (start -1.8 -1.8) (end -1.8 6.85)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e96e1ffb-05b4-4c4b-af25-d8e34c8a1002))
(fp_line (start -1.8 6.85) (end 1.8 6.85)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f28e479c-3d07-4290-8054-12b317d89c7d))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d850b261-e115-43d7-960f-df84d69887f6))
(fp_line (start 1.8 6.85) (end 1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bbd57449-684b-458e-863a-1b0ea07ae0b5))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c9a292d4-bcbf-45a4-a47e-5421c9467b6a))
(fp_line (start -1.27 6.35) (end -1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f1fe7a2f-47ab-47c5-96f4-6f997ab798a7))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 635ac4a4-1eae-45c5-88f7-49a7878108c8))
(fp_line (start 1.27 -1.27) (end 1.27 6.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f9d96631-d65e-437f-8ce1-0c3c815af6fa))
(fp_line (start 1.27 6.35) (end -1.27 6.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9de44545-3f5b-46d4-a6af-6d971ef0eaf6))
(pad "1" thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 4 "+5V") (pinfunction "Pin_1") (pintype "passive") (tstamp dfdafe91-86a9-462d-94d4-fbad8c4ed034))
(pad "2" thru_hole oval (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 11 "Net-(J7-Pin_6)") (pinfunction "Pin_2") (pintype "passive") (tstamp 59e95eff-1f91-4e3a-bcee-a3f3abb53754))
(pad "3" thru_hole oval (at 0 5.08 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 3 "GND1") (pinfunction "Pin_3") (pintype "passive") (tstamp 659661f4-d0f8-4ae1-b655-ca1d4441bf71))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_2.5mm" (layer "F.Cu")
(tstamp 5ef07127-1fc3-428f-a271-2e4e52aa260a)
(at 171.55 144.5)
(descr "Mounting Hole 2.5mm, no annular")
(tags "mounting hole 2.5mm no annular")
(property "Sheetfile" "targetbunnybots.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Mounting Hole without connection")
(property "ki_keywords" "mounting hole")
(path "/831128a0-7cc1-46a0-8557-0bf2a366c81b")
(attr exclude_from_pos_files)
(fp_text reference "H4" (at 0 -3.5) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4184461c-7782-412f-a15a-c0aaec5bcb7e)
)
(fp_text value "MountingHole" (at 0 3.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7c54c09e-2b83-4fe2-a9b7-39ca325e0281)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 83ff4520-67d8-4208-91a5-058c7276a5a4)
)
(fp_circle (center 0 0) (end 2.5 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp 14485476-3800-446c-83aa-64c61290e1d0))
(fp_circle (center 0 0) (end 2.75 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 8990c52a-4b62-47e6-8e49-43912e2bc7bf))
(pad "" np_thru_hole circle (at 0 0) (size 2.5 2.5) (drill 2.5) (layers "*.Cu" "*.Mask") (tstamp d55fc0da-d1ce-456f-bed3-92685d0ce5ed))
)
(footprint "Connector_PinSocket_2.54mm:PinSocket_1x06_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 71f37fd8-63d4-4bd6-9744-aebfbfbdeaf2)
(at 114.3 106.68 90)
(descr "Through hole straight socket strip, 1x06, 2.54mm pitch, single row (from Kicad 4.0.7), script generated")
(tags "Through hole socket strip THT 1x06 2.54mm single row")
(property "Sheetfile" "targetbunnybots.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x06, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/a551ea64-516a-44b5-b2eb-e1a7ef6862e9")
(attr through_hole)
(fp_text reference "J7" (at 0 -2.77 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 893831d1-35f4-49b3-b8bb-4163e4e47506)
)
(fp_text value "Conn_01x06" (at 0 15.47 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9ec0949f-5d05-45dd-a7c5-3221ce1ee86a)
)
(fp_text user "${REFERENCE}" (at 0 6.35) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 991c63f9-e235-42af-b3fe-a6d3aeaf0b35)
)
(fp_line (start -1.33 1.27) (end -1.33 14.03)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 88d93fcf-6385-41a7-9e23-4e502b24b973))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 64097447-0ce7-425d-8102-2c80e74814da))
(fp_line (start -1.33 14.03) (end 1.33 14.03)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e030da55-12dd-4b24-a645-cd950e47a222))
(fp_line (start 0 -1.33) (end 1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 92d83b22-4c67-4232-b858-e65e692de2d4))
(fp_line (start 1.33 -1.33) (end 1.33 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b09d1861-ce10-485d-8ee8-dd31a26d5df6))
(fp_line (start 1.33 1.27) (end 1.33 14.03)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6e8936b5-56f6-42c8-97cb-17a800766a4b))
(fp_line (start -1.8 -1.8) (end 1.75 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c6faa8ce-f006-45ba-b04d-3a80cdf79143))
(fp_line (start -1.8 14.45) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d1f7a43b-1986-486f-b923-46901e4f785b))
(fp_line (start 1.75 -1.8) (end 1.75 14.45)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 96aeb3a5-5b4b-46a3-990b-e240738a5ee8))
(fp_line (start 1.75 14.45) (end -1.8 14.45)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c0f32f42-ec04-4a9d-871c-c403f4c918d6))
(fp_line (start -1.27 -1.27) (end 0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2fa77f0a-38cd-400f-9ce3-6b6e149f5fbe))
(fp_line (start -1.27 13.97) (end -1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8fba30f5-f3ab-4796-9fcc-62094999bc4d))
(fp_line (start 0.635 -1.27) (end 1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 33e420d9-c5a9-4dea-93a9-c99c737426e2))
(fp_line (start 1.27 -0.635) (end 1.27 13.97)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c5518914-e1de-4163-b5b6-4c1fa9ec3f1d))
(fp_line (start 1.27 13.97) (end -1.27 13.97)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fa826264-5ba9-471b-9ff0-d582d8122bf4))
(pad "1" thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 38 "unconnected-(J7-Pin_1-Pad1)") (pinfunction "Pin_1") (pintype "passive+no_connect") (tstamp 6945b1c2-fdd2-4e0b-99c7-2afe8331af52))
(pad "2" thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 39 "unconnected-(J7-Pin_2-Pad2)") (pinfunction "Pin_2") (pintype "passive+no_connect") (tstamp 35e92696-6163-4aed-8a80-245d7da6f403))
(pad "3" thru_hole oval (at 0 5.08 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 3 "GND1") (pinfunction "Pin_3") (pintype "passive") (tstamp 2d13efc8-31e1-4579-946f-a741efaf0381))
(pad "4" thru_hole oval (at 0 7.62 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 4 "+5V") (pinfunction "Pin_4") (pintype "passive") (tstamp 37e18edd-cc9f-4c8e-bbee-7754c1c82c5b))
(pad "5" thru_hole oval (at 0 10.16 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 40 "unconnected-(J7-Pin_5-Pad5)") (pinfunction "Pin_5") (pintype "passive+no_connect") (tstamp a5116d52-684c-419a-9464-5fd5a2f7a03b))
(pad "6" thru_hole oval (at 0 12.7 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 11 "Net-(J7-Pin_6)") (pinfunction "Pin_6") (pintype "passive") (tstamp 0d82054e-6ee9-439f-b41a-149957ff1e3b))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_1x06_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinSocket_2.54mm:PinSocket_2x20_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 82167333-fc45-4337-a8b9-de3d4c9dad97)
(at 149.86 91.44)
(descr "Through hole straight socket strip, 2x20, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated")
(tags "Through hole socket strip THT 2x20 2.54mm double row")
(property "Sheetfile" "targetbunnybots.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "expansion header for Raspberry Pi 2 & 3")
(property "ki_keywords" "raspberrypi gpio")
(path "/b0ca345a-1b96-4a4d-ad1f-f935b99e7739")
(attr through_hole)
(fp_text reference "J5" (at -1.27 -2.77) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9eb2b81c-cd1d-4d2a-8300-57d5377dc5d7)
)
(fp_text value "Raspberry_Pi_Zero_W" (at -1.27 51.03) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e01670f3-9a0b-45aa-aa6e-5ccf970880e5)
)
(fp_text user "${REFERENCE}" (at -1.27 24.13 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b7df9402-d23a-4c94-ad2c-5a06b3c1001a)
)
(fp_line (start -3.87 -1.33) (end -3.87 49.59)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3d774090-8679-4aee-afe4-5c4b4967ad26))
(fp_line (start -3.87 -1.33) (end -1.27 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 80fe1503-78aa-4549-9eb0-c7f8aafe2fa2))
(fp_line (start -3.87 49.59) (end 1.33 49.59)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e239182f-0508-4838-9935-32048eb73941))
(fp_line (start -1.27 -1.33) (end -1.27 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5c45c931-4ebb-40bf-ad6e-16dbd5cf726b))
(fp_line (start -1.27 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 36ace7c9-916c-46a1-a57c-8945666f0b49))
(fp_line (start 0 -1.33) (end 1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fd25befd-5fb0-4669-ab2d-bdb22c28d550))
(fp_line (start 1.33 -1.33) (end 1.33 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp df2b81ed-fd60-42de-84b5-e7538d745d20))
(fp_line (start 1.33 1.27) (end 1.33 49.59)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3ba6fb9c-84f3-48ab-bacf-a273cbe0495c))
(fp_line (start -4.34 -1.8) (end 1.76 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e4db8163-23e8-40cd-bbc5-20000d0c6baa))
(fp_line (start -4.34 50) (end -4.34 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp aa470b20-df51-4326-9497-3bbd38ee76cc))
(fp_line (start 1.76 -1.8) (end 1.76 50)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f95e04b2-5a68-4351-b3fe-4aff8cc90fdd))
(fp_line (start 1.76 50) (end -4.34 50)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5c186c6c-42db-4081-8353-48ac342127f7))
(fp_line (start -3.81 -1.27) (end 0.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5f283c72-9803-4470-a3a0-87793b4ade47))
(fp_line (start -3.81 49.53) (end -3.81 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 56e6190f-3e8d-4d9c-91e4-1f2f3c975fb5))
(fp_line (start 0.27 -1.27) (end 1.27 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e76fa40f-1a49-476b-b03b-bdd3ce11ff79))
(fp_line (start 1.27 -0.27) (end 1.27 49.53)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 84074360-7dfa-4045-8ace-fb0abc266770))
(fp_line (start 1.27 49.53) (end -3.81 49.53)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f621184b-b5fe-4679-b36f-249734528341))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 9 "+3.3V") (pinfunction "3V3") (pintype "power_in") (tstamp d852a329-543f-40b8-b297-b4fea1cad815))
(pad "2" thru_hole oval (at -2.54 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 4 "+5V") (pinfunction "5V") (pintype "power_in") (tstamp d65bfac9-2403-4d16-86bf-5ad9c7018c7e))
(pad "3" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 10 "unconnected-(J5-SDA{slash}GPIO2-Pad3)") (pinfunction "SDA/GPIO2") (pintype "bidirectional") (tstamp 581ae2f6-0f57-4e8a-bc79-6d0950293de0))
(pad "4" thru_hole oval (at -2.54 2.54) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 4 "+5V") (pinfunction "5V") (pintype "power_in") (tstamp 485d6948-4c0e-4a8b-9418-c4fbd23ac220))
(pad "5" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 12 "unconnected-(J5-SCL{slash}GPIO3-Pad5)") (pinfunction "SCL/GPIO3") (pintype "bidirectional") (tstamp 8b376953-6b95-47d3-bceb-eba642716310))
(pad "6" thru_hole oval (at -2.54 5.08) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 3 "GND1") (pinfunction "GND") (pintype "power_in") (tstamp 56e8cce4-f54c-4f14-90eb-7d37c9ee0993))
(pad "7" thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 13 "unconnected-(J5-GCLK0{slash}GPIO4-Pad7)") (pinfunction "GCLK0/GPIO4") (pintype "bidirectional") (tstamp 2f056d4b-3eaf-417a-92e5-cdad34f7c2a2))
(pad "8" thru_hole oval (at -2.54 7.62) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 14 "unconnected-(J5-GPIO14{slash}TXD-Pad8)") (pinfunction "GPIO14/TXD") (pintype "bidirectional") (tstamp c2646a3a-d8a2-4fd7-a8e5-b7b132ea1289))
(pad "9" thru_hole oval (at 0 10.16) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 3 "GND1") (pinfunction "GND") (pintype "power_in") (tstamp b43d123f-0509-4b01-aa88-881766ca8605))
(pad "10" thru_hole oval (at -2.54 10.16) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 15 "unconnected-(J5-GPIO15{slash}RXD-Pad10)") (pinfunction "GPIO15/RXD") (pintype "bidirectional") (tstamp 9f33e02d-255e-4e05-aa42-56c73e130fa6))
(pad "11" thru_hole oval (at 0 12.7) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 16 "unconnected-(J5-GPIO17-Pad11)") (pinfunction "GPIO17") (pintype "bidirectional") (tstamp 26cde544-2e17-451c-b074-f961c69011ba))
(pad "12" thru_hole oval (at -2.54 12.7) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 17 "Net-(J5-GPIO18{slash}PWM0)") (pinfunction "GPIO18/PWM0") (pintype "bidirectional") (tstamp b5f3f19e-ca0c-4e5f-b212-d2bf087df58e))
(pad "13" thru_hole oval (at 0 15.24) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 18 "unconnected-(J5-GPIO27-Pad13)") (pinfunction "GPIO27") (pintype "bidirectional") (tstamp 0a055864-9f07-4a5a-9732-7ab364e6ce2a))
(pad "14" thru_hole oval (at -2.54 15.24) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 3 "GND1") (pinfunction "GND") (pintype "power_in") (tstamp 9589fa40-68de-4b47-8790-598f31ba1391))
(pad "15" thru_hole oval (at 0 17.78) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 19 "unconnected-(J5-GPIO22-Pad15)") (pinfunction "GPIO22") (pintype "bidirectional") (tstamp ff093547-73db-4dca-bb6c-9115358b4a7b))
(pad "16" thru_hole oval (at -2.54 17.78) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 20 "unconnected-(J5-GPIO23-Pad16)") (pinfunction "GPIO23") (pintype "bidirectional") (tstamp 05f26231-1d95-465a-b271-a113c2528da6))
(pad "17" thru_hole oval (at 0 20.32) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 9 "+3.3V") (pinfunction "3V3") (pintype "power_in") (tstamp fedc2644-423c-44d3-8790-1a266cc0ff00))
(pad "18" thru_hole oval (at -2.54 20.32) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 21 "unconnected-(J5-GPIO24-Pad18)") (pinfunction "GPIO24") (pintype "bidirectional") (tstamp 20f0d9ba-1d08-4880-85be-748f72b31f07))
(pad "19" thru_hole oval (at 0 22.86) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 5 "/Switch1") (pinfunction "MOSI0/GPIO10") (pintype "bidirectional") (tstamp 46df365d-fd66-4472-827d-9b2bec0fab0a))
(pad "20" thru_hole oval (at -2.54 22.86) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 3 "GND1") (pinfunction "GND") (pintype "power_in") (tstamp 4d76b6ea-555d-45c5-b239-e6fafa555fca))
(pad "21" thru_hole oval (at 0 25.4) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 6 "/Switch2") (pinfunction "MISO0/GPIO9") (pintype "bidirectional") (tstamp a4d56c91-5cb9-4564-ae2f-09b2d286cfd0))
(pad "22" thru_hole oval (at -2.54 25.4) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 22 "unconnected-(J5-GPIO25-Pad22)") (pinfunction "GPIO25") (pintype "bidirectional") (tstamp 2e545da6-e579-4df7-a3a2-cd197d6d975f))
(pad "23" thru_hole oval (at 0 27.94) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 23 "unconnected-(J5-SCLK0{slash}GPIO11-Pad23)") (pinfunction "SCLK0/GPIO11") (pintype "bidirectional") (tstamp a61cf5fc-e6e3-4318-99ef-369745ea3b4a))
(pad "24" thru_hole oval (at -2.54 27.94) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 7 "/Switch3") (pinfunction "~{CE0}/GPIO8") (pintype "bidirectional") (tstamp d517d95a-f57f-418f-8e43-1b96a994d3c8))
(pad "25" thru_hole oval (at 0 30.48) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 3 "GND1") (pinfunction "GND") (pintype "power_in") (tstamp e5c179d7-69ce-498b-958c-f9350c4a6512))
(pad "26" thru_hole oval (at -2.54 30.48) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 8 "/Switch4") (pinfunction "~{CE1}/GPIO7") (pintype "bidirectional") (tstamp ef957d1f-a8a5-4cd6-ab3e-e938cf1f4cb2))
(pad "27" thru_hole oval (at 0 33.02) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 24 "unconnected-(J5-ID_SD{slash}GPIO0-Pad27)") (pinfunction "ID_SD/GPIO0") (pintype "bidirectional") (tstamp fca2d5ca-af4e-4d6a-9bf9-445962d6645e))
(pad "28" thru_hole oval (at -2.54 33.02) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 25 "unconnected-(J5-ID_SC{slash}GPIO1-Pad28)") (pinfunction "ID_SC/GPIO1") (pintype "bidirectional") (tstamp 653c3610-24d0-4e05-b644-e9cc41cfa566))
(pad "29" thru_hole oval (at 0 35.56) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 26 "unconnected-(J5-GCLK1{slash}GPIO5-Pad29)") (pinfunction "GCLK1/GPIO5") (pintype "bidirectional") (tstamp ce6c4aa4-5796-4949-98d6-6cef24b7fe70))
(pad "30" thru_hole oval (at -2.54 35.56) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 3 "GND1") (pinfunction "GND") (pintype "power_in") (tstamp 1f5f2015-2820-43ce-87ac-f48cf8faf923))
(pad "31" thru_hole oval (at 0 38.1) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 27 "unconnected-(J5-GCLK2{slash}GPIO6-Pad31)") (pinfunction "GCLK2/GPIO6") (pintype "bidirectional") (tstamp 699e686f-3a4d-4811-8728-18d69d801afc))
(pad "32" thru_hole oval (at -2.54 38.1) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 28 "unconnected-(J5-PWM0{slash}GPIO12-Pad32)") (pinfunction "PWM0/GPIO12") (pintype "bidirectional") (tstamp 670ba789-2944-469a-9b5a-f3c85996cde5))
(pad "33" thru_hole oval (at 0 40.64) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 29 "unconnected-(J5-PWM1{slash}GPIO13-Pad33)") (pinfunction "PWM1/GPIO13") (pintype "bidirectional") (tstamp 346833f5-9d8b-4981-9121-28d2970a417e))
(pad "34" thru_hole oval (at -2.54 40.64) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 3 "GND1") (pinfunction "GND") (pintype "power_in") (tstamp f1d66ade-a5b3-4b62-b0f7-59c6e2600842))
(pad "35" thru_hole oval (at 0 43.18) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 30 "unconnected-(J5-GPIO19{slash}MISO1-Pad35)") (pinfunction "GPIO19/MISO1") (pintype "bidirectional") (tstamp 48d210ec-8ed7-42a6-83ad-68871e51e4a2))
(pad "36" thru_hole oval (at -2.54 43.18) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 31 "unconnected-(J5-GPIO16-Pad36)") (pinfunction "GPIO16") (pintype "bidirectional") (tstamp 94135a43-4171-40d9-abec-d51489b727b2))
(pad "37" thru_hole oval (at 0 45.72) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 32 "unconnected-(J5-GPIO26-Pad37)") (pinfunction "GPIO26") (pintype "bidirectional") (tstamp 25b01319-5d27-48b6-92dc-2b5f4ada87e6))
(pad "38" thru_hole oval (at -2.54 45.72) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 33 "unconnected-(J5-GPIO20{slash}MOSI1-Pad38)") (pinfunction "GPIO20/MOSI1") (pintype "bidirectional") (tstamp 75b7fdea-8957-4dc8-adff-69c7b4d151f2))
(pad "39" thru_hole oval (at 0 48.26) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 3 "GND1") (pinfunction "GND") (pintype "power_in") (tstamp f63252b4-8a53-431b-a36d-a44faf1c6694))
(pad "40" thru_hole oval (at -2.54 48.26) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 34 "unconnected-(J5-GPIO21{slash}SCLK1-Pad40)") (pinfunction "GPIO21/SCLK1") (pintype "bidirectional") (tstamp 6808d712-4e90-4905-88a3-b9dd5583b348))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_2x20_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinSocket_2.54mm:PinSocket_1x05_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 87f301e1-1937-4e32-905e-a25fc8c0c62e)
(at 121.95 132.055 90)
(descr "Through hole straight socket strip, 1x05, 2.54mm pitch, single row (from Kicad 4.0.7), script generated")
(tags "Through hole socket strip THT 1x05 2.54mm single row")
(property "Sheetfile" "targetbunnybots.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x05, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/e3e12e1e-8f78-49b1-b903-55a5d1feaa82")
(attr through_hole)
(fp_text reference "J2" (at 0 -2.77 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9b80859f-54e6-4130-a057-204e6bfa64e0)
)
(fp_text value "Conn_01x05" (at 0 12.93 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 70011e51-a9aa-4dd3-8eff-c240309b3dcf)
)
(fp_text user "${REFERENCE}" (at 0 5.08 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 39f93e18-e524-4eb0-8e75-b470b26efb28)
)
(fp_line (start -1.33 1.27) (end -1.33 11.49)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bad5236e-43e2-4156-8d32-920ea468ca7d))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1e8d8cd0-c52e-4780-8dc3-9f32b7158c7d))
(fp_line (start -1.33 11.49) (end 1.33 11.49)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp de93818c-b8e7-4725-a6d2-b3549a0766a3))
(fp_line (start 0 -1.33) (end 1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b6573de0-f80c-4eba-91c7-349429795675))
(fp_line (start 1.33 -1.33) (end 1.33 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp eb409e40-a579-4e0c-b41e-f52e5bb0420d))
(fp_line (start 1.33 1.27) (end 1.33 11.49)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2e4eee57-7093-403b-98f6-a2a75a57291d))
(fp_line (start -1.8 -1.8) (end 1.75 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c6cab4da-09c0-49d0-a8e5-ddea484404ce))
(fp_line (start -1.8 11.9) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 30baa45b-9721-4d75-bb35-3e75288c7f6c))
(fp_line (start 1.75 -1.8) (end 1.75 11.9)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ea4700d0-ce6a-4b0e-867d-fdc4f5814c86))
(fp_line (start 1.75 11.9) (end -1.8 11.9)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bcda10ba-22c4-4bc3-8bdc-c7878f6d5a28))
(fp_line (start -1.27 -1.27) (end 0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8e432a45-cab4-48c6-801a-93685e15fb2c))
(fp_line (start -1.27 11.43) (end -1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ad6b9e7b-0e51-403f-8061-044ddc2c3b4f))
(fp_line (start 0.635 -1.27) (end 1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 50d4be4e-d5cb-475c-96a4-1c096ae77fbd))
(fp_line (start 1.27 -0.635) (end 1.27 11.43)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp add826ac-29ee-48a3-a381-855724625324))
(fp_line (start 1.27 11.43) (end -1.27 11.43)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8fdd5892-0c59-4658-9acd-f96e1fe4279d))
(pad "1" thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 1 "+6V") (pinfunction "Pin_1") (pintype "passive") (tstamp fa308f57-113c-47a5-abc4-96d9c0bc5739))
(pad "2" thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 1 "+6V") (pinfunction "Pin_2") (pintype "passive") (tstamp de1679a6-fe43-444d-a059-bd0ffb1636bb))
(pad "3" thru_hole oval (at 0 5.08 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "Pin_3") (pintype "passive") (tstamp 58e04265-ce96-49e1-a42e-226e724446c9))
(pad "4" thru_hole oval (at 0 7.62 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 3 "GND1") (pinfunction "Pin_4") (pintype "passive") (tstamp b5365a70-b9d1-4078-978e-a45630f4e0c3))
(pad "5" thru_hole oval (at 0 10.16 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 4 "+5V") (pinfunction "Pin_5") (pintype "passive") (tstamp b244fc50-a9f0-4d8d-98fc-9a2604b2ac7a))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_1x05_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 8e2cce3e-72d3-42d2-85a2-fc8ca87aea94)
(at 137.16 104.14)
(descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x03 2.54mm single row")
(property "Sheetfile" "targetbunnybots.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/29229c22-f239-41ea-ad6e-3ed4a4b97594")
(attr through_hole)
(fp_text reference "J9" (at 0 -2.33) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1cac50f2-2fd8-4401-9310-b4e7a1d1c936)
)
(fp_text value "Conn_01x03" (at 0 7.41) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1cdea9e7-8a04-4e14-a498-88013d269786)
)
(fp_text user "${REFERENCE}" (at 0 2.54 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c9ae338b-f459-4a23-948d-a42c9e015b3c)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 009c82fd-3bb8-4e2e-ab53-e57cd05adc84))
(fp_line (start -1.33 0) (end -1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ddcce793-d905-43df-812b-78df6bb707ba))
(fp_line (start -1.33 1.27) (end -1.33 6.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9605cbc5-db69-4f72-9faa-f128479fef0d))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 97bb8147-cc35-4065-af2f-55d5ebe573ab))
(fp_line (start -1.33 6.41) (end 1.33 6.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e5c77da6-7636-43a6-8eec-a5fdf4709fa4))
(fp_line (start 1.33 1.27) (end 1.33 6.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 675f3094-ebb1-4277-b9f2-27c50cb4f65a))
(fp_line (start -1.8 -1.8) (end -1.8 6.85)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6ca47b41-03c3-4d33-ab66-1669f0c763a2))
(fp_line (start -1.8 6.85) (end 1.8 6.85)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2c19b990-bcb0-493c-93a7-52b529be6317))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5e348d85-648e-4184-b292-4ada91208fdc))
(fp_line (start 1.8 6.85) (end 1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 215366c8-74f9-4e63-821a-6f4b6bc194e5))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5a5aa914-aa49-4945-a64b-88169e0a5725))
(fp_line (start -1.27 6.35) (end -1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6906f2f7-5cc4-4334-882d-b1bdc3f76583))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 257b4df0-1493-4f1c-8162-dd2284dc3ea1))
(fp_line (start 1.27 -1.27) (end 1.27 6.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cda82767-1c9f-4909-94ef-cc04cb05b961))
(fp_line (start 1.27 6.35) (end -1.27 6.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ed099ce2-99d4-441c-bcd2-9489a354d643))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 4 "+5V") (pinfunction "Pin_1") (pintype "passive") (tstamp b0f12d00-b754-4941-99a2-69d15b41a3a2))
(pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 41 "unconnected-(J9-Pin_2-Pad2)") (pinfunction "Pin_2") (pintype "passive") (tstamp e1ebfaa9-c9be-4119-82ee-303fa28b33d4))
(pad "3" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 3 "GND1") (pinfunction "Pin_3") (pintype "passive") (tstamp b7e1067c-3fe5-483f-b6ef-5c29b89f064d))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_4mm" (layer "F.Cu")
(tstamp 8eaee4e4-d307-4cd2-88db-b9c5bd45caee)
(at 139.7 83.82)
(descr "Mounting Hole 4mm, no annular")
(tags "mounting hole 4mm no annular")
(property "Sheetfile" "targetbunnybots.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Mounting Hole without connection")
(property "ki_keywords" "mounting hole")
(path "/5dcc7196-1f46-483d-a4e3-7cbe314dd967")
(attr exclude_from_pos_files)
(fp_text reference "H3" (at 0 -5) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 332f2bac-ae97-4216-9507-159a8006cfa7)
)
(fp_text value "MountingHole" (at 0 5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 470f0a83-a5e1-4a7d-aeaf-fe887262f932)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2321b937-0701-4db5-9862-c8229d22c9a3)
)
(fp_circle (center 0 0) (end 4 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp cd3f354d-b28c-412f-8488-aa89acdb2130))
(fp_circle (center 0 0) (end 4.25 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 8b27dd8b-6f59-4c24-a51a-7da2bd38a32c))
(pad "" np_thru_hole circle (at 0 0) (size 4 4) (drill 4) (layers "*.Cu" "*.Mask") (tstamp 933698c8-1879-457f-b43a-4b484287c0e2))
)
(footprint "MountingHole:MountingHole_4mm" (layer "F.Cu")
(tstamp 995a439c-a3a9-4ce6-b336-a1e58a50af67)
(at 139.7 147.32)
(descr "Mounting Hole 4mm, no annular")
(tags "mounting hole 4mm no annular")
(property "Sheetfile" "targetbunnybots.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Mounting Hole without connection")
(property "ki_keywords" "mounting hole")
(path "/5dcc7196-1f46-483d-a4e3-7cbe314dd967")
(attr exclude_from_pos_files)
(fp_text reference "H6" (at 0 -5) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9022b2a8-5a28-4ad7-b5da-2dbf3192ae86)
)
(fp_text value "MountingHole" (at 0 5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fbd204c1-a7ca-435d-9fd1-4dd0a1589338)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4095d8c0-c4cd-457b-9e7b-453797c9bd33)
)
(fp_circle (center 0 0) (end 4 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp c5f47be3-0a55-4111-b4a4-0efcf4050e8f))
(fp_circle (center 0 0) (end 4.25 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 113956d7-ad7c-4267-be31-98a79a5cdf87))
(pad "" np_thru_hole circle (at 0 0) (size 4 4) (drill 4) (layers "*.Cu" "*.Mask") (tstamp 876dedb9-0eda-4762-90dc-a43e1aae2ef3))
)
(footprint "Connector_PinSocket_2.54mm:PinSocket_1x04_P2.54mm_Vertical" (layer "F.Cu")
(tstamp b0c151a3-d636-42b9-9573-713c99030878)
(at 121.92 114.3)
(descr "Through hole straight socket strip, 1x04, 2.54mm pitch, single row (from Kicad 4.0.7), script generated")
(tags "Through hole socket strip THT 1x04 2.54mm single row")
(property "Sheetfile" "targetbunnybots.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/cdcd069d-9853-4a9e-9d95-c53423914b6f")
(attr through_hole)
(fp_text reference "J4" (at 0 -2.77) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dfdddbb1-bf04-4d9b-ae64-f9e351a55fb0)
)
(fp_text value "Conn_01x04" (at 0 10.39) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1554c52a-a9ab-4d35-8f36-153eb28908ca)
)
(fp_text user "${REFERENCE}" (at -0.416855 1.307043 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6c3dcab8-d154-422f-8a09-ce96f1dafd92)
)
(fp_line (start -1.33 1.27) (end -1.33 8.95)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9120c910-41b8-47f8-99a9-3b553e58caad))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c6231502-58f2-4043-ae6e-d7046fd004a0))
(fp_line (start -1.33 8.95) (end 1.33 8.95)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f994f356-832a-4940-8c74-5be8d3cc28ae))
(fp_line (start 0 -1.33) (end 1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4332bccc-aff2-4711-b6b6-9d7b06702c3e))
(fp_line (start 1.33 -1.33) (end 1.33 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d9c792c5-53ae-4637-acce-92f4c7f227b7))
(fp_line (start 1.33 1.27) (end 1.33 8.95)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d8d4dbce-04e1-4eca-a0d3-792dfe5df8bd))
(fp_line (start -1.8 -1.8) (end 1.75 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5433146c-59d8-470c-ac1b-fc641f26732a))
(fp_line (start -1.8 9.4) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8c58cf46-8c4c-4eb7-8b96-006c4b7f138f))
(fp_line (start 1.75 -1.8) (end 1.75 9.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c035a25d-8086-4c4a-b5a6-16723d0819df))
(fp_line (start 1.75 9.4) (end -1.8 9.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d524a8d2-2bb2-4613-b30c-7229b16298c0))
(fp_line (start -1.27 -1.27) (end 0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f2db35a9-e1fe-4da3-b959-c55dbefc6611))
(fp_line (start -1.27 8.89) (end -1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 520128e1-dbd8-4492-b407-ddb832b44cfc))
(fp_line (start 0.635 -1.27) (end 1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3d494806-98d5-4eb3-8a71-135808f9ef9b))
(fp_line (start 1.27 -0.635) (end 1.27 8.89)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 898bbef0-e195-4337-8fb0-ddb3b161f773))
(fp_line (start 1.27 8.89) (end -1.27 8.89)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b3606cd6-e449-4199-8de8-ddd7fbce4689))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 3 "GND1") (pinfunction "Pin_1") (pintype "passive") (tstamp 1f1f1695-2d1f-45c8-af5b-d5dfff133110))
(pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 3 "GND1") (pinfunction "Pin_2") (pintype "passive") (tstamp 95e53e84-94c8-4695-b903-5aab25e53f6b))
(pad "3" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 3 "GND1") (pinfunction "Pin_3") (pintype "passive") (tstamp 4d654650-c81c-46f8-9fdd-7b7a3f491fad))
(pad "4" thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 3 "GND1") (pinfunction "Pin_4") (pintype "passive") (tstamp afef9c51-28f1-4555-a8ef-85adbfc02569))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_1x04_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_4mm" (layer "F.Cu")
(tstamp d6bdc16c-002a-42a6-9f95-b9562e923a82)
(at 114.3 147.32)
(descr "Mounting Hole 4mm, no annular")
(tags "mounting hole 4mm no annular")
(property "Sheetfile" "targetbunnybots.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Mounting Hole without connection")
(property "ki_keywords" "mounting hole")
(path "/5dcc7196-1f46-483d-a4e3-7cbe314dd967")
(attr exclude_from_pos_files)
(fp_text reference "H5" (at 0 -5) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c954948b-edf6-407c-99cd-e526d91c30db)
)
(fp_text value "MountingHole" (at 0 5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e1a16acf-f9fc-4b87-ba3f-0b4a5e3010df)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 89c4f7b4-d456-4087-b573-dbe946b64f80)
)
(fp_circle (center 0 0) (end 4 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp f10427f6-2b3b-4820-9f3c-156525da6fd2))
(fp_circle (center 0 0) (end 4.25 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp bad35a60-aaf8-4b6b-b240-540fc4fc4099))
(pad "" np_thru_hole circle (at 0 0) (size 4 4) (drill 4) (layers "*.Cu" "*.Mask") (tstamp 2144b936-ba9b-4294-b89c-8dbe5e75dc14))
)
(footprint "Connector_PinSocket_2.54mm:PinSocket_1x04_P2.54mm_Vertical" (layer "F.Cu")
(tstamp e9a7dfe0-d93d-44aa-a381-c7d8f135d43a)
(at 129.54 114.3)
(descr "Through hole straight socket strip, 1x04, 2.54mm pitch, single row (from Kicad 4.0.7), script generated")
(tags "Through hole socket strip THT 1x04 2.54mm single row")
(property "Sheetfile" "targetbunnybots.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/95ad6110-2dd3-4ed8-a1a6-4f05c0b9afc9")
(attr through_hole)
(fp_text reference "J3" (at 0 -2.77) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1371ae88-48f2-4626-a680-10a4948484a0)
)
(fp_text value "Conn_01x04" (at 0 10.39) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3d6098af-7355-4939-9000-364aa7af6178)
)
(fp_text user "${REFERENCE}" (at -0.416855 1.307043 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6133ab02-4346-46a3-8235-2b109bcfcf82)
)
(fp_line (start -1.33 1.27) (end -1.33 8.95)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 633d66c3-8e26-43db-91cf-4114f1713d16))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d396b5e6-1449-4e10-bb81-14f72a8d288a))
(fp_line (start -1.33 8.95) (end 1.33 8.95)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 31908fa7-0954-4e2a-b122-3575184587c8))
(fp_line (start 0 -1.33) (end 1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 09079f85-b75b-446d-a291-28a2b37139b3))
(fp_line (start 1.33 -1.33) (end 1.33 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e6d521e7-60b1-4000-b1de-1bd0f541018d))
(fp_line (start 1.33 1.27) (end 1.33 8.95)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 85da7b85-0340-4b2f-a997-5c30ba33fa1e))
(fp_line (start -1.8 -1.8) (end 1.75 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp faee9cbe-a1d2-4e78-817b-a6ddceb4c090))
(fp_line (start -1.8 9.4) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5dc361df-4689-418c-8df2-a567196a7e61))
(fp_line (start 1.75 -1.8) (end 1.75 9.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp aa605c85-3aa6-4010-98ee-01a298c07384))
(fp_line (start 1.75 9.4) (end -1.8 9.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fa62ab50-7848-4023-90f9-e4390cab6ca4))
(fp_line (start -1.27 -1.27) (end 0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e49cbd76-de47-4946-98d9-bf7d0d9b65a8))
(fp_line (start -1.27 8.89) (end -1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ee3d44ff-f144-43f5-8b8f-a87b4b6c09b3))
(fp_line (start 0.635 -1.27) (end 1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 45e45905-5064-487e-91e6-602196c854bc))
(fp_line (start 1.27 -0.635) (end 1.27 8.89)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cf656b3d-17ed-43b3-9158-c12e3e250df5))
(fp_line (start 1.27 8.89) (end -1.27 8.89)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d518a914-90de-48e3-9ba2-b67bba03e24d))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 5 "/Switch1") (pinfunction "Pin_1") (pintype "passive") (tstamp 6c84d1ee-ec92-4798-ad65-c88d24ab3cea))
(pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 6 "/Switch2") (pinfunction "Pin_2") (pintype "passive") (tstamp 3396026f-e23a-44c9-8ad8-fdc2626ebe54))
(pad "3" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 7 "/Switch3") (pinfunction "Pin_3") (pintype "passive") (tstamp 1d9dff16-72cc-410c-9b02-b26dffb89d66))
(pad "4" thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 8 "/Switch4") (pinfunction "Pin_4") (pintype "passive") (tstamp f5f11dc8-f5e4-43b2-bc3a-3593b48bf873))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_1x04_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinSocket_2.54mm:PinSocket_1x06_P2.54mm_Vertical" (layer "F.Cu")
(tstamp f339e77b-94e2-499e-bbbf-ed074cd001a2)
(at 114.3 96.495 90)
(descr "Through hole straight socket strip, 1x06, 2.54mm pitch, single row (from Kicad 4.0.7), script generated")
(tags "Through hole socket strip THT 1x06 2.54mm single row")
(property "Sheetfile" "targetbunnybots.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x06, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/883f675e-29fc-43c9-b0ad-630df221269f")
(attr through_hole)
(fp_text reference "J6" (at 0 -2.77 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9aa8cbfc-75e1-436e-833d-ea61278a7b48)
)
(fp_text value "Conn_01x06" (at 0 15.47 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9dc59113-77ce-498f-9e69-373fab000188)
)
(fp_text user "${REFERENCE}" (at 0 6.35) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f156893a-4631-47e6-be71-9f93f094a8b0)
)
(fp_line (start -1.33 1.27) (end -1.33 14.03)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 96fe1cc2-0a6e-44e3-b628-0794299697c5))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 479ee672-5460-4202-921a-89a3b7b713b0))
(fp_line (start -1.33 14.03) (end 1.33 14.03)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e909c9e8-ebd5-40d4-b748-a1c075a3e2a7))
(fp_line (start 0 -1.33) (end 1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5108a70e-b0ba-4743-bb25-9ac4dfbe0bd9))
(fp_line (start 1.33 -1.33) (end 1.33 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 16998ff7-6b47-49dd-86b5-19d9107864af))
(fp_line (start 1.33 1.27) (end 1.33 14.03)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8abc89e8-6882-4dfa-98e1-f7334db9824a))
(fp_line (start -1.8 -1.8) (end 1.75 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 08935d86-abe4-421b-aca9-e7b17f1ffa57))
(fp_line (start -1.8 14.45) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b0dced06-e5da-424d-ba20-79dbaafcf251))
(fp_line (start 1.75 -1.8) (end 1.75 14.45)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bcbc5d70-6a0e-422c-96bf-b1eb6a71cb61))
(fp_line (start 1.75 14.45) (end -1.8 14.45)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 24dec0fa-a590-41aa-9407-5e8895ad2dae))
(fp_line (start -1.27 -1.27) (end 0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0a9e103a-65c6-4a36-b253-f526224b7b7d))
(fp_line (start -1.27 13.97) (end -1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 11db0108-a464-4ca2-b2b3-b111d1647dcb))
(fp_line (start 0.635 -1.27) (end 1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 666c4095-e726-4f6b-b5ae-40479b88a6c0))
(fp_line (start 1.27 -0.635) (end 1.27 13.97)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ca1b7ce6-fa41-4207-9e45-44d96d3b169c))
(fp_line (start 1.27 13.97) (end -1.27 13.97)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e1dc67ea-7e23-4f01-accb-698f2a9efaed))
(pad "1" thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 35 "unconnected-(J6-Pin_1-Pad1)") (pinfunction "Pin_1") (pintype "passive+no_connect") (tstamp 67d03a90-3f0a-4e90-aa54-0f2767688706))
(pad "2" thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 36 "unconnected-(J6-Pin_2-Pad2)") (pinfunction "Pin_2") (pintype "passive+no_connect") (tstamp b36e2293-4aa4-4caf-89c6-dc8158b8090b))
(pad "3" thru_hole oval (at 0 5.08 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 3 "GND1") (pinfunction "Pin_3") (pintype "passive") (tstamp fbba4603-ee62-4721-8f13-13cd02964579))
(pad "4" thru_hole oval (at 0 7.62 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 9 "+3.3V") (pinfunction "Pin_4") (pintype "passive") (tstamp cc794d0a-9d87-4fce-a48b-a9612e8dd4d8))
(pad "5" thru_hole oval (at 0 10.16 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 37 "unconnected-(J6-Pin_5-Pad5)") (pinfunction "Pin_5") (pintype "passive+no_connect") (tstamp 0d45e455-75e2-4fcc-b0cb-f12d7922534a))
(pad "6" thru_hole oval (at 0 12.7 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 17 "Net-(J5-GPIO18{slash}PWM0)") (pinfunction "Pin_6") (pintype "passive") (tstamp 33834fee-7233-4e10-b070-513b843f8184))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_1x06_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_2.5mm" (layer "F.Cu")
(tstamp f4642a1f-a546-47b7-a871-528282f5b6d2)
(at 171.6 86.55)
(descr "Mounting Hole 2.5mm, no annular")
(tags "mounting hole 2.5mm no annular")
(property "Sheetfile" "targetbunnybots.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Mounting Hole without connection")
(property "ki_keywords" "mounting hole")
(path "/e2f2e20d-3c66-4396-83cc-628aa4ca5fa0")
(attr exclude_from_pos_files)
(fp_text reference "H1" (at 0 -3.5) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9a6c633a-f2b2-4dbd-82fc-5c4d1e5015d3)
)
(fp_text value "MountingHole" (at 0 3.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4dc3f5aa-5169-4773-a9b4-8c7d89218901)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c973981b-a31a-4c63-b6ae-aacb5d159834)
)
(fp_circle (center 0 0) (end 2.5 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp db5995d3-dc3c-48a7-8cc8-1fceeac7281a))
(fp_circle (center 0 0) (end 2.75 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 2ed69276-45b4-419f-a76c-c138e7bd5853))
(pad "" np_thru_hole circle (at 0 0) (size 2.5 2.5) (drill 2.5) (layers "*.Cu" "*.Mask") (tstamp f2bc1a55-49ee-4373-bf4b-f50ee6c13c2b))
)
(footprint "MountingHole:MountingHole_4mm" (layer "F.Cu")
(tstamp f5911327-24d3-4968-879b-8854950b9c99)
(at 114.3 83.82)
(descr "Mounting Hole 4mm, no annular")
(tags "mounting hole 4mm no annular")
(property "Sheetfile" "targetbunnybots.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Mounting Hole without connection")
(property "ki_keywords" "mounting hole")
(path "/5dcc7196-1f46-483d-a4e3-7cbe314dd967")
(attr exclude_from_pos_files)
(fp_text reference "H2" (at 0 -5) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3e6d008a-4b34-429d-bd9b-164121b42e91)
)
(fp_text value "MountingHole" (at 0 5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cf92ecce-3af8-474f-9338-6e950d1f5a67)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 344b218b-4fe9-45ca-a4ce-e4e5c5309cef)
)
(fp_circle (center 0 0) (end 4 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp 0a179419-18c1-449a-896f-5b6d1efa823a))
(fp_circle (center 0 0) (end 4.25 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 8452e654-ec2a-4bba-960b-aa2287e325c7))
(pad "" np_thru_hole circle (at 0 0) (size 4 4) (drill 4) (layers "*.Cu" "*.Mask") (tstamp 795847b3-8336-4f3f-bc36-e99f489a5832))
)
(footprint "Library:1540Logo" (layer "B.Cu")
(tstamp 13efcb3c-6dfd-471a-b40b-65f9d5ed5b69)
(at 167.77 101.55 90)
(attr through_hole)
(fp_text reference "" (at 0 0.5 270 unlocked) (layer "B.SilkS") hide
(effects (font (size 1 1) (thickness 0.1)) (justify mirror))
(tstamp 015d4dfc-c87e-4969-ad04-9d25686f2876)
)
(fp_text value "1540Logo" (at 0 -1 270 unlocked) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))