-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path1_proto.net
1025 lines (1025 loc) · 33.9 KB
/
1_proto.net
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
(export (version D)
(design
(source /Users/nsheremet/dev/sandbox/kb_prototyping/1_proto/1_proto.sch)
(date "Sunday, March 10, 2019 at 12:53:39 PM")
(tool "Eeschema (5.0.2-5-10.14)")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title)
(company)
(rev)
(date)
(source 1_proto.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref U1)
(value ProMicro)
(footprint keebs:Pro_Micro)
(libsource (lib josh) (part ProMicro) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C82AB1D))
(comp (ref SW1)
(value SW_PUSH)
(footprint Button_Switch_THT:SW_PUSH_6mm)
(libsource (lib keyboard_parts) (part SW_PUSH) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C82AC7C))
(comp (ref K1)
(value KEYSW)
(footprint keebs:Mx_Alps_100)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C82B618))
(comp (ref D1)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5C82B6A1))
(comp (ref K5)
(value KEYSW)
(footprint keebs:Mx_Alps_100)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C82B7B7))
(comp (ref D5)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5C82B7BE))
(comp (ref K2)
(value KEYSW)
(footprint keebs:Mx_Alps_100)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C82B86C))
(comp (ref D2)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5C82B873))
(comp (ref K6)
(value KEYSW)
(footprint keebs:Mx_Alps_100)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C82B92F))
(comp (ref D6)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5C82B936))
(comp (ref K9)
(value KEYSW)
(footprint keebs:Mx_Alps_100)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C82D54E))
(comp (ref D9)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5C82D555))
(comp (ref K13)
(value KEYSW)
(footprint keebs:Mx_Alps_100)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C82D55C))
(comp (ref D13)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5C82D563))
(comp (ref K10)
(value KEYSW)
(footprint keebs:Mx_Alps_100)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C82D56A))
(comp (ref D10)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5C82D571))
(comp (ref K14)
(value KEYSW)
(footprint keebs:Mx_Alps_100)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C82D578))
(comp (ref D14)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5C82D57F))
(comp (ref K17)
(value KEYSW)
(footprint keebs:Mx_Alps_100)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C82DA59))
(comp (ref D17)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5C82DA60))
(comp (ref K21)
(value KEYSW)
(footprint keebs:Mx_Alps_100)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C82DA67))
(comp (ref D21)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5C82DA6E))
(comp (ref K18)
(value KEYSW)
(footprint keebs:Mx_Alps_100)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C82DA75))
(comp (ref D18)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5C82DA7C))
(comp (ref K22)
(value KEYSW)
(footprint keebs:Mx_Alps_100)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C82DA83))
(comp (ref D22)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5C82DA8A))
(comp (ref K3)
(value KEYSW)
(footprint keebs:Mx_Alps_100)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C83043A))
(comp (ref D3)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5C830441))
(comp (ref K7)
(value KEYSW)
(footprint keebs:Mx_Alps_100)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C830448))
(comp (ref D7)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5C83044F))
(comp (ref K4)
(value KEYSW)
(footprint keebs:Mx_Alps_100)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C830456))
(comp (ref D4)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5C83045D))
(comp (ref K8)
(value KEYSW)
(footprint keebs:Mx_Alps_100)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C830464))
(comp (ref D8)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5C83046B))
(comp (ref K11)
(value KEYSW)
(footprint keebs:Mx_Alps_100)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C83047E))
(comp (ref D11)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5C830485))
(comp (ref K15)
(value KEYSW)
(footprint keebs:Mx_Alps_100)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C83048C))
(comp (ref D15)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5C830493))
(comp (ref K12)
(value KEYSW)
(footprint keebs:Mx_Alps_100)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C83049A))
(comp (ref D12)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5C8304A1))
(comp (ref K16)
(value KEYSW)
(footprint keebs:Mx_Alps_100)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C8304A8))
(comp (ref D16)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5C8304AF))
(comp (ref K19)
(value KEYSW)
(footprint keebs:Mx_Alps_100)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C8304C2))
(comp (ref D19)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5C8304C9))
(comp (ref K23)
(value KEYSW)
(footprint keebs:Mx_Alps_100)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C8304D0))
(comp (ref D23)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5C8304D7))
(comp (ref K20)
(value KEYSW)
(footprint keebs:Mx_Alps_100)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C8304DE))
(comp (ref D20)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5C8304E5))
(comp (ref K24)
(value KEYSW)
(footprint keebs:Mx_Alps_100)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C8304EC))
(comp (ref D24)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5C8304F3))
(comp (ref K25)
(value KEYSW)
(footprint keebs:Mx_Alps_100)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C83F104))
(comp (ref D25)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5C83F10B))
(comp (ref K29)
(value KEYSW)
(footprint keebs:Mx_Alps_100)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C83F112))
(comp (ref D29)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5C83F119))
(comp (ref K26)
(value KEYSW)
(footprint keebs:Mx_Alps_100)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C83F120))
(comp (ref D26)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5C83F127))
(comp (ref K30)
(value KEYSW)
(footprint keebs:Mx_Alps_100)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C83F12E))
(comp (ref D30)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5C83F135))
(comp (ref K33)
(value KEYSW)
(footprint keebs:Mx_Alps_100)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C83F148))
(comp (ref D33)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5C83F14F))
(comp (ref K37)
(value KEYSW)
(footprint keebs:Mx_Alps_100)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C83F156))
(comp (ref D37)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5C83F15D))
(comp (ref K34)
(value KEYSW)
(footprint keebs:Mx_Alps_100)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C83F164))
(comp (ref D34)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5C83F16B))
(comp (ref K38)
(value KEYSW)
(footprint keebs:Mx_Alps_100)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C83F172))
(comp (ref D38)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5C83F179))
(comp (ref K41)
(value KEYSW)
(footprint keebs:Mx_Alps_100)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C83F18C))
(comp (ref D41)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5C83F193))
(comp (ref K45)
(value KEYSW)
(footprint keebs:Mx_Alps_100)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C83F19A))
(comp (ref D45)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5C83F1A1))
(comp (ref K42)
(value KEYSW)
(footprint keebs:Mx_Alps_100)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C83F1A8))
(comp (ref D42)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5C83F1AF))
(comp (ref K46)
(value KEYSW)
(footprint keebs:Mx_Alps_100)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C83F1B6))
(comp (ref D46)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5C83F1BD))
(comp (ref K27)
(value KEYSW)
(footprint keebs:Mx_Alps_100)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C83F1DC))
(comp (ref D27)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5C83F1E3))
(comp (ref K31)
(value KEYSW)
(footprint keebs:Mx_Alps_100)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C83F1EA))
(comp (ref D31)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5C83F1F1))
(comp (ref K28)
(value KEYSW)
(footprint keebs:Mx_Alps_100)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C83F1F8))
(comp (ref D28)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5C83F1FF))
(comp (ref K32)
(value KEYSW)
(footprint keebs:Mx_Alps_100)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C83F206))
(comp (ref D32)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5C83F20D))
(comp (ref K35)
(value KEYSW)
(footprint keebs:Mx_Alps_100)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C83F220))
(comp (ref D35)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5C83F227))
(comp (ref K39)
(value KEYSW)
(footprint keebs:Mx_Alps_100)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C83F22E))
(comp (ref D39)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5C83F235))
(comp (ref K36)
(value KEYSW)
(footprint keebs:Mx_Alps_100)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C83F23C))
(comp (ref D36)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5C83F243))
(comp (ref K40)
(value KEYSW)
(footprint keebs:Mx_Alps_100)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C83F24A))
(comp (ref D40)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5C83F251))
(comp (ref K43)
(value KEYSW)
(footprint keebs:Mx_Alps_100)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C83F264))
(comp (ref D43)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5C83F26B))
(comp (ref K47)
(value KEYSW)
(footprint keebs:Mx_Alps_100)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C83F272))
(comp (ref D47)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5C83F279))
(comp (ref K44)
(value KEYSW)
(footprint keebs:Mx_Alps_100)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C83F280))
(comp (ref D44)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5C83F287))
(comp (ref K48)
(value KEYSW)
(footprint keebs:Mx_Alps_100)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C83F28E))
(comp (ref D48)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5C83F295))
(comp (ref K24-A1)
(value KEYSW)
(footprint keebs:Mx_Alps_100)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C890067))
(comp (ref D24-A1)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5C8903EC)))
(libparts
(libpart (lib Device) (part D)
(description Diode)
(docs ~)
(footprints
(fp TO-???*)
(fp *_Diode_*)
(fp *SingleDiode*)
(fp D_*))
(fields
(field (name Reference) D)
(field (name Value) D))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib josh) (part ProMicro)
(fields
(field (name Reference) U)
(field (name Value) ProMicro))
(pins
(pin (num 1) (name 1) (type input))
(pin (num 2) (name 0) (type input))
(pin (num 3) (name GND) (type input))
(pin (num 4) (name GND) (type input))
(pin (num 5) (name 2) (type input))
(pin (num 6) (name 3) (type input))
(pin (num 7) (name 4) (type input))
(pin (num 8) (name 5) (type input))
(pin (num 9) (name 6) (type input))
(pin (num 10) (name 7) (type input))
(pin (num 11) (name 8) (type input))
(pin (num 12) (name 9) (type input))
(pin (num 13) (name 10) (type input))
(pin (num 14) (name 16) (type input))
(pin (num 15) (name 14) (type input))
(pin (num 16) (name 15) (type input))
(pin (num 17) (name 18) (type input))
(pin (num 18) (name 19) (type input))
(pin (num 19) (name 20) (type input))
(pin (num 20) (name 21) (type input))
(pin (num 21) (name 5V) (type input))
(pin (num 22) (name RST) (type input))
(pin (num 23) (name GND) (type input))
(pin (num 24) (name RAW) (type input))))
(libpart (lib keyboard_parts) (part KEYSW)
(fields
(field (name Reference) K?)
(field (name Value) KEYSW))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib keyboard_parts) (part SW_PUSH)
(fields
(field (name Reference) SW)
(field (name Value) SW_PUSH))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive)))))
(libraries
(library (logical Device)
(uri "/Library/Application Support/kicad/library/Device.lib"))
(library (logical josh)
(uri /Users/nsheremet/dev/sandbox/kb_prototyping/1_proto/locallib.pretty/josh.lib))
(library (logical keyboard_parts)
(uri /Users/nsheremet/dev/sandbox/kb_prototyping/footprint_libs/kicad_lib_tmk/keyboard_parts.lib)))
(nets
(net (code 1) (name "Net-(U1-Pad24)")
(node (ref U1) (pin 24)))
(net (code 2) (name "Net-(U1-Pad16)")
(node (ref U1) (pin 16)))
(net (code 3) (name "Net-(U1-Pad17)")
(node (ref U1) (pin 17)))
(net (code 4) (name +5V)
(node (ref U1) (pin 3))
(node (ref U1) (pin 4))
(node (ref SW1) (pin 2))
(node (ref U1) (pin 23)))
(net (code 5) (name "Net-(SW1-Pad1)")
(node (ref SW1) (pin 1))
(node (ref U1) (pin 22)))
(net (code 6) (name VCC)
(node (ref U1) (pin 21)))
(net (code 7) (name "Net-(D1-Pad2)")
(node (ref D1) (pin 2))
(node (ref K1) (pin 2)))
(net (code 8) (name "Net-(D5-Pad2)")
(node (ref K5) (pin 2))
(node (ref D5) (pin 2)))
(net (code 9) (name "Net-(D2-Pad2)")
(node (ref K2) (pin 2))
(node (ref D2) (pin 2)))
(net (code 10) (name "Net-(D6-Pad2)")
(node (ref K6) (pin 2))
(node (ref D6) (pin 2)))
(net (code 11) (name "Net-(D9-Pad2)")
(node (ref K9) (pin 2))
(node (ref D9) (pin 2)))
(net (code 12) (name "Net-(D13-Pad2)")
(node (ref K13) (pin 2))
(node (ref D13) (pin 2)))
(net (code 13) (name "Net-(D10-Pad2)")
(node (ref D10) (pin 2))
(node (ref K10) (pin 2)))
(net (code 14) (name "Net-(D14-Pad2)")
(node (ref K14) (pin 2))
(node (ref D14) (pin 2)))
(net (code 15) (name "Net-(D17-Pad2)")
(node (ref K17) (pin 2))
(node (ref D17) (pin 2)))
(net (code 16) (name "Net-(D21-Pad2)")
(node (ref K21) (pin 2))
(node (ref D21) (pin 2)))
(net (code 17) (name "Net-(D18-Pad2)")
(node (ref K18) (pin 2))
(node (ref D18) (pin 2)))
(net (code 18) (name "Net-(D22-Pad2)")
(node (ref K22) (pin 2))
(node (ref D22) (pin 2)))
(net (code 19) (name col0)
(node (ref U1) (pin 20))
(node (ref K4) (pin 1))
(node (ref K2) (pin 1))
(node (ref K3) (pin 1))
(node (ref K1) (pin 1)))
(net (code 20) (name "Net-(D3-Pad2)")
(node (ref D3) (pin 2))
(node (ref K3) (pin 2)))
(net (code 21) (name "Net-(D7-Pad2)")
(node (ref D7) (pin 2))
(node (ref K7) (pin 2)))
(net (code 22) (name "Net-(D4-Pad2)")
(node (ref K4) (pin 2))
(node (ref D4) (pin 2)))
(net (code 23) (name "Net-(D8-Pad2)")
(node (ref K8) (pin 2))
(node (ref D8) (pin 2)))
(net (code 24) (name col2)
(node (ref K10) (pin 1))
(node (ref K12) (pin 1))
(node (ref K11) (pin 1))
(node (ref U1) (pin 12))
(node (ref K9) (pin 1)))
(net (code 25) (name "Net-(D11-Pad2)")
(node (ref D11) (pin 2))
(node (ref K11) (pin 2)))
(net (code 26) (name col3)
(node (ref K16) (pin 1))
(node (ref K15) (pin 1))
(node (ref K14) (pin 1))
(node (ref K13) (pin 1))
(node (ref U1) (pin 11)))
(net (code 27) (name "Net-(D15-Pad2)")
(node (ref D15) (pin 2))
(node (ref K15) (pin 2)))
(net (code 28) (name "Net-(D12-Pad2)")
(node (ref D12) (pin 2))
(node (ref K12) (pin 2)))
(net (code 29) (name "Net-(D16-Pad2)")
(node (ref D16) (pin 2))
(node (ref K16) (pin 2)))
(net (code 30) (name col4)
(node (ref K17) (pin 1))
(node (ref K19) (pin 1))
(node (ref K18) (pin 1))
(node (ref K20) (pin 1))
(node (ref U1) (pin 10)))
(net (code 31) (name "Net-(D19-Pad2)")
(node (ref D19) (pin 2))
(node (ref K19) (pin 2)))
(net (code 32) (name "Net-(D23-Pad2)")
(node (ref D23) (pin 2))
(node (ref K23) (pin 2)))
(net (code 33) (name "Net-(D20-Pad2)")
(node (ref D20) (pin 2))
(node (ref K20) (pin 2)))
(net (code 34) (name "Net-(D24-Pad2)")
(node (ref K24) (pin 2))
(node (ref D24) (pin 2)))
(net (code 35) (name "Net-(D25-Pad2)")
(node (ref D25) (pin 2))
(node (ref K25) (pin 2)))
(net (code 36) (name "Net-(D29-Pad2)")
(node (ref D29) (pin 2))
(node (ref K29) (pin 2)))
(net (code 37) (name "Net-(D26-Pad2)")
(node (ref K26) (pin 2))
(node (ref D26) (pin 2)))
(net (code 38) (name "Net-(D30-Pad2)")
(node (ref D30) (pin 2))
(node (ref K30) (pin 2)))
(net (code 39) (name "Net-(D33-Pad2)")
(node (ref D33) (pin 2))
(node (ref K33) (pin 2)))
(net (code 40) (name "Net-(D37-Pad2)")
(node (ref D37) (pin 2))
(node (ref K37) (pin 2)))
(net (code 41) (name "Net-(D34-Pad2)")
(node (ref K34) (pin 2))
(node (ref D34) (pin 2)))
(net (code 42) (name "Net-(D38-Pad2)")
(node (ref D38) (pin 2))
(node (ref K38) (pin 2)))
(net (code 43) (name "Net-(D41-Pad2)")
(node (ref D41) (pin 2))
(node (ref K41) (pin 2)))
(net (code 44) (name "Net-(D45-Pad2)")
(node (ref K45) (pin 2))
(node (ref D45) (pin 2)))
(net (code 45) (name "Net-(D42-Pad2)")
(node (ref K42) (pin 2))
(node (ref D42) (pin 2)))
(net (code 46) (name "Net-(D46-Pad2)")
(node (ref D46) (pin 2))
(node (ref K46) (pin 2)))
(net (code 47) (name col6)
(node (ref K27) (pin 1))
(node (ref K25) (pin 1))
(node (ref K28) (pin 1))
(node (ref K26) (pin 1))
(node (ref U1) (pin 8)))
(net (code 48) (name "Net-(D27-Pad2)")
(node (ref K27) (pin 2))
(node (ref D27) (pin 2)))
(net (code 49) (name col7)
(node (ref K31) (pin 1))
(node (ref K30) (pin 1))
(node (ref U1) (pin 7))
(node (ref K32) (pin 1))
(node (ref K29) (pin 1)))
(net (code 50) (name "Net-(D31-Pad2)")
(node (ref D31) (pin 2))
(node (ref K31) (pin 2)))
(net (code 51) (name "Net-(D28-Pad2)")
(node (ref D28) (pin 2))
(node (ref K28) (pin 2)))
(net (code 52) (name "Net-(D32-Pad2)")
(node (ref D32) (pin 2))
(node (ref K32) (pin 2)))
(net (code 53) (name col8)
(node (ref K35) (pin 1))
(node (ref U1) (pin 6))
(node (ref K36) (pin 1))
(node (ref K33) (pin 1))
(node (ref K34) (pin 1)))
(net (code 54) (name "Net-(D35-Pad2)")
(node (ref K35) (pin 2))
(node (ref D35) (pin 2)))
(net (code 55) (name col9)
(node (ref K39) (pin 1))
(node (ref U1) (pin 5))
(node (ref K38) (pin 1))
(node (ref K37) (pin 1))
(node (ref K40) (pin 1)))
(net (code 56) (name "Net-(D39-Pad2)")
(node (ref D39) (pin 2))
(node (ref K39) (pin 2)))
(net (code 57) (name "Net-(D36-Pad2)")
(node (ref D36) (pin 2))
(node (ref K36) (pin 2)))
(net (code 58) (name "Net-(D40-Pad2)")
(node (ref K40) (pin 2))
(node (ref D40) (pin 2)))
(net (code 59) (name col10)
(node (ref K42) (pin 1))
(node (ref K41) (pin 1))
(node (ref K44) (pin 1))
(node (ref U1) (pin 2))
(node (ref K43) (pin 1)))
(net (code 60) (name "Net-(D43-Pad2)")
(node (ref D43) (pin 2))
(node (ref K43) (pin 2)))
(net (code 61) (name col11)
(node (ref U1) (pin 1))
(node (ref K48) (pin 1))
(node (ref K47) (pin 1))
(node (ref K45) (pin 1))
(node (ref K46) (pin 1)))
(net (code 62) (name "Net-(D47-Pad2)")
(node (ref D47) (pin 2))
(node (ref K47) (pin 2)))
(net (code 63) (name "Net-(D44-Pad2)")
(node (ref D44) (pin 2))
(node (ref K44) (pin 2)))
(net (code 64) (name "Net-(D48-Pad2)")
(node (ref D48) (pin 2))
(node (ref K48) (pin 2)))
(net (code 65) (name row0)
(node (ref D29) (pin 1))
(node (ref D25) (pin 1))
(node (ref D37) (pin 1))
(node (ref D33) (pin 1))
(node (ref D41) (pin 1))
(node (ref D21) (pin 1))
(node (ref U1) (pin 18))
(node (ref D1) (pin 1))
(node (ref D5) (pin 1))
(node (ref D17) (pin 1))
(node (ref D45) (pin 1))
(node (ref D9) (pin 1))
(node (ref D13) (pin 1)))
(net (code 66) (name row1)
(node (ref D10) (pin 1))
(node (ref D14) (pin 1))
(node (ref D46) (pin 1))
(node (ref D2) (pin 1))
(node (ref U1) (pin 15))
(node (ref D18) (pin 1))
(node (ref D22) (pin 1))
(node (ref D42) (pin 1))
(node (ref D38) (pin 1))
(node (ref D34) (pin 1))
(node (ref D30) (pin 1))
(node (ref D26) (pin 1))
(node (ref D6) (pin 1)))
(net (code 67) (name row2)
(node (ref D27) (pin 1))
(node (ref U1) (pin 14))
(node (ref D31) (pin 1))
(node (ref D7) (pin 1))
(node (ref D3) (pin 1))
(node (ref D47) (pin 1))
(node (ref D43) (pin 1))
(node (ref D35) (pin 1))
(node (ref D23) (pin 1))
(node (ref D39) (pin 1))
(node (ref D19) (pin 1))
(node (ref D11) (pin 1))
(node (ref D15) (pin 1)))
(net (code 68) (name col1)
(node (ref K7) (pin 1))
(node (ref K6) (pin 1))
(node (ref K5) (pin 1))
(node (ref U1) (pin 19))
(node (ref K8) (pin 1)))