-
Notifications
You must be signed in to change notification settings - Fork 0
/
Split65Right.net
1006 lines (1006 loc) · 34.7 KB
/
Split65Right.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 E:\Dokumente\Tastaturen\Split65\Split65Right.sch)
(date "04.10.2020 11:14:11")
(tool "Eeschema (5.1.6)-1")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title)
(company)
(rev)
(date)
(source Split65Right.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref U1)
(value proton_c)
(footprint footprints:proton_c)
(libsource (lib proton_c) (part proton_c) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F7884E4))
(comp (ref R1)
(value 5k)
(footprint footprints:R_1608_axial)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5F7942F0))
(comp (ref R2)
(value 5k)
(footprint footprints:R_1608_axial)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5F79541D))
(comp (ref J1)
(value Jack4)
(footprint footprints:TRRS_JACK_MJ4PP9)
(datasheet ~)
(libsource (lib Connector) (part AudioJack4) (description "Audio Jack, 4 Poles (TRRS)"))
(sheetpath (names /) (tstamps /))
(tstamp 5F796A78))
(comp (ref J2)
(value OLED)
(footprint footprints:OLED_4Pin)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x04) (description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5F79FB5C))
(comp (ref SW_41)
(value SW_Push)
(footprint footprints:TACT_SWITCH_TVBP06)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5F7A3C70))
(comp (ref SW1)
(value SW_PUSH)
(footprint footprints:KailhSocket-1U)
(libsource (lib keyboard_parts) (part SW_PUSH) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F78C361))
(comp (ref JP3)
(value Jumper)
(footprint footprints:Jumper)
(libsource (lib keyboard_parts) (part Jumper) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F78EFDB))
(comp (ref JP2)
(value Jumper)
(footprint footprints:Jumper)
(libsource (lib keyboard_parts) (part Jumper) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F78F78F))
(comp (ref D1)
(value D)
(footprint footprints:D_SOD123_axial)
(libsource (lib d) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F7911C2))
(comp (ref SW2)
(value SW_PUSH)
(footprint footprints:KailhSocket-2U)
(libsource (lib keyboard_parts) (part SW_PUSH) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F793E09))
(comp (ref D2)
(value D)
(footprint footprints:D_SOD123_axial)
(libsource (lib d) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F794F38))
(comp (ref SW3)
(value SW_PUSH)
(footprint footprints:KailhSocket-1U)
(libsource (lib keyboard_parts) (part SW_PUSH) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F795448))
(comp (ref D3)
(value D)
(footprint footprints:D_SOD123_axial)
(libsource (lib d) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F795BD0))
(comp (ref SW4)
(value SW_PUSH)
(footprint footprints:KailhSocket-1U)
(libsource (lib keyboard_parts) (part SW_PUSH) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F7961F2))
(comp (ref D4)
(value D)
(footprint footprints:D_SOD123_axial)
(libsource (lib d) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F796AFD))
(comp (ref SW5)
(value SW_PUSH)
(footprint footprints:KailhSocket-1U)
(libsource (lib keyboard_parts) (part SW_PUSH) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F797218))
(comp (ref D5)
(value D)
(footprint footprints:D_SOD123_axial)
(libsource (lib d) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F797C4C))
(comp (ref SW6)
(value SW_PUSH)
(footprint footprints:KailhSocket-1U)
(libsource (lib keyboard_parts) (part SW_PUSH) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F7981D6))
(comp (ref D6)
(value D)
(footprint footprints:D_SOD123_axial)
(libsource (lib d) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F79895E))
(comp (ref SW7)
(value SW_PUSH)
(footprint footprints:KailhSocket-1U)
(libsource (lib keyboard_parts) (part SW_PUSH) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F79904A))
(comp (ref D7)
(value D)
(footprint footprints:D_SOD123_axial)
(libsource (lib d) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F79991F))
(comp (ref SW8)
(value SW_PUSH)
(footprint footprints:KailhSocket-1U)
(libsource (lib keyboard_parts) (part SW_PUSH) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F799F68))
(comp (ref D8)
(value D)
(footprint footprints:D_SOD123_axial)
(libsource (lib d) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F79A903))
(comp (ref SW9)
(value SW_PUSH)
(footprint footprints:KailhSocket-1U)
(libsource (lib keyboard_parts) (part SW_PUSH) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F79B0E2))
(comp (ref D9)
(value D)
(footprint footprints:D_SOD123_axial)
(libsource (lib d) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F79B81F))
(comp (ref SW10)
(value SW_PUSH)
(footprint footprints:KailhSocket-1U)
(libsource (lib keyboard_parts) (part SW_PUSH) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F79C058))
(comp (ref D10)
(value D)
(footprint footprints:D_SOD123_axial)
(libsource (lib d) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F79C712))
(comp (ref SW11)
(value SW_PUSH)
(footprint footprints:KailhSocket-1U)
(libsource (lib keyboard_parts) (part SW_PUSH) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F79CD5F))
(comp (ref D11)
(value D)
(footprint footprints:D_SOD123_axial)
(libsource (lib d) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F79D454))
(comp (ref SW12)
(value SW_PUSH)
(footprint footprints:KailhSocket-1U)
(libsource (lib keyboard_parts) (part SW_PUSH) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F79DADC))
(comp (ref D12)
(value D)
(footprint footprints:D_SOD123_axial)
(libsource (lib d) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F79E237))
(comp (ref SW13)
(value SW_PUSH)
(footprint footprints:KailhSocket-1U)
(libsource (lib keyboard_parts) (part SW_PUSH) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F79E8FA))
(comp (ref D13)
(value D)
(footprint footprints:D_SOD123_axial)
(libsource (lib d) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F79F080))
(comp (ref SW14)
(value SW_PUSH)
(footprint footprints:KailhSocket-1U)
(libsource (lib keyboard_parts) (part SW_PUSH) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F79F7C4))
(comp (ref D14)
(value D)
(footprint footprints:D_SOD123_axial)
(libsource (lib d) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F79FE4E))
(comp (ref SW15)
(value SW_PUSH)
(footprint footprints:KailhSocket-1U)
(libsource (lib keyboard_parts) (part SW_PUSH) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F7A03ED))
(comp (ref D15)
(value D)
(footprint footprints:D_SOD123_axial)
(libsource (lib d) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F7A0AB8))
(comp (ref SW16)
(value SW_PUSH)
(footprint footprints:KailhSocket-1U)
(libsource (lib keyboard_parts) (part SW_PUSH) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F7A1096))
(comp (ref D16)
(value D)
(footprint footprints:D_SOD123_axial)
(libsource (lib d) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F7A18F0))
(comp (ref SW17)
(value SW_PUSH)
(footprint footprints:KailhSocket-1U)
(libsource (lib keyboard_parts) (part SW_PUSH) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F7A2E86))
(comp (ref D17)
(value D)
(footprint footprints:D_SOD123_axial)
(libsource (lib d) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F7A3828))
(comp (ref SW18)
(value SW_PUSH)
(footprint footprints:KailhSocket-ISO)
(libsource (lib keyboard_parts) (part SW_PUSH) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F7A3E14))
(comp (ref D18)
(value D)
(footprint footprints:D_SOD123_axial)
(libsource (lib d) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F7A4450))
(comp (ref SW19)
(value SW_PUSH)
(footprint footprints:KailhSocket-1U)
(libsource (lib keyboard_parts) (part SW_PUSH) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F7A4BB7))
(comp (ref D19)
(value D)
(footprint footprints:D_SOD123_axial)
(libsource (lib d) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F7A52AA))
(comp (ref SW20)
(value SW_PUSH)
(footprint footprints:KailhSocket-1U)
(libsource (lib keyboard_parts) (part SW_PUSH) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F7A59F7))
(comp (ref D20)
(value D)
(footprint footprints:D_SOD123_axial)
(libsource (lib d) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F7A6124))
(comp (ref SW21)
(value SW_PUSH)
(footprint footprints:KailhSocket-1U)
(libsource (lib keyboard_parts) (part SW_PUSH) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F7A6794))
(comp (ref D21)
(value D)
(footprint footprints:D_SOD123_axial)
(libsource (lib d) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F7A6F52))
(comp (ref SW22)
(value SW_PUSH)
(footprint footprints:KailhSocket-1U)
(libsource (lib keyboard_parts) (part SW_PUSH) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F7A749F))
(comp (ref D22)
(value D)
(footprint footprints:D_SOD123_axial)
(libsource (lib d) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F7A79A8))
(comp (ref SW23)
(value SW_PUSH)
(footprint footprints:KailhSocket-1U)
(libsource (lib keyboard_parts) (part SW_PUSH) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F7A8089))
(comp (ref D23)
(value D)
(footprint footprints:D_SOD123_axial)
(libsource (lib d) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F7A8835))
(comp (ref SW24)
(value SW_PUSH)
(footprint footprints:KailhSocket-1U)
(libsource (lib keyboard_parts) (part SW_PUSH) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F7A8F2E))
(comp (ref D24)
(value D)
(footprint footprints:D_SOD123_axial)
(libsource (lib d) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F7A95C6))
(comp (ref SW25)
(value SW_PUSH)
(footprint footprints:KailhSocket-1U)
(libsource (lib keyboard_parts) (part SW_PUSH) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F7A9C46))
(comp (ref D25)
(value D)
(footprint footprints:D_SOD123_axial)
(libsource (lib d) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F7AA355))
(comp (ref SW26)
(value SW_PUSH)
(footprint footprints:KailhSocket-1U)
(libsource (lib keyboard_parts) (part SW_PUSH) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F7AA909))
(comp (ref D26)
(value D)
(footprint footprints:D_SOD123_axial)
(libsource (lib d) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F7AAF51))
(comp (ref SW27)
(value SW_PUSH)
(footprint footprints:KailhSocket-1.75U)
(libsource (lib keyboard_parts) (part SW_PUSH) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F7AB43A))
(comp (ref D27)
(value D)
(footprint footprints:D_SOD123_axial)
(libsource (lib d) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F7ABA72))
(comp (ref SW28)
(value SW_PUSH)
(footprint footprints:KailhSocket-1U)
(libsource (lib keyboard_parts) (part SW_PUSH) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F7AC1C6))
(comp (ref D28)
(value D)
(footprint footprints:D_SOD123_axial)
(libsource (lib d) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F7AC72B))
(comp (ref SW29)
(value SW_PUSH)
(footprint footprints:KailhSocket-1U)
(libsource (lib keyboard_parts) (part SW_PUSH) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F7ACC1C))
(comp (ref D29)
(value D)
(footprint footprints:D_SOD123_axial)
(libsource (lib d) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F7AD321))
(comp (ref SW30)
(value SW_PUSH)
(footprint footprints:KailhSocket-1U)
(libsource (lib keyboard_parts) (part SW_PUSH) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F7AD98F))
(comp (ref D30)
(value D)
(footprint footprints:D_SOD123_axial)
(libsource (lib d) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F7AE0E0))
(comp (ref SW31)
(value SW_PUSH)
(footprint footprints:KailhSocket-1U)
(libsource (lib keyboard_parts) (part SW_PUSH) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F7AE8E0))
(comp (ref D31)
(value D)
(footprint footprints:D_SOD123_axial)
(libsource (lib d) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F7AEF59))
(comp (ref SW32)
(value SW_PUSH)
(footprint footprints:KailhSocket-1U)
(libsource (lib keyboard_parts) (part SW_PUSH) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F7AF474))
(comp (ref D32)
(value D)
(footprint footprints:D_SOD123_axial)
(libsource (lib d) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F7AFAF6))
(comp (ref SW33)
(value SW_PUSH)
(footprint footprints:KailhSocket-1U)
(libsource (lib keyboard_parts) (part SW_PUSH) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F7B00C9))
(comp (ref D33)
(value D)
(footprint footprints:D_SOD123_axial)
(libsource (lib d) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F7B06AE))
(comp (ref SW34)
(value SW_PUSH)
(footprint footprints:KailhSocket-1U)
(libsource (lib keyboard_parts) (part SW_PUSH) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F7B0E41))
(comp (ref D34)
(value D)
(footprint footprints:D_SOD123_axial)
(libsource (lib d) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F7B14A7))
(comp (ref SW35)
(value SW_PUSH)
(footprint footprints:KailhSocket-1U)
(libsource (lib keyboard_parts) (part SW_PUSH) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F7B1B79))
(comp (ref D35)
(value D)
(footprint footprints:D_SOD123_axial)
(libsource (lib d) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F7B226C))
(comp (ref SW36)
(value SW_PUSH)
(footprint footprints:KailhSocket-1U)
(libsource (lib keyboard_parts) (part SW_PUSH) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F7B28AF))
(comp (ref D36)
(value D)
(footprint footprints:D_SOD123_axial)
(libsource (lib d) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F7B2E4B))
(comp (ref SW37)
(value SW_PUSH)
(footprint footprints:KailhSocket-1U)
(libsource (lib keyboard_parts) (part SW_PUSH) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F7B35AF))
(comp (ref D37)
(value D)
(footprint footprints:D_SOD123_axial)
(libsource (lib d) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F7B3DAB))
(comp (ref SW38)
(value SW_PUSH)
(footprint footprints:KailhSocket-1U)
(libsource (lib keyboard_parts) (part SW_PUSH) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F7B456D))
(comp (ref D38)
(value D)
(footprint footprints:D_SOD123_axial)
(libsource (lib d) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F7B4DCC))
(comp (ref SW39)
(value SW_PUSH)
(footprint footprints:KailhSocket-3U)
(libsource (lib keyboard_parts) (part SW_PUSH) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F7B53B7))
(comp (ref D39)
(value D)
(footprint footprints:D_SOD123_axial)
(libsource (lib d) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F7B5ABB))
(comp (ref SW40)
(value SW_PUSH)
(footprint footprints:KailhSocket-1U)
(libsource (lib keyboard_parts) (part SW_PUSH) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F7B646A))
(comp (ref D40)
(value D)
(footprint footprints:D_SOD123_axial)
(libsource (lib d) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F7B6B44))
(comp (ref R3)
(value 120)
(footprint footprints:R_1608_axial)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5F7AC61F)))
(libparts
(libpart (lib Connector) (part AudioJack4)
(description "Audio Jack, 4 Poles (TRRS)")
(docs ~)
(footprints
(fp Jack*))
(fields
(field (name Reference) J)
(field (name Value) AudioJack4))
(pins
(pin (num R1) (name ~) (type passive))
(pin (num R2) (name ~) (type passive))
(pin (num S) (name ~) (type passive))
(pin (num T) (name ~) (type passive))))
(libpart (lib Connector_Generic) (part Conn_01x04)
(description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x04))
(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))
(pin (num 4) (name Pin_4) (type passive))))
(libpart (lib Device) (part R)
(description Resistor)
(docs ~)
(footprints
(fp R_*))
(fields
(field (name Reference) R)
(field (name Value) R))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Switch) (part SW_Push)
(description "Push button switch, generic, two pins")
(docs ~)
(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 d) (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 keyboard_parts) (part Jumper)
(fields
(field (name Reference) JP)
(field (name Value) Jumper))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (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))))
(libpart (lib proton_c) (part proton_c)
(footprints
(fp proton_c))
(fields
(field (name Reference) U)
(field (name Value) proton_c))
(pins
(pin (num 3.3V) (name VCC/3.3v) (type BiDi))
(pin (num 5V) (name "VBUS(5V_RAW)") (type BiDi))
(pin (num A0) (name PA0) (type BiDi))
(pin (num A1) (name PA1) (type BiDi))
(pin (num A2) (name PA2) (type BiDi))
(pin (num A3) (name "PA3(3.3v)") (type BiDi))
(pin (num A4) (name PA4/SPEAKER1) (type BiDi))
(pin (num A5) (name PA5/SPEAKER2) (type BiDi))
(pin (num A6) (name PA6) (type BiDi))
(pin (num A7) (name PA7) (type BiDi))
(pin (num A8) (name PA8) (type BiDi))
(pin (num A9) (name PA9/TX) (type BiDi))
(pin (num A10) (name PA10/RX) (type BiDi))
(pin (num A13) (name PA13/SWDIO) (type BiDi))
(pin (num A14) (name PA14/SWCLK) (type BiDi))
(pin (num A15) (name PA15) (type BiDi))
(pin (num A3|5v) (name "A3(5v_shifted)") (type BiDi))
(pin (num B0) (name PB0) (type BiDi))
(pin (num B1) (name PB1) (type BiDi))
(pin (num B2) (name PB2) (type BiDi))
(pin (num B3) (name PB3) (type BiDi))
(pin (num B4) (name PB4) (type BiDi))
(pin (num B5) (name PB5) (type BiDi))
(pin (num B6) (name PB6/SCL) (type BiDi))
(pin (num B7) (name PB7/SDA) (type BiDi))
(pin (num B8) (name PB8) (type BiDi))
(pin (num B9) (name PB9) (type BiDi))
(pin (num B10) (name PB10) (type BiDi))
(pin (num B11) (name PB11) (type BiDi))
(pin (num B12) (name PB12) (type BiDi))
(pin (num B13) (name PB13/SCLK) (type BiDi))
(pin (num B14) (name PB14/MISO) (type BiDi))
(pin (num B15) (name PB15/MOSI) (type BiDi))
(pin (num BT0) (name BOOT0) (type BiDi))
(pin (num C14) (name PC14) (type BiDi))
(pin (num C15) (name PC15) (type BiDi))
(pin (num CHRG) (name "CHRG(5v)") (type BiDi))
(pin (num D+) (name USB-DP) (type BiDi))
(pin (num D-) (name USB-DM) (type BiDi))
(pin (num DFU) (name DFU) (type BiDi))
(pin (num GND) (name GND) (type BiDi))
(pin (num LED) (name LED) (type BiDi))
(pin (num RST) (name RESET) (type BiDi)))))
(libraries
(library (logical Connector)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library/Connector.lib"))
(library (logical Connector_Generic)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library/Connector_Generic.lib"))
(library (logical Device)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library/Device.lib"))
(library (logical Switch)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library/Switch.lib"))
(library (logical d)
(uri E:/Dokumente/Tastaturen/libs/lib/d.lib))
(library (logical keyboard_parts)
(uri E:/Dokumente/Tastaturen/libs/kicad_lib_tmk-master/kicad_lib_tmk-master/keyboard_parts.lib))
(library (logical proton_c)
(uri E:/Dokumente/Tastaturen/libs/proton-c/proton_c.lib)))
(nets
(net (code 1) (name "Net-(D32-Pad2)")
(node (ref D32) (pin 2))
(node (ref SW32) (pin 2)))
(net (code 2) (name "Net-(D35-Pad2)")
(node (ref D35) (pin 2))
(node (ref SW35) (pin 2)))
(net (code 3) (name "Net-(D34-Pad2)")
(node (ref D34) (pin 2))
(node (ref SW34) (pin 2)))
(net (code 4) (name "Net-(D33-Pad2)")
(node (ref SW33) (pin 2))
(node (ref D33) (pin 2)))
(net (code 5) (name "Net-(D31-Pad2)")
(node (ref D31) (pin 2))
(node (ref SW31) (pin 2)))
(net (code 6) (name "Net-(D30-Pad2)")
(node (ref D30) (pin 2))
(node (ref SW30) (pin 2)))
(net (code 7) (name "Net-(D29-Pad2)")
(node (ref SW29) (pin 2))
(node (ref D29) (pin 2)))
(net (code 8) (name "Net-(D39-Pad2)")
(node (ref SW39) (pin 2))
(node (ref D39) (pin 2)))
(net (code 9) (name "Net-(D40-Pad2)")
(node (ref D40) (pin 2))
(node (ref SW40) (pin 2)))
(net (code 10) (name "Net-(D38-Pad2)")
(node (ref D38) (pin 2))
(node (ref SW38) (pin 2)))
(net (code 11) (name "Net-(D37-Pad2)")
(node (ref D37) (pin 2))
(node (ref SW37) (pin 2)))
(net (code 12) (name "Net-(D36-Pad2)")
(node (ref SW36) (pin 2))
(node (ref D36) (pin 2)))
(net (code 13) (name "Net-(U1-PadD+)")
(node (ref U1) (pin D+)))
(net (code 14) (name "Net-(U1-Pad5V)")
(node (ref U1) (pin 5V)))
(net (code 15) (name "Net-(U1-PadD-)")
(node (ref U1) (pin D-)))
(net (code 16) (name "Net-(U1-PadA15)")
(node (ref U1) (pin A15)))
(net (code 17) (name "Net-(J1-PadT)")
(node (ref JP3) (pin 1))
(node (ref R3) (pin 1))
(node (ref R2) (pin 2))
(node (ref J1) (pin T)))
(net (code 18) (name DATA)
(node (ref R3) (pin 2))
(node (ref U1) (pin A9)))
(net (code 19) (name "Net-(U1-PadA10)")
(node (ref U1) (pin A10)))
(net (code 20) (name "Net-(U1-PadLED)")
(node (ref U1) (pin LED)))
(net (code 21) (name "Net-(U1-PadA4)")
(node (ref U1) (pin A4)))
(net (code 22) (name "Net-(U1-PadA5)")
(node (ref U1) (pin A5)))
(net (code 23) (name "Net-(U1-PadA6)")
(node (ref U1) (pin A6)))
(net (code 24) (name "Net-(U1-PadA7)")
(node (ref U1) (pin A7)))
(net (code 25) (name "Net-(U1-PadA8)")
(node (ref U1) (pin A8)))
(net (code 26) (name "Net-(U1-PadRST)")
(node (ref U1) (pin RST)))
(net (code 27) (name "Net-(U1-PadA13)")
(node (ref U1) (pin A13)))
(net (code 28) (name "Net-(U1-PadA14)")
(node (ref U1) (pin A14)))
(net (code 29) (name "Net-(U1-PadB12)")
(node (ref U1) (pin B12)))
(net (code 30) (name "Net-(U1-PadB11)")
(node (ref U1) (pin B11)))
(net (code 31) (name "Net-(U1-PadB10)")
(node (ref U1) (pin B10)))
(net (code 32) (name "Net-(U1-PadC14)")
(node (ref U1) (pin C14)))
(net (code 33) (name "Net-(U1-PadC15)")
(node (ref U1) (pin C15)))
(net (code 34) (name "Net-(U1-PadA3)")
(node (ref U1) (pin A3)))
(net (code 35) (name "Net-(U1-PadBT0)")
(node (ref U1) (pin BT0)))
(net (code 36) (name "Net-(U1-PadB0)")
(node (ref U1) (pin B0)))
(net (code 37) (name "Net-(U1-PadA3|5v)")
(node (ref U1) (pin A3|5v)))
(net (code 38) (name "Net-(U1-PadCHRG)")
(node (ref U1) (pin CHRG)))
(net (code 39) (name "Net-(D28-Pad2)")
(node (ref SW28) (pin 2))
(node (ref D28) (pin 2)))
(net (code 40) (name "Net-(J1-PadS)")
(node (ref JP2) (pin 1))
(node (ref J1) (pin S)))
(net (code 41) (name +3V3)
(node (ref R1) (pin 1))
(node (ref R2) (pin 1))
(node (ref J2) (pin 3))
(node (ref U1) (pin 3.3V))
(node (ref J1) (pin R1)))
(net (code 42) (name GND)
(node (ref U1) (pin GND))
(node (ref SW_41) (pin 1))
(node (ref U1) (pin GND))
(node (ref U1) (pin GND))
(node (ref J1) (pin R2))
(node (ref J2) (pin 4)))
(net (code 43) (name SDA)
(node (ref R1) (pin 2))
(node (ref U1) (pin B7))
(node (ref J2) (pin 1))
(node (ref JP2) (pin 2)))
(net (code 44) (name "Net-(D1-Pad2)")
(node (ref SW1) (pin 2))
(node (ref D1) (pin 2)))
(net (code 45) (name RESET)
(node (ref U1) (pin DFU))
(node (ref SW_41) (pin 2)))
(net (code 46) (name SCL)
(node (ref JP3) (pin 2))
(node (ref J2) (pin 2))
(node (ref U1) (pin B6)))
(net (code 47) (name COL6)
(node (ref SW31) (pin 1))
(node (ref U1) (pin B15))
(node (ref SW15) (pin 1))
(node (ref SW39) (pin 1))
(node (ref SW23) (pin 1))
(node (ref SW7) (pin 1)))
(net (code 48) (name COL5)
(node (ref SW14) (pin 1))
(node (ref SW38) (pin 1))
(node (ref SW30) (pin 1))
(node (ref U1) (pin B14))
(node (ref SW22) (pin 1))
(node (ref SW6) (pin 1)))
(net (code 49) (name COL4)
(node (ref SW21) (pin 1))
(node (ref SW13) (pin 1))
(node (ref SW29) (pin 1))
(node (ref SW37) (pin 1))
(node (ref SW5) (pin 1))
(node (ref U1) (pin B13)))
(net (code 50) (name ROW4)
(node (ref D38) (pin 1))
(node (ref D39) (pin 1))
(node (ref D40) (pin 1))
(node (ref D35) (pin 1))
(node (ref D34) (pin 1))
(node (ref D33) (pin 1))
(node (ref U1) (pin B1))
(node (ref D36) (pin 1))
(node (ref D37) (pin 1)))
(net (code 51) (name ROW3)
(node (ref D32) (pin 1))
(node (ref D27) (pin 1))
(node (ref D31) (pin 1))
(node (ref D30) (pin 1))
(node (ref D29) (pin 1))
(node (ref D28) (pin 1))
(node (ref D26) (pin 1))
(node (ref D25) (pin 1))
(node (ref U1) (pin B2)))
(net (code 52) (name COL0)
(node (ref SW25) (pin 1))
(node (ref SW17) (pin 1))
(node (ref SW1) (pin 1))
(node (ref SW9) (pin 1))
(node (ref SW33) (pin 1))
(node (ref U1) (pin A2)))
(net (code 53) (name COL1)
(node (ref SW34) (pin 1))
(node (ref SW18) (pin 1))
(node (ref SW26) (pin 1))
(node (ref SW10) (pin 1))
(node (ref SW2) (pin 1))
(node (ref U1) (pin A1)))
(net (code 54) (name COL2)
(node (ref SW11) (pin 1))
(node (ref U1) (pin A0))
(node (ref SW3) (pin 1))
(node (ref SW27) (pin 1))
(node (ref SW19) (pin 1))
(node (ref SW35) (pin 1)))
(net (code 55) (name COL7)
(node (ref SW8) (pin 1))
(node (ref U1) (pin B9))
(node (ref SW40) (pin 1))
(node (ref SW16) (pin 1))
(node (ref SW24) (pin 1))
(node (ref SW32) (pin 1)))
(net (code 56) (name COL3)
(node (ref SW12) (pin 1))
(node (ref SW28) (pin 1))
(node (ref SW4) (pin 1))
(node (ref SW20) (pin 1))
(node (ref U1) (pin B8))
(node (ref SW36) (pin 1)))
(net (code 57) (name ROW0)
(node (ref D1) (pin 1))
(node (ref D2) (pin 1))
(node (ref D3) (pin 1))
(node (ref D7) (pin 1))
(node (ref D4) (pin 1))
(node (ref D5) (pin 1))
(node (ref D6) (pin 1))
(node (ref U1) (pin B5))
(node (ref D8) (pin 1)))
(net (code 58) (name ROW1)
(node (ref D14) (pin 1))
(node (ref D11) (pin 1))
(node (ref D15) (pin 1))
(node (ref D16) (pin 1))
(node (ref D12) (pin 1))
(node (ref D9) (pin 1))
(node (ref D13) (pin 1))
(node (ref U1) (pin B4))
(node (ref D10) (pin 1)))
(net (code 59) (name ROW2)
(node (ref D24) (pin 1))
(node (ref D23) (pin 1))
(node (ref D22) (pin 1))
(node (ref D17) (pin 1))
(node (ref D18) (pin 1))
(node (ref U1) (pin B3))
(node (ref D19) (pin 1))
(node (ref D21) (pin 1))
(node (ref D20) (pin 1)))
(net (code 60) (name "Net-(D21-Pad2)")
(node (ref SW21) (pin 2))
(node (ref D21) (pin 2)))
(net (code 61) (name "Net-(D20-Pad2)")
(node (ref D20) (pin 2))
(node (ref SW20) (pin 2)))
(net (code 62) (name "Net-(D19-Pad2)")
(node (ref D19) (pin 2))
(node (ref SW19) (pin 2)))
(net (code 63) (name "Net-(D18-Pad2)")
(node (ref SW18) (pin 2))
(node (ref D18) (pin 2)))
(net (code 64) (name "Net-(D17-Pad2)")
(node (ref SW17) (pin 2))
(node (ref D17) (pin 2)))
(net (code 65) (name "Net-(D16-Pad2)")
(node (ref SW16) (pin 2))
(node (ref D16) (pin 2)))
(net (code 66) (name "Net-(D15-Pad2)")
(node (ref D15) (pin 2))
(node (ref SW15) (pin 2)))
(net (code 67) (name "Net-(D14-Pad2)")
(node (ref SW14) (pin 2))
(node (ref D14) (pin 2)))
(net (code 68) (name "Net-(D25-Pad2)")
(node (ref SW25) (pin 2))
(node (ref D25) (pin 2)))
(net (code 69) (name "Net-(D27-Pad2)")
(node (ref D27) (pin 2))
(node (ref SW27) (pin 2)))
(net (code 70) (name "Net-(D26-Pad2)")
(node (ref SW26) (pin 2))
(node (ref D26) (pin 2)))
(net (code 71) (name "Net-(D24-Pad2)")
(node (ref D24) (pin 2))
(node (ref SW24) (pin 2)))
(net (code 72) (name "Net-(D23-Pad2)")
(node (ref D23) (pin 2))
(node (ref SW23) (pin 2)))
(net (code 73) (name "Net-(D22-Pad2)")
(node (ref D22) (pin 2))
(node (ref SW22) (pin 2)))
(net (code 74) (name "Net-(D7-Pad2)")
(node (ref SW7) (pin 2))
(node (ref D7) (pin 2)))
(net (code 75) (name "Net-(D6-Pad2)")
(node (ref SW6) (pin 2))
(node (ref D6) (pin 2)))
(net (code 76) (name "Net-(D5-Pad2)")
(node (ref D5) (pin 2))
(node (ref SW5) (pin 2)))
(net (code 77) (name "Net-(D4-Pad2)")
(node (ref SW4) (pin 2))
(node (ref D4) (pin 2)))
(net (code 78) (name "Net-(D3-Pad2)")
(node (ref SW3) (pin 2))
(node (ref D3) (pin 2)))
(net (code 79) (name "Net-(D2-Pad2)")
(node (ref D2) (pin 2))
(node (ref SW2) (pin 2)))
(net (code 80) (name "Net-(D13-Pad2)")
(node (ref SW13) (pin 2))
(node (ref D13) (pin 2)))
(net (code 81) (name "Net-(D12-Pad2)")
(node (ref D12) (pin 2))
(node (ref SW12) (pin 2)))
(net (code 82) (name "Net-(D11-Pad2)")
(node (ref SW11) (pin 2))
(node (ref D11) (pin 2)))
(net (code 83) (name "Net-(D10-Pad2)")
(node (ref SW10) (pin 2))
(node (ref D10) (pin 2)))