-
Notifications
You must be signed in to change notification settings - Fork 0
/
ctrl-m.kicad_pcb
11245 lines (11199 loc) · 603 KB
/
ctrl-m.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20211014) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(title_block
(title "Model M Controller based on STM32F072")
(date "2023-05-31")
(rev "1.1")
(comment 2 "This source describes Open Hardware and is licensed under the CERN-OHL-S v2\\nYou may redistribute and modify this documentation and make products using it\\nunder the terms of the CERN-OHL-S v2 (https:/cern.ch/cern-ohl).\\nThis documentation is distributed WITHOUT ANY EXPRESS OR IMPLIED WARRANTY")
(comment 4 "Copyright Christoph Zimmermann 2021.")
)
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
)
(setup
(pad_to_mask_clearance 0)
(grid_origin 60 125.499)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes false)
(usegerberadvancedattributes false)
(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 "export/")
)
)
(net 0 "")
(net 1 "GND")
(net 2 "VBUS")
(net 3 "+3V3")
(net 4 "/NRST")
(net 5 "Earth")
(net 6 "Net-(J1-Pad2)")
(net 7 "Net-(J1-Pad3)")
(net 8 "/SWDIO")
(net 9 "/SWDCLK")
(net 10 "Net-(U3-Pad44)")
(net 11 "unconnected-(U3-Pad26)")
(net 12 "unconnected-(U3-Pad27)")
(net 13 "/R15")
(net 14 "/R14")
(net 15 "/R13")
(net 16 "/R12")
(net 17 "/R11")
(net 18 "/R10")
(net 19 "/R9")
(net 20 "/R8")
(net 21 "/R7")
(net 22 "/R6")
(net 23 "/R5")
(net 24 "/R4")
(net 25 "/R3")
(net 26 "/R2")
(net 27 "/R1")
(net 28 "/R0")
(net 29 "/C0")
(net 30 "/C1")
(net 31 "/C2")
(net 32 "/C3")
(net 33 "/C4")
(net 34 "/C5")
(net 35 "/C6")
(net 36 "/C7")
(net 37 "/ScrollLock")
(net 38 "/CapsLock")
(net 39 "/NumLock")
(net 40 "unconnected-(U3-Pad28)")
(net 41 "/D-")
(net 42 "/D+")
(net 43 "unconnected-(U3-Pad29)")
(net 44 "unconnected-(U3-Pad30)")
(net 45 "unconnected-(U3-Pad31)")
(net 46 "unconnected-(J2-Pad6)")
(net 47 "unconnected-(J2-Pad7)")
(net 48 "unconnected-(J2-Pad8)")
(net 49 "Net-(J12-Pad4)")
(net 50 "Net-(J12-Pad1)")
(net 51 "Net-(J12-Pad3)")
(footprint "Connector_USB:USB_B_OST_USB-B1HSxx_Horizontal" locked (layer "F.Cu")
(tedit 5AFE01FF) (tstamp 00000000-0000-0000-0000-00005f714609)
(at 81.07 85 90)
(descr "USB B receptacle, Horizontal, through-hole, http://www.on-shore.com/wp-content/uploads/2015/09/usb-b1hsxx.pdf")
(tags "USB-B receptacle horizontal through-hole")
(property "Sheetfile" "/home/chrigi/Projects/Model M/ctrl-M/ctrl-m.sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(path "/00000000-0000-0000-0000-00005f72b695")
(attr through_hole exclude_from_bom)
(fp_text reference "J1" (at -2.757 -3.8 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c621efca-5a05-4767-85bb-b2416660c5e5)
)
(fp_text value "USB_B" (at 6.76 10.27 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cc83e97c-84fd-48be-8c33-42dfe64d2de7)
)
(fp_text user "${REFERENCE}" (at 6.76 1.25 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ef2d248e-c0a4-4ed3-ba33-f149cda34241)
)
(fp_line (start -1.82 0) (end -2.32 -0.5) (layer "F.SilkS") (width 0.12) (tstamp 4e5cacf5-36b4-4462-90b8-07263f7f55a5))
(fp_line (start -1.6 7.41) (end 2.66 7.41) (layer "F.SilkS") (width 0.12) (tstamp 633a30b8-3f6c-454d-9611-ff9814091ac4))
(fp_line (start -1.6 -4.91) (end -1.6 7.41) (layer "F.SilkS") (width 0.12) (tstamp 72fd336b-d02f-4600-a576-9802d3dcd54b))
(fp_line (start -2.32 -0.5) (end -2.32 0.5) (layer "F.SilkS") (width 0.12) (tstamp a03403bf-69bd-4f4d-a799-dd3ffb42cd9f))
(fp_line (start 15.12 -4.91) (end 15.12 7.41) (layer "F.SilkS") (width 0.12) (tstamp aa7d8da0-8ec0-42ce-bd2d-e33af0ccd139))
(fp_line (start 2.66 -4.91) (end -1.6 -4.91) (layer "F.SilkS") (width 0.12) (tstamp d0fb4a3d-2d0e-4d9c-bf28-78318b228928))
(fp_line (start 15.12 7.41) (end 6.76 7.41) (layer "F.SilkS") (width 0.12) (tstamp d7237f98-b4d4-4f81-9de6-129fe827c3cc))
(fp_line (start 6.76 -4.91) (end 15.12 -4.91) (layer "F.SilkS") (width 0.12) (tstamp dd5e6afd-3b3e-4d0e-908f-61130b49ad02))
(fp_line (start -2.32 0.5) (end -1.82 0) (layer "F.SilkS") (width 0.12) (tstamp ef98cb1f-346f-4c8e-a02d-f2c8c750b261))
(fp_line (start -1.99 -7.02) (end -1.99 9.52) (layer "F.CrtYd") (width 0.05) (tstamp 09b56047-cd74-450d-89a3-82539a292b4b))
(fp_line (start 15.51 9.52) (end 15.51 -7.02) (layer "F.CrtYd") (width 0.05) (tstamp 5687ec03-26c3-4f73-af4d-316246c0bb71))
(fp_line (start -1.99 9.52) (end 15.51 9.52) (layer "F.CrtYd") (width 0.05) (tstamp 78c712a1-8c36-4c16-a95d-333d6762fdcf))
(fp_line (start 15.51 -7.02) (end -1.99 -7.02) (layer "F.CrtYd") (width 0.05) (tstamp 81026b09-8cff-4d80-8835-99a70b9f2193))
(fp_line (start 15.01 -4.8) (end 15.01 7.3) (layer "F.Fab") (width 0.1) (tstamp 13ae68e3-9bcb-4275-b5c3-2309412fc095))
(fp_line (start -0.49 -4.8) (end 15.01 -4.8) (layer "F.Fab") (width 0.1) (tstamp 6e755a75-da47-48bb-9040-4f47633bef11))
(fp_line (start -1.49 -3.8) (end -0.49 -4.8) (layer "F.Fab") (width 0.1) (tstamp dd494f1b-0d9b-43bd-ab86-66b051c9fab8))
(fp_line (start -1.49 7.3) (end -1.49 -3.8) (layer "F.Fab") (width 0.1) (tstamp f4eaab8f-6529-4899-81b4-28922df75d07))
(fp_line (start 15.01 7.3) (end -1.49 7.3) (layer "F.Fab") (width 0.1) (tstamp f8554fa1-1366-402c-95fa-2fed725602cf))
(pad "1" thru_hole rect locked (at 0 0 90) (size 1.7 1.7) (drill 0.92) (layers *.Cu *.Mask)
(net 2 "VBUS") (pinfunction "VBUS") (pintype "power_out") (tstamp ea82d032-71f1-4473-b6c1-8be3859ae627))
(pad "2" thru_hole circle locked (at 0 2.5 90) (size 1.7 1.7) (drill 0.92) (layers *.Cu *.Mask)
(net 6 "Net-(J1-Pad2)") (pinfunction "D-") (pintype "passive") (tstamp f6178027-4bc1-4461-ab43-393c0751c3c3))
(pad "3" thru_hole circle locked (at 2 2.5 90) (size 1.7 1.7) (drill 0.92) (layers *.Cu *.Mask)
(net 7 "Net-(J1-Pad3)") (pinfunction "D+") (pintype "passive") (tstamp 6c24f74f-a119-4e65-84dd-e0060b79dacb))
(pad "4" thru_hole circle locked (at 2 0 90) (size 1.7 1.7) (drill 0.92) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "GND") (pintype "power_out") (tstamp 09ed9a08-aa05-4421-af9e-687298d29130))
(pad "5" thru_hole circle locked (at 4.71 -4.77 90) (size 3.5 3.5) (drill 2.33) (layers *.Cu *.Mask)
(net 5 "Earth") (pinfunction "Shield") (pintype "passive") (tstamp 3ca4f246-bcb0-45eb-b848-daab7056f813))
(pad "5" thru_hole circle locked (at 4.71 7.27 90) (size 3.5 3.5) (drill 2.33) (layers *.Cu *.Mask)
(net 5 "Earth") (pinfunction "Shield") (pintype "passive") (tstamp 5d13e91d-7eb6-467e-b8f1-3b32b6a8a150))
(model "${KISYS3DMOD}/Connector_USB.3dshapes/USB_B_OST_USB-B1HSxx_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_1.27mm:PinHeader_2x05_P1.27mm_Vertical" (layer "F.Cu")
(tedit 59FED6E3) (tstamp 00000000-0000-0000-0000-00005f715074)
(at 109.347 92.964 180)
(descr "Through hole straight pin header, 2x05, 1.27mm pitch, double rows")
(tags "Through hole pin header THT 2x05 1.27mm double row")
(property "Sheetfile" "/home/chrigi/Projects/Model M/ctrl-M/ctrl-m.sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(path "/00000000-0000-0000-0000-00005f735b99")
(attr through_hole exclude_from_bom)
(fp_text reference "J2" (at 0.635 -1.695) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5c4b362d-cf76-43dd-b1bb-e239e54f6b4a)
)
(fp_text value "Conn_ARM_JTAG_SWD_10" (at 0.635 6.775) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e73a929f-9d1c-4887-8db6-0fcec9230ab0)
)
(fp_text user "${REFERENCE}" (at 0.635 2.54 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c275ef4e-8287-40f8-b5f1-95d10b1ed44b)
)
(fp_line (start 1.57753 5.775) (end 2.4 5.775) (layer "F.SilkS") (width 0.12) (tstamp 01ff3a2f-9582-4f97-97bb-2ac798d538e8))
(fp_line (start 0.76 0.706529) (end 0.76 0.563471) (layer "F.SilkS") (width 0.12) (tstamp 0cffc059-29d3-4559-a7a6-88d170f2264a))
(fp_line (start 0.563471 0.76) (end 0.706529 0.76) (layer "F.SilkS") (width 0.12) (tstamp 3dbc055b-574d-4195-b432-7873f6d9bea0))
(fp_line (start 1.57753 -0.695) (end 2.4 -0.695) (layer "F.SilkS") (width 0.12) (tstamp 473ada63-07f3-43b1-95e9-cb3593391def))
(fp_line (start -1.13 -0.76) (end 0 -0.76) (layer "F.SilkS") (width 0.12) (tstamp 77598927-850f-42b4-892c-1c62091a4473))
(fp_line (start 0.76 -0.695) (end 0.96247 -0.695) (layer "F.SilkS") (width 0.12) (tstamp 82faf339-ae90-40eb-aae8-9a0354b626a9))
(fp_line (start -1.13 0.76) (end -1.13 5.775) (layer "F.SilkS") (width 0.12) (tstamp 8c8a43d7-b410-43f6-bae1-6a76d399ace4))
(fp_line (start -1.13 5.775) (end -0.30753 5.775) (layer "F.SilkS") (width 0.12) (tstamp 9ce8c9f5-0204-48b1-9f5b-6fbbab632fbc))
(fp_line (start 0.30753 5.775) (end 0.96247 5.775) (layer "F.SilkS") (width 0.12) (tstamp c6422ab3-6cdc-432f-ac62-ba685f80ca6b))
(fp_line (start 2.4 -0.695) (end 2.4 5.775) (layer "F.SilkS") (width 0.12) (tstamp d689088a-a8f4-4b90-8b20-5a3bfac8cd6c))
(fp_line (start -1.13 0) (end -1.13 -0.76) (layer "F.SilkS") (width 0.12) (tstamp e213045f-a844-47a7-a664-773c8f983945))
(fp_line (start 0.76 -0.563471) (end 0.76 -0.695) (layer "F.SilkS") (width 0.12) (tstamp effda168-6fa2-4df6-bc48-2b95a59bf5cf))
(fp_line (start -1.13 0.76) (end -0.563471 0.76) (layer "F.SilkS") (width 0.12) (tstamp f52f2813-053a-4a6b-9486-3cb2947a0161))
(fp_line (start -1.6 -1.15) (end -1.6 6.25) (layer "F.CrtYd") (width 0.05) (tstamp 0151ae72-b0bc-470d-add2-c2cca7aee111))
(fp_line (start 2.85 -1.15) (end -1.6 -1.15) (layer "F.CrtYd") (width 0.05) (tstamp a3dba336-619c-43de-8da0-95192a7715f1))
(fp_line (start -1.6 6.25) (end 2.85 6.25) (layer "F.CrtYd") (width 0.05) (tstamp c44a7860-7e98-4489-86a2-e88fbf8a91a5))
(fp_line (start 2.85 6.25) (end 2.85 -1.15) (layer "F.CrtYd") (width 0.05) (tstamp cbb75125-00af-4bbb-ac7c-7dabee662a17))
(fp_line (start -1.07 0.2175) (end -0.2175 -0.635) (layer "F.Fab") (width 0.1) (tstamp 14920746-fd6b-458d-aa09-483714e2a6e4))
(fp_line (start -0.2175 -0.635) (end 2.34 -0.635) (layer "F.Fab") (width 0.1) (tstamp 50737ff3-b02a-4e18-a6f9-da0d843b5b11))
(fp_line (start 2.34 -0.635) (end 2.34 5.715) (layer "F.Fab") (width 0.1) (tstamp 837b12ed-645c-44ea-8d7f-a962df7448ad))
(fp_line (start 2.34 5.715) (end -1.07 5.715) (layer "F.Fab") (width 0.1) (tstamp 9190ef40-522e-46c7-9762-9ef262be1c8e))
(fp_line (start -1.07 5.715) (end -1.07 0.2175) (layer "F.Fab") (width 0.1) (tstamp f9945131-052d-43b9-8e84-ed84593ce55f))
(pad "1" thru_hole rect locked (at 0 0 180) (size 1 1) (drill 0.65) (layers *.Cu *.Mask)
(net 3 "+3V3") (pinfunction "VTref") (pintype "power_in") (tstamp e8423ad1-15cf-48ec-ac32-292c63f8beb2))
(pad "2" thru_hole oval locked (at 1.27 0 180) (size 1 1) (drill 0.65) (layers *.Cu *.Mask)
(net 8 "/SWDIO") (pinfunction "SWDIO/TMS") (pintype "bidirectional") (tstamp b067440e-bb4f-4f29-894a-dad62cd1f84f))
(pad "3" thru_hole oval locked (at 0 1.27 180) (size 1 1) (drill 0.65) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 29a94fb4-1885-4f52-b6dc-86faca84de7d))
(pad "4" thru_hole oval locked (at 1.27 1.27 180) (size 1 1) (drill 0.65) (layers *.Cu *.Mask)
(net 9 "/SWDCLK") (pinfunction "SWDCLK/TCK") (pintype "output") (tstamp d619290c-5edf-4b05-83b3-0994ad18fb96))
(pad "5" thru_hole oval locked (at 0 2.54 180) (size 1 1) (drill 0.65) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp 52b76578-229c-4e31-81d3-8f13c91f6f17))
(pad "6" thru_hole oval locked (at 1.27 2.54 180) (size 1 1) (drill 0.65) (layers *.Cu *.Mask)
(net 46 "unconnected-(J2-Pad6)") (pinfunction "SWO/TDO") (pintype "input+no_connect") (tstamp 796a0127-07af-4f7f-b81a-aa549e922052))
(pad "7" thru_hole oval locked (at 0 3.81 180) (size 1 1) (drill 0.65) (layers *.Cu *.Mask)
(net 47 "unconnected-(J2-Pad7)") (pinfunction "KEY") (pintype "no_connect") (tstamp 008ad5bd-96d5-44e4-916e-51d39549cb58))
(pad "8" thru_hole oval locked (at 1.27 3.81 180) (size 1 1) (drill 0.65) (layers *.Cu *.Mask)
(net 48 "unconnected-(J2-Pad8)") (pinfunction "NC/TDI") (pintype "output+no_connect") (tstamp 8dff34d9-b27e-4dde-b2f4-a1963e6a02f4))
(pad "9" thru_hole oval locked (at 0 5.08 180) (size 1 1) (drill 0.65) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "GNDDetect") (pintype "passive") (tstamp b5843a51-d315-4b3e-8ac0-8ca8bb8f341c))
(pad "10" thru_hole oval locked (at 1.27 5.08 180) (size 1 1) (drill 0.65) (layers *.Cu *.Mask)
(net 4 "/NRST") (pinfunction "~{RESET}") (pintype "open_collector") (tstamp 7024ff7e-234c-4db6-864f-50f60b1d883a))
(model "${KISYS3DMOD}/Connector_PinHeader_1.27mm.3dshapes/PinHeader_2x05_P1.27mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_FPC_2.54mm:TE_6-520315-6_1x16_P2.54mm_Vertical" (layer "F.Cu")
(tedit 5F90A586) (tstamp 00000000-0000-0000-0000-00005f91430d)
(at 152.6 80 -90)
(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" "/home/chrigi/Projects/Model M/ctrl-M/ctrl-m.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005f734592")
(attr through_hole)
(fp_text reference "J7" (at 0 -5.08 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9913de2c-ebce-4775-a71e-2d9c8b59d220)
)
(fp_text value "Conn_01x16" (at -3.731 19.33 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 807c3990-b079-4614-9ae4-4edf2ee350ab)
)
(fp_text user "${REFERENCE}" (at -3.048 0.254) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a0d8b9f9-00b9-4cae-911e-2b0724c95caa)
)
(fp_line (start 1.016 -4.064) (end 1.016 -2.032) (layer "F.SilkS") (width 0.12) (tstamp 16fc8954-1e3e-42d2-9a68-ddb6a16a6351))
(fp_line (start -2.286 -4.064) (end 1.016 -4.064) (layer "F.SilkS") (width 0.12) (tstamp 503c36dc-1411-40cb-a6f1-5c1acbdae7bd))
(fp_line (start 2.54 -2.032) (end 2.54 39.878) (layer "F.SilkS") (width 0.12) (tstamp 6e0b1f14-bbe0-40a8-8165-1f8f0a8696b8))
(fp_line (start 2.54 39.878) (end 1.016 39.878) (layer "F.SilkS") (width 0.12) (tstamp 8a3d1b18-eb3e-477d-8ef2-6e13db0fd9eb))
(fp_line (start -2.286 41.91) (end -2.286 -4.064) (layer "F.SilkS") (width 0.12) (tstamp 8b2af84c-3aae-44dd-a071-918504b31d88))
(fp_line (start 1.016 41.91) (end -2.286 41.91) (layer "F.SilkS") (width 0.12) (tstamp addbfc37-3566-4c48-9f35-0e4f16311c6e))
(fp_line (start 1.016 -2.032) (end 2.54 -2.032) (layer "F.SilkS") (width 0.12) (tstamp f19f9c6d-2ca6-4e4f-be44-ce1df3283ffa))
(fp_line (start 1.016 39.878) (end 1.016 41.91) (layer "F.SilkS") (width 0.12) (tstamp fccb9d00-fa9a-4547-adf6-f435fc60ad90))
(fp_line (start 2.794 -4.318) (end 2.794 42.164) (layer "F.CrtYd") (width 0.12) (tstamp c9e0a33e-a33b-4f28-a0b7-50f457ffb1ba))
(fp_line (start -2.54 -4.318) (end 2.794 -4.318) (layer "F.CrtYd") (width 0.12) (tstamp e353f158-b414-45dc-86f4-c2bc31349ff6))
(fp_line (start 2.794 42.164) (end -2.54 42.164) (layer "F.CrtYd") (width 0.12) (tstamp e609bc82-0512-4d91-9d32-3a006fa44f30))
(fp_line (start -2.54 42.164) (end -2.54 -4.318) (layer "F.CrtYd") (width 0.12) (tstamp ed04589c-b513-4a7b-a3fa-1e1117a73a33))
(fp_line (start 1.778 36.576) (end 0 36.576) (layer "F.Fab") (width 0.12) (tstamp 043946ae-f704-41f7-b956-202edc26a5d1))
(fp_line (start 1.778 34.036) (end 0 34.036) (layer "F.Fab") (width 0.12) (tstamp 07f62867-6965-460d-9b57-f7e96b3007cd))
(fp_line (start -1.27 -2.54) (end 0 -2.54) (layer "F.Fab") (width 0.12) (tstamp 098ba371-dcb2-48ee-925b-8955d2be3395))
(fp_line (start 2.54 39.878) (end 2.54 -2.032) (layer "F.Fab") (width 0.12) (tstamp 0b6d78e9-c778-4ab3-99c4-2c4039ca1f50))
(fp_line (start 1.778 6.604) (end 1.778 8.636) (layer "F.Fab") (width 0.12) (tstamp 0b89a493-d179-4644-b2ec-d349d6e05237))
(fp_line (start -1.27 40.894) (end -1.27 -2.54) (layer "F.Fab") (width 0.12) (tstamp 10caf9b8-9458-4117-b10b-ff41261c9b15))
(fp_line (start 1.778 11.176) (end 0 11.176) (layer "F.Fab") (width 0.12) (tstamp 1b20b2da-1d9c-4ee5-8d76-52eef824308b))
(fp_line (start 0 1.524) (end 1.778 1.524) (layer "F.Fab") (width 0.12) (tstamp 1d46ad14-2277-4351-a18e-480374b5b1db))
(fp_line (start 1.778 24.384) (end 1.778 26.416) (layer "F.Fab") (width 0.12) (tstamp 209f7a9e-3f8e-4cf1-bf6f-37d03db2ecc4))
(fp_line (start 1.778 21.844) (end 1.778 23.876) (layer "F.Fab") (width 0.12) (tstamp 25782d30-28a2-4dfd-a89c-8265b5ef6843))
(fp_line (start 0 6.604) (end 1.778 6.604) (layer "F.Fab") (width 0.12) (tstamp 2bea4671-bde5-419e-ac02-db6f67aedb2c))
(fp_line (start 1.016 -4.064) (end 1.016 -2.032) (layer "F.Fab") (width 0.12) (tstamp 2d2c6809-009e-4698-8765-7b6d2d40ee8b))
(fp_line (start 1.778 11.684) (end 1.778 13.716) (layer "F.Fab") (width 0.12) (tstamp 31b397f0-1da0-4bbd-ab4a-fa6dd9d692aa))
(fp_line (start 1.778 6.096) (end 0 6.096) (layer "F.Fab") (width 0.12) (tstamp 338a0115-e49f-4f4c-bcf2-d4ff2ab24c24))
(fp_line (start -2.286 -4.064) (end 1.016 -4.064) (layer "F.Fab") (width 0.12) (tstamp 38e0b912-a762-45a0-b48b-fa8e03e13ca7))
(fp_line (start 0 14.224) (end 1.778 14.224) (layer "F.Fab") (width 0.12) (tstamp 3b585082-b559-4a73-afd8-7e3f8a5e02c5))
(fp_line (start 1.778 23.876) (end 0 23.876) (layer "F.Fab") (width 0.12) (tstamp 3dc8bcc3-9bc7-4951-9b94-8b673d1dc137))
(fp_line (start 1.778 1.524) (end 1.778 3.556) (layer "F.Fab") (width 0.12) (tstamp 41990ccf-3cfa-45f6-8250-68a45d245127))
(fp_line (start 1.778 16.256) (end 0 16.256) (layer "F.Fab") (width 0.12) (tstamp 46b5a88e-2c59-43ab-8680-345b7adfff90))
(fp_line (start 1.778 3.556) (end 0 3.556) (layer "F.Fab") (width 0.12) (tstamp 49dd744b-be97-4801-a741-8b68529cb112))
(fp_line (start 1.778 29.464) (end 1.778 31.496) (layer "F.Fab") (width 0.12) (tstamp 4a330b52-5fba-499a-8f9a-fbedac59d90f))
(fp_line (start 1.778 19.304) (end 1.778 21.336) (layer "F.Fab") (width 0.12) (tstamp 4b748055-04cd-478b-899f-23710ea8fa3c))
(fp_line (start 0 37.084) (end 1.778 37.084) (layer "F.Fab") (width 0.12) (tstamp 4ea4c26c-4c0f-4b83-a358-3c43c52dafa2))
(fp_line (start 0 3.556) (end 0 4.064) (layer "F.Fab") (width 0.12) (tstamp 50571e45-38f8-446b-85b4-be37a3677945))
(fp_line (start 1.778 32.004) (end 1.778 34.036) (layer "F.Fab") (width 0.12) (tstamp 54480326-b437-485b-8ea9-488d87b0f69b))
(fp_line (start 1.778 -1.016) (end 1.778 1.016) (layer "F.Fab") (width 0.12) (tstamp 54cf08bd-9b3a-4b8d-9672-a8b5f2139691))
(fp_line (start 0 1.016) (end 0 1.524) (layer "F.Fab") (width 0.12) (tstamp 5b0725f0-fa1c-4a53-a7df-b05d70f6238c))
(fp_line (start 0 8.636) (end 0 9.144) (layer "F.Fab") (width 0.12) (tstamp 5c2655f1-6b43-49ff-b5a2-f71afe2f0071))
(fp_line (start 0 26.924) (end 1.778 26.924) (layer "F.Fab") (width 0.12) (tstamp 5e881a68-0af4-4c1d-96bb-caed358d9bb7))
(fp_line (start 0 40.894) (end -1.27 40.894) (layer "F.Fab") (width 0.12) (tstamp 5ed36105-121c-4a75-8d7e-dee19a44fca8))
(fp_line (start 0 29.464) (end 1.778 29.464) (layer "F.Fab") (width 0.12) (tstamp 5f148b94-1e17-4452-a24d-172994e2f9a9))
(fp_line (start 1.778 28.956) (end 0 28.956) (layer "F.Fab") (width 0.12) (tstamp 71092a25-eb22-497f-bd80-41b50f7daa42))
(fp_line (start 1.778 26.416) (end 0 26.416) (layer "F.Fab") (width 0.12) (tstamp 78153f46-59bb-4471-9435-230ebb1e3b0b))
(fp_line (start 0 40.894) (end 0 39.116) (layer "F.Fab") (width 0.12) (tstamp 78337235-bcd2-415c-8a42-1ce8b9e029b0))
(fp_line (start 1.778 9.144) (end 1.778 11.176) (layer "F.Fab") (width 0.12) (tstamp 8583d9aa-80bc-43c3-b68b-204121d1bcc7))
(fp_line (start 0 6.096) (end 0 6.604) (layer "F.Fab") (width 0.12) (tstamp 8dd53808-4953-43b5-8975-c410eb19864c))
(fp_line (start 0 34.036) (end 0 34.544) (layer "F.Fab") (width 0.12) (tstamp 911d21be-86f1-4581-b89d-26874eb136de))
(fp_line (start 2.54 39.878) (end 1.016 39.878) (layer "F.Fab") (width 0.12) (tstamp 94a4169f-43d1-443b-9f60-1b67d6fa7a40))
(fp_line (start 1.778 13.716) (end 0 13.716) (layer "F.Fab") (width 0.12) (tstamp 971e0ebe-853f-4c1d-b288-f11359af08c1))
(fp_line (start 0 28.956) (end 0 29.464) (layer "F.Fab") (width 0.12) (tstamp 9a4a66af-836e-445b-9335-f13875cca680))
(fp_line (start 1.778 8.636) (end 0 8.636) (layer "F.Fab") (width 0.12) (tstamp 9ac958f6-5840-450f-b981-af85095fdfee))
(fp_line (start 1.016 39.878) (end 1.016 41.91) (layer "F.Fab") (width 0.12) (tstamp 9af77c91-601e-4c5c-ba49-bf15e1003af3))
(fp_line (start 0 11.176) (end 0 11.684) (layer "F.Fab") (width 0.12) (tstamp 9c51c7f3-12af-470f-9301-c6e89ed4c977))
(fp_line (start 0 9.144) (end 1.778 9.144) (layer "F.Fab") (width 0.12) (tstamp 9cba6d7f-bc90-4940-be35-cac77d021aac))
(fp_line (start 1.778 39.116) (end 0 39.116) (layer "F.Fab") (width 0.12) (tstamp ad637740-3fbf-4faa-b1f3-dd91e8be437d))
(fp_line (start 0 4.064) (end 1.778 4.064) (layer "F.Fab") (width 0.12) (tstamp b1ebfdb5-98c1-4b4f-ac2d-c734c17206f7))
(fp_line (start 0 16.256) (end 0 16.764) (layer "F.Fab") (width 0.12) (tstamp b3903b10-8a5a-4c09-a870-1c7dbd578462))
(fp_line (start 0 34.544) (end 1.778 34.544) (layer "F.Fab") (width 0.12) (tstamp b540f774-5e37-44d0-8b86-9b2d7dc26cf0))
(fp_line (start 0 31.496) (end 0 32.004) (layer "F.Fab") (width 0.12) (tstamp b7b5fd71-cdd6-43ae-b5ba-7a485e2361fa))
(fp_line (start 1.778 26.924) (end 1.778 28.956) (layer "F.Fab") (width 0.12) (tstamp bde8b066-5934-4633-832e-0a98265b5f4e))
(fp_line (start 0 -1.016) (end 0 -2.54) (layer "F.Fab") (width 0.12) (tstamp befb9618-4aa0-4a04-ab59-c65eee833a15))
(fp_line (start 1.778 37.084) (end 1.778 39.116) (layer "F.Fab") (width 0.12) (tstamp c0afe605-739c-4413-b031-d653298572fa))
(fp_line (start 0 36.576) (end 0 37.084) (layer "F.Fab") (width 0.12) (tstamp c4682c36-e41b-4350-9e45-a45f9444337c))
(fp_line (start 0 26.416) (end 0 26.924) (layer "F.Fab") (width 0.12) (tstamp c51b5d70-0025-4cbe-8088-d1105a3ba493))
(fp_line (start 0 21.844) (end 1.778 21.844) (layer "F.Fab") (width 0.12) (tstamp cba65841-306e-4394-bd36-4d876fae5244))
(fp_line (start 1.778 14.224) (end 1.778 16.256) (layer "F.Fab") (width 0.12) (tstamp ccf98fe2-4ee0-4373-b673-66d02336f9fd))
(fp_line (start 0 32.004) (end 1.778 32.004) (layer "F.Fab") (width 0.12) (tstamp d5956ef4-88dc-4c22-a96f-eac24acd118b))
(fp_line (start 0 24.384) (end 1.778 24.384) (layer "F.Fab") (width 0.12) (tstamp da5e40d3-d6ea-419a-b243-f7988d7a6708))
(fp_line (start 1.778 18.796) (end 0 18.796) (layer "F.Fab") (width 0.12) (tstamp db2ea82d-7469-4cc1-b0d9-f8ccc1321e91))
(fp_line (start 1.778 1.016) (end 0 1.016) (layer "F.Fab") (width 0.12) (tstamp dbe4cbe1-2657-4f77-b95c-d0c559a821ef))
(fp_line (start 1.778 16.764) (end 1.778 18.796) (layer "F.Fab") (width 0.12) (tstamp dd30f3f3-0044-43cb-a4c6-0918283de803))
(fp_line (start 0 23.876) (end 0 24.384) (layer "F.Fab") (width 0.12) (tstamp ddeb04ee-2a3c-4218-ae3e-4619ade6eab8))
(fp_line (start 0 11.684) (end 1.778 11.684) (layer "F.Fab") (width 0.12) (tstamp de9723f9-0baa-4ea0-9cb1-ea4d78f29922))
(fp_line (start 0 16.764) (end 1.778 16.764) (layer "F.Fab") (width 0.12) (tstamp e171643a-ce30-4cc5-b519-25fe4eb99371))
(fp_line (start 1.016 -2.032) (end 2.54 -2.032) (layer "F.Fab") (width 0.12) (tstamp e3eddc3b-3423-46c4-a929-160b16f16901))
(fp_line (start 1.778 34.544) (end 1.778 36.576) (layer "F.Fab") (width 0.12) (tstamp e5534295-dba3-4d14-9e2a-290501e8e4c8))
(fp_line (start 1.778 21.336) (end 0 21.336) (layer "F.Fab") (width 0.12) (tstamp e66fb584-1eb1-4908-a4bc-cc0b71e2b6c2))
(fp_line (start 0 18.796) (end 0 19.304) (layer "F.Fab") (width 0.12) (tstamp ed38ca8e-230d-40a1-8553-0dff31077db6))
(fp_line (start 0 13.716) (end 0 14.224) (layer "F.Fab") (width 0.12) (tstamp f2baf94e-e00b-439b-b9d2-84d301f90528))
(fp_line (start 0 19.304) (end 1.778 19.304) (layer "F.Fab") (width 0.12) (tstamp f3942c82-f434-4e70-a91e-852500818e3b))
(fp_line (start 0 -1.016) (end 1.778 -1.016) (layer "F.Fab") (width 0.12) (tstamp f5809fe6-105e-4c0a-b3fd-9503a1cad5f0))
(fp_line (start 1.016 41.91) (end -2.286 41.91) (layer "F.Fab") (width 0.12) (tstamp f6051e4c-2c34-4d28-9c69-9f3ffbb9efcf))
(fp_line (start 1.778 31.496) (end 0 31.496) (layer "F.Fab") (width 0.12) (tstamp f8362305-3552-435e-85b4-a431d615946a))
(fp_line (start 1.778 4.064) (end 1.778 6.096) (layer "F.Fab") (width 0.12) (tstamp fa0028e8-9f29-4f3f-ad16-2b9c22e7e619))
(fp_line (start -2.286 41.91) (end -2.286 -4.064) (layer "F.Fab") (width 0.12) (tstamp fa0c5f4e-9e62-4065-b203-d8e27400c262))
(fp_line (start 0 21.336) (end 0 21.844) (layer "F.Fab") (width 0.12) (tstamp fc9d009b-e73a-442f-9170-bd27b1575dd0))
(pad "1" thru_hole rect locked (at 0 0 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 13 "/R15") (pinfunction "Pin_1") (pintype "passive") (tstamp b27d3c33-898c-4bb2-bce3-64591e4a23ae))
(pad "2" thru_hole oval locked (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 14 "/R14") (pinfunction "Pin_2") (pintype "passive") (tstamp 76aef694-b69d-4ea5-9c70-a15ace2a62a0))
(pad "3" thru_hole oval locked (at 0 5.08 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 15 "/R13") (pinfunction "Pin_3") (pintype "passive") (tstamp d2be2949-cb9d-49b4-b312-fc6a21aa894e))
(pad "4" thru_hole oval locked (at 0 7.62 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 16 "/R12") (pinfunction "Pin_4") (pintype "passive") (tstamp 9bdef27b-daab-47bd-a5e0-bec291073da3))
(pad "5" thru_hole oval locked (at 0 10.16) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 17 "/R11") (pinfunction "Pin_5") (pintype "passive") (tstamp 388e2663-4f63-4818-82bc-d59f273c3b7c))
(pad "6" thru_hole oval locked (at 0 12.7 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 18 "/R10") (pinfunction "Pin_6") (pintype "passive") (tstamp 4884eba6-ad8e-4830-b5b0-b98fda3012ae))
(pad "7" thru_hole oval locked (at 0 15.24 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 19 "/R9") (pinfunction "Pin_7") (pintype "passive") (tstamp ad65302f-03a9-4b49-b1f9-c378a229d00a))
(pad "8" thru_hole oval locked (at 0 17.78 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 20 "/R8") (pinfunction "Pin_8") (pintype "passive") (tstamp b7306322-c988-42d5-bc49-b7fc6f5fd84b))
(pad "9" thru_hole oval locked (at 0 20.32) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 21 "/R7") (pinfunction "Pin_9") (pintype "passive") (tstamp 46363a03-ef61-4223-9175-0cfce81e76d0))
(pad "10" thru_hole oval locked (at 0 22.86 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 22 "/R6") (pinfunction "Pin_10") (pintype "passive") (tstamp 6963d184-b20e-4211-a281-472b4c0a78e5))
(pad "11" thru_hole oval locked (at 0 25.4 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 23 "/R5") (pinfunction "Pin_11") (pintype "passive") (tstamp b337d51d-c75b-4acd-a1a6-1eec7ecdf86d))
(pad "12" thru_hole oval locked (at 0 27.94) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 24 "/R4") (pinfunction "Pin_12") (pintype "passive") (tstamp 851ba3b6-b261-4ba9-bf32-0e535852ed5b))
(pad "13" thru_hole oval locked (at 0 30.48 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 25 "/R3") (pinfunction "Pin_13") (pintype "passive") (tstamp 26d788f9-2a25-408a-a529-9a94994bfc58))
(pad "14" thru_hole oval locked (at 0 33.02 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 26 "/R2") (pinfunction "Pin_14") (pintype "passive") (tstamp 4c4bc60a-caf9-45fe-a1ad-fdab5c5d3279))
(pad "15" thru_hole oval locked (at 0 35.56 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 27 "/R1") (pinfunction "Pin_15") (pintype "passive") (tstamp ac6b5b17-1d47-47b4-ae1d-a6b532f065d1))
(pad "16" thru_hole oval locked (at 0 38.1 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 28 "/R0") (pinfunction "Pin_16") (pintype "passive") (tstamp 85c6b6b2-f910-4ffd-a772-67e6690b79b2))
(model "${KISYS3DMOD}/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_FPC_2.54mm:TE_6-520315-2_1x12_P2.54mm_Vertical" locked (layer "F.Cu")
(tedit 5F90A231) (tstamp 00000000-0000-0000-0000-00005f914366)
(at 170.4 82 90)
(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" "/home/chrigi/Projects/Model M/ctrl-M/ctrl-m.sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(path "/00000000-0000-0000-0000-00005f97f418")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "J8" (at 0 -5.08 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9aefa8e7-0485-455e-a97d-21fa8e0a47c3)
)
(fp_text value "Conn_01x12" (at 3.931 13.67 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 10f30bed-83b7-47b9-aa6d-ad8cea2e6c3b)
)
(fp_text user "${REFERENCE}" (at -3.048 0.254) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 37999d26-41ec-4864-b11c-61c19e390f28)
)
(fp_line (start 1.016 -4.064) (end 1.016 -2.032) (layer "F.SilkS") (width 0.12) (tstamp 1b62baf0-547f-4bf3-82c6-0f8737559f33))
(fp_line (start 2.54 -2.032) (end 2.54 29.718) (layer "F.SilkS") (width 0.12) (tstamp 222b938e-66da-428a-8ef1-975bdb1cb519))
(fp_line (start 1.016 -2.032) (end 2.54 -2.032) (layer "F.SilkS") (width 0.12) (tstamp 926cea58-3a77-4db1-bf9c-7a2f9c884dcf))
(fp_line (start 1.016 31.75) (end -2.286 31.75) (layer "F.SilkS") (width 0.12) (tstamp a5234a36-a5e3-4e59-9837-f7cd076860ba))
(fp_line (start -2.286 -4.064) (end 1.016 -4.064) (layer "F.SilkS") (width 0.12) (tstamp a6b12a69-e903-419d-ae62-3ddff6e5cc31))
(fp_line (start 1.016 29.718) (end 1.016 31.75) (layer "F.SilkS") (width 0.12) (tstamp ae8bbf6e-c5e6-42ab-aeab-c28741ba8fd0))
(fp_line (start 2.54 29.718) (end 1.016 29.718) (layer "F.SilkS") (width 0.12) (tstamp b17fda35-5f75-4a5c-aa0a-52092c69cfa6))
(fp_line (start -2.286 31.75) (end -2.286 -4.064) (layer "F.SilkS") (width 0.12) (tstamp cacf09f3-2e51-4b85-9f41-ae022a5386f7))
(fp_line (start -2.54 32.004) (end -2.54 -4.318) (layer "F.CrtYd") (width 0.12) (tstamp 46b09022-37da-4028-8ac4-90f5b3e503cd))
(fp_line (start 2.794 -4.318) (end 2.794 32.004) (layer "F.CrtYd") (width 0.12) (tstamp 48ec475a-828d-48a3-8fac-020659cf352a))
(fp_line (start 2.794 32.004) (end -2.54 32.004) (layer "F.CrtYd") (width 0.12) (tstamp 4be778f2-03a8-4c06-b221-9e3e3c494823))
(fp_line (start -2.54 -4.318) (end 2.794 -4.318) (layer "F.CrtYd") (width 0.12) (tstamp a8f57e1c-d80c-4b4a-bb3d-b89543fc55c4))
(fp_line (start 2.54 29.718) (end 1.016 29.718) (layer "F.Fab") (width 0.12) (tstamp 007264f8-21b7-4931-a139-c90064e93fc8))
(fp_line (start 0 21.336) (end 0 21.844) (layer "F.Fab") (width 0.12) (tstamp 016b70a9-7245-47ff-b359-a057a6ee2ec6))
(fp_line (start 1.778 26.924) (end 1.778 28.956) (layer "F.Fab") (width 0.12) (tstamp 0d924581-2f04-4fe7-a2a8-c40bdeafc6bc))
(fp_line (start 1.778 4.064) (end 1.778 6.096) (layer "F.Fab") (width 0.12) (tstamp 11d8add7-2478-4911-adc0-b1b947485731))
(fp_line (start 1.778 9.144) (end 1.778 11.176) (layer "F.Fab") (width 0.12) (tstamp 1228a3e9-ef05-4cd2-8625-e6df744905c7))
(fp_line (start 0 23.876) (end 0 24.384) (layer "F.Fab") (width 0.12) (tstamp 15db0f73-71fa-4dfd-920b-c2fab465dc8c))
(fp_line (start 0 26.416) (end 0 26.924) (layer "F.Fab") (width 0.12) (tstamp 19474b03-99b4-4721-80b8-dd3ded87a21d))
(fp_line (start 0 11.176) (end 0 11.684) (layer "F.Fab") (width 0.12) (tstamp 1ca8b59e-7993-4139-ba0e-1e0098bacdd1))
(fp_line (start 1.778 1.016) (end 0 1.016) (layer "F.Fab") (width 0.12) (tstamp 25730e4f-7097-451b-acda-74a9a8dffc18))
(fp_line (start -1.27 30.734) (end -1.27 -2.54) (layer "F.Fab") (width 0.12) (tstamp 2bfaae82-19e3-40e8-840a-8699ba1a1204))
(fp_line (start 2.54 29.718) (end 2.54 -2.032) (layer "F.Fab") (width 0.12) (tstamp 385df7c0-1567-4b72-855f-8724225c1e2e))
(fp_line (start 0 19.304) (end 1.778 19.304) (layer "F.Fab") (width 0.12) (tstamp 3b36bf82-4087-4544-9a89-c16bf387c78a))
(fp_line (start 1.778 6.096) (end 0 6.096) (layer "F.Fab") (width 0.12) (tstamp 3bd42230-ba5f-4b33-bb11-f9aead3cb825))
(fp_line (start 0 13.716) (end 0 14.224) (layer "F.Fab") (width 0.12) (tstamp 3d849a0d-7435-45f3-b17b-3ba8dd3f2230))
(fp_line (start 0 16.764) (end 1.778 16.764) (layer "F.Fab") (width 0.12) (tstamp 425d4c3f-6020-4481-93ba-b7d085296e15))
(fp_line (start 0 1.524) (end 1.778 1.524) (layer "F.Fab") (width 0.12) (tstamp 4a267930-cb25-4845-a60e-ccf40764cd87))
(fp_line (start 1.016 -2.032) (end 2.54 -2.032) (layer "F.Fab") (width 0.12) (tstamp 4d79890e-d976-421c-a048-d6f463090801))
(fp_line (start -2.286 -4.064) (end 1.016 -4.064) (layer "F.Fab") (width 0.12) (tstamp 4eabfdd5-514e-4014-8033-6668ba5808b3))
(fp_line (start 0 30.734) (end -1.27 30.734) (layer "F.Fab") (width 0.12) (tstamp 504ffa26-b407-4af8-b1e7-9b176acbf4aa))
(fp_line (start 0 6.096) (end 0 6.604) (layer "F.Fab") (width 0.12) (tstamp 55ab3faf-eaf1-4635-abe0-f1d45f2220f6))
(fp_line (start 1.778 26.416) (end 0 26.416) (layer "F.Fab") (width 0.12) (tstamp 5f0a2543-4f24-4066-882f-f86cff73f830))
(fp_line (start 1.778 14.224) (end 1.778 16.256) (layer "F.Fab") (width 0.12) (tstamp 629bedec-1cfc-4cff-b215-5301c9866ccb))
(fp_line (start 0 4.064) (end 1.778 4.064) (layer "F.Fab") (width 0.12) (tstamp 662fee04-1ae0-48e5-9eeb-b0a7f91d76c8))
(fp_line (start 1.778 1.524) (end 1.778 3.556) (layer "F.Fab") (width 0.12) (tstamp 6b521be1-49a9-49ef-b312-d421d1683476))
(fp_line (start 1.778 23.876) (end 0 23.876) (layer "F.Fab") (width 0.12) (tstamp 6b978157-db0e-4816-bc57-0f53dca5faf7))
(fp_line (start 0 1.016) (end 0 1.524) (layer "F.Fab") (width 0.12) (tstamp 6c87c376-fbad-485d-bf43-3460c1f93b61))
(fp_line (start -1.27 -2.54) (end 0 -2.54) (layer "F.Fab") (width 0.12) (tstamp 6f43dd2a-e0a0-4ea6-8b32-e8a6b7b0e227))
(fp_line (start -2.286 31.75) (end -2.286 -4.064) (layer "F.Fab") (width 0.12) (tstamp 7750dccf-a230-4d03-a980-4421c3425ef4))
(fp_line (start 0 -1.016) (end 0 -2.54) (layer "F.Fab") (width 0.12) (tstamp 77dae029-ad35-4d87-a2ee-cabfa4cfce72))
(fp_line (start 0 11.684) (end 1.778 11.684) (layer "F.Fab") (width 0.12) (tstamp 7d2baf87-279a-4310-9793-28814c85f41a))
(fp_line (start 1.778 11.176) (end 0 11.176) (layer "F.Fab") (width 0.12) (tstamp 7e137db1-bd57-4530-968f-0c6045a08f0e))
(fp_line (start 1.778 21.844) (end 1.778 23.876) (layer "F.Fab") (width 0.12) (tstamp 826e376a-8dc3-4d5c-a671-ce13958dc8ac))
(fp_line (start 1.778 8.636) (end 0 8.636) (layer "F.Fab") (width 0.12) (tstamp 83166359-a0b5-4d93-a5f6-3dac3ad1b93f))
(fp_line (start 1.016 -4.064) (end 1.016 -2.032) (layer "F.Fab") (width 0.12) (tstamp 861cb123-e8bd-4df2-b6ff-6ae10bc5463c))
(fp_line (start 1.016 29.718) (end 1.016 31.75) (layer "F.Fab") (width 0.12) (tstamp 862c1e78-3b2c-4fbc-b700-df2ac870456b))
(fp_line (start 0 30.734) (end 0 28.956) (layer "F.Fab") (width 0.12) (tstamp 86551674-7c30-4f2a-9b77-079674f2289c))
(fp_line (start 1.778 16.764) (end 1.778 18.796) (layer "F.Fab") (width 0.12) (tstamp 89d25eda-5381-4db0-9a06-080ebb5d765c))
(fp_line (start 0 6.604) (end 1.778 6.604) (layer "F.Fab") (width 0.12) (tstamp 8be737d5-ea8b-483b-92dd-b6dec4284cc7))
(fp_line (start 0 -1.016) (end 1.778 -1.016) (layer "F.Fab") (width 0.12) (tstamp 8c153d60-cde6-480d-81c7-61418a13b7f9))
(fp_line (start 0 3.556) (end 0 4.064) (layer "F.Fab") (width 0.12) (tstamp 8d00469b-f23b-49ea-9834-afc41c6cbad2))
(fp_line (start 1.016 31.75) (end -2.286 31.75) (layer "F.Fab") (width 0.12) (tstamp 9a564363-6043-46dc-a819-25d0eed6f592))
(fp_line (start 1.778 6.604) (end 1.778 8.636) (layer "F.Fab") (width 0.12) (tstamp 9ba13d24-7fee-45a0-953b-a978f85548aa))
(fp_line (start 1.778 -1.016) (end 1.778 1.016) (layer "F.Fab") (width 0.12) (tstamp a2724ffb-e7c5-461c-83f8-6d70ef240c12))
(fp_line (start 0 8.636) (end 0 9.144) (layer "F.Fab") (width 0.12) (tstamp a318f972-e8d6-4f8b-9352-61116786232a))
(fp_line (start 1.778 21.336) (end 0 21.336) (layer "F.Fab") (width 0.12) (tstamp af424af5-1923-4b73-bd49-a07008875e9f))
(fp_line (start 1.778 16.256) (end 0 16.256) (layer "F.Fab") (width 0.12) (tstamp b46558f5-a462-4bbf-8745-631afe4212a5))
(fp_line (start 1.778 18.796) (end 0 18.796) (layer "F.Fab") (width 0.12) (tstamp beb85d42-98e5-4770-8813-1be35f2bdb6a))
(fp_line (start 0 9.144) (end 1.778 9.144) (layer "F.Fab") (width 0.12) (tstamp c58d5c63-e957-45f1-bd08-513871b8d0cf))
(fp_line (start 0 21.844) (end 1.778 21.844) (layer "F.Fab") (width 0.12) (tstamp c701dd8c-a51d-4ed1-a329-d2e0db4e9fee))
(fp_line (start 0 18.796) (end 0 19.304) (layer "F.Fab") (width 0.12) (tstamp c7f6d026-da40-4b36-b50b-8ad42dd1f3de))
(fp_line (start 1.778 13.716) (end 0 13.716) (layer "F.Fab") (width 0.12) (tstamp cc5cf774-eefd-45d6-8f5c-2e6e6c01376a))
(fp_line (start 0 26.924) (end 1.778 26.924) (layer "F.Fab") (width 0.12) (tstamp d0e756c3-0316-435b-8427-3534f849e17a))
(fp_line (start 1.778 11.684) (end 1.778 13.716) (layer "F.Fab") (width 0.12) (tstamp d3de32ec-1580-4662-a64b-c04c6ac77327))
(fp_line (start 1.778 3.556) (end 0 3.556) (layer "F.Fab") (width 0.12) (tstamp d8ad1967-d7ee-42ca-8b9c-3e31d681a252))
(fp_line (start 1.778 28.956) (end 0 28.956) (layer "F.Fab") (width 0.12) (tstamp db1c29f3-75c8-4256-baa5-43c63cdabd8d))
(fp_line (start 1.778 24.384) (end 1.778 26.416) (layer "F.Fab") (width 0.12) (tstamp e221cdd8-222e-4b20-91dd-e4bb7f77fe26))
(fp_line (start 0 16.256) (end 0 16.764) (layer "F.Fab") (width 0.12) (tstamp e4bc01e4-d676-41a3-b757-960893cb3f35))
(fp_line (start 0 14.224) (end 1.778 14.224) (layer "F.Fab") (width 0.12) (tstamp e5c6a9bc-0166-44e9-a1db-132035933dab))
(fp_line (start 0 24.384) (end 1.778 24.384) (layer "F.Fab") (width 0.12) (tstamp ea102b0a-357e-4493-894d-bdcd29333729))
(fp_line (start 1.778 19.304) (end 1.778 21.336) (layer "F.Fab") (width 0.12) (tstamp f128c433-e1d6-4479-b36c-ff90cbcea737))
(pad "1" thru_hole rect locked (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 29 "/C0") (pinfunction "Pin_1") (pintype "passive") (tstamp 11d918ce-01dd-4f6a-92aa-f709c98fbc42))
(pad "2" thru_hole oval locked (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 30 "/C1") (pinfunction "Pin_2") (pintype "passive") (tstamp e541db0d-0296-4717-b4b4-43195bd87db6))
(pad "3" thru_hole oval locked (at 0 5.08 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 31 "/C2") (pinfunction "Pin_3") (pintype "passive") (tstamp cdef9572-3d22-414d-9401-c00d0604f521))
(pad "4" thru_hole oval locked (at 0 7.62 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 32 "/C3") (pinfunction "Pin_4") (pintype "passive") (tstamp cfc3d777-e2ea-456b-881e-0116d5d484f0))
(pad "5" thru_hole oval locked (at 0 10.16 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 33 "/C4") (pinfunction "Pin_5") (pintype "passive") (tstamp ae452894-2b53-4a75-8220-3dcefb21db0e))
(pad "6" thru_hole oval locked (at 0 12.7 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 34 "/C5") (pinfunction "Pin_6") (pintype "passive") (tstamp 7dba37dd-398c-4630-bd78-3faa027c8cfc))
(pad "7" thru_hole oval locked (at 0 15.24 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 35 "/C6") (pinfunction "Pin_7") (pintype "passive") (tstamp 0b601535-2596-4e2f-802a-f7931bfb661d))
(pad "8" thru_hole oval locked (at 0 17.78 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 36 "/C7") (pinfunction "Pin_8") (pintype "passive") (tstamp 6e42506f-d622-467b-b38f-1e399d263121))
(pad "9" thru_hole oval locked (at 0 20.32 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 50 "Net-(J12-Pad1)") (pinfunction "Pin_9") (pintype "passive") (tstamp 02e75924-f12b-4732-b89d-9e09bf3026e8))
(pad "10" thru_hole oval locked (at 0 22.86 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 "+3V3") (pinfunction "Pin_10") (pintype "passive") (tstamp 972858a5-027f-4828-b8f6-ec488ebbf8d2))
(pad "11" thru_hole oval locked (at 0 25.4 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 51 "Net-(J12-Pad3)") (pinfunction "Pin_11") (pintype "passive") (tstamp 9bb67e89-a424-4114-8036-c631eee884ad))
(pad "12" thru_hole oval locked (at 0 27.94 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 49 "Net-(J12-Pad4)") (pinfunction "Pin_12") (pintype "passive") (tstamp dfaf3180-7fa4-4e70-b8b6-37e8cafb6718))
(model "${KISYS3DMOD}/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_FPC_2.54mm:TE_5-520315-4_1x04_P2.54mm_Vertical" locked (layer "F.Cu")
(tedit 5F909A5F) (tstamp 00000000-0000-0000-0000-00005f914397)
(at 201.88 82 90)
(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" "/home/chrigi/Projects/Model M/ctrl-M/ctrl-m.sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(path "/00000000-0000-0000-0000-00005f730ea0")
(attr through_hole exclude_from_bom)
(fp_text reference "J9" (at 2.331 11.39 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9407cec8-6ffd-4494-8c60-81a41976bf3a)
)
(fp_text value "Conn_01x04" (at 3.931 3.99 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8949a023-8309-4252-b50d-9b930eb168cf)
)
(fp_text user "${REFERENCE}" (at -3.048 0.254) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 42b1dc63-e91c-4402-aff9-1075b967d3a4)
)
(fp_line (start 1.016 9.652) (end 1.016 11.43) (layer "F.SilkS") (width 0.12) (tstamp 062173d8-2222-4a9a-b5cd-0a4c173c6d8b))
(fp_line (start 1.016 -2.032) (end 2.54 -2.032) (layer "F.SilkS") (width 0.12) (tstamp 0f9cb831-7a09-446d-8f9d-742645c012e9))
(fp_line (start 1.016 -4.064) (end 1.016 -2.032) (layer "F.SilkS") (width 0.12) (tstamp 35fc4b56-443c-41ba-ae79-bae9b1d6d94b))
(fp_line (start -2.286 11.43) (end -2.286 -4.064) (layer "F.SilkS") (width 0.12) (tstamp 5407bd7f-5085-44be-a469-371bfd0d81ba))
(fp_line (start -2.286 -4.064) (end 1.016 -4.064) (layer "F.SilkS") (width 0.12) (tstamp 600af0f6-badc-4e8b-85f8-4f90566da5f6))
(fp_line (start 1.016 11.43) (end -2.286 11.43) (layer "F.SilkS") (width 0.12) (tstamp 9f7d679a-fc94-4395-9e32-263d45ba8e60))
(fp_line (start 2.54 9.652) (end 1.016 9.652) (layer "F.SilkS") (width 0.12) (tstamp d8ee1173-64aa-4651-bd2e-668af29204c0))
(fp_line (start 2.54 -2.032) (end 2.54 9.652) (layer "F.SilkS") (width 0.12) (tstamp de964da0-4e44-4263-9c94-6af9371ebf2a))
(fp_line (start 2.794 -4.318) (end 2.794 11.684) (layer "F.CrtYd") (width 0.12) (tstamp 133a6766-e8b7-403a-b488-06bc6b86b19e))
(fp_line (start -2.54 -4.318) (end 2.794 -4.318) (layer "F.CrtYd") (width 0.12) (tstamp 1b187c60-6156-482a-bbf1-640cae8325c7))
(fp_line (start -2.54 11.684) (end -2.54 -4.318) (layer "F.CrtYd") (width 0.12) (tstamp d7c5792f-717e-4987-9771-57572b49a18f))
(fp_line (start 2.794 11.684) (end -2.54 11.684) (layer "F.CrtYd") (width 0.12) (tstamp dab16332-0858-4c1b-851c-d917bf934d11))
(fp_line (start -1.27 10.16) (end -1.27 -2.54) (layer "F.Fab") (width 0.12) (tstamp 0f32abc3-591a-4a3e-8127-d7754cfa46b4))
(fp_line (start 1.778 4.064) (end 1.778 6.096) (layer "F.Fab") (width 0.12) (tstamp 1303525d-5486-4076-a426-099abf296cba))
(fp_line (start 1.778 -1.016) (end 1.778 1.016) (layer "F.Fab") (width 0.12) (tstamp 14e62ce1-b2c6-40e2-b6f7-b8ae7d7388b2))
(fp_line (start 0 -1.016) (end 1.778 -1.016) (layer "F.Fab") (width 0.12) (tstamp 197f6651-bd94-4e66-bc7e-a985881538a0))
(fp_line (start 1.778 3.556) (end 0 3.556) (layer "F.Fab") (width 0.12) (tstamp 1ec6a4bf-1196-4b1d-8e71-404347d91f0d))
(fp_line (start 0 6.604) (end 1.778 6.604) (layer "F.Fab") (width 0.12) (tstamp 3141685c-7634-4c16-b643-a57cafd1db25))
(fp_line (start 1.016 -4.064) (end 1.016 -2.032) (layer "F.Fab") (width 0.12) (tstamp 35a178d6-bd9b-4f9d-85eb-e63a0e5f5351))
(fp_line (start 0 6.096) (end 0 6.604) (layer "F.Fab") (width 0.12) (tstamp 3ce61462-da97-4e09-97b0-715429c66ed4))
(fp_line (start 1.778 1.016) (end 0 1.016) (layer "F.Fab") (width 0.12) (tstamp 3f5149a5-2141-47e2-bb6e-50ab0dc2615a))
(fp_line (start 0 1.016) (end 0 1.524) (layer "F.Fab") (width 0.12) (tstamp 45df3d1c-eac9-4e6b-903a-05d44a6280c1))
(fp_line (start 0 10.16) (end -1.27 10.16) (layer "F.Fab") (width 0.12) (tstamp 46679c90-8f61-438d-88b2-f14ee31c25e3))
(fp_line (start 1.016 9.652) (end 1.016 11.43) (layer "F.Fab") (width 0.12) (tstamp 5bdee745-d31c-4a8f-b4d0-5570a1f38128))
(fp_line (start 0 10.16) (end 0 8.636) (layer "F.Fab") (width 0.12) (tstamp 5c4ae8b8-a067-4e04-a845-8aa88b9c0d28))
(fp_line (start 2.54 9.652) (end 1.016 9.652) (layer "F.Fab") (width 0.12) (tstamp 612bca1c-2a96-45dd-8dff-000b457d550f))
(fp_line (start -2.286 -4.064) (end 1.016 -4.064) (layer "F.Fab") (width 0.12) (tstamp 6b107f77-8baf-4855-b4e2-773b0d8c0fc9))
(fp_line (start 1.778 6.604) (end 1.778 8.636) (layer "F.Fab") (width 0.12) (tstamp 764c56e8-6ec7-4c3d-ba15-f5d782f925e8))
(fp_line (start -1.27 -2.54) (end 0 -2.54) (layer "F.Fab") (width 0.12) (tstamp 76a0b19e-b4da-465a-857f-3b8821d99ff7))
(fp_line (start -2.286 11.43) (end -2.286 -4.064) (layer "F.Fab") (width 0.12) (tstamp 858596de-0770-4434-a7dd-d9e835784f5e))
(fp_line (start 0 1.524) (end 1.778 1.524) (layer "F.Fab") (width 0.12) (tstamp 89676b23-066b-4100-b908-933d2e82d736))
(fp_line (start 1.778 8.636) (end 0 8.636) (layer "F.Fab") (width 0.12) (tstamp 8a920edb-6804-4b52-9043-0cc7b404a80e))
(fp_line (start 2.54 -2.032) (end 2.54 9.652) (layer "F.Fab") (width 0.12) (tstamp 8da4a3c7-8ef8-4d25-9dca-20bb7b28e24c))
(fp_line (start 1.778 1.524) (end 1.778 3.556) (layer "F.Fab") (width 0.12) (tstamp a365be12-9db0-4351-a4d0-b4db16299b42))
(fp_line (start 1.016 -2.032) (end 2.54 -2.032) (layer "F.Fab") (width 0.12) (tstamp a5dfda9b-de84-41c5-9160-001fbd9b868b))
(fp_line (start 1.778 6.096) (end 0 6.096) (layer "F.Fab") (width 0.12) (tstamp b2a1328c-34db-4f24-8fc6-ed54e0ac10e7))
(fp_line (start 1.016 11.43) (end -2.286 11.43) (layer "F.Fab") (width 0.12) (tstamp b7da5ea6-1ab9-49a6-9c01-72c89f602235))
(fp_line (start 0 3.556) (end 0 4.064) (layer "F.Fab") (width 0.12) (tstamp d911184c-86cd-40e5-8dcc-f11d2f7ccc6e))
(fp_line (start 0 -1.016) (end 0 -2.54) (layer "F.Fab") (width 0.12) (tstamp eef3566b-468e-4068-8717-e332e84ec1ed))
(fp_line (start 0 4.064) (end 1.778 4.064) (layer "F.Fab") (width 0.12) (tstamp fe4d7986-078f-4f4c-89fd-862dbd19576d))
(pad "1" thru_hole rect locked (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 50 "Net-(J12-Pad1)") (pinfunction "Pin_1") (pintype "passive") (tstamp f4ccf641-9cc3-4df9-8dd4-eff314482194))
(pad "2" thru_hole oval locked (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 "+3V3") (pinfunction "Pin_2") (pintype "passive") (tstamp 2e180719-96e9-4a57-9a5f-40a2c088a268))
(pad "3" thru_hole oval locked (at 0 5.08 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 51 "Net-(J12-Pad3)") (pinfunction "Pin_3") (pintype "passive") (tstamp 0ea087bd-1b3c-40a8-9570-426e5b27489c))
(pad "4" thru_hole oval locked (at 0 7.62 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 49 "Net-(J12-Pad4)") (pinfunction "Pin_4") (pintype "passive") (tstamp a5052a99-5deb-4108-a833-7f2bb40d297f))
(model "${KISYS3DMOD}/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_Blade:Blade_6.3mm_Horizontal" locked (layer "F.Cu")
(tedit 5F8E06DB) (tstamp 00000000-0000-0000-0000-00005f915168)
(at 215.5 93.86 -90)
(descr "Push-on blade terminal, 6.3 x 0.8 mm, horizontal, https://www.distrelec.biz/en/push-on-blade-terminal-tin-plated-mm-pack-of-100-pieces-rnd-connect-rnd-465-00703/p/30110618")
(tags "blade terminal 6.3 crimp")
(property "Sheetfile" "/home/chrigi/Projects/Model M/ctrl-M/ctrl-m.sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(path "/00000000-0000-0000-0000-00005f9127ea")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "J3" (at -4.491 -1.77 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 03927337-d87b-4e53-92d2-aeaf60f3bccd)
)
(fp_text value "Conn_01x01" (at -4.3 -2.9 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5af18027-3e7f-4fc4-bda6-d3ad89e73e72)
)
(fp_line (start -14.1 -0.4) (end -14.1 0.4) (layer "F.SilkS") (width 0.12) (tstamp 00c22f80-81af-4f4a-aa09-2cdade4f73e0))
(fp_line (start -14.1 0.4) (end -14.4 0.2) (layer "F.SilkS") (width 0.12) (tstamp 38822ac6-0f43-4ded-a34b-f652dd0a3e41))
(fp_line (start -14.4 0.2) (end -14.4 -0.2) (layer "F.SilkS") (width 0.12) (tstamp 87bc0a2a-7f16-4fd3-a21b-55d44d9a80d6))
(fp_line (start -14.4 -0.2) (end -14.1 -0.4) (layer "F.SilkS") (width 0.12) (tstamp c7b3027b-46fd-413c-9025-47aabe451498))
(fp_line (start -1.4 0.4) (end -14.1 0.4) (layer "F.SilkS") (width 0.12) (tstamp ccef06af-463c-4c0a-9dea-8ac362d46c3d))
(fp_line (start -14.1 -0.4) (end -1.4 -0.4) (layer "F.SilkS") (width 0.12) (tstamp db4c1ff7-85ad-4893-ae27-eb35ba5da0fd))
(fp_line (start -3.7 -1.4) (end -3.7 -2) (layer "F.CrtYd") (width 0.12) (tstamp 0063e45e-db7a-4e9d-b55b-a76fa3d6127b))
(fp_line (start -3.7 -2) (end -23.4 -2) (layer "F.CrtYd") (width 0.12) (tstamp 07bfa798-ddcd-4f48-a915-a28acc6da8bf))
(fp_line (start 6.4 -1.4) (end -3.7 -1.4) (layer "F.CrtYd") (width 0.12) (tstamp 24b8861b-d89f-442a-b58b-3e6f75d8f84b))
(fp_line (start -3.7 2) (end -3.7 1.4) (layer "F.CrtYd") (width 0.12) (tstamp 2d4e8a35-1e2d-403f-a38f-a18fce678ed6))
(fp_line (start -23.4 2) (end -3.7 2) (layer "F.CrtYd") (width 0.12) (tstamp 6a10a0f8-4d66-4d4f-9bfe-759991865dfd))
(fp_line (start -3.7 1.4) (end 6.3 1.4) (layer "F.CrtYd") (width 0.12) (tstamp 957acb99-671d-42e6-8486-7be7e296c8d4))
(fp_line (start 6.3 1.4) (end 6.4 1.4) (layer "F.CrtYd") (width 0.12) (tstamp 9e8819e0-f098-4fb3-bb0d-be1cec4e6727))
(fp_line (start 6.4 1.4) (end 6.4 -1.4) (layer "F.CrtYd") (width 0.12) (tstamp d8b14bc6-6ab5-4996-ac88-172415aeea78))
(fp_line (start -23.4 -2) (end -23.4 2) (layer "F.CrtYd") (width 0.12) (tstamp eb04eecc-d64d-4f29-98f6-2ff9be1ae27a))
(fp_line (start -14.1 0.4) (end -14.4 0.2) (layer "F.Fab") (width 0.12) (tstamp 1fe24fec-cf91-45f4-b1ac-c52ad4fc0a3a))
(fp_line (start 5.7 -0.4) (end 5.7 0.4) (layer "F.Fab") (width 0.12) (tstamp 25f9b281-74bf-4255-8ec6-43e49d33966e))
(fp_line (start -14.1 -0.4) (end 5.7 -0.4) (layer "F.Fab") (width 0.12) (tstamp 274794c9-35bb-4879-a74a-74194197a367))
(fp_line (start -14.4 0.2) (end -14.4 -0.2) (layer "F.Fab") (width 0.12) (tstamp 63105302-230c-403b-9ee0-8a6bc9b5e50b))
(fp_line (start -14.4 -0.2) (end -14.1 -0.4) (layer "F.Fab") (width 0.12) (tstamp 6ad36879-5a82-4228-9056-29a9ebfcb0f6))
(fp_line (start 3.4 -0.4) (end 3.4 0.4) (layer "F.Fab") (width 0.12) (tstamp 8dc7a630-6f5c-4b99-bdc9-cbef3b20c168))
(fp_line (start 5.7 0.4) (end -14.1 0.4) (layer "F.Fab") (width 0.12) (tstamp a3a0b21a-a073-4f75-a15a-4341d2bf1b03))
(fp_line (start -14.1 -0.4) (end -14.1 0.4) (layer "F.Fab") (width 0.12) (tstamp fb340464-bad0-4cf0-8a5b-1ae69cf1a72a))
(pad "1" thru_hole circle locked (at 0.06 0 270) (size 2.4 2.4) (drill 1.6) (layers *.Cu *.Mask)
(net 5 "Earth") (pinfunction "Pin_1") (pintype "passive") (tstamp 1fce1a65-05f3-4d52-92eb-a4fa38ef29a0))
(pad "1" thru_hole circle locked (at 5.14 0 270) (size 2.4 2.4) (drill 1.6) (layers *.Cu *.Mask)
(net 5 "Earth") (pinfunction "Pin_1") (pintype "passive") (tstamp 99a104ec-d6e1-4cdf-865b-2854ad5f013c))
)
(footprint "Connector_Blade:Blade_6.3mm_Horizontal" locked (layer "F.Cu")
(tedit 5F8E06DB) (tstamp 00000000-0000-0000-0000-00005f99f2d2)
(at 64 104.609 -90)
(descr "Push-on blade terminal, 6.3 x 0.8 mm, horizontal, https://www.distrelec.biz/en/push-on-blade-terminal-tin-plated-mm-pack-of-100-pieces-rnd-connect-rnd-465-00703/p/30110618")
(tags "blade terminal 6.3 crimp")
(property "Sheetfile" "/home/chrigi/Projects/Model M/ctrl-M/ctrl-m.sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(path "/00000000-0000-0000-0000-00005f95972a")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "J6" (at -6.284 1.389 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0393258d-5ead-40e1-905d-d1687da22156)
)
(fp_text value "Conn_01x01" (at 1.6 -5.95 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 694038c4-53a1-46f1-be53-c75bfd26bb27)
)
(fp_line (start -14.4 0.2) (end -14.4 -0.2) (layer "F.SilkS") (width 0.12) (tstamp 19d39051-640e-4748-8d49-45941d82c8ed))
(fp_line (start -1.4 0.4) (end -14.1 0.4) (layer "F.SilkS") (width 0.12) (tstamp 2d2d09c8-9356-46e2-b477-9924a0b364e1))
(fp_line (start -14.1 -0.4) (end -14.1 0.4) (layer "F.SilkS") (width 0.12) (tstamp 7295d03e-c43c-4d8c-8aa9-80d7f78f922a))
(fp_line (start -14.1 0.4) (end -14.4 0.2) (layer "F.SilkS") (width 0.12) (tstamp 81e52467-45ac-4ca1-a065-7fd7354e1c88))
(fp_line (start -14.1 -0.4) (end -1.4 -0.4) (layer "F.SilkS") (width 0.12) (tstamp b6a08077-702b-4d20-93b8-62ff853638c2))
(fp_line (start -14.4 -0.2) (end -14.1 -0.4) (layer "F.SilkS") (width 0.12) (tstamp e0a6a74d-799f-4522-8185-dfac6d0376d2))
(fp_line (start -3.7 -1.4) (end -3.7 -2) (layer "F.CrtYd") (width 0.12) (tstamp 6a3bcca9-e164-44ca-bfc7-e4e3ab383b0c))
(fp_line (start 6.4 -1.4) (end -3.7 -1.4) (layer "F.CrtYd") (width 0.12) (tstamp 895a3a11-d68f-4c34-9f9c-aa6d000dbda4))
(fp_line (start -3.7 1.4) (end 6.3 1.4) (layer "F.CrtYd") (width 0.12) (tstamp 895bd3c9-5f8d-4a94-8adb-0d955df5061f))
(fp_line (start -23.4 2) (end -3.7 2) (layer "F.CrtYd") (width 0.12) (tstamp 9401b50f-7a13-4153-b6ed-c1b9b941d13e))
(fp_line (start 6.4 1.4) (end 6.4 -1.4) (layer "F.CrtYd") (width 0.12) (tstamp b8788fa4-003e-4778-9f5b-a252b0c3466c))
(fp_line (start -23.4 -2) (end -23.4 2) (layer "F.CrtYd") (width 0.12) (tstamp e8036b1e-213e-4c4a-8634-5a315a0adca7))
(fp_line (start -3.7 -2) (end -23.4 -2) (layer "F.CrtYd") (width 0.12) (tstamp e84ce21e-ebe9-4fe3-b9bc-79ce7cdd5f0c))
(fp_line (start -3.7 2) (end -3.7 1.4) (layer "F.CrtYd") (width 0.12) (tstamp faa0d2bc-c2ee-49f2-802e-18b091b096ba))
(fp_line (start 6.3 1.4) (end 6.4 1.4) (layer "F.CrtYd") (width 0.12) (tstamp ffd7aae6-3410-4eb7-bac8-8511a52acc3b))
(fp_line (start 3.4 -0.4) (end 3.4 0.4) (layer "F.Fab") (width 0.12) (tstamp 0689f653-2b15-495b-b59f-83757f8fe6d3))
(fp_line (start -14.4 0.2) (end -14.4 -0.2) (layer "F.Fab") (width 0.12) (tstamp 2a1bbe84-eb07-4ea5-a0e0-517c05f129a0))
(fp_line (start -14.4 -0.2) (end -14.1 -0.4) (layer "F.Fab") (width 0.12) (tstamp 4e33c122-685b-463f-8f01-f9ae7fdfea9d))
(fp_line (start -14.1 0.4) (end -14.4 0.2) (layer "F.Fab") (width 0.12) (tstamp 504e856f-048d-416c-ad96-d00c47146465))
(fp_line (start 5.7 0.4) (end -14.1 0.4) (layer "F.Fab") (width 0.12) (tstamp a2c551cd-4516-4812-b784-674ea49dd9d1))
(fp_line (start 5.7 -0.4) (end 5.7 0.4) (layer "F.Fab") (width 0.12) (tstamp ace548c1-b725-4c1c-93d8-5eeb38facf5f))
(fp_line (start -14.1 -0.4) (end -14.1 0.4) (layer "F.Fab") (width 0.12) (tstamp b75c0d08-1b93-4f74-93c4-19f339b25c6b))
(fp_line (start -14.1 -0.4) (end 5.7 -0.4) (layer "F.Fab") (width 0.12) (tstamp bd29eff5-8320-4ea8-851f-f1f13133fd20))
(pad "1" thru_hole circle locked (at 5.14 0 270) (size 2.4 2.4) (drill 1.6) (layers *.Cu *.Mask)
(net 5 "Earth") (pinfunction "Pin_1") (pintype "passive") (tstamp b5ac11b7-4389-47e4-b833-0a54088595f6))
(pad "1" thru_hole circle locked (at 0.06 0 270) (size 2.4 2.4) (drill 1.6) (layers *.Cu *.Mask)
(net 5 "Earth") (pinfunction "Pin_1") (pintype "passive") (tstamp d2a8cbea-a4d7-472d-99dc-8044b608cc8e))
)
(footprint "Connector_Blade:Blade_6.3mm_Horizontal" locked (layer "F.Cu")
(tedit 5F8E06DB) (tstamp 00000000-0000-0000-0000-00005fa33314)
(at 78 101)
(descr "Push-on blade terminal, 6.3 x 0.8 mm, horizontal, https://www.distrelec.biz/en/push-on-blade-terminal-tin-plated-mm-pack-of-100-pieces-rnd-connect-rnd-465-00703/p/30110618")
(tags "blade terminal 6.3 crimp")
(property "Sheetfile" "/home/chrigi/Projects/Model M/ctrl-M/ctrl-m.sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(path "/00000000-0000-0000-0000-00005f75e4d1")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "J4" (at -6.1 1.2) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ca9901d0-5baf-43b4-98a4-bf134a4c1d78)
)
(fp_text value "Conn_01x01" (at 2.27 4.069) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5e7f65d4-e1bd-4c81-9292-02c80bfdcc25)
)
(fp_line (start -14.4 -0.2) (end -14.1 -0.4) (layer "F.SilkS") (width 0.12) (tstamp 074f5b0d-3134-413c-9c4e-d445305be581))
(fp_line (start -14.4 0.2) (end -14.4 -0.2) (layer "F.SilkS") (width 0.12) (tstamp 215581a5-4f93-418b-ae98-7797193a8738))
(fp_line (start -1.4 0.4) (end -14.1 0.4) (layer "F.SilkS") (width 0.12) (tstamp 8238ad73-3306-4a65-92ab-80dab3538e61))
(fp_line (start -14.1 -0.4) (end -1.4 -0.4) (layer "F.SilkS") (width 0.12) (tstamp a355e824-3dc0-4c89-8295-1522410186c2))
(fp_line (start -14.1 -0.4) (end -14.1 0.4) (layer "F.SilkS") (width 0.12) (tstamp a74d78c4-a62b-4852-8f92-2892f27cd8f7))
(fp_line (start -14.1 0.4) (end -14.4 0.2) (layer "F.SilkS") (width 0.12) (tstamp f5105661-4125-474b-b4fb-ce24d3d95fbb))
(fp_line (start -3.7 1.4) (end 6.3 1.4) (layer "F.CrtYd") (width 0.12) (tstamp 038c2635-ef12-454c-a77a-9b41c6f774b4))
(fp_line (start -23.4 -2) (end -23.4 2) (layer "F.CrtYd") (width 0.12) (tstamp 19655c3d-3086-484e-959d-a88be90bc33e))
(fp_line (start 6.4 -1.4) (end -3.7 -1.4) (layer "F.CrtYd") (width 0.12) (tstamp 279cc085-5ac4-4772-b9b3-356aff186518))
(fp_line (start 6.3 1.4) (end 6.4 1.4) (layer "F.CrtYd") (width 0.12) (tstamp 34e364a5-8233-4967-8ded-68609be6b205))
(fp_line (start -3.7 2) (end -3.7 1.4) (layer "F.CrtYd") (width 0.12) (tstamp 741c0012-dc17-4b6b-8ad0-ac701cf175e5))
(fp_line (start 6.4 1.4) (end 6.4 -1.4) (layer "F.CrtYd") (width 0.12) (tstamp 9aeeace7-6c0b-45f2-b2e6-5c2f29d3287e))
(fp_line (start -23.4 2) (end -3.7 2) (layer "F.CrtYd") (width 0.12) (tstamp 9fe51640-68c0-4960-a905-f549d30a44b4))
(fp_line (start -3.7 -1.4) (end -3.7 -2) (layer "F.CrtYd") (width 0.12) (tstamp b8359c9b-a807-43d8-81b9-7ad662b9c7b1))
(fp_line (start -3.7 -2) (end -23.4 -2) (layer "F.CrtYd") (width 0.12) (tstamp cf35ee3e-a53b-4066-a2d0-59a3b86146f4))
(fp_line (start -14.4 0.2) (end -14.4 -0.2) (layer "F.Fab") (width 0.12) (tstamp 1d657dc0-ecb0-4c68-8fb0-043ec79437b9))
(fp_line (start 3.4 -0.4) (end 3.4 0.4) (layer "F.Fab") (width 0.12) (tstamp 2d0f4bf1-f604-4ff6-91d7-6392b8d4bc0d))
(fp_line (start -14.1 0.4) (end -14.4 0.2) (layer "F.Fab") (width 0.12) (tstamp 75d54593-7205-46a7-96fa-3c027c767693))
(fp_line (start -14.1 -0.4) (end -14.1 0.4) (layer "F.Fab") (width 0.12) (tstamp 856f2ad5-c125-4ce4-ab6c-d911ad5d3ae3))
(fp_line (start -14.1 -0.4) (end 5.7 -0.4) (layer "F.Fab") (width 0.12) (tstamp b8f77347-7ae8-4648-95df-a1a08717c5dd))
(fp_line (start 5.7 -0.4) (end 5.7 0.4) (layer "F.Fab") (width 0.12) (tstamp dc497af0-4c60-40af-8d39-8185bb936608))
(fp_line (start -14.4 -0.2) (end -14.1 -0.4) (layer "F.Fab") (width 0.12) (tstamp e5d5f2d2-0d65-4362-8ef4-659e5d44d63d))
(fp_line (start 5.7 0.4) (end -14.1 0.4) (layer "F.Fab") (width 0.12) (tstamp e776b6ea-4389-456e-9591-caeeef99ce5c))
(pad "1" thru_hole circle locked (at 0.06 0) (size 2.4 2.4) (drill 1.6) (layers *.Cu *.Mask)
(net 5 "Earth") (pinfunction "Pin_1") (pintype "passive") (tstamp 165ab7ae-3b9a-4c7d-983d-0da3a83e6c5a))
(pad "1" thru_hole circle locked (at 5.14 0) (size 2.4 2.4) (drill 1.6) (layers *.Cu *.Mask)
(net 5 "Earth") (pinfunction "Pin_1") (pintype "passive") (tstamp a38cb667-f047-477d-bc77-ae9f1d0abb94))
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Horizontal" locked (layer "F.Cu")
(tedit 59FED5CB) (tstamp 00000000-0000-0000-0000-00005fac59af)
(at 221 99.822)
(descr "Through hole angled pin header, 1x04, 2.54mm pitch, 6mm pin length, single row")
(tags "Through hole angled pin header THT 1x04 2.54mm single row")
(property "Sheetfile" "/home/chrigi/Projects/Model M/ctrl-M/ctrl-m.sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(path "/00000000-0000-0000-0000-00005f856f36")
(attr through_hole exclude_from_bom)
(fp_text reference "J10" (at 4.385 -2.27) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1d5b6120-f0f2-48d8-b92d-6fd11ffbd371)
)
(fp_text value "Conn_01x04" (at 4.385 9.89) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6242ebb3-67c9-42b0-9ee8-2165125a4e27)
)
(fp_text user "${REFERENCE}" (at 2.77 3.81 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ed0e90f8-d575-4550-b6eb-f65201fb5524)
)
(fp_line (start -1.27 -1.27) (end 0 -1.27) (layer "F.SilkS") (width 0.12) (tstamp 04f7fdb7-7658-49c9-8039-d0241e5c3d50))
(fp_line (start 4.1 -1.33) (end 1.44 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 0e5a8116-1d4f-4d1f-a5f1-098eb3066a55))
(fp_line (start 4.1 -0.32) (end 10.1 -0.32) (layer "F.SilkS") (width 0.12) (tstamp 0f8b4b27-5f75-4c06-b5a6-1e89532b79ec))
(fp_line (start 4.1 7.24) (end 10.1 7.24) (layer "F.SilkS") (width 0.12) (tstamp 187b1414-ac5e-42c1-8c63-5f1e49836e51))
(fp_line (start 1.042929 7.24) (end 1.44 7.24) (layer "F.SilkS") (width 0.12) (tstamp 1a4474af-23bf-4d04-9af9-6d0606e94bd7))
(fp_line (start 1.44 -1.33) (end 1.44 8.95) (layer "F.SilkS") (width 0.12) (tstamp 2c3d8d5a-f3c7-4ad3-80c7-6b782bc0ed81))
(fp_line (start 1.44 6.35) (end 4.1 6.35) (layer "F.SilkS") (width 0.12) (tstamp 31624691-05cd-4f80-bf79-08035f8dbbee))
(fp_line (start 1.44 3.81) (end 4.1 3.81) (layer "F.SilkS") (width 0.12) (tstamp 338e1749-6a26-40a3-96c6-18cf188090df))
(fp_line (start 1.042929 8) (end 1.44 8) (layer "F.SilkS") (width 0.12) (tstamp 35f49eb5-744a-4a66-a4ab-740188233d71))
(fp_line (start 4.1 -0.38) (end 10.1 -0.38) (layer "F.SilkS") (width 0.12) (tstamp 371ee6c7-de26-48a3-b1c5-ba44fad4caaf))
(fp_line (start 1.11 0.38) (end 1.44 0.38) (layer "F.SilkS") (width 0.12) (tstamp 391e4c17-3c0a-4ce5-8eee-da02b5e5c6a3))
(fp_line (start 1.042929 4.7) (end 1.44 4.7) (layer "F.SilkS") (width 0.12) (tstamp 40ec834d-b7fd-476b-862b-269820b3c6a3))
(fp_line (start 4.1 -0.08) (end 10.1 -0.08) (layer "F.SilkS") (width 0.12) (tstamp 41941731-c2af-4a7b-b3ee-873b45ff1477))
(fp_line (start 4.1 0.04) (end 10.1 0.04) (layer "F.SilkS") (width 0.12) (tstamp 4785e713-0da5-4e49-a796-15940c9d9e1d))
(fp_line (start 10.1 7.24) (end 10.1 8) (layer "F.SilkS") (width 0.12) (tstamp 5e17254b-f11f-45c3-b31f-e33a77883f8a))
(fp_line (start 1.11 -0.38) (end 1.44 -0.38) (layer "F.SilkS") (width 0.12) (tstamp 68787d97-b8cb-43ab-959a-868cd4e4dd03))
(fp_line (start 4.1 2.16) (end 10.1 2.16) (layer "F.SilkS") (width 0.12) (tstamp 79699b66-8150-4426-9015-9d601382c968))
(fp_line (start 1.44 8.95) (end 4.1 8.95) (layer "F.SilkS") (width 0.12) (tstamp 7a86e67f-60a9-47d4-9004-c886fc6ad341))
(fp_line (start 10.1 5.46) (end 4.1 5.46) (layer "F.SilkS") (width 0.12) (tstamp 857bdf2c-06bf-47e8-8745-61a97fbac6e4))
(fp_line (start 10.1 2.16) (end 10.1 2.92) (layer "F.SilkS") (width 0.12) (tstamp 8b15e75d-b0e3-4898-a5ad-e6319b65699a))
(fp_line (start 1.44 1.27) (end 4.1 1.27) (layer "F.SilkS") (width 0.12) (tstamp 9c7251f7-503a-41c1-9b19-cee5223dd876))
(fp_line (start 10.1 4.7) (end 10.1 5.46) (layer "F.SilkS") (width 0.12) (tstamp 9f94f4dc-eaad-42f8-90f9-ead1141849d4))
(fp_line (start 4.1 -0.2) (end 10.1 -0.2) (layer "F.SilkS") (width 0.12) (tstamp a87dfa13-a33d-420b-922d-fc1a2315e43b))
(fp_line (start 10.1 8) (end 4.1 8) (layer "F.SilkS") (width 0.12) (tstamp c60ace23-5064-4a69-821c-3e86964843d0))
(fp_line (start 10.1 2.92) (end 4.1 2.92) (layer "F.SilkS") (width 0.12) (tstamp ce168123-1ff3-46b1-90a8-fff03713b3e6))
(fp_line (start 1.042929 2.92) (end 1.44 2.92) (layer "F.SilkS") (width 0.12) (tstamp d926515b-f7d6-43b0-8356-eb40a64bfa48))
(fp_line (start 1.042929 2.16) (end 1.44 2.16) (layer "F.SilkS") (width 0.12) (tstamp de920167-fb43-41e0-b445-67d196ceb313))
(fp_line (start 4.1 0.16) (end 10.1 0.16) (layer "F.SilkS") (width 0.12) (tstamp dff6de20-63be-4d6f-81ca-2a68833bfa54))
(fp_line (start 4.1 4.7) (end 10.1 4.7) (layer "F.SilkS") (width 0.12) (tstamp e1f7d211-732a-454d-a6b4-35049dc7883e))
(fp_line (start 10.1 -0.38) (end 10.1 0.38) (layer "F.SilkS") (width 0.12) (tstamp e62abb90-dd6f-4c2f-a9b7-adafe80c5058))
(fp_line (start 10.1 0.38) (end 4.1 0.38) (layer "F.SilkS") (width 0.12) (tstamp e6f23abf-6385-4d47-8458-cf98407a5d3d))
(fp_line (start 4.1 8.95) (end 4.1 -1.33) (layer "F.SilkS") (width 0.12) (tstamp eb3e9525-7bf2-4ca4-98a5-2fc1c095da16))
(fp_line (start 4.1 0.28) (end 10.1 0.28) (layer "F.SilkS") (width 0.12) (tstamp f60bdb6a-93e1-4fac-900b-ecfc2fefb261))
(fp_line (start -1.27 0) (end -1.27 -1.27) (layer "F.SilkS") (width 0.12) (tstamp f70d8352-dcc9-4dba-bf17-c9ee2ab40c7c))
(fp_line (start 1.042929 5.46) (end 1.44 5.46) (layer "F.SilkS") (width 0.12) (tstamp fa89ff90-1c4a-42ed-8e7a-0dad28d50c3e))
(fp_line (start 10.55 9.4) (end 10.55 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 0fa4f582-375f-4cc2-a6b4-918fec2a25c9))
(fp_line (start -1.8 -1.8) (end -1.8 9.4) (layer "F.CrtYd") (width 0.05) (tstamp 1cac146f-25cb-4369-99be-acb7c7406de4))
(fp_line (start -1.8 9.4) (end 10.55 9.4) (layer "F.CrtYd") (width 0.05) (tstamp 61dcc6ad-26d8-48f8-9b77-6181b3cb8f73))
(fp_line (start 10.55 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp b4ecca51-1112-42be-a120-b4d3294340d7))
(fp_line (start 4.04 2.22) (end 10.04 2.22) (layer "F.Fab") (width 0.1) (tstamp 02e63584-911e-446b-b8b3-41fc14a289d7))
(fp_line (start 4.04 8.89) (end 1.5 8.89) (layer "F.Fab") (width 0.1) (tstamp 0c282a00-3b0c-4167-8697-e9a1bd6dab63))
(fp_line (start 10.04 4.76) (end 10.04 5.4) (layer "F.Fab") (width 0.1) (tstamp 2e1afe16-91e5-4c18-a3a4-98cd099378d0))
(fp_line (start 4.04 2.86) (end 10.04 2.86) (layer "F.Fab") (width 0.1) (tstamp 2f10ce7e-02e5-4b68-a33b-4aae12e915f2))
(fp_line (start -0.32 7.94) (end 1.5 7.94) (layer "F.Fab") (width 0.1) (tstamp 34e6c78d-8bf4-4fdd-aeb2-926bf338cbe7))
(fp_line (start -0.32 2.22) (end 1.5 2.22) (layer "F.Fab") (width 0.1) (tstamp 34f94326-c5a2-4b8c-990e-7567d93b6950))
(fp_line (start -0.32 5.4) (end 1.5 5.4) (layer "F.Fab") (width 0.1) (tstamp 42d806a4-a5df-45ad-adee-147cbc4a4eb7))
(fp_line (start 1.5 8.89) (end 1.5 -0.635) (layer "F.Fab") (width 0.1) (tstamp 5a843dd0-4a4f-4fe4-a03f-e9fd379a02f7))
(fp_line (start 4.04 7.3) (end 10.04 7.3) (layer "F.Fab") (width 0.1) (tstamp 5d975357-51a7-40e0-9840-001a2a7bf6ee))
(fp_line (start 4.04 0.32) (end 10.04 0.32) (layer "F.Fab") (width 0.1) (tstamp 5fb1cc86-0a3c-4916-a1f1-b54819fb5539))
(fp_line (start -0.32 0.32) (end 1.5 0.32) (layer "F.Fab") (width 0.1) (tstamp 61548f32-d006-4ec2-9f74-fdac33bb20b2))
(fp_line (start 10.04 2.22) (end 10.04 2.86) (layer "F.Fab") (width 0.1) (tstamp 6c473809-e1d4-4543-a12f-29e2af369314))
(fp_line (start 4.04 -1.27) (end 4.04 8.89) (layer "F.Fab") (width 0.1) (tstamp 6f5964dc-af33-4cdc-9829-0820f2f86e9d))
(fp_line (start 4.04 7.94) (end 10.04 7.94) (layer "F.Fab") (width 0.1) (tstamp 95031254-f8a1-4e8a-98c4-a2000ff23c71))
(fp_line (start 1.5 -0.635) (end 2.135 -1.27) (layer "F.Fab") (width 0.1) (tstamp 978224f1-281b-4151-83cd-a82aa862b9d1))
(fp_line (start 2.135 -1.27) (end 4.04 -1.27) (layer "F.Fab") (width 0.1) (tstamp 9b60e0fb-8ab5-4930-b1f1-5d26abbe5b6d))
(fp_line (start -0.32 -0.32) (end -0.32 0.32) (layer "F.Fab") (width 0.1) (tstamp 9eabcc60-2625-40ea-bc30-cb60a7041f1c))
(fp_line (start 4.04 -0.32) (end 10.04 -0.32) (layer "F.Fab") (width 0.1) (tstamp a2bf99d2-6293-4aee-899c-52aa1a9a4b6f))
(fp_line (start -0.32 2.22) (end -0.32 2.86) (layer "F.Fab") (width 0.1) (tstamp a3fe17f0-8bf0-471f-b105-cdbd09634452))
(fp_line (start 4.04 5.4) (end 10.04 5.4) (layer "F.Fab") (width 0.1) (tstamp a4ff135e-4e50-4903-ad2e-019235e5abf2))
(fp_line (start 10.04 7.3) (end 10.04 7.94) (layer "F.Fab") (width 0.1) (tstamp aba94ed5-febf-4ff6-b040-3b963221ea09))
(fp_line (start -0.32 7.3) (end -0.32 7.94) (layer "F.Fab") (width 0.1) (tstamp af18fbed-22dc-4928-b55d-b6f9d0aeac67))
(fp_line (start -0.32 4.76) (end 1.5 4.76) (layer "F.Fab") (width 0.1) (tstamp b8654d08-ed29-42e0-bd99-072b08ae380a))
(fp_line (start -0.32 -0.32) (end 1.5 -0.32) (layer "F.Fab") (width 0.1) (tstamp d6623592-92c0-4121-a663-b4e025f449a3))
(fp_line (start -0.32 7.3) (end 1.5 7.3) (layer "F.Fab") (width 0.1) (tstamp d726ca16-ff7d-4ad7-868c-c95320f82cd5))
(fp_line (start 10.04 -0.32) (end 10.04 0.32) (layer "F.Fab") (width 0.1) (tstamp dbcb3342-b700-48f6-995f-b3acf04856b5))
(fp_line (start -0.32 4.76) (end -0.32 5.4) (layer "F.Fab") (width 0.1) (tstamp f2ef5b36-d647-45e8-8718-2a0bc2261e88))
(fp_line (start 4.04 4.76) (end 10.04 4.76) (layer "F.Fab") (width 0.1) (tstamp f6b3a890-b644-449d-8f07-2b8bc9cbccf4))
(fp_line (start -0.32 2.86) (end 1.5 2.86) (layer "F.Fab") (width 0.1) (tstamp fd2a5b32-c054-41ef-86cb-9ca3e4d212d9))
(pad "1" thru_hole rect locked (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 38 "/CapsLock") (pinfunction "Pin_1") (pintype "passive") (tstamp 84e3df1a-c5dd-46e5-8574-ddcb713e2935))
(pad "2" thru_hole oval locked (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 "+3V3") (pinfunction "Pin_2") (pintype "passive") (tstamp af290a27-ef38-4e21-bb26-327745f08e57))
(pad "3" thru_hole oval locked (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 37 "/ScrollLock") (pinfunction "Pin_3") (pintype "passive") (tstamp 18b04a1f-d59b-4470-96f3-e799a093b209))
(pad "4" thru_hole oval locked (at 0 7.62) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 39 "/NumLock") (pinfunction "Pin_4") (pintype "passive") (tstamp 234344ff-79ae-4173-a775-00d8f1b11310))
(model "${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x04_P2.54mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x05_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp 00000000-0000-0000-0000-00005fac5ad6)
(at 113.284 85.059)
(descr "Through hole straight pin header, 1x05, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x05 2.54mm single row")
(property "Sheetfile" "/home/chrigi/Projects/Model M/ctrl-M/ctrl-m.sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(path "/00000000-0000-0000-0000-00005fadd339")
(attr through_hole exclude_from_bom)
(fp_text reference "J11" (at -0.214 12.487) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7c2c1a9b-0cfb-406a-935f-5b5fa4d6f2ef)
)
(fp_text value "Conn_01x05" (at 0 12.49) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d872a768-e9a8-4496-a856-bcd2adde5803)
)
(fp_text user "${REFERENCE}" (at 0 5.08 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9e65e98a-2f84-42db-adbd-fd0170fc9304)
)
(fp_line (start -1.33 1.27) (end -1.33 11.49) (layer "F.SilkS") (width 0.12) (tstamp 36ff7052-81c4-4c00-9099-a990bb3fcffa))
(fp_line (start -1.33 11.49) (end 1.33 11.49) (layer "F.SilkS") (width 0.12) (tstamp 3deb225e-d181-473f-b586-c21e9f529cbe))
(fp_line (start 1.33 1.27) (end 1.33 11.49) (layer "F.SilkS") (width 0.12) (tstamp 82407ebf-f5de-40c9-91c5-6bac55f9a80c))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 9e3a4f3e-9c07-4f0b-9de9-82f1ce18fbc8))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp a1d9daa7-b15b-4ee3-84c8-096f5737534a))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp b2651d49-34ef-4518-a455-d5882297e64e))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 06e52807-668d-465a-890e-2876ced008f4))
(fp_line (start -1.8 11.95) (end 1.8 11.95) (layer "F.CrtYd") (width 0.05) (tstamp 6a310b42-139b-40a2-a7ad-1288332929df))
(fp_line (start -1.8 -1.8) (end -1.8 11.95) (layer "F.CrtYd") (width 0.05) (tstamp 6d7abef7-e131-4ea9-9a0d-263d22fda7de))
(fp_line (start 1.8 11.95) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp a58a401f-2bc5-4d1b-bec1-0dc2a230e61f))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 0e62e292-1798-4185-8744-2e608e5a4f05))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 6b60e7db-80d5-47d0-afcd-d6df7b4bdd5e))
(fp_line (start 1.27 11.43) (end -1.27 11.43) (layer "F.Fab") (width 0.1) (tstamp 94069ac3-0498-45c3-ae91-a496b9b92325))
(fp_line (start -1.27 11.43) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp bd7b99a4-89d4-42a1-9ddb-660840669955))
(fp_line (start 1.27 -1.27) (end 1.27 11.43) (layer "F.Fab") (width 0.1) (tstamp f9a36de8-4287-4fb5-be5b-1571f87e6c1b))
(pad "1" thru_hole rect locked (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 "+3V3") (pinfunction "Pin_1") (pintype "passive") (tstamp 80d4377a-50c4-44aa-b5ee-c39484d5288a))
(pad "2" thru_hole oval locked (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 9 "/SWDCLK") (pinfunction "Pin_2") (pintype "passive") (tstamp 354e81fd-cf1d-4d00-95e3-c77480b00213))
(pad "3" thru_hole oval locked (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 4 "/NRST") (pinfunction "Pin_3") (pintype "passive") (tstamp 70126e49-0572-434a-a42d-38f0fc7bcfcb))
(pad "4" thru_hole oval locked (at 0 7.62) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 8 "/SWDIO") (pinfunction "Pin_4") (pintype "passive") (tstamp 8fabc29c-3b5e-47c0-8381-aade6f6104e9))
(pad "5" thru_hole oval locked (at 0 10.16) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_5") (pintype "passive") (tstamp 59fa43c7-58e3-4730-af53-23a466245994))
(model "${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x05_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Symbol:KiCad-Logo2_6mm_SilkScreen" (layer "F.Cu")
(tedit 0) (tstamp 00000000-0000-0000-0000-00005fae07ec)
(at 192.07 105.869)
(descr "KiCad Logo")
(tags "Logo KiCad")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "REF**" (at 0 -5.08) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e6bb46bb-c641-4f0a-8de6-118d90253755)
)
(fp_text value "KiCad-Logo2_6mm_SilkScreen" (at 0 6.35) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c1bc750b-cca7-416f-867c-6b97b6b1dd78)
)
(fp_poly (pts
(xy 0.439962 -1.839501)
(xy 0.588014 -1.823293)
(xy 0.731452 -1.794282)
(xy 0.87611 -1.750955)
(xy 1.027824 -1.691799)
(xy 1.192428 -1.6153)
(xy 1.222071 -1.600483)
(xy 1.290098 -1.566969)
(xy 1.354256 -1.536792)
(xy 1.408215 -1.512834)
(xy 1.44564 -1.497976)
(xy 1.451389 -1.496105)
(xy 1.506486 -1.479598)
(xy 1.259851 -1.120799)
(xy 1.199552 -1.033107)
(xy 1.144422 -0.952988)
(xy 1.096336 -0.883164)
(xy 1.057168 -0.826353)
(xy 1.028794 -0.785277)
(xy 1.013087 -0.762654)
(xy 1.010536 -0.759072)
(xy 1.000171 -0.766562)
(xy 0.97466 -0.789082)
(xy 0.938563 -0.822539)
(xy 0.918642 -0.84145)
(xy 0.805773 -0.931222)
(xy 0.679014 -0.999439)
(xy 0.569783 -1.036805)
(xy 0.504214 -1.04854)
(xy 0.422116 -1.055692)
(xy 0.333144 -1.058126)
(xy 0.246956 -1.055712)
(xy 0.173205 -1.048317)
(xy 0.143776 -1.042653)
(xy 0.011133 -0.997018)
(xy -0.108394 -0.927337)
(xy -0.214717 -0.83374)
(xy -0.307747 -0.716351)
(xy -0.387395 -0.5753)
(xy -0.453574 -0.410714)
(xy -0.506194 -0.22272)
(xy -0.537467 -0.061783)
(xy -0.545626 0.009263)
(xy -0.551185 0.101046)
(xy -0.554198 0.206968)
(xy -0.554719 0.320434)
(xy -0.5528 0.434849)
(xy -0.548497 0.543617)
(xy -0.541863 0.640143)
(xy -0.532951 0.717831)
(xy -0.531021 0.729817)
(xy -0.488501 0.922892)
(xy -0.430567 1.093773)
(xy -0.356867 1.243224)
(xy -0.267049 1.372011)
(xy -0.203293 1.441639)
(xy -0.088714 1.536173)
(xy 0.036942 1.606246)
(xy 0.171557 1.651477)
(xy 0.313011 1.671484)
(xy 0.459183 1.665885)
(xy 0.607955 1.6343)
(xy 0.695911 1.603394)
(xy 0.817629 1.541506)
(xy 0.94308 1.452729)
(xy 1.013353 1.392694)
(xy 1.052811 1.357947)
(xy 1.083812 1.332454)
(xy 1.101458 1.32017)
(xy 1.103648 1.319795)
(xy 1.111524 1.332347)
(xy 1.131932 1.365516)
(xy 1.163132 1.416458)
(xy 1.203386 1.482331)
(xy 1.250957 1.560289)
(xy 1.304104 1.64749)