-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathukiha.net
1196 lines (1196 loc) · 41.8 KB
/
ukiha.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 C:\work\2019\selfmadekeyboard\ukiha\ukiha.sch)
(date "2020/11/02 20:36:47")
(tool "Eeschema (5.0.2)-1")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title "Ukiha Keyboard")
(company @e3w2q)
(rev 2)
(date)
(source ukiha.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref J1)
(value Conn_01x03)
(footprint "#footprint:StripLED_rev2")
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x03) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5EB6B802))
(comp (ref U1)
(value ProMicro/BLEMicroPro)
(footprint "#footprint:ArduinoProMicro_ConThrough")
(libsource (lib "#library") (part BLEMicroPro) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5CE18F26))
(comp (ref SW1)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_16mm_rev2")
(libsource (lib "#library") (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F8174DF))
(comp (ref SW13)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_16mm_rev2")
(libsource (lib "#library") (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F81768E))
(comp (ref SW25)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_16mm_rev2")
(libsource (lib "#library") (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F817720))
(comp (ref SW37)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_16mm_rev2")
(libsource (lib "#library") (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F8178BB))
(comp (ref SW49)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_16mm_rev2")
(libsource (lib "#library") (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F817957))
(comp (ref SW2)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_16mm_rev2")
(libsource (lib "#library") (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F8179F7))
(comp (ref SW14)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_16mm_rev2")
(libsource (lib "#library") (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F817AA9))
(comp (ref SW26)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_16mm_rev2")
(libsource (lib "#library") (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F817B53))
(comp (ref SW38)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_16mm_rev2")
(libsource (lib "#library") (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F817BED))
(comp (ref SW50)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_16mm_rev2")
(libsource (lib "#library") (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F817C97))
(comp (ref SW3)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_16mm_rev2")
(libsource (lib "#library") (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F81C4B8))
(comp (ref SW15)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_16mm_rev2")
(libsource (lib "#library") (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F81C51A))
(comp (ref SW27)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_16mm_rev2")
(libsource (lib "#library") (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F81C564))
(comp (ref SW39)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_16mm_rev2")
(libsource (lib "#library") (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F81C5AE))
(comp (ref SW51)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_16mm_rev2")
(libsource (lib "#library") (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F81C5F8))
(comp (ref SW4)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_16mm_rev2")
(libsource (lib "#library") (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F81C6C5))
(comp (ref SW16)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_16mm_rev2")
(libsource (lib "#library") (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F81C777))
(comp (ref SW28)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_16mm_rev2")
(libsource (lib "#library") (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F81C7C9))
(comp (ref SW40)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_16mm_rev2")
(libsource (lib "#library") (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F81C871))
(comp (ref SW52)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_16mm_rev2")
(libsource (lib "#library") (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F81C8C5))
(comp (ref SW53)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_16mm_rev2")
(libsource (lib "#library") (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F81C919))
(comp (ref SW41)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_16mm_rev2")
(libsource (lib "#library") (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F81CA28))
(comp (ref SW29)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_16mm_rev2")
(libsource (lib "#library") (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F81CAEE))
(comp (ref SW17)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_16mm_rev2")
(libsource (lib "#library") (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F81CB84))
(comp (ref SW5)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_16mm_rev2")
(libsource (lib "#library") (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F81CBDE))
(comp (ref SW6)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_16mm_rev2")
(libsource (lib "#library") (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F81CC44))
(comp (ref SW18)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_16mm_rev2")
(libsource (lib "#library") (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F81CCA8))
(comp (ref SW30)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_16mm_rev2")
(libsource (lib "#library") (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F81CD10))
(comp (ref SW42)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_16mm_rev2")
(libsource (lib "#library") (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F81CD72))
(comp (ref SW54)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_16mm_rev2")
(libsource (lib "#library") (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F81CDD4))
(comp (ref SW7)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_16mm_rev2")
(libsource (lib "#library") (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F81CE3C))
(comp (ref SW19)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_16mm_rev2")
(libsource (lib "#library") (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F81CEFC))
(comp (ref SW31)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_16mm_rev2")
(libsource (lib "#library") (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F81CF5E))
(comp (ref SW43)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_16mm_rev2")
(libsource (lib "#library") (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F81CFCA))
(comp (ref SW55)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_16mm_rev2")
(libsource (lib "#library") (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F81D036))
(comp (ref SW8)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_16mm_rev2")
(libsource (lib "#library") (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F81D0AC))
(comp (ref SW20)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_16mm_rev2")
(libsource (lib "#library") (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F81D132))
(comp (ref SW32)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_16mm_rev2")
(libsource (lib "#library") (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F81D1A6))
(comp (ref SW44)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_16mm_rev2")
(libsource (lib "#library") (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F81D216))
(comp (ref SW56)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_16mm_rev2")
(libsource (lib "#library") (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F81D292))
(comp (ref SW9)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_16mm_rev2")
(libsource (lib "#library") (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F81D364))
(comp (ref SW21)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_16mm_rev2")
(libsource (lib "#library") (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F81D769))
(comp (ref SW33)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_16mm_rev2")
(libsource (lib "#library") (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F81D811))
(comp (ref SW45)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_16mm_rev2")
(libsource (lib "#library") (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F81D891))
(comp (ref SW57)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_16mm_rev2")
(libsource (lib "#library") (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F81D925))
(comp (ref SW10)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_16mm_rev2")
(libsource (lib "#library") (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F81D99F))
(comp (ref SW22)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_16mm_rev2")
(libsource (lib "#library") (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F81DA43))
(comp (ref SW34)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_16mm_rev2")
(libsource (lib "#library") (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F81DAC1))
(comp (ref SW46)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_16mm_rev2")
(libsource (lib "#library") (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F81DB51))
(comp (ref SW58)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_16mm_rev2")
(libsource (lib "#library") (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F81DC57))
(comp (ref SW11)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_16mm_rev2")
(libsource (lib "#library") (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F81DD55))
(comp (ref SW23)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_16mm_rev2")
(libsource (lib "#library") (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F81DE7B))
(comp (ref SW35)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_16mm_rev2")
(libsource (lib "#library") (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F81DF07))
(comp (ref SW47)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_16mm_rev2")
(libsource (lib "#library") (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F81E052))
(comp (ref SW59)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_16mm_rev2")
(libsource (lib "#library") (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F81E0E2))
(comp (ref SW12)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_16mm_rev2")
(libsource (lib "#library") (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F81E233))
(comp (ref SW24)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_16mm_rev2")
(libsource (lib "#library") (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F81E36D))
(comp (ref SW36)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_16mm_rev2")
(libsource (lib "#library") (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F81E40B))
(comp (ref SW48)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_16mm_rev2")
(libsource (lib "#library") (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F81E531))
(comp (ref SW60)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_16mm_rev2")
(libsource (lib "#library") (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F81E5D3))
(comp (ref D1)
(value D)
(footprint "#footprint:diode_SMD")
(libsource (lib "#library") (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F81E919))
(comp (ref D13)
(value D)
(footprint "#footprint:diode_SMD")
(libsource (lib "#library") (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F81EB65))
(comp (ref D25)
(value D)
(footprint "#footprint:diode_SMD")
(libsource (lib "#library") (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F81EC19))
(comp (ref D37)
(value D)
(footprint "#footprint:diode_SMD")
(libsource (lib "#library") (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F81ECC7))
(comp (ref D49)
(value D)
(footprint "#footprint:diode_SMD")
(libsource (lib "#library") (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F81ED73))
(comp (ref D2)
(value D)
(footprint "#footprint:diode_SMD")
(libsource (lib "#library") (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F81EE6E))
(comp (ref D14)
(value D)
(footprint "#footprint:diode_SMD")
(libsource (lib "#library") (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F81EF4E))
(comp (ref D26)
(value D)
(footprint "#footprint:diode_SMD")
(libsource (lib "#library") (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F81F006))
(comp (ref D38)
(value D)
(footprint "#footprint:diode_SMD")
(libsource (lib "#library") (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F81F0CE))
(comp (ref D50)
(value D)
(footprint "#footprint:diode_SMD")
(libsource (lib "#library") (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F81F18A))
(comp (ref D3)
(value D)
(footprint "#footprint:diode_SMD")
(libsource (lib "#library") (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F81F244))
(comp (ref D15)
(value D)
(footprint "#footprint:diode_SMD")
(libsource (lib "#library") (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F81F340))
(comp (ref D27)
(value D)
(footprint "#footprint:diode_SMD")
(libsource (lib "#library") (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F81F402))
(comp (ref D39)
(value D)
(footprint "#footprint:diode_SMD")
(libsource (lib "#library") (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F81F4C6))
(comp (ref D51)
(value D)
(footprint "#footprint:diode_SMD")
(libsource (lib "#library") (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F81F5A6))
(comp (ref D4)
(value D)
(footprint "#footprint:diode_SMD")
(libsource (lib "#library") (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F81F66E))
(comp (ref D16)
(value D)
(footprint "#footprint:diode_SMD")
(libsource (lib "#library") (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F81F774))
(comp (ref D28)
(value D)
(footprint "#footprint:diode_SMD")
(libsource (lib "#library") (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F81F83A))
(comp (ref D40)
(value D)
(footprint "#footprint:diode_SMD")
(libsource (lib "#library") (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F81F908))
(comp (ref D52)
(value D)
(footprint "#footprint:diode_SMD")
(libsource (lib "#library") (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F81FB0B))
(comp (ref D5)
(value D)
(footprint "#footprint:diode_SMD")
(libsource (lib "#library") (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F81FBD9))
(comp (ref D17)
(value D)
(footprint "#footprint:diode_SMD")
(libsource (lib "#library") (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F81FCCF))
(comp (ref D29)
(value D)
(footprint "#footprint:diode_SMD")
(libsource (lib "#library") (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F81FDA3))
(comp (ref D41)
(value D)
(footprint "#footprint:diode_SMD")
(libsource (lib "#library") (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F81FE7B))
(comp (ref D53)
(value D)
(footprint "#footprint:diode_SMD")
(libsource (lib "#library") (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F81FF55))
(comp (ref D6)
(value D)
(footprint "#footprint:diode_SMD")
(libsource (lib "#library") (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F82002D))
(comp (ref D18)
(value D)
(footprint "#footprint:diode_SMD")
(libsource (lib "#library") (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F820367))
(comp (ref D30)
(value D)
(footprint "#footprint:diode_SMD")
(libsource (lib "#library") (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F82043D))
(comp (ref D42)
(value D)
(footprint "#footprint:diode_SMD")
(libsource (lib "#library") (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F820511))
(comp (ref D54)
(value D)
(footprint "#footprint:diode_SMD")
(libsource (lib "#library") (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F820652))
(comp (ref D7)
(value D)
(footprint "#footprint:diode_SMD")
(libsource (lib "#library") (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F820734))
(comp (ref D19)
(value D)
(footprint "#footprint:diode_SMD")
(libsource (lib "#library") (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F820846))
(comp (ref D31)
(value D)
(footprint "#footprint:diode_SMD")
(libsource (lib "#library") (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F82092C))
(comp (ref D43)
(value D)
(footprint "#footprint:diode_SMD")
(libsource (lib "#library") (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F820A16))
(comp (ref D55)
(value D)
(footprint "#footprint:diode_SMD")
(libsource (lib "#library") (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F820B04))
(comp (ref D8)
(value D)
(footprint "#footprint:diode_SMD")
(libsource (lib "#library") (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F820BF0))
(comp (ref D20)
(value D)
(footprint "#footprint:diode_SMD")
(libsource (lib "#library") (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F820D00))
(comp (ref D32)
(value D)
(footprint "#footprint:diode_SMD")
(libsource (lib "#library") (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F820DF2))
(comp (ref D44)
(value D)
(footprint "#footprint:diode_SMD")
(libsource (lib "#library") (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F820EE4))
(comp (ref D56)
(value D)
(footprint "#footprint:diode_SMD")
(libsource (lib "#library") (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F820FE4))
(comp (ref D9)
(value D)
(footprint "#footprint:diode_SMD")
(libsource (lib "#library") (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F8210D8))
(comp (ref D21)
(value D)
(footprint "#footprint:diode_SMD")
(libsource (lib "#library") (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F821204))
(comp (ref D33)
(value D)
(footprint "#footprint:diode_SMD")
(libsource (lib "#library") (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F821302))
(comp (ref D45)
(value D)
(footprint "#footprint:diode_SMD")
(libsource (lib "#library") (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F821400))
(comp (ref D57)
(value D)
(footprint "#footprint:diode_SMD")
(libsource (lib "#library") (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F8214FA))
(comp (ref D10)
(value D)
(footprint "#footprint:diode_SMD")
(libsource (lib "#library") (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F821665))
(comp (ref D22)
(value D)
(footprint "#footprint:diode_SMD")
(libsource (lib "#library") (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F82189C))
(comp (ref D34)
(value D)
(footprint "#footprint:diode_SMD")
(libsource (lib "#library") (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F821998))
(comp (ref D46)
(value D)
(footprint "#footprint:diode_SMD")
(libsource (lib "#library") (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F821B10))
(comp (ref D58)
(value D)
(footprint "#footprint:diode_SMD")
(libsource (lib "#library") (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F821C1A))
(comp (ref D11)
(value D)
(footprint "#footprint:diode_SMD")
(libsource (lib "#library") (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F821D26))
(comp (ref D23)
(value D)
(footprint "#footprint:diode_SMD")
(libsource (lib "#library") (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F821E4A))
(comp (ref D35)
(value D)
(footprint "#footprint:diode_SMD")
(libsource (lib "#library") (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F821F5C))
(comp (ref D47)
(value D)
(footprint "#footprint:diode_SMD")
(libsource (lib "#library") (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F822072))
(comp (ref D59)
(value D)
(footprint "#footprint:diode_SMD")
(libsource (lib "#library") (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F822184))
(comp (ref D12)
(value D)
(footprint "#footprint:diode_SMD")
(libsource (lib "#library") (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F82229C))
(comp (ref D24)
(value D)
(footprint "#footprint:diode_SMD")
(libsource (lib "#library") (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F8223BC))
(comp (ref D36)
(value D)
(footprint "#footprint:diode_SMD")
(libsource (lib "#library") (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F8224D2))
(comp (ref D48)
(value D)
(footprint "#footprint:diode_SMD")
(libsource (lib "#library") (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F8225EE))
(comp (ref D60)
(value D)
(footprint "#footprint:diode_SMD")
(libsource (lib "#library") (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F82270A))
(comp (ref SW61)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_16mm_rev2")
(libsource (lib "#library") (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F82303E))
(comp (ref SW62)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_16mm_rev2")
(libsource (lib "#library") (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F8231D3))
(comp (ref SW63)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_16mm_rev2")
(libsource (lib "#library") (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F845E1C)))
(libparts
(libpart (lib "#library") (part BLEMicroPro)
(fields
(field (name Reference) U)
(field (name Value) BLEMicroPro))
(pins
(pin (num 0) (name GND) (type input))
(pin (num 1) (name TX/D3) (type BiDi))
(pin (num 2) (name RX/D2) (type BiDi))
(pin (num 3) (name GND) (type power_in))
(pin (num 4) (name GND) (type power_in))
(pin (num 5) (name SDA/D1) (type BiDi))
(pin (num 6) (name SCL/D0) (type BiDi))
(pin (num 7) (name D4) (type BiDi))
(pin (num 8) (name C6) (type BiDi))
(pin (num 9) (name D7) (type BiDi))
(pin (num 10) (name E6) (type BiDi))
(pin (num 11) (name B4) (type BiDi))
(pin (num 12) (name B5) (type BiDi))
(pin (num 13) (name B6) (type BiDi))
(pin (num 14) (name B2) (type BiDi))
(pin (num 15) (name B3) (type BiDi))
(pin (num 16) (name B1) (type BiDi))
(pin (num 17) (name F7) (type BiDi))
(pin (num 18) (name F6) (type BiDi))
(pin (num 19) (name F5) (type BiDi))
(pin (num 20) (name F4) (type BiDi))
(pin (num 21) (name VCC) (type power_in))
(pin (num 22) (name RST) (type input))
(pin (num 23) (name GND) (type power_in))
(pin (num 24) (name RAW) (type power_out))
(pin (num 25) (name BAT) (type input))))
(libpart (lib "#library") (part D)
(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 "#library") (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))))
(libpart (lib Connector_Generic) (part Conn_01x03)
(description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x03))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive)))))
(libraries
(library (logical "#library")
(uri C:\work\2019\selfmadekeyboard\ukiha/library.lib))
(library (logical Connector_Generic)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library/Connector_Generic.lib")))
(nets
(net (code 1) (name "Net-(D33-Pad2)")
(node (ref D33) (pin 2))
(node (ref SW33) (pin 2)))
(net (code 2) (name "Net-(D56-Pad2)")
(node (ref D56) (pin 2))
(node (ref SW56) (pin 2)))
(net (code 3) (name "Net-(D9-Pad2)")
(node (ref D9) (pin 2))
(node (ref SW9) (pin 2)))
(net (code 4) (name "Net-(D21-Pad2)")
(node (ref SW21) (pin 2))
(node (ref D21) (pin 2)))
(net (code 5) (name "Net-(D44-Pad2)")
(node (ref SW44) (pin 2))
(node (ref D44) (pin 2)))
(net (code 6) (name "Net-(D45-Pad2)")
(node (ref SW45) (pin 2))
(node (ref D45) (pin 2)))
(net (code 7) (name "Net-(D57-Pad2)")
(node (ref SW57) (pin 2))
(node (ref D57) (pin 2)))
(net (code 8) (name "Net-(D10-Pad2)")
(node (ref SW10) (pin 2))
(node (ref D10) (pin 2)))
(net (code 9) (name "Net-(D7-Pad2)")
(node (ref D7) (pin 2))
(node (ref SW7) (pin 2)))
(net (code 10) (name "Net-(D19-Pad2)")
(node (ref SW19) (pin 2))
(node (ref D19) (pin 2)))
(net (code 11) (name "Net-(D31-Pad2)")
(node (ref SW31) (pin 2))
(node (ref D31) (pin 2)))
(net (code 12) (name "Net-(D43-Pad2)")
(node (ref SW43) (pin 2))
(node (ref D43) (pin 2)))
(net (code 13) (name "Net-(D8-Pad2)")
(node (ref D8) (pin 2))
(node (ref SW8) (pin 2)))
(net (code 14) (name "Net-(D20-Pad2)")
(node (ref D20) (pin 2))
(node (ref SW20) (pin 2)))
(net (code 15) (name "Net-(D32-Pad2)")
(node (ref D32) (pin 2))
(node (ref SW32) (pin 2)))
(net (code 16) (name "Net-(D47-Pad2)")
(node (ref SW47) (pin 2))
(node (ref D47) (pin 2)))
(net (code 17) (name "Net-(D59-Pad2)")
(node (ref D59) (pin 2))
(node (ref SW59) (pin 2)))
(net (code 18) (name "Net-(D12-Pad2)")
(node (ref SW12) (pin 2))
(node (ref D12) (pin 2)))
(net (code 19) (name "Net-(D24-Pad2)")
(node (ref D24) (pin 2))
(node (ref SW24) (pin 2)))
(net (code 20) (name "Net-(D36-Pad2)")
(node (ref D36) (pin 2))
(node (ref SW36) (pin 2)))
(net (code 21) (name "Net-(D48-Pad2)")
(node (ref SW48) (pin 2))
(node (ref D48) (pin 2)))
(net (code 22) (name "Net-(D60-Pad2)")
(node (ref D60) (pin 2))
(node (ref SW60) (pin 2)))
(net (code 23) (name "Net-(D22-Pad2)")
(node (ref SW22) (pin 2))
(node (ref D22) (pin 2)))
(net (code 24) (name "Net-(D34-Pad2)")
(node (ref SW34) (pin 2))
(node (ref D34) (pin 2)))
(net (code 25) (name "Net-(D46-Pad2)")
(node (ref SW46) (pin 2))
(node (ref D46) (pin 2)))
(net (code 26) (name "Net-(D58-Pad2)")
(node (ref SW58) (pin 2))
(node (ref D58) (pin 2)))
(net (code 27) (name "Net-(D11-Pad2)")
(node (ref D11) (pin 2))
(node (ref SW11) (pin 2)))
(net (code 28) (name "Net-(D23-Pad2)")
(node (ref D23) (pin 2))
(node (ref SW23) (pin 2)))
(net (code 29) (name "Net-(D35-Pad2)")
(node (ref D35) (pin 2))
(node (ref SW35) (pin 2)))
(net (code 30) (name "Net-(D14-Pad2)")
(node (ref D14) (pin 2))
(node (ref SW14) (pin 2)))
(net (code 31) (name "Net-(D26-Pad2)")
(node (ref D26) (pin 2))
(node (ref SW26) (pin 2)))
(net (code 32) (name "Net-(D38-Pad2)")
(node (ref D38) (pin 2))
(node (ref SW38) (pin 2)))
(net (code 33) (name "Net-(D50-Pad2)")
(node (ref D50) (pin 2))
(node (ref SW50) (pin 2)))
(net (code 34) (name "Net-(D3-Pad2)")
(node (ref D3) (pin 2))
(node (ref SW3) (pin 2)))
(net (code 35) (name "Net-(D15-Pad2)")
(node (ref SW15) (pin 2))
(node (ref D15) (pin 2)))
(net (code 36) (name "Net-(D27-Pad2)")
(node (ref SW27) (pin 2))
(node (ref D27) (pin 2)))
(net (code 37) (name "Net-(D39-Pad2)")
(node (ref D39) (pin 2))
(node (ref SW39) (pin 2)))
(net (code 38) (name "Net-(D51-Pad2)")
(node (ref D51) (pin 2))
(node (ref SW51) (pin 2)))
(net (code 39) (name "Net-(D25-Pad2)")
(node (ref D25) (pin 2))
(node (ref SW25) (pin 2)))
(net (code 40) (name "Net-(D1-Pad2)")
(node (ref SW1) (pin 2))
(node (ref D1) (pin 2)))
(net (code 41) (name "Net-(D13-Pad2)")
(node (ref SW13) (pin 2))
(node (ref D13) (pin 2)))
(net (code 42) (name "Net-(D4-Pad2)")
(node (ref SW4) (pin 2))
(node (ref D4) (pin 2)))
(net (code 43) (name "Net-(D37-Pad2)")
(node (ref SW37) (pin 2))
(node (ref D37) (pin 2)))
(net (code 44) (name "Net-(D49-Pad2)")
(node (ref D49) (pin 2))
(node (ref SW49) (pin 2)))
(net (code 45) (name "Net-(D2-Pad2)")
(node (ref SW2) (pin 2))
(node (ref D2) (pin 2)))
(net (code 46) (name "Net-(D30-Pad2)")
(node (ref D30) (pin 2))
(node (ref SW30) (pin 2)))
(net (code 47) (name "Net-(D6-Pad2)")
(node (ref SW6) (pin 2))
(node (ref D6) (pin 2)))
(net (code 48) (name "Net-(D18-Pad2)")
(node (ref D18) (pin 2))
(node (ref SW18) (pin 2)))
(net (code 49) (name "Net-(D42-Pad2)")
(node (ref SW42) (pin 2))
(node (ref D42) (pin 2)))
(net (code 50) (name "Net-(D16-Pad2)")
(node (ref D16) (pin 2))
(node (ref SW16) (pin 2)))
(net (code 51) (name "Net-(D28-Pad2)")
(node (ref D28) (pin 2))
(node (ref SW28) (pin 2)))
(net (code 52) (name "Net-(D40-Pad2)")
(node (ref SW40) (pin 2))
(node (ref D40) (pin 2)))
(net (code 53) (name "Net-(D52-Pad2)")
(node (ref SW52) (pin 2))
(node (ref D52) (pin 2)))
(net (code 54) (name "Net-(D5-Pad2)")
(node (ref D5) (pin 2))
(node (ref SW5) (pin 2)))
(net (code 55) (name "Net-(D17-Pad2)")