-
Notifications
You must be signed in to change notification settings - Fork 40
/
HHKB_controller.net
1324 lines (1324 loc) · 45.8 KB
/
HHKB_controller.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/noname/Google Drive/KiCAD/HHKB_controller/HHKB_controller.sch")
(date "Sun 03 Jul 2016 01:30:38 PM JST")
(tool "Eeschema 4.0.2+e4-6225~38~ubuntu16.04.1-stable")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title "HHKB Alt Controller/Bluetooth")
(company TMK)
(rev J)
(date 2016/01)
(source HHKB_controller.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 2) (name /bluetooth/) (tstamps /51AFD396/)
(title_block
(title "HHKB Alt Controller")
(company TMK)
(rev K)
(date 2016/07)
(source bluetooth.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref U1)
(value ATMEGA32U4)
(footprint keyboard_parts:QFP44)
(libsource (lib keyboard_parts) (part ATMEGA32U4))
(sheetpath (names /) (tstamps /))
(tstamp 4EB8BB68))
(comp (ref C4)
(value 1u)
(footprint keyboard_parts:C_1608)
(libsource (lib keyboard_parts) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 4EB8BB67))
(comp (ref C1)
(value 4.7u)
(footprint keyboard_parts:C_3216)
(libsource (lib keyboard_parts) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 4EB8BB66))
(comp (ref C7)
(value 0.1u)
(footprint keyboard_parts:C_1608)
(libsource (lib keyboard_parts) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 4EB8BB65))
(comp (ref C8)
(value 0.1u)
(footprint keyboard_parts:C_1608)
(libsource (lib keyboard_parts) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 4EB8BB64))
(comp (ref C9)
(value 0.1u)
(footprint keyboard_parts:C_1608)
(libsource (lib keyboard_parts) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 4EB8BB63))
(comp (ref R2)
(value 22)
(footprint keyboard_parts:R_1608)
(libsource (lib keyboard_parts) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 4EB8BB62))
(comp (ref R3)
(value 22)
(footprint keyboard_parts:R_1608)
(libsource (lib keyboard_parts) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 4EB8BB61))
(comp (ref R4)
(value 1k)
(footprint keyboard_parts:R_1608)
(libsource (lib keyboard_parts) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 4EB8BB60))
(comp (ref SW1)
(value SW_PUSH)
(footprint keyboard_parts:SW_TACT_TH_HORIZ_LOW)
(libsource (lib keyboard_parts) (part SW_PUSH))
(sheetpath (names /) (tstamps /))
(tstamp 4EB8BB5F))
(comp (ref C5)
(value 22p)
(footprint keyboard_parts:C_1608)
(libsource (lib keyboard_parts) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 4EB8BB59))
(comp (ref C6)
(value 22p)
(footprint keyboard_parts:C_1608)
(libsource (lib keyboard_parts) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 4EB8BB58))
(comp (ref C3)
(value 0.1u)
(footprint keyboard_parts:C_1608)
(libsource (lib keyboard_parts) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 4EB8BB57))
(comp (ref P5)
(value PD1)
(footprint keyboard_parts:PIN_1)
(libsource (lib HHKB_controller-cache) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 517F61E2))
(comp (ref P1)
(value GND)
(footprint keyboard_parts:PIN_1)
(libsource (lib HHKB_controller-cache) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 517F625F))
(comp (ref P2)
(value D+)
(footprint keyboard_parts:PIN_1)
(libsource (lib HHKB_controller-cache) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 517F6275))
(comp (ref P3)
(value D-)
(footprint keyboard_parts:PIN_1)
(libsource (lib HHKB_controller-cache) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 517F6290))
(comp (ref P4)
(value VUSB)
(footprint keyboard_parts:PIN_1_SQUARE)
(libsource (lib HHKB_controller-cache) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 517F629F))
(comp (ref D1)
(value LED)
(footprint keyboard_parts:LED_3020_REFLOW)
(libsource (lib HHKB_controller-cache) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 51863503))
(comp (ref R5)
(value 1.5K)
(footprint keyboard_parts:R_1608)
(libsource (lib keyboard_parts) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 51863512))
(comp (ref CN2)
(value PRO2)
(footprint keyboard_parts:HHKB_PRO2_ZH13)
(libsource (lib HHKB_controller-cache) (part CONN_13))
(sheetpath (names /) (tstamps /))
(tstamp 51978C41))
(comp (ref P6)
(value PD0)
(footprint keyboard_parts:PIN_1)
(libsource (lib HHKB_controller-cache) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 517F61D5))
(comp (ref CN1)
(value JP)
(footprint keyboard_parts:HHKB_JP_HRS_DF14_15P)
(libsource (lib HHKB_controller-cache) (part CONN_15))
(sheetpath (names /) (tstamps /))
(tstamp 51979D97))
(comp (ref P8)
(value CONN_3X2)
(footprint keyboard_parts:AVR_ICSP_3x2)
(libsource (lib keyboard_parts) (part CONN_3X2))
(sheetpath (names /) (tstamps /))
(tstamp 51A80544))
(comp (ref C10)
(value 0.1u)
(footprint keyboard_parts:C_1608)
(libsource (lib keyboard_parts) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 51AD4FB4))
(comp (ref P7)
(value GND)
(footprint keyboard_parts:PIN_1)
(libsource (lib HHKB_controller-cache) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 51B4469E))
(comp (ref Q2)
(value Nch)
(footprint keyboard_parts:MOS_FET_SOT23-3_HSOL)
(libsource (lib HHKB_controller-cache) (part MOSFET_N))
(sheetpath (names /) (tstamps /))
(tstamp 51BB4B25))
(comp (ref R15)
(value 10K)
(footprint keyboard_parts:R_1608)
(libsource (lib keyboard_parts) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 51BB4BFA))
(comp (ref JP3)
(value JUMPER)
(footprint keyboard_parts:SOLDER_JUMPER_2)
(libsource (lib HHKB_controller-cache) (part JUMPER))
(sheetpath (names /) (tstamps /))
(tstamp 51BC02F3))
(comp (ref JP2)
(value JUMPER)
(footprint keyboard_parts:SOLDER_JUMPER_2)
(libsource (lib HHKB_controller-cache) (part JUMPER))
(sheetpath (names /) (tstamps /))
(tstamp 5310256F))
(comp (ref J1)
(value USB_mini_micro_B)
(footprint keyboard_parts:USB_miniB_hirose_new)
(libsource (lib keyboard_parts) (part USB_mini_micro_B))
(sheetpath (names /) (tstamps /))
(tstamp 53485EB0))
(comp (ref PPTC1)
(value PPTC)
(footprint keyboard_parts:PPTC_nano)
(libsource (lib keyboard_parts) (part PPTC))
(sheetpath (names /) (tstamps /))
(tstamp 5417AF4F))
(comp (ref X1)
(value 16MHz)
(footprint keyboard_parts:HC-49_SMT)
(libsource (lib keyboard_parts) (part XTAL))
(sheetpath (names /) (tstamps /))
(tstamp 5453AC44))
(comp (ref P10)
(value CONN_1)
(footprint keyboard_parts:PIN_1)
(libsource (lib HHKB_controller-cache) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 5485F22B))
(comp (ref P9)
(value CONN_1)
(footprint keyboard_parts:PIN_1)
(libsource (lib HHKB_controller-cache) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 5485F339))
(comp (ref P11)
(value CONN_1)
(footprint keyboard_parts:PIN_1)
(libsource (lib HHKB_controller-cache) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 54865141))
(comp (ref P100)
(value LIPO)
(footprint keyboard_parts:JST_PH2_SMT_TH)
(libsource (lib HHKB_controller-cache) (part CONN_2))
(sheetpath (names /bluetooth/) (tstamps /51AFD396/))
(tstamp 51AFD4A8))
(comp (ref U4)
(value MCP73832)
(footprint keyboard_parts:SOT23-5_HSOL)
(libsource (lib keyboard_parts) (part LTC4054))
(sheetpath (names /bluetooth/) (tstamps /51AFD396/))
(tstamp 51AFDC54))
(comp (ref U3)
(value NCP1402SN50)
(footprint keyboard_parts:SOT23-5_HSOL)
(libsource (lib keyboard_parts) (part HT7750A))
(sheetpath (names /bluetooth/) (tstamps /51AFD396/))
(tstamp 51B35E76))
(comp (ref C11)
(value 1u)
(footprint keyboard_parts:C_3216)
(libsource (lib keyboard_parts) (part C))
(sheetpath (names /bluetooth/) (tstamps /51AFD396/))
(tstamp 51B35F33))
(comp (ref C14)
(value 1u)
(footprint keyboard_parts:C_3216)
(libsource (lib keyboard_parts) (part C))
(sheetpath (names /bluetooth/) (tstamps /51AFD396/))
(tstamp 51B35F42))
(comp (ref C15)
(value 10u)
(footprint keyboard_parts:C_3528)
(libsource (lib HHKB_controller-cache) (part CAPAPOL))
(sheetpath (names /bluetooth/) (tstamps /51AFD396/))
(tstamp 51B35F52))
(comp (ref C12)
(value 47u)
(footprint keyboard_parts:C_3528)
(libsource (lib HHKB_controller-cache) (part CAPAPOL))
(sheetpath (names /bluetooth/) (tstamps /51AFD396/))
(tstamp 51B35F61))
(comp (ref L1)
(value 47u)
(footprint keyboard_parts:L_6x6MM)
(libsource (lib HHKB_controller-cache) (part INDUCTOR_SMALL))
(sheetpath (names /bluetooth/) (tstamps /51AFD396/))
(tstamp 51B35FB0))
(comp (ref R6)
(value 10K)
(footprint keyboard_parts:R_1608)
(libsource (lib keyboard_parts) (part R))
(sheetpath (names /bluetooth/) (tstamps /51AFD396/))
(tstamp 51B42421))
(comp (ref R7)
(value 10K)
(footprint keyboard_parts:R_1608)
(libsource (lib keyboard_parts) (part R))
(sheetpath (names /bluetooth/) (tstamps /51AFD396/))
(tstamp 51B42452))
(comp (ref R8)
(value 10K)
(footprint keyboard_parts:R_1608)
(libsource (lib keyboard_parts) (part R))
(sheetpath (names /bluetooth/) (tstamps /51AFD396/))
(tstamp 51B42461))
(comp (ref R9)
(value 15K)
(footprint keyboard_parts:R_1608)
(libsource (lib keyboard_parts) (part R))
(sheetpath (names /bluetooth/) (tstamps /51AFD396/))
(tstamp 51B42470))
(comp (ref D4)
(value LED)
(footprint keyboard_parts:LED_TH)
(libsource (lib HHKB_controller-cache) (part LED))
(sheetpath (names /bluetooth/) (tstamps /51AFD396/))
(tstamp 51B43D8A))
(comp (ref R10)
(value 1K)
(footprint keyboard_parts:R_1608)
(libsource (lib keyboard_parts) (part R))
(sheetpath (names /bluetooth/) (tstamps /51AFD396/))
(tstamp 51B43D99))
(comp (ref R11)
(value Rprog)
(footprint keyboard_parts:R_1608)
(libsource (lib keyboard_parts) (part R))
(sheetpath (names /bluetooth/) (tstamps /51AFD396/))
(tstamp 51B43EF8))
(comp (ref P111)
(value CONN_1)
(footprint keyboard_parts:PIN_1)
(libsource (lib HHKB_controller-cache) (part CONN_1))
(sheetpath (names /bluetooth/) (tstamps /51AFD396/))
(tstamp 51B89482))
(comp (ref P112)
(value CONN_1)
(footprint keyboard_parts:PIN_1)
(libsource (lib HHKB_controller-cache) (part CONN_1))
(sheetpath (names /bluetooth/) (tstamps /51AFD396/))
(tstamp 51B89491))
(comp (ref P110)
(value CONN_1)
(footprint keyboard_parts:PIN_1)
(libsource (lib HHKB_controller-cache) (part CONN_1))
(sheetpath (names /bluetooth/) (tstamps /51AFD396/))
(tstamp 51B89658))
(comp (ref P113)
(value CONN_1)
(footprint keyboard_parts:PIN_1)
(libsource (lib HHKB_controller-cache) (part CONN_1))
(sheetpath (names /bluetooth/) (tstamps /51AFD396/))
(tstamp 51B89667))
(comp (ref P115)
(value CONN_1)
(footprint keyboard_parts:PIN_1)
(libsource (lib HHKB_controller-cache) (part CONN_1))
(sheetpath (names /bluetooth/) (tstamps /51AFD396/))
(tstamp 51B8ABD3))
(comp (ref C18)
(value 4.7u)
(footprint keyboard_parts:C_3216)
(libsource (lib keyboard_parts) (part C))
(sheetpath (names /bluetooth/) (tstamps /51AFD396/))
(tstamp 51B8BF5C))
(comp (ref D2)
(value "Schottky diode")
(footprint keyboard_parts:D_SOD123)
(libsource (lib HHKB_controller-cache) (part DIODESCH))
(sheetpath (names /bluetooth/) (tstamps /51AFD396/))
(tstamp 51B973BC))
(comp (ref Q1)
(value Nch)
(footprint keyboard_parts:MOS_FET_SOT23-3_HSOL)
(libsource (lib HHKB_controller-cache) (part MOSFET_N))
(sheetpath (names /bluetooth/) (tstamps /51AFD396/))
(tstamp 51BB5234))
(comp (ref R17)
(value 10K)
(footprint keyboard_parts:R_1608)
(libsource (lib keyboard_parts) (part R))
(sheetpath (names /bluetooth/) (tstamps /51AFD396/))
(tstamp 51BE9662))
(comp (ref R18)
(value 10K)
(footprint keyboard_parts:R_1608)
(libsource (lib keyboard_parts) (part R))
(sheetpath (names /bluetooth/) (tstamps /51AFD396/))
(tstamp 51BE9671))
(comp (ref U5)
(value RN42)
(footprint keyboard_parts:RN42)
(libsource (lib keyboard_parts) (part RN42))
(sheetpath (names /bluetooth/) (tstamps /51AFD396/))
(tstamp 52B6CBAC))
(comp (ref R16)
(value 10K)
(footprint keyboard_parts:R_1608)
(libsource (lib keyboard_parts) (part R))
(sheetpath (names /bluetooth/) (tstamps /51AFD396/))
(tstamp 52B7F2BF))
(comp (ref R19)
(value F.RST)
(footprint keyboard_parts:R_1608_NOGUIDE)
(libsource (lib keyboard_parts) (part R))
(sheetpath (names /bluetooth/) (tstamps /51AFD396/))
(tstamp 52B7F2CE))
(comp (ref R13)
(value 1K)
(footprint keyboard_parts:R_1608)
(libsource (lib keyboard_parts) (part R))
(sheetpath (names /bluetooth/) (tstamps /51AFD396/))
(tstamp 52B7F726))
(comp (ref R1)
(value 10K)
(footprint keyboard_parts:R_1608)
(libsource (lib keyboard_parts) (part R))
(sheetpath (names /bluetooth/) (tstamps /51AFD396/))
(tstamp 52B840D2))
(comp (ref R12)
(value 10K)
(footprint keyboard_parts:R_1608)
(libsource (lib keyboard_parts) (part R))
(sheetpath (names /bluetooth/) (tstamps /51AFD396/))
(tstamp 52B840D8))
(comp (ref Q3)
(value Nch)
(footprint keyboard_parts:MOS_FET_SOT23-3_HSOL)
(libsource (lib HHKB_controller-cache) (part MOSFET_N))
(sheetpath (names /bluetooth/) (tstamps /51AFD396/))
(tstamp 52B840EC))
(comp (ref R22)
(value 10K)
(footprint keyboard_parts:R_1608)
(libsource (lib keyboard_parts) (part R))
(sheetpath (names /bluetooth/) (tstamps /51AFD396/))
(tstamp 5310CA81))
(comp (ref R21)
(value 1K)
(footprint keyboard_parts:R_1608)
(libsource (lib keyboard_parts) (part R))
(sheetpath (names /bluetooth/) (tstamps /51AFD396/))
(tstamp 5310CA90))
(comp (ref Q5)
(value Pch)
(footprint keyboard_parts:MOS_FET_SOT23-3_HSOL)
(libsource (lib HHKB_controller-cache) (part MOS_P))
(sheetpath (names /bluetooth/) (tstamps /51AFD396/))
(tstamp 5310CAAE))
(comp (ref R23)
(value 10K)
(footprint keyboard_parts:R_1608)
(libsource (lib keyboard_parts) (part R))
(sheetpath (names /bluetooth/) (tstamps /51AFD396/))
(tstamp 53177DD7))
(comp (ref R24)
(value 15K)
(footprint keyboard_parts:R_1608)
(libsource (lib keyboard_parts) (part R))
(sheetpath (names /bluetooth/) (tstamps /51AFD396/))
(tstamp 53177DDD))
(comp (ref R25)
(value 1K)
(footprint keyboard_parts:R_1608)
(libsource (lib keyboard_parts) (part R))
(sheetpath (names /bluetooth/) (tstamps /51AFD396/))
(tstamp 531B36B1))
(comp (ref D10)
(value LED)
(footprint keyboard_parts:LED_TH)
(libsource (lib HHKB_controller-cache) (part LED))
(sheetpath (names /bluetooth/) (tstamps /51AFD396/))
(tstamp 531B36CF))
(comp (ref P114)
(value CONN_1)
(footprint keyboard_parts:PIN_1)
(libsource (lib HHKB_controller-cache) (part CONN_1))
(sheetpath (names /bluetooth/) (tstamps /51AFD396/))
(tstamp 531B5A15))
(comp (ref SW2)
(value SW_DPDT)
(footprint keyboard_parts:SW_MINI_SLIDE)
(libsource (lib HHKB_controller-cache) (part SW_DPDT))
(sheetpath (names /bluetooth/) (tstamps /51AFD396/))
(tstamp 531D7FAB))
(comp (ref D11)
(value "Schottky diode")
(footprint keyboard_parts:D_SOD123)
(libsource (lib HHKB_controller-cache) (part DIODESCH))
(sheetpath (names /bluetooth/) (tstamps /51AFD396/))
(tstamp 53B54501))
(comp (ref C16)
(value 4.7u)
(footprint keyboard_parts:C_3216)
(libsource (lib keyboard_parts) (part C))
(sheetpath (names /bluetooth/) (tstamps /51AFD396/))
(tstamp 53B56B73))
(comp (ref R14)
(value 10K)
(footprint keyboard_parts:R_1608)
(libsource (lib keyboard_parts) (part R))
(sheetpath (names /bluetooth/) (tstamps /51AFD396/))
(tstamp 53B62185))
(comp (ref R20)
(value 15K)
(footprint keyboard_parts:R_1608)
(libsource (lib keyboard_parts) (part R))
(sheetpath (names /bluetooth/) (tstamps /51AFD396/))
(tstamp 53C6B426))
(comp (ref D9)
(value LED_DUAL)
(footprint keyboard_parts:LED_3025_DUAL)
(libsource (lib keyboard_parts) (part LED_DUAL))
(sheetpath (names /bluetooth/) (tstamps /51AFD396/))
(tstamp 540D8D13))
(comp (ref D3)
(value LED_DUAL)
(footprint keyboard_parts:LED_3025_DUAL)
(libsource (lib keyboard_parts) (part LED_DUAL))
(sheetpath (names /bluetooth/) (tstamps /51AFD396/))
(tstamp 540E541B))
(comp (ref R26)
(value 1K)
(footprint keyboard_parts:R_1608)
(libsource (lib keyboard_parts) (part R))
(sheetpath (names /bluetooth/) (tstamps /51AFD396/))
(tstamp 540E7519))
(comp (ref Q10)
(value Nch)
(footprint keyboard_parts:MOS_FET_SOT23-3_HSOL)
(libsource (lib HHKB_controller-cache) (part MOSFET_N))
(sheetpath (names /bluetooth/) (tstamps /51AFD396/))
(tstamp 54111581))
(comp (ref R30)
(value 10K)
(footprint keyboard_parts:R_1608)
(libsource (lib keyboard_parts) (part R))
(sheetpath (names /bluetooth/) (tstamps /51AFD396/))
(tstamp 541122C6))
(comp (ref Q4)
(value Pch)
(footprint keyboard_parts:MOS_FET_SOT23-3_HSOL)
(libsource (lib HHKB_controller-cache) (part MOSFET_P))
(sheetpath (names /bluetooth/) (tstamps /51AFD396/))
(tstamp 5452928D))
(comp (ref R27)
(value 10K)
(footprint keyboard_parts:R_1608)
(libsource (lib keyboard_parts) (part R))
(sheetpath (names /bluetooth/) (tstamps /51AFD396/))
(tstamp 5452E6B7))
(comp (ref P15)
(value CONN_1)
(footprint keyboard_parts:PIN_1)
(libsource (lib HHKB_controller-cache) (part CONN_1))
(sheetpath (names /bluetooth/) (tstamps /51AFD396/))
(tstamp 54862C03))
(comp (ref P13)
(value CONN_1)
(footprint keyboard_parts:PIN_1)
(libsource (lib HHKB_controller-cache) (part CONN_1))
(sheetpath (names /bluetooth/) (tstamps /51AFD396/))
(tstamp 54862C9E))
(comp (ref P14)
(value CONN_1)
(footprint keyboard_parts:PIN_1)
(libsource (lib HHKB_controller-cache) (part CONN_1))
(sheetpath (names /bluetooth/) (tstamps /51AFD396/))
(tstamp 54864365))
(comp (ref P12)
(value CONN_1)
(footprint keyboard_parts:PIN_1)
(libsource (lib HHKB_controller-cache) (part CONN_1))
(sheetpath (names /bluetooth/) (tstamps /51AFD396/))
(tstamp 5486436B))
(comp (ref U2)
(value MIC5504-3.3YMTR)
(footprint keyboard_parts:SOT23-5_HSOL)
(libsource (lib keyboard_parts) (part LDO_REGULATOR))
(sheetpath (names /bluetooth/) (tstamps /51AFD396/))
(tstamp 51B41FD3))
(comp (ref D5)
(value D)
(footprint keyboard_parts:D_SOD123)
(libsource (lib keyboard_parts) (part D))
(sheetpath (names /bluetooth/) (tstamps /51AFD396/))
(tstamp 57789BAF)))
(libparts
(libpart (lib keyboard_parts) (part ATMEGA32U4)
(fields
(field (name Reference) U)
(field (name Value) ATMEGA32U4))
(pins
(pin (num 1) (name PE6/AIN0) (type BiDi))
(pin (num 2) (name UVcc) (type power_in))
(pin (num 3) (name D-) (type BiDi))
(pin (num 4) (name D+) (type BiDi))
(pin (num 5) (name UGnd) (type power_in))
(pin (num 6) (name UCap) (type input))
(pin (num 7) (name VBus) (type input))
(pin (num 8) (name PB0/SS) (type BiDi))
(pin (num 9) (name PB1/SCK) (type BiDi))
(pin (num 10) (name PB2/MOSI) (type BiDi))
(pin (num 11) (name PB3/MISO) (type BiDi))
(pin (num 12) (name PB7/~RTS) (type BiDi))
(pin (num 13) (name ~RESET) (type input))
(pin (num 14) (name VCC) (type power_in))
(pin (num 15) (name GND) (type power_in))
(pin (num 16) (name XTAL1) (type input))
(pin (num 17) (name XTAL2) (type output))
(pin (num 18) (name PD0/INT0) (type BiDi))
(pin (num 19) (name PD1/INT1) (type BiDi))
(pin (num 20) (name PD2/RXD1) (type BiDi))
(pin (num 21) (name PD3/TXD1) (type BiDi))
(pin (num 22) (name PD5/XCK1) (type BiDi))
(pin (num 23) (name GND) (type power_in))
(pin (num 24) (name AVCC) (type power_in))
(pin (num 25) (name ICP1/PD4) (type BiDi))
(pin (num 26) (name T1/PD6) (type BiDi))
(pin (num 27) (name T0/PD7) (type BiDi))
(pin (num 28) (name PB4) (type BiDi))
(pin (num 29) (name PB5) (type BiDi))
(pin (num 30) (name PB6) (type BiDi))
(pin (num 31) (name PC6) (type BiDi))
(pin (num 32) (name PC7) (type BiDi))
(pin (num 33) (name ~HWB/PE2) (type BiDi))
(pin (num 34) (name VCC) (type power_in))
(pin (num 35) (name GND) (type power_in))
(pin (num 36) (name PF7) (type BiDi))
(pin (num 37) (name PF6) (type BiDi))
(pin (num 38) (name PF5) (type BiDi))
(pin (num 39) (name PF4) (type BiDi))
(pin (num 40) (name PF1) (type BiDi))
(pin (num 41) (name PF0) (type BiDi))
(pin (num 42) (name AREF) (type input))
(pin (num 43) (name GND) (type power_in))
(pin (num 44) (name AVCC) (type power_in))))
(libpart (lib keyboard_parts) (part C)
(footprints
(fp SM*)
(fp C?)
(fp C1-1))
(fields
(field (name Reference) C)
(field (name Value) C))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib HHKB_controller-cache) (part CONN_1)
(fields
(field (name Reference) P)
(field (name Value) CONN_1))
(pins
(pin (num 1) (name 1) (type passive))))
(libpart (lib HHKB_controller-cache) (part CONN_13)
(fields
(field (name Reference) P)
(field (name Value) CONN_13))
(pins
(pin (num 1) (name P1) (type passive))
(pin (num 2) (name P2) (type passive))
(pin (num 3) (name P3) (type passive))
(pin (num 4) (name P4) (type passive))
(pin (num 5) (name P5) (type passive))
(pin (num 6) (name P6) (type passive))
(pin (num 7) (name P7) (type passive))
(pin (num 8) (name P8) (type passive))
(pin (num 9) (name P9) (type passive))
(pin (num 10) (name P10) (type passive))
(pin (num 11) (name P11) (type passive))
(pin (num 12) (name P12) (type passive))
(pin (num 13) (name P13) (type passive))))
(libpart (lib HHKB_controller-cache) (part CONN_15)
(fields
(field (name Reference) P)
(field (name Value) CONN_15))
(pins
(pin (num 1) (name P1) (type passive))
(pin (num 2) (name P2) (type passive))
(pin (num 3) (name P3) (type passive))
(pin (num 4) (name P4) (type passive))
(pin (num 5) (name P5) (type passive))
(pin (num 6) (name P6) (type passive))
(pin (num 7) (name P7) (type passive))
(pin (num 8) (name P8) (type passive))
(pin (num 9) (name P9) (type passive))
(pin (num 10) (name P10) (type passive))
(pin (num 11) (name P11) (type passive))
(pin (num 12) (name P12) (type passive))
(pin (num 13) (name P13) (type passive))
(pin (num 14) (name P14) (type passive))
(pin (num 15) (name P15) (type passive))))
(libpart (lib HHKB_controller-cache) (part CONN_2)
(fields
(field (name Reference) P)
(field (name Value) CONN_2))
(pins
(pin (num 1) (name P1) (type passive))
(pin (num 2) (name PM) (type passive))))
(libpart (lib keyboard_parts) (part CONN_3X2)
(description "Symbole general de connecteur")
(fields
(field (name Reference) P)
(field (name Value) CONN_3X2))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))
(pin (num 3) (name 3) (type passive))
(pin (num 4) (name 4) (type passive))
(pin (num 5) (name 5) (type passive))
(pin (num 6) (name 6) (type passive))))
(libpart (lib HHKB_controller-cache) (part CP)
(aliases
(alias CAPAPOL))
(footprints
(fp CP*)
(fp SM*))
(fields
(field (name Reference) C)
(field (name Value) CP))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib keyboard_parts) (part D)
(fields
(field (name Reference) D)
(field (name Value) D))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib HHKB_controller-cache) (part DIODESCH)
(footprints
(fp D?)
(fp S*))
(fields
(field (name Reference) D)
(field (name Value) DIODESCH))
(pins
(pin (num 1) (name A) (type passive))
(pin (num 2) (name K) (type passive))))
(libpart (lib keyboard_parts) (part HT7750A)
(description "HOLTEK setup DC/DC converter")
(docs datasheets/HT7750A.pdf)
(fields
(field (name Reference) U)
(field (name Value) HT7750A))
(pins
(pin (num 1) (name CE) (type input))
(pin (num 2) (name VOUT) (type power_out))
(pin (num 3) (name NC) (type NotConnected))
(pin (num 4) (name GND) (type power_in))
(pin (num 5) (name LX) (type input))))
(libpart (lib HHKB_controller-cache) (part INDUCTOR_SMALL)
(fields
(field (name Reference) L)
(field (name Value) INDUCTOR_SMALL))
(pins
(pin (num 1) (name 1) (type input))
(pin (num 2) (name 2) (type input))))
(libpart (lib HHKB_controller-cache) (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 LDO_REGULATOR)
(description "HOLTEK setup DC/DC converter")
(fields
(field (name Reference) U)
(field (name Value) LDO_REGULATOR))
(pins
(pin (num 1) (name IN) (type power_in))
(pin (num 2) (name GND) (type power_in))
(pin (num 3) (name EN) (type input))
(pin (num 4) (name NC) (type input))
(pin (num 5) (name OUT) (type power_out))))
(libpart (lib HHKB_controller-cache) (part LED)
(footprints
(fp LED-3MM)
(fp LED-5MM)
(fp LED-10MM)
(fp LED-0603)
(fp LED-0805)
(fp LED-1206)
(fp LEDV))
(fields
(field (name Reference) D)
(field (name Value) LED))
(pins
(pin (num 1) (name A) (type passive))
(pin (num 2) (name K) (type passive))))
(libpart (lib keyboard_parts) (part LED_DUAL)
(fields
(field (name Reference) D)
(field (name Value) LED_DUAL))
(pins
(pin (num 1) (name A) (type passive))
(pin (num 2) (name K) (type passive))
(pin (num 3) (name A) (type passive))
(pin (num 4) (name K) (type passive))))
(libpart (lib keyboard_parts) (part LTC4054)
(description "LTC4054 LINEAR TECHNOLOGY Lipo battery charger")
(docs datasheets/LTC405442xf.pdf)
(fields
(field (name Reference) U)
(field (name Value) LTC4054))
(pins
(pin (num 1) (name ~CHRG) (type output))
(pin (num 2) (name GND) (type power_in))
(pin (num 3) (name BAT) (type input))
(pin (num 4) (name VCC) (type power_in))
(pin (num 5) (name PROG) (type input))))
(libpart (lib HHKB_controller-cache) (part MOS_N)
(aliases
(alias MOSFET_N))
(fields
(field (name Reference) Q)
(field (name Value) MOS_N))
(pins
(pin (num D) (name D) (type passive))
(pin (num G) (name G) (type input))
(pin (num S) (name S) (type passive))))
(libpart (lib HHKB_controller-cache) (part MOS_P)
(aliases
(alias MOSFET_P))
(fields
(field (name Reference) Q)
(field (name Value) MOS_P))
(pins
(pin (num D) (name D) (type passive))
(pin (num G) (name G) (type input))
(pin (num S) (name S) (type passive))))
(libpart (lib keyboard_parts) (part PPTC)
(footprints
(fp R?)
(fp SM0603)
(fp SM0805))
(fields
(field (name Reference) F)
(field (name Value) PPTC))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib keyboard_parts) (part R)
(footprints
(fp R?)
(fp SM0603)
(fp SM0805)
(fp R?-*)
(fp SM1206))
(fields
(field (name Reference) R)
(field (name Value) R))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib keyboard_parts) (part RN42)
(description "class 2 bluetooth module")
(fields
(field (name Reference) U)
(field (name Value) RN42))
(pins
(pin (num 1) (name GND) (type input))
(pin (num 2) (name SPI_MOSI) (type passive))
(pin (num 3) (name GPIO6) (type output))
(pin (num 4) (name GPIO7) (type power_in))
(pin (num 5) (name RESET) (type output))
(pin (num 6) (name SPI_CLOCK) (type input))
(pin (num 7) (name PCM_CLK) (type passive))
(pin (num 8) (name PCM_SYNC) (type passive))
(pin (num 9) (name PCM_IN) (type passive))
(pin (num 10) (name PCM_OUT) (type passive))
(pin (num 11) (name VDD) (type passive))
(pin (num 12) (name GND) (type passive))
(pin (num 13) (name UART_RX) (type passive))
(pin (num 14) (name UART_TX) (type passive))
(pin (num 15) (name UART_RTS) (type passive))
(pin (num 16) (name UART_CTS) (type passive))
(pin (num 17) (name USB_D+) (type input))
(pin (num 18) (name USB_D-) (type input))
(pin (num 19) (name GPIO2) (type output))
(pin (num 20) (name GPIO3) (type input))
(pin (num 21) (name GPIO5) (type input))
(pin (num 22) (name GPIO4) (type input))
(pin (num 23) (name SPI_CSB) (type input))
(pin (num 24) (name SPI_MISO) (type input))
(pin (num 28) (name GND) (type input))
(pin (num 29) (name GND) (type input))
(pin (num 30) (name AIO0) (type input))
(pin (num 31) (name GPIO8) (type input))
(pin (num 32) (name GPIO9) (type input))
(pin (num 33) (name GPIO10) (type input))
(pin (num 34) (name GPIO11) (type input))
(pin (num 35) (name AIO1) (type input))))
(libpart (lib HHKB_controller-cache) (part SW_DPDT)
(fields
(field (name Reference) SW)
(field (name Value) SW_DPDT))
(pins
(pin (num 1) (name ~) (type input))
(pin (num 2) (name ~) (type input))
(pin (num 3) (name ~) (type input))
(pin (num 4) (name ~) (type input))
(pin (num 5) (name ~) (type input))
(pin (num 6) (name ~) (type input))))
(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 keyboard_parts) (part USB_mini_micro_B)
(fields
(field (name Reference) J)
(field (name Value) USB_mini_micro_B))
(pins
(pin (num 1) (name VUSB) (type power_out))
(pin (num 2) (name D-) (type BiDi))
(pin (num 3) (name D+) (type BiDi))
(pin (num 4) (name ID) (type input))
(pin (num 5) (name GND) (type power_out))
(pin (num 6) (name SHIELD) (type input))))
(libpart (lib keyboard_parts) (part XTAL)
(fields
(field (name Reference) X)
(field (name Value) XTAL))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive)))))
(libraries
(library (logical keyboard_parts)
(uri "/home/noname/Google Drive/KiCAD/HHKB_controller/library/keyboard_parts.lib"))
(library (logical HHKB_controller-cache)
(uri "/home/noname/Google Drive/KiCAD/HHKB_controller/HHKB_controller-cache.lib")))
(nets
(net (code 1) (name "Net-(R4-Pad2)")
(node (ref U1) (pin 33))
(node (ref R4) (pin 2)))
(net (code 2) (name BT_RX)
(node (ref R8) (pin 1))
(node (ref U1) (pin 21)))
(net (code 3) (name /PB7)
(node (ref U1) (pin 12))
(node (ref CN2) (pin 4))
(node (ref CN1) (pin 4)))
(net (code 4) (name BT_CTS)
(node (ref U1) (pin 22))
(node (ref R23) (pin 1)))
(net (code 5) (name BT_TX)
(node (ref U1) (pin 20))
(node (ref Q1) (pin D))
(node (ref R7) (pin 2)))
(net (code 6) (name /AREF)
(node (ref C10) (pin 1))
(node (ref U1) (pin 42)))
(net (code 7) (name /PB3)
(node (ref CN1) (pin 8))
(node (ref CN2) (pin 8))
(node (ref U1) (pin 11))
(node (ref P8) (pin 1)))
(net (code 8) (name /PB6)
(node (ref CN1) (pin 11))
(node (ref U1) (pin 30))
(node (ref CN2) (pin 11)))
(net (code 9) (name /PD1)
(node (ref P5) (pin 1))
(node (ref U1) (pin 19)))
(net (code 10) (name /PD0)
(node (ref P6) (pin 1))
(node (ref U1) (pin 18)))
(net (code 11) (name /PB0)
(node (ref U1) (pin 8))
(node (ref CN2) (pin 5))
(node (ref CN1) (pin 5)))
(net (code 12) (name /PB1)
(node (ref P8) (pin 3))
(node (ref CN2) (pin 6))
(node (ref CN1) (pin 6))
(node (ref U1) (pin 9)))
(net (code 13) (name "Net-(C4-Pad1)")
(node (ref U1) (pin 6))
(node (ref C4) (pin 1)))
(net (code 14) (name BT_INDICATOR)
(node (ref D9) (pin 4))
(node (ref U1) (pin 1)))
(net (code 15) (name BT_RTS)
(node (ref R12) (pin 2))
(node (ref U1) (pin 40))
(node (ref Q3) (pin D)))
(net (code 16) (name /PC7)
(node (ref U1) (pin 32))
(node (ref CN1) (pin 15)))
(net (code 17) (name /PC6)