-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathleft-main.net
2191 lines (2191 loc) · 68.5 KB
/
left-main.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 /home/laci/projects/uhk/electronics/left-main/left-main.sch)
(date "Fri 08 Dec 2017 00:22:24 CET")
(tool "Eeschema no-vcs-found-694ad93~61~ubuntu16.04.1")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title "Ultimate Hacking Keyboard - Left Main Board")
(company "Ultimate Gadget Laboratories Kft.")
(rev 7.8.0)
(date)
(source left-main.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref D13)
(value DIODE)
(footprint UGL:SOD-123_Diode)
(libsource (lib ugl) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5011B526))
(comp (ref D14)
(value DIODE)
(footprint UGL:SOD-123_Diode)
(libsource (lib ugl) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5011B539))
(comp (ref D15)
(value DIODE)
(footprint UGL:SOD-123_Diode)
(libsource (lib ugl) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5011B53F))
(comp (ref D16)
(value DIODE)
(footprint UGL:SOD-123_Diode)
(libsource (lib ugl) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5011B545))
(comp (ref D17)
(value DIODE)
(footprint UGL:SOD-123_Diode)
(libsource (lib ugl) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5011B54B))
(comp (ref D21)
(value DIODE)
(footprint UGL:SOD-123_Diode)
(libsource (lib ugl) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5011B80B))
(comp (ref D22)
(value DIODE)
(footprint UGL:SOD-123_Diode)
(libsource (lib ugl) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5011B812))
(comp (ref D23)
(value DIODE)
(footprint UGL:SOD-123_Diode)
(libsource (lib ugl) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5011B81A))
(comp (ref D24)
(value DIODE)
(footprint UGL:SOD-123_Diode)
(libsource (lib ugl) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5011B820))
(comp (ref D25)
(value DIODE)
(footprint UGL:SOD-123_Diode)
(libsource (lib ugl) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5011B826))
(comp (ref D27)
(value DIODE)
(footprint UGL:SOD-123_Diode)
(libsource (lib ugl) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5011B82C))
(comp (ref D31)
(value DIODE)
(footprint UGL:SOD-123_Diode)
(libsource (lib ugl) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5011B84B))
(comp (ref D32)
(value DIODE)
(footprint UGL:SOD-123_Diode)
(libsource (lib ugl) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5011B852))
(comp (ref D33)
(value DIODE)
(footprint UGL:SOD-123_Diode)
(libsource (lib ugl) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5011B85A))
(comp (ref D34)
(value DIODE)
(footprint UGL:SOD-123_Diode)
(libsource (lib ugl) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5011B860))
(comp (ref D35)
(value DIODE)
(footprint UGL:SOD-123_Diode)
(libsource (lib ugl) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5011B866))
(comp (ref D37)
(value DIODE)
(footprint UGL:SOD-123_Diode)
(libsource (lib ugl) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5011B86C))
(comp (ref D41)
(value DIODE)
(footprint UGL:SOD-123_Diode)
(libsource (lib ugl) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5011B88B))
(comp (ref D42)
(value DIODE)
(footprint UGL:SOD-123_Diode)
(libsource (lib ugl) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5011B892))
(comp (ref D43)
(value DIODE)
(footprint UGL:SOD-123_Diode)
(libsource (lib ugl) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5011B89A))
(comp (ref D44)
(value DIODE)
(footprint UGL:SOD-123_Diode)
(libsource (lib ugl) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5011B8A0))
(comp (ref D45)
(value DIODE)
(footprint UGL:SOD-123_Diode)
(libsource (lib ugl) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5011B8A6))
(comp (ref D46)
(value DIODE)
(footprint UGL:SOD-123_Diode)
(libsource (lib ugl) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5011B8AC))
(comp (ref D51)
(value DIODE)
(footprint UGL:SOD-123_Diode)
(libsource (lib ugl) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5011B8CB))
(comp (ref D52)
(value DIODE)
(footprint UGL:SOD-123_Diode)
(libsource (lib ugl) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5011B8D2))
(comp (ref D53)
(value DIODE)
(footprint UGL:SOD-123_Diode)
(libsource (lib ugl) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5011B8DA))
(comp (ref D54)
(value DIODE)
(footprint UGL:SOD-123_Diode)
(libsource (lib ugl) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5011B8E0))
(comp (ref D55)
(value DIODE)
(footprint UGL:SOD-123_Diode)
(libsource (lib ugl) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5011B8E6))
(comp (ref D56)
(value DIODE)
(footprint UGL:SOD-123_Diode)
(libsource (lib ugl) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5011B8EC))
(comp (ref D11)
(value DIODE)
(footprint UGL:SOD-123_Diode)
(libsource (lib ugl) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 50103655))
(comp (ref D12)
(value DIODE)
(footprint UGL:SOD-123_Diode)
(libsource (lib ugl) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5011B49B))
(comp (ref SW11)
(value `)
(footprint UGL:Cherry_MX_Matias_Hybrid)
(libsource (lib ugl) (part SPST))
(sheetpath (names /) (tstamps /))
(tstamp 512E8C90))
(comp (ref SW21)
(value TAB)
(footprint UGL:Cherry_MX_Matias_Hybrid)
(libsource (lib ugl) (part SPST))
(sheetpath (names /) (tstamps /))
(tstamp 512E90C4))
(comp (ref SW12)
(value 1)
(footprint UGL:Cherry_MX_Matias_Hybrid)
(libsource (lib ugl) (part SPST))
(sheetpath (names /) (tstamps /))
(tstamp 512E928F))
(comp (ref SW13)
(value 2)
(footprint UGL:Cherry_MX_Matias_Hybrid)
(libsource (lib ugl) (part SPST))
(sheetpath (names /) (tstamps /))
(tstamp 512E96BC))
(comp (ref SW14)
(value 3)
(footprint UGL:Cherry_MX_Matias_Hybrid)
(libsource (lib ugl) (part SPST))
(sheetpath (names /) (tstamps /))
(tstamp 512E9870))
(comp (ref SW15)
(value 4)
(footprint UGL:Cherry_MX_Matias_Hybrid)
(libsource (lib ugl) (part SPST))
(sheetpath (names /) (tstamps /))
(tstamp 512E9AE1))
(comp (ref SW16)
(value 5)
(footprint UGL:Cherry_MX_Matias_Hybrid)
(libsource (lib ugl) (part SPST))
(sheetpath (names /) (tstamps /))
(tstamp 512E9D6F))
(comp (ref SW22)
(value Q)
(footprint UGL:Cherry_MX_Matias_Hybrid)
(libsource (lib ugl) (part SPST))
(sheetpath (names /) (tstamps /))
(tstamp 512EA010))
(comp (ref SW23)
(value W)
(footprint UGL:Cherry_MX_Matias_Hybrid)
(libsource (lib ugl) (part SPST))
(sheetpath (names /) (tstamps /))
(tstamp 512EA0FD))
(comp (ref SW17)
(value 6)
(footprint UGL:Cherry_MX_Matias_Hybrid)
(libsource (lib ugl) (part SPST))
(sheetpath (names /) (tstamps /))
(tstamp 512EA103))
(comp (ref SW24)
(value E)
(footprint UGL:Cherry_MX_Matias_Hybrid)
(libsource (lib ugl) (part SPST))
(sheetpath (names /) (tstamps /))
(tstamp 512EA29C))
(comp (ref SW25)
(value R)
(footprint UGL:Cherry_MX_Matias_Hybrid)
(libsource (lib ugl) (part SPST))
(sheetpath (names /) (tstamps /))
(tstamp 512EA7E0))
(comp (ref SW27)
(value T)
(footprint UGL:Cherry_MX_Matias_Hybrid_Left_Pin)
(libsource (lib ugl) (part SPST))
(sheetpath (names /) (tstamps /))
(tstamp 512EA973))
(comp (ref SW31)
(value MOUSE)
(footprint UGL:Cherry_MX_Matias_Hybrid)
(libsource (lib ugl) (part SPST))
(sheetpath (names /) (tstamps /))
(tstamp 512EADA8))
(comp (ref SW32)
(value A)
(footprint UGL:Cherry_MX_Matias_Hybrid)
(libsource (lib ugl) (part SPST))
(sheetpath (names /) (tstamps /))
(tstamp 512EAE62))
(comp (ref SW33)
(value S)
(footprint UGL:Cherry_MX_Matias_Hybrid)
(libsource (lib ugl) (part SPST))
(sheetpath (names /) (tstamps /))
(tstamp 512EAE68))
(comp (ref SW34)
(value D)
(footprint UGL:Cherry_MX_Matias_Hybrid)
(libsource (lib ugl) (part SPST))
(sheetpath (names /) (tstamps /))
(tstamp 512EAE6E))
(comp (ref SW35)
(value F)
(footprint UGL:Cherry_MX_Matias_Hybrid)
(libsource (lib ugl) (part SPST))
(sheetpath (names /) (tstamps /))
(tstamp 512EAE74))
(comp (ref SW37)
(value G)
(footprint UGL:Cherry_MX_Matias_Hybrid)
(libsource (lib ugl) (part SPST))
(sheetpath (names /) (tstamps /))
(tstamp 512EAE7A))
(comp (ref SW412)
(value L_SHIFT)
(footprint UGL:Cherry_MX_Matias_Hybrid_ANSI_Shift)
(libsource (lib ugl) (part SPST))
(sheetpath (names /) (tstamps /))
(tstamp 512EB903))
(comp (ref SW42)
(value <)
(footprint UGL:Cherry_MX_Matias_Hybrid_Right_Pin)
(libsource (lib ugl) (part SPST))
(sheetpath (names /) (tstamps /))
(tstamp 512EB909))
(comp (ref SW43)
(value Z)
(footprint UGL:Cherry_MX_Matias_Hybrid)
(libsource (lib ugl) (part SPST))
(sheetpath (names /) (tstamps /))
(tstamp 512EB90F))
(comp (ref SW44)
(value X)
(footprint UGL:Cherry_MX_Matias_Hybrid)
(libsource (lib ugl) (part SPST))
(sheetpath (names /) (tstamps /))
(tstamp 512EB915))
(comp (ref SW45)
(value C)
(footprint UGL:Cherry_MX_Matias_Hybrid)
(libsource (lib ugl) (part SPST))
(sheetpath (names /) (tstamps /))
(tstamp 512EB91B))
(comp (ref SW46)
(value V)
(footprint UGL:Cherry_MX_Matias_Hybrid)
(libsource (lib ugl) (part SPST))
(sheetpath (names /) (tstamps /))
(tstamp 512EB921))
(comp (ref SW51)
(value L_CTRL)
(footprint UGL:Cherry_MX_Matias_Hybrid)
(libsource (lib ugl) (part SPST))
(sheetpath (names /) (tstamps /))
(tstamp 512EC393))
(comp (ref SW52)
(value L_SUPER)
(footprint UGL:Cherry_MX_Matias_Hybrid)
(libsource (lib ugl) (part SPST))
(sheetpath (names /) (tstamps /))
(tstamp 512EC399))
(comp (ref SW53)
(value L_ALT)
(footprint UGL:Cherry_MX_Matias_Hybrid)
(libsource (lib ugl) (part SPST))
(sheetpath (names /) (tstamps /))
(tstamp 512EC39F))
(comp (ref SW54)
(value L_FN)
(footprint UGL:Cherry_MX_Matias_Hybrid)
(libsource (lib ugl) (part SPST))
(sheetpath (names /) (tstamps /))
(tstamp 512EC3A5))
(comp (ref SW55)
(value L_SPACE)
(footprint UGL:SS-01D)
(libsource (lib ugl) (part SPST))
(sheetpath (names /) (tstamps /))
(tstamp 512EC3AB))
(comp (ref SW56)
(value L_MOD)
(footprint UGL:Cherry_MX_Matias_Hybrid)
(libsource (lib ugl) (part SPST))
(sheetpath (names /) (tstamps /))
(tstamp 512EC3B1))
(comp (ref P3)
(value 3220-10-0100-00)
(footprint UGL:2x5_0.05_pitch_pin_shrouded_header_min)
(libsource (lib ugl) (part CONN_10))
(sheetpath (names /) (tstamps /))
(tstamp 5130F33C))
(comp (ref R30)
(value 100K)
(footprint UGL:SM0805)
(libsource (lib ugl) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 51346274))
(comp (ref C4)
(value 0.1uF)
(footprint UGL:SM0805)
(libsource (lib ugl) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5134D4EB))
(comp (ref C11)
(value 0.1uF)
(footprint UGL:SM0603)
(libsource (lib ugl) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 51C91DDE))
(comp (ref P5)
(value 51281-1094)
(footprint UGL:FFC_Connector_51281-1094)
(libsource (lib ugl) (part CONN_10))
(sheetpath (names /) (tstamps /))
(tstamp 52A33478))
(comp (ref SW411)
(value L_SHIFT)
(footprint UGL:Cherry_MX_Matias_Hybrid_Left_Pin)
(libsource (lib ugl) (part SPST))
(sheetpath (names /) (tstamps /))
(tstamp 552D126D))
(comp (ref SW47)
(value B)
(footprint UGL:Cherry_MX_Matias_Hybrid)
(libsource (lib ugl) (part SPST))
(sheetpath (names /) (tstamps /))
(tstamp 552D64DE))
(comp (ref D47)
(value DIODE)
(footprint UGL:SOD-123_Diode)
(libsource (lib ugl) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 552D6592))
(comp (ref D112)
(value LED)
(footprint UGL:Cherry_MX_LED)
(libsource (lib ugl) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 5746726A))
(comp (ref D122)
(value LED)
(footprint UGL:Cherry_MX_LED)
(libsource (lib ugl) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 5747B682))
(comp (ref D132)
(value LED)
(footprint UGL:Cherry_MX_LED)
(libsource (lib ugl) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 5747EA7F))
(comp (ref D142)
(value LED)
(footprint UGL:Cherry_MX_LED)
(libsource (lib ugl) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 5747EC6B))
(comp (ref D152)
(value LED)
(footprint UGL:Cherry_MX_LED)
(libsource (lib ugl) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 5747EE5A))
(comp (ref D113)
(value LED)
(footprint UGL:Cherry_MX_LED)
(libsource (lib ugl) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 5747F859))
(comp (ref D123)
(value LED)
(footprint UGL:Cherry_MX_LED)
(libsource (lib ugl) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 5748038B))
(comp (ref D133)
(value LED)
(footprint UGL:Cherry_MX_LED)
(libsource (lib ugl) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 57480574))
(comp (ref D143)
(value LED)
(footprint UGL:Cherry_MX_LED)
(libsource (lib ugl) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 57480764))
(comp (ref D153)
(value LED)
(footprint UGL:Cherry_MX_LED)
(libsource (lib ugl) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 57480953))
(comp (ref D114)
(value LED)
(footprint UGL:Cherry_MX_LED)
(libsource (lib ugl) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 5748178E))
(comp (ref D124)
(value LED)
(footprint UGL:Cherry_MX_LED)
(libsource (lib ugl) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 574820B8))
(comp (ref D134)
(value LED)
(footprint UGL:Cherry_MX_LED)
(libsource (lib ugl) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 574822A1))
(comp (ref D144)
(value LED)
(footprint UGL:Cherry_MX_LED)
(libsource (lib ugl) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 57482499))
(comp (ref D154)
(value LED)
(footprint UGL:Cherry_MX_LED)
(libsource (lib ugl) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 57482688))
(comp (ref D115)
(value LED)
(footprint UGL:Cherry_MX_LED)
(libsource (lib ugl) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 574841B9))
(comp (ref D125)
(value LED)
(footprint UGL:Cherry_MX_LED)
(libsource (lib ugl) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 574843A9))
(comp (ref D135)
(value LED)
(footprint UGL:Cherry_MX_LED)
(libsource (lib ugl) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 57484592))
(comp (ref D145)
(value LED)
(footprint UGL:Cherry_MX_LED)
(libsource (lib ugl) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 5748477E))
(comp (ref D116)
(value LED)
(footprint UGL:Cherry_MX_LED)
(libsource (lib ugl) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 57486374))
(comp (ref D146)
(value LED)
(footprint UGL:Cherry_MX_LED)
(libsource (lib ugl) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 57486E11))
(comp (ref D156)
(value LED)
(footprint UGL:Cherry_MX_LED)
(libsource (lib ugl) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 574870AA))
(comp (ref D117)
(value LED)
(footprint UGL:Cherry_MX_LED)
(libsource (lib ugl) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 57487969))
(comp (ref D127)
(value LED)
(footprint UGL:Cherry_MX_LED)
(libsource (lib ugl) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 57487DD4))
(comp (ref D137)
(value LED)
(footprint UGL:Cherry_MX_LED)
(libsource (lib ugl) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 57487FC0))
(comp (ref D147)
(value LED)
(footprint UGL:Cherry_MX_LED)
(libsource (lib ugl) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 574881B3))
(comp (ref D121)
(value LED)
(footprint UGL:Cherry_MX_LED)
(libsource (lib ugl) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 5748A9F0))
(comp (ref D131)
(value LED)
(footprint UGL:Cherry_MX_LED)
(libsource (lib ugl) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 5748ABD9))
(comp (ref D1412)
(value LED)
(footprint UGL:Cherry_MX_LED_ANSI_Shift)
(libsource (lib ugl) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 5748ADC5))
(comp (ref D151)
(value LED)
(footprint UGL:Cherry_MX_LED)
(libsource (lib ugl) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 5748AFB4))
(comp (ref D1411)
(value LED)
(footprint UGL:Cherry_MX_LED_ISO_Shift)
(libsource (lib ugl) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 574A8764))
(comp (ref D111)
(value LED)
(footprint UGL:Cherry_MX_LED)
(libsource (lib ugl) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 5748A800))
(comp (ref U2)
(value IS31FL3731)
(footprint UGL:SSOP-28)
(fields
(field (name Field4) Dual-row))
(libsource (lib ugl) (part IS31FL3731))
(sheetpath (names /) (tstamps /))
(tstamp 5764F0BA))
(comp (ref R20)
(value 4.7K)
(footprint UGL:SM0805)
(libsource (lib ugl) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 574A66D0))
(comp (ref R21)
(value 100K)
(footprint UGL:SM0805)
(libsource (lib ugl) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 574BF707))
(comp (ref SW1)
(value CT05-3050-G1)
(footprint UGL:Reed_Switch_CT05-3050-G1)
(libsource (lib ugl) (part SPST))
(sheetpath (names /) (tstamps /))
(tstamp 5768B03A))
(comp (ref R4)
(value 47)
(footprint UGL:SM0805)
(libsource (lib ugl) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5768A623))
(comp (ref C5)
(value 0.1uF)
(footprint UGL:SM0805)
(libsource (lib ugl) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5768A624))
(comp (ref C6)
(value 0.1uF)
(footprint UGL:SM0805)
(libsource (lib ugl) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5768A625))
(comp (ref P2)
(value CONN_5)
(footprint UGL:UHK_Connector_Left_PCB)
(libsource (lib ugl) (part CONN_5))
(sheetpath (names /) (tstamps /))
(tstamp 5768A627))
(comp (ref P1)
(value A-2004-3-4-LP-N-R)
(footprint UGL:4P4C_Jack_A-2004-3-4-LP-N-R)
(libsource (lib ugl) (part CONN_4))
(sheetpath (names /) (tstamps /))
(tstamp 5768A62E))
(comp (ref R5)
(value 47)
(footprint UGL:SM0805)
(libsource (lib ugl) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5768A630))
(comp (ref R6)
(value 47)
(footprint UGL:SM0805)
(libsource (lib ugl) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5768A631))
(comp (ref C7)
(value 0.1uF)
(footprint UGL:SM0805)
(libsource (lib ugl) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5768A632))
(comp (ref C8)
(value 0.1uF)
(footprint UGL:SM0805)
(libsource (lib ugl) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5768A633))
(comp (ref R7)
(value 47)
(footprint UGL:SM0805)
(libsource (lib ugl) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5768A63A))
(comp (ref P4)
(value CONN_6)
(footprint UGL:Tag_Connect_2x3_Header_No_Legs)
(libsource (lib ugl) (part CONN_6))
(sheetpath (names /) (tstamps /))
(tstamp 5768A63C))
(comp (ref C3)
(value 0.1uF)
(footprint UGL:SM0805)
(libsource (lib ugl) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5753AF22))
(comp (ref C1)
(value 1uF)
(footprint UGL:SM0805)
(libsource (lib ugl) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 57596072))
(comp (ref C2)
(value 1uF)
(footprint UGL:SM0805)
(libsource (lib ugl) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 57597A6D))
(comp (ref C9)
(value 1uF)
(footprint UGL:SM0603)
(libsource (lib ugl) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5759A63B))
(comp (ref U3)
(value ESD)
(footprint UGL:SC-74-TVS)
(libsource (lib ugl) (part ZENER))
(sheetpath (names /) (tstamps /))
(tstamp 57691D61))
(comp (ref U4)
(value ESD)
(footprint UGL:SC-74-TVS)
(libsource (lib ugl) (part ZENER))
(sheetpath (names /) (tstamps /))
(tstamp 576A1319))
(comp (ref VR1)
(value AZ1117E)
(footprint UGL:SOT-223)
(libsource (lib ugl) (part AZ1117E))
(sheetpath (names /) (tstamps /))
(tstamp 57733360))
(comp (ref C10)
(value 1uF)
(footprint UGL:SM0805)
(libsource (lib ugl) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 57738DD9))
(comp (ref C12)
(value 1uF)
(footprint UGL:SM0805)
(libsource (lib ugl) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 577395C1))
(comp (ref R1)
(value 4.7K)
(footprint UGL:SM0805)
(libsource (lib ugl) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5778146F))
(comp (ref R2)
(value 330)
(footprint UGL:SM0805)
(libsource (lib ugl) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 577F1EDC))
(comp (ref D2)
(value LED)
(footprint UGL:SM0805_Diode)
(libsource (lib ugl) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 577F2A5A))
(comp (ref P7)
(value CONN_6)
(footprint UGL:Tag_Connect_2x3_Header_With_Legs)
(libsource (lib ugl) (part CONN_6))
(sheetpath (names /) (tstamps /))
(tstamp 5781AB6F))
(comp (ref P6)
(value CONN_5)
(footprint UGL:1x5_pin_unshrouded_header)
(libsource (lib ugl) (part CONN_5))
(sheetpath (names /) (tstamps /))
(tstamp 57A47FD9))
(comp (ref TP_KEYS_ROW1)
(value KEYS_ROW1)
(footprint UGL:Test_Point)
(libsource (lib ugl) (part TEST_POINT))
(sheetpath (names /) (tstamps /))
(tstamp 58192ECE))
(comp (ref TP_KEYS_ROW2)
(value KEYS_ROW2)
(footprint UGL:Test_Point)
(libsource (lib ugl) (part TEST_POINT))
(sheetpath (names /) (tstamps /))
(tstamp 58197BE4))
(comp (ref TP_KEYS_ROW3)
(value KEYS_ROW3)
(footprint UGL:Test_Point)
(libsource (lib ugl) (part TEST_POINT))
(sheetpath (names /) (tstamps /))
(tstamp 5819DFDF))
(comp (ref TP_KEYS_ROW4)
(value KEYS_ROW4)
(footprint UGL:Test_Point)
(libsource (lib ugl) (part TEST_POINT))
(sheetpath (names /) (tstamps /))
(tstamp 5819E2BB))
(comp (ref TP_KEYS_ROW5)
(value KEYS_ROW5)
(footprint UGL:Test_Point)
(libsource (lib ugl) (part TEST_POINT))
(sheetpath (names /) (tstamps /))
(tstamp 5819E50C))
(comp (ref TP_KEYS_COL1)
(value KEYS_COL1)
(footprint UGL:Test_Point)
(libsource (lib ugl) (part TEST_POINT))
(sheetpath (names /) (tstamps /))
(tstamp 581A118D))
(comp (ref TP_KEYS_COL2)
(value KEYS_COL2)
(footprint UGL:Test_Point)
(libsource (lib ugl) (part TEST_POINT))
(sheetpath (names /) (tstamps /))
(tstamp 581A16C6))
(comp (ref TP_KEYS_COL3)
(value KEYS_COL3)
(footprint UGL:Test_Point)
(libsource (lib ugl) (part TEST_POINT))
(sheetpath (names /) (tstamps /))
(tstamp 581A1923))
(comp (ref TP_KEYS_COL4)
(value KEYS_COL4)
(footprint UGL:Test_Point)
(libsource (lib ugl) (part TEST_POINT))
(sheetpath (names /) (tstamps /))
(tstamp 581A1B84))
(comp (ref TP_KEYS_COL5)
(value KEYS_COL5)
(footprint UGL:Test_Point)
(libsource (lib ugl) (part TEST_POINT))
(sheetpath (names /) (tstamps /))
(tstamp 581A1DEF))
(comp (ref TP_KEYS_COL6)
(value KEYS_COL6)
(footprint UGL:Test_Point)
(libsource (lib ugl) (part TEST_POINT))
(sheetpath (names /) (tstamps /))
(tstamp 581A2058))
(comp (ref TP_KEYS_COL7)
(value KEYS_COL7)
(footprint UGL:Test_Point)
(libsource (lib ugl) (part TEST_POINT))
(sheetpath (names /) (tstamps /))
(tstamp 581A22C9))
(comp (ref TP_CA1)
(value CA1)
(footprint UGL:Test_Point)
(libsource (lib ugl) (part TEST_POINT))
(sheetpath (names /) (tstamps /))
(tstamp 5819C738))
(comp (ref TP_CA2)
(value CA2)
(footprint UGL:Test_Point)
(libsource (lib ugl) (part TEST_POINT))
(sheetpath (names /) (tstamps /))
(tstamp 581A2D82))
(comp (ref TP_CA3)
(value CA3)
(footprint UGL:Test_Point)
(libsource (lib ugl) (part TEST_POINT))
(sheetpath (names /) (tstamps /))
(tstamp 581A2FFB))
(comp (ref TP_CA4)
(value CA4)
(footprint UGL:Test_Point)
(libsource (lib ugl) (part TEST_POINT))
(sheetpath (names /) (tstamps /))
(tstamp 581A3278))
(comp (ref TP_CA5)
(value CA5)
(footprint UGL:Test_Point)
(libsource (lib ugl) (part TEST_POINT))
(sheetpath (names /) (tstamps /))
(tstamp 581A34F9))
(comp (ref TP_CA6)
(value CA6)
(footprint UGL:Test_Point)
(libsource (lib ugl) (part TEST_POINT))
(sheetpath (names /) (tstamps /))
(tstamp 581A377E))
(comp (ref TP_CA7)
(value CA7)
(footprint UGL:Test_Point)
(libsource (lib ugl) (part TEST_POINT))
(sheetpath (names /) (tstamps /))
(tstamp 581A3A07))
(comp (ref TP_CA8)
(value CA8)
(footprint UGL:Test_Point)
(libsource (lib ugl) (part TEST_POINT))
(sheetpath (names /) (tstamps /))
(tstamp 581A3C94))
(comp (ref TP_TEST_LED1)
(value TEST_LED)
(footprint UGL:Test_Point)
(libsource (lib ugl) (part TEST_POINT))
(sheetpath (names /) (tstamps /))
(tstamp 581BFDD1))
(comp (ref TP_SWDIO1)
(value SWDIO)
(footprint UGL:Test_Point)
(libsource (lib ugl) (part TEST_POINT))
(sheetpath (names /) (tstamps /))
(tstamp 581BFDBC))
(comp (ref TP_SWDCLK1)
(value SWDCLK)
(footprint UGL:Test_Point)
(libsource (lib ugl) (part TEST_POINT))
(sheetpath (names /) (tstamps /))
(tstamp 581BFDC3))
(comp (ref TP_SDB1)
(value SDB)
(footprint UGL:Test_Point)
(libsource (lib ugl) (part TEST_POINT))
(sheetpath (names /) (tstamps /))
(tstamp 581BFDDF))
(comp (ref TP_SDA1)
(value SDA)
(footprint UGL:Test_Point)
(libsource (lib ugl) (part TEST_POINT))
(sheetpath (names /) (tstamps /))
(tstamp 581BFDAE))
(comp (ref TP_SCL1)
(value SCL)
(footprint UGL:Test_Point)
(libsource (lib ugl) (part TEST_POINT))
(sheetpath (names /) (tstamps /))
(tstamp 581BFDB5))
(comp (ref TP_RESET1)
(value RESET)
(footprint UGL:Test_Point)
(libsource (lib ugl) (part TEST_POINT))
(sheetpath (names /) (tstamps /))
(tstamp 581BFDCA))
(comp (ref TP_INTB1)
(value INTB)
(footprint UGL:Test_Point)
(libsource (lib ugl) (part TEST_POINT))
(sheetpath (names /) (tstamps /))
(tstamp 581BFDD8))
(comp (ref TP_5V1)
(value 5V)
(footprint UGL:Test_Point)
(libsource (lib ugl) (part TEST_POINT))
(sheetpath (names /) (tstamps /))
(tstamp 5823E5BA))
(comp (ref TP_3.3V1)
(value 3.3V)
(footprint UGL:Test_Point)
(libsource (lib ugl) (part TEST_POINT))
(sheetpath (names /) (tstamps /))
(tstamp 5823F49C))
(comp (ref TP_GND1)
(value GND)
(footprint UGL:Test_Point)
(libsource (lib ugl) (part TEST_POINT))
(sheetpath (names /) (tstamps /))
(tstamp 5823F8EE))
(comp (ref TP_R_EXT1)
(value R_EXT)
(footprint UGL:Test_Point)
(libsource (lib ugl) (part TEST_POINT))
(sheetpath (names /) (tstamps /))
(tstamp 58268AE8))
(comp (ref TP_TEST_LED_R1)
(value TEST_LED_R)
(footprint UGL:Test_Point)