-
Notifications
You must be signed in to change notification settings - Fork 159
/
discipline-pcb.net
1802 lines (1802 loc) · 65.1 KB
/
discipline-pcb.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:\Users\bryan\OneDrive\github\discipline\discipline-pcb.sch)
(date "10/11/2019 9:37:03 PM")
(tool "Eeschema (5.1.4)-1")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title)
(company)
(rev)
(date)
(source discipline-pcb.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref SW1)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5BDAA9A5))
(comp (ref D1)
(value " ")
(footprint Diode_THT:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5BDAAA52))
(comp (ref SW2)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5BDB3743))
(comp (ref D2)
(value " ")
(footprint Diode_THT:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5BDB374A))
(comp (ref SW3)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5BDB4A41))
(comp (ref D3)
(value " ")
(footprint Diode_THT:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5BDB4A48))
(comp (ref SW4)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5BDB5E7B))
(comp (ref D4)
(value " ")
(footprint Diode_THT:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5BDB5E82))
(comp (ref SW5)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5BDB746A))
(comp (ref D5)
(value " ")
(footprint Diode_THT:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5BDB7471))
(comp (ref SW6)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5BDB8AF4))
(comp (ref D6)
(value " ")
(footprint Diode_THT:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5BDB8AFB))
(comp (ref SW7)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5BDBA2A7))
(comp (ref D7)
(value " ")
(footprint Diode_THT:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5BDBA2AE))
(comp (ref SW8)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5BDC4F87))
(comp (ref D8)
(value " ")
(footprint Diode_THT:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5BDC4F8E))
(comp (ref SW9)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5BDC6958))
(comp (ref D9)
(value " ")
(footprint Diode_THT:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5BDC695F))
(comp (ref SW10)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5BDC8400))
(comp (ref D10)
(value " ")
(footprint Diode_THT:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5BDC8407))
(comp (ref SW11)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5BDC9FAD))
(comp (ref D11)
(value " ")
(footprint Diode_THT:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5BDC9FB4))
(comp (ref SW12)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5BDCBC8D))
(comp (ref D12)
(value " ")
(footprint Diode_THT:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5BDCBC94))
(comp (ref SW13)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5BDCDA46))
(comp (ref D13)
(value " ")
(footprint Diode_THT:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5BDCDA4D))
(comp (ref SW14)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_2.00u_PCBNOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5BDCF8D2))
(comp (ref D14)
(value " ")
(footprint Diode_THT:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5BDCF8D9))
(comp (ref SW15)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5BDD186B))
(comp (ref D15)
(value " ")
(footprint Diode_THT:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5BDD1872))
(comp (ref SW16)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.50u_PCBNOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5BDD4A79))
(comp (ref D16)
(value " ")
(footprint Diode_THT:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5BDD4A80))
(comp (ref SW17)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5BDD4A89))
(comp (ref D17)
(value " ")
(footprint Diode_THT:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5BDD4A90))
(comp (ref SW18)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5BDD4A99))
(comp (ref D18)
(value " ")
(footprint Diode_THT:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5BDD4AA0))
(comp (ref SW19)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5BDD4AA9))
(comp (ref D19)
(value " ")
(footprint Diode_THT:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5BDD4AB0))
(comp (ref SW20)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5BDD4AB9))
(comp (ref D20)
(value " ")
(footprint Diode_THT:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5BDD4AC0))
(comp (ref SW21)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5BDD4AC9))
(comp (ref D21)
(value " ")
(footprint Diode_THT:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5BDD4AD0))
(comp (ref SW22)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5BDD4AD9))
(comp (ref D22)
(value " ")
(footprint Diode_THT:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5BDD4AE0))
(comp (ref SW23)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5BDD4AE9))
(comp (ref D23)
(value " ")
(footprint Diode_THT:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5BDD4AF0))
(comp (ref SW24)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5BDD4AF9))
(comp (ref D24)
(value " ")
(footprint Diode_THT:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5BDD4B00))
(comp (ref SW25)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5BDD4B09))
(comp (ref D25)
(value " ")
(footprint Diode_THT:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5BDD4B10))
(comp (ref SW26)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5BDD4B19))
(comp (ref D26)
(value " ")
(footprint Diode_THT:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5BDD4B20))
(comp (ref SW27)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5BDD4B29))
(comp (ref D27)
(value " ")
(footprint Diode_THT:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5BDD4B30))
(comp (ref SW28)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5BDD4B39))
(comp (ref D28)
(value " ")
(footprint Diode_THT:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5BDD4B40))
(comp (ref SW29)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.50u_PCBNOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5BDD4B49))
(comp (ref D29)
(value " ")
(footprint Diode_THT:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5BDD4B50))
(comp (ref SW30)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5BDD4B59))
(comp (ref D30)
(value " ")
(footprint Diode_THT:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5BDD4B60))
(comp (ref SW31)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.75u_PCBNOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5BE2E393))
(comp (ref D31)
(value " ")
(footprint Diode_THT:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5BE2E39A))
(comp (ref SW32)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5BE2E3A3))
(comp (ref D32)
(value " ")
(footprint Diode_THT:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5BE2E3AA))
(comp (ref SW33)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5BE2E3B3))
(comp (ref D33)
(value " ")
(footprint Diode_THT:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5BE2E3BA))
(comp (ref SW34)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5BE2E3C3))
(comp (ref D34)
(value " ")
(footprint Diode_THT:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5BE2E3CA))
(comp (ref SW35)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5BE2E3D3))
(comp (ref D35)
(value " ")
(footprint Diode_THT:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5BE2E3DA))
(comp (ref SW36)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5BE2E3E3))
(comp (ref D36)
(value " ")
(footprint Diode_THT:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5BE2E3EA))
(comp (ref SW37)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5BE2E3F3))
(comp (ref D37)
(value " ")
(footprint Diode_THT:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5BE2E3FA))
(comp (ref SW38)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5BE2E403))
(comp (ref D38)
(value " ")
(footprint Diode_THT:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5BE2E40A))
(comp (ref SW39)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5BE2E413))
(comp (ref D39)
(value " ")
(footprint Diode_THT:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5BE2E41A))
(comp (ref SW40)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5BE2E423))
(comp (ref D40)
(value " ")
(footprint Diode_THT:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5BE2E42A))
(comp (ref SW41)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5BE2E433))
(comp (ref D41)
(value " ")
(footprint Diode_THT:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5BE2E43A))
(comp (ref SW42)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5BE2E443))
(comp (ref D42)
(value " ")
(footprint Diode_THT:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5BE2E44A))
(comp (ref SW43)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_2.25u_PCBNOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5BE2E453))
(comp (ref D43)
(value " ")
(footprint Diode_THT:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5BE2E45A))
(comp (ref SW44)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5BE2E463))
(comp (ref D44)
(value " ")
(footprint Diode_THT:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5BE2E46A))
(comp (ref SW45)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_2.25u_PCBNOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5BE34833))
(comp (ref D45)
(value " ")
(footprint Diode_THT:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5BE3483A))
(comp (ref SW46)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5BE34843))
(comp (ref D46)
(value " ")
(footprint Diode_THT:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5BE3484A))
(comp (ref SW47)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5BE34853))
(comp (ref D47)
(value " ")
(footprint Diode_THT:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5BE3485A))
(comp (ref SW48)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5BE34863))
(comp (ref D48)
(value " ")
(footprint Diode_THT:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5BE3486A))
(comp (ref SW49)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5BE34873))
(comp (ref D49)
(value " ")
(footprint Diode_THT:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5BE3487A))
(comp (ref SW50)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5BE34883))
(comp (ref D50)
(value " ")
(footprint Diode_THT:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5BE3488A))
(comp (ref SW51)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5BE34893))
(comp (ref D51)
(value " ")
(footprint Diode_THT:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5BE3489A))
(comp (ref SW52)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5BE348A3))
(comp (ref D52)
(value " ")
(footprint Diode_THT:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5BE348AA))
(comp (ref SW53)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5BE348B3))
(comp (ref D53)
(value " ")
(footprint Diode_THT:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5BE348BA))
(comp (ref SW54)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5BE348C3))
(comp (ref D54)
(value " ")
(footprint Diode_THT:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5BE348CA))
(comp (ref SW55)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5BE348D3))
(comp (ref D55)
(value " ")
(footprint Diode_THT:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5BE348DA))
(comp (ref SW56)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.75u_PCBNOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5BE348E3))
(comp (ref D56)
(value " ")
(footprint Diode_THT:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5BE348EA))
(comp (ref SW57)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5BE348F3))
(comp (ref D57)
(value " ")
(footprint Diode_THT:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5BE348FA))
(comp (ref SW58)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5BE34903))
(comp (ref D58)
(value " ")
(footprint Diode_THT:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5BE3490A))
(comp (ref SW59)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.25u_PCBNOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5BE64C5B))
(comp (ref D59)
(value " ")
(footprint Diode_THT:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5BE64C62))
(comp (ref SW60)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.25u_PCBNOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5BE64C6A))
(comp (ref D60)
(value " ")
(footprint Diode_THT:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5BE64C71))
(comp (ref SW61)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.25u_PCBNOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5BE64C7A))
(comp (ref D61)
(value " ")
(footprint Diode_THT:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5BE64C81))
(comp (ref SW62)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5BE7F31E))
(comp (ref D62)
(value " ")
(footprint Diode_THT:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5BE7F325))
(comp (ref SW63)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.25u_PCBNOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5BE881B1))
(comp (ref D63)
(value " ")
(footprint Diode_THT:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5BE881B8))
(comp (ref SW64)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.25u_PCBNOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5BE881C1))
(comp (ref D64)
(value " ")
(footprint Diode_THT:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5BE881C8))
(comp (ref SW65)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5BE881D1))
(comp (ref D65)
(value " ")
(footprint Diode_THT:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5BE881D8))
(comp (ref SW66)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5BE881E1))
(comp (ref D66)
(value " ")
(footprint Diode_THT:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5BE881E8))
(comp (ref SW67)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5BE881F1))
(comp (ref D67)
(value " ")
(footprint Diode_THT:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5BE881F8))
(comp (ref SW68)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D067388))
(comp (ref D68)
(value " ")
(footprint Diode_THT:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5D06738E))
(comp (ref R1)
(value 5.1k)
(footprint Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D059885))
(comp (ref R2)
(value 5.1k)
(footprint Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D059DB7))
(comp (ref USB1)
(value USB_C_GCT_USB4085)
(footprint Type-C:USB_C_GCT_USB4085)
(libsource (lib Type-C) (part USB_C_GCT_USB4085) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D127DE0))
(comp (ref U1)
(value ATmega32A-PU)
(footprint Package_DIP:DIP-40_W15.24mm)
(datasheet http://ww1.microchip.com/downloads/en/DeviceDoc/atmel-8155-8-bit-microcontroller-avr-atmega32a_datasheet.pdf)
(libsource (lib discipline-pcb-rescue) (part ATmega32A-PU-MCU_Microchip_ATmega) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D1828C7))
(comp (ref R3)
(value 75R)
(footprint Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D1C25EC))
(comp (ref R4)
(value 75R)
(footprint Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D1C27D1))
(comp (ref Y1)
(value Crystal)
(footprint Crystal:Crystal_HC49-4H_Vertical)
(datasheet ~)
(libsource (lib Device) (part Crystal) (description "Two pin crystal"))
(sheetpath (names /) (tstamps /))
(tstamp 5D1F9BED))
(comp (ref C2)
(value 22p)
(footprint Capacitor_THT:C_Disc_D3.0mm_W1.6mm_P2.50mm)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D22BD08))
(comp (ref C1)
(value 22p)
(footprint Capacitor_THT:C_Disc_D3.0mm_W1.6mm_P2.50mm)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D22BE46))
(comp (ref D69)
(value 3.6V)
(footprint Diode_THT:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Zener_Small) (description "Zener diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D184B7B))
(comp (ref D70)
(value 3.6V)
(footprint Diode_THT:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Zener_Small) (description "Zener diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D184D75))
(comp (ref R5)
(value 1.5k)
(footprint Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D2B8CD8))
(comp (ref F1)
(value 500mA)
(footprint keyboard_parts:polyfuse_5.1mm)
(datasheet ~)
(libsource (lib Device) (part Polyfuse_Small) (description "Resettable fuse, polymeric positive temperature coefficient, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D2F73B7))
(comp (ref C3)
(value 4.7u)
(footprint Capacitor_THT:CP_Radial_D4.0mm_P1.50mm)
(datasheet ~)
(libsource (lib Device) (part CP1_Small) (description "Polarized capacitor, small US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D175B8C))
(comp (ref C4)
(value 0.1u)