-
Notifications
You must be signed in to change notification settings - Fork 0
/
keypad.net
1183 lines (1183 loc) · 45.3 KB
/
keypad.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/fabian/PCBs/keypad/keypad.sch)
(date "Sat 20 Apr 2019 01:49:41 PM CEST")
(tool "Eeschema 5.1.1")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title)
(company)
(rev)
(date)
(source keypad.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 2) (name /Matrix/) (tstamps /5D7467E1/)
(title_block
(title)
(company)
(rev)
(date)
(source matrix.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 3) (name /led/) (tstamps /5C20FB4A/)
(title_block
(title)
(company)
(rev)
(date)
(source led.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref U1)
(value STM32F303C6Tx)
(footprint Package_QFP:LQFP-48_7x7mm_P0.5mm)
(datasheet http://www.st.com/st-web-ui/static/active/en/resource/technical/document/datasheet/DM00092070.pdf)
(libsource (lib MCU_ST_STM32F3) (part STM32F303C6Tx) (description "ARM Cortex-M4 MCU, 32KB flash, 12KB RAM, 72MHz, 2-3.6V, 37 GPIO, LQFP-48"))
(sheetpath (names /) (tstamps /))
(tstamp 5C59DB48))
(comp (ref C1)
(value 100n)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5C59E57B))
(comp (ref C2)
(value 100n)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5C59E5C4))
(comp (ref C3)
(value 100n)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5C59E5FE))
(comp (ref C4)
(value 1u)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5C59E63F))
(comp (ref C5)
(value 4.7u)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5C59E6E5))
(comp (ref C9)
(value 10u)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5C5A2B81))
(comp (ref C10)
(value 10u)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5C5A2C1D))
(comp (ref R1)
(value 1.5k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5C5A6663))
(comp (ref Y1)
(value "A7 8MHz")
(footprint Crystal:Crystal_SMD_5032-4Pin_5.0x3.2mm)
(datasheet ~)
(libsource (lib Device) (part Crystal_GND24) (description "Four pin crystal, GND on pins 2 and 4"))
(sheetpath (names /) (tstamps /))
(tstamp 5C5AEF4D))
(comp (ref C6)
(value 22p)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5C5B2500))
(comp (ref C7)
(value 22p)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5C5B3876))
(comp (ref R5)
(value 330)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5C64AA94))
(comp (ref D1)
(value POWER_LED)
(footprint LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5C64ABB3))
(comp (ref R6)
(value 1M)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5C614CF3))
(comp (ref C11)
(value 4.7n)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5C6173C3))
(comp (ref J3)
(value USB_C_Receptacle_USB2.0)
(footprint "USB_C:USB C HRQ low cost")
(datasheet https://www.usb.org/sites/default/files/documents/usb_type-c.zip)
(libsource (lib keypad-rescue) (part USB_C_Receptacle_USB2.0-Connector) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C62BE00))
(comp (ref R7)
(value 5.1k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5C6592C5))
(comp (ref R10)
(value 22)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5C66AC4F))
(comp (ref R11)
(value 22)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5C66ACC9))
(comp (ref U2)
(value MCP1804x-3302xOT)
(footprint Package_TO_SOT_SMD:SOT-23-5_HandSoldering)
(datasheet http://ww1.microchip.com/downloads/en/DeviceDoc/20002200D.pdf)
(libsource (lib keypad) (part MCP1804x-3302xOT) (description "150mA, 28V LDO Regulator With Shutdown, 3.3V Fixed Output, SOT-23-5"))
(sheetpath (names /) (tstamps /))
(tstamp 5C79A106))
(comp (ref J1)
(value Conn_01x04_Female)
(footprint Connector_PinHeader_2.00mm:PinHeader_1x04_P2.00mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x04_Female) (description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5C5D0A66))
(comp (ref Q1)
(value BC847)
(footprint Package_TO_SOT_SMD:SOT-23)
(datasheet http://www.infineon.com/dgdl/Infineon-BC847SERIES_BC848SERIES_BC849SERIES_BC850SERIES-DS-v01_01-en.pdf?fileId=db3a304314dca389011541d4630a1657)
(libsource (lib Transistor_BJT) (part BC847) (description "0.1A Ic, 45V Vce, NPN Transistor, SOT-23"))
(sheetpath (names /) (tstamps /))
(tstamp 5C82130E))
(comp (ref C8)
(value 4.7n)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5C827D27))
(comp (ref D23)
(value 1N4148)
(footprint Diode_SMD:D_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5C832293))
(comp (ref C12)
(value 4.7n)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5C83236E))
(comp (ref R2)
(value 100k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5C83241D))
(comp (ref SW1)
(value SW_Push)
(footprint Button_Switch_SMD:SW_SPST_B3U-1000P)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5C84E577))
(comp (ref H1)
(value Batch)
(footprint decals:nostromo_batch)
(libsource (lib keebio) (part Hole) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C7D436C))
(comp (ref H2)
(value Nostromo)
(footprint decals:nostromo)
(libsource (lib keebio) (part Hole) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C7D4536))
(comp (ref H3)
(value Science)
(footprint decals:science_badge)
(libsource (lib keebio) (part Hole) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C7D45C7))
(comp (ref H4)
(value MountingHole)
(footprint MountingHole:MountingHole_2.2mm_M2)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole) (description "Mounting Hole without connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5C7D4B29))
(comp (ref H5)
(value MountingHole)
(footprint MountingHole:MountingHole_2.2mm_M2)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole) (description "Mounting Hole without connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5C7D4BDD))
(comp (ref H6)
(value MountingHole)
(footprint MountingHole:MountingHole_2.2mm_M2)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole) (description "Mounting Hole without connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5C7D4C6B))
(comp (ref H7)
(value MountingHole)
(footprint MountingHole:MountingHole_2.2mm_M2)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole) (description "Mounting Hole without connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5C7D4CFC))
(comp (ref H8)
(value MountingHole)
(footprint MountingHole:MountingHole_2.2mm_M2)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole) (description "Mounting Hole without connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5C7D4D90))
(comp (ref H9)
(value MountingHole)
(footprint MountingHole:MountingHole_2.2mm_M2)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole) (description "Mounting Hole without connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5C7D4E27))
(comp (ref H10)
(value MountingHole)
(footprint MountingHole:MountingHole_2.2mm_M2)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole) (description "Mounting Hole without connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5C7D4EC7))
(comp (ref D24)
(value 1N4148)
(footprint Diode_SMD:D_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5CC60B23))
(comp (ref R3)
(value 330)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5CC6F633))
(comp (ref D25)
(value POWER_LED)
(footprint LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5CC6F63D))
(comp (ref K1_1)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.00u_Plate)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /Matrix/) (tstamps /5D7467E1/))
(tstamp 5D7480E9))
(comp (ref K2_1)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.00u_Plate)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /Matrix/) (tstamps /5D7467E1/))
(tstamp 5D7480F0))
(comp (ref D2)
(value D_x2_KCom_AAK)
(footprint keyboard_parts:SOT23-3_HSOL)
(datasheet ~)
(libsource (lib Device) (part D_x2_KCom_AAK) (description "Dual diode, common cathode on pin 3"))
(sheetpath (names /Matrix/) (tstamps /5D7467E1/))
(tstamp 5D7480F9))
(comp (ref K1_2)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.00u_Plate)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /Matrix/) (tstamps /5D7467E1/))
(tstamp 5D748104))
(comp (ref K2_2)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.00u_Plate)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /Matrix/) (tstamps /5D7467E1/))
(tstamp 5D74810B))
(comp (ref D5)
(value D_x2_KCom_AAK)
(footprint keyboard_parts:SOT23-3_HSOL)
(datasheet ~)
(libsource (lib Device) (part D_x2_KCom_AAK) (description "Dual diode, common cathode on pin 3"))
(sheetpath (names /Matrix/) (tstamps /5D7467E1/))
(tstamp 5D748114))
(comp (ref K1_3)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.00u_Plate)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /Matrix/) (tstamps /5D7467E1/))
(tstamp 5D74811F))
(comp (ref K2_3)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.00u_Plate)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /Matrix/) (tstamps /5D7467E1/))
(tstamp 5D748126))
(comp (ref D8)
(value D_x2_KCom_AAK)
(footprint keyboard_parts:SOT23-3_HSOL)
(datasheet ~)
(libsource (lib Device) (part D_x2_KCom_AAK) (description "Dual diode, common cathode on pin 3"))
(sheetpath (names /Matrix/) (tstamps /5D7467E1/))
(tstamp 5D74812F))
(comp (ref K1_4)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.00u_Plate)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /Matrix/) (tstamps /5D7467E1/))
(tstamp 5D74813A))
(comp (ref K2_4)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.00u_Plate)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /Matrix/) (tstamps /5D7467E1/))
(tstamp 5D748141))
(comp (ref D11)
(value D_x2_KCom_AAK)
(footprint keyboard_parts:SOT23-3_HSOL)
(datasheet ~)
(libsource (lib Device) (part D_x2_KCom_AAK) (description "Dual diode, common cathode on pin 3"))
(sheetpath (names /Matrix/) (tstamps /5D7467E1/))
(tstamp 5D74814A))
(comp (ref K3_1)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.00u_Plate)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /Matrix/) (tstamps /5D7467E1/))
(tstamp 5C226E88))
(comp (ref K4_1)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.00u_Plate)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /Matrix/) (tstamps /5D7467E1/))
(tstamp 5C226E8F))
(comp (ref D3)
(value D_x2_KCom_AAK)
(footprint keyboard_parts:SOT23-3_HSOL)
(datasheet ~)
(libsource (lib Device) (part D_x2_KCom_AAK) (description "Dual diode, common cathode on pin 3"))
(sheetpath (names /Matrix/) (tstamps /5D7467E1/))
(tstamp 5C226E98))
(comp (ref K3_2)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.00u_Plate)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /Matrix/) (tstamps /5D7467E1/))
(tstamp 5C226EA3))
(comp (ref K4_2)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.00u_Plate)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /Matrix/) (tstamps /5D7467E1/))
(tstamp 5C226EAA))
(comp (ref D6)
(value D_x2_KCom_AAK)
(footprint keyboard_parts:SOT23-3_HSOL)
(datasheet ~)
(libsource (lib Device) (part D_x2_KCom_AAK) (description "Dual diode, common cathode on pin 3"))
(sheetpath (names /Matrix/) (tstamps /5D7467E1/))
(tstamp 5C226EB3))
(comp (ref K3_3)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.00u_Plate)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /Matrix/) (tstamps /5D7467E1/))
(tstamp 5C226EBE))
(comp (ref K4_3)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.00u_Plate)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /Matrix/) (tstamps /5D7467E1/))
(tstamp 5C226EC5))
(comp (ref D9)
(value D_x2_KCom_AAK)
(footprint keyboard_parts:SOT23-3_HSOL)
(datasheet ~)
(libsource (lib Device) (part D_x2_KCom_AAK) (description "Dual diode, common cathode on pin 3"))
(sheetpath (names /Matrix/) (tstamps /5D7467E1/))
(tstamp 5C226ECE))
(comp (ref K3_4)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.00u_Plate)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /Matrix/) (tstamps /5D7467E1/))
(tstamp 5C226ED9))
(comp (ref K4_4)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_2.00u_PCB)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /Matrix/) (tstamps /5D7467E1/))
(tstamp 5C226EE0))
(comp (ref D12)
(value D_x2_KCom_AAK)
(footprint keyboard_parts:SOT23-3_HSOL)
(datasheet ~)
(libsource (lib Device) (part D_x2_KCom_AAK) (description "Dual diode, common cathode on pin 3"))
(sheetpath (names /Matrix/) (tstamps /5D7467E1/))
(tstamp 5C226EFD))
(comp (ref K5_1)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.00u_Plate)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /Matrix/) (tstamps /5D7467E1/))
(tstamp 5C2280A4))
(comp (ref K5_2)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.00u_Plate)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /Matrix/) (tstamps /5D7467E1/))
(tstamp 5C2280AD))
(comp (ref K5_3)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX1A_1.00u_Plate)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /Matrix/) (tstamps /5D7467E1/))
(tstamp 5C2280B6))
(comp (ref D4)
(value D)
(footprint Diode_SMD:D_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /Matrix/) (tstamps /5D7467E1/))
(tstamp 5C23AFF6))
(comp (ref D7)
(value D)
(footprint Diode_SMD:D_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /Matrix/) (tstamps /5D7467E1/))
(tstamp 5C23B15A))
(comp (ref D10)
(value D)
(footprint Diode_SMD:D_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /Matrix/) (tstamps /5D7467E1/))
(tstamp 5C23C6A4))
(comp (ref D13)
(value SK6805)
(footprint LED_SMD:LED_SK6812MINI_PLCC4_3.5x3.5mm_P1.75mm)
(datasheet https://cdn-shop.adafruit.com/product-files/3484/3484_Datasheet.pdf)
(libsource (lib LED) (part SK6805) (description "RGB LED with integrated controller"))
(sheetpath (names /led/) (tstamps /5C20FB4A/))
(tstamp 5C2D0F9C))
(comp (ref D14)
(value SK6805)
(footprint LED_SMD:LED_SK6812MINI_PLCC4_3.5x3.5mm_P1.75mm)
(datasheet https://cdn-shop.adafruit.com/product-files/3484/3484_Datasheet.pdf)
(libsource (lib LED) (part SK6805) (description "RGB LED with integrated controller"))
(sheetpath (names /led/) (tstamps /5C20FB4A/))
(tstamp 5C2D109A))
(comp (ref D16)
(value SK6805)
(footprint LED_SMD:LED_SK6812MINI_PLCC4_3.5x3.5mm_P1.75mm)
(datasheet https://cdn-shop.adafruit.com/product-files/3484/3484_Datasheet.pdf)
(libsource (lib LED) (part SK6805) (description "RGB LED with integrated controller"))
(sheetpath (names /led/) (tstamps /5C20FB4A/))
(tstamp 5C2D1243))
(comp (ref D18)
(value SK6805)
(footprint LED_SMD:LED_SK6812MINI_PLCC4_3.5x3.5mm_P1.75mm)
(datasheet https://cdn-shop.adafruit.com/product-files/3484/3484_Datasheet.pdf)
(libsource (lib LED) (part SK6805) (description "RGB LED with integrated controller"))
(sheetpath (names /led/) (tstamps /5C20FB4A/))
(tstamp 5C3202D5))
(comp (ref D20)
(value SK6805)
(footprint LED_SMD:LED_SK6812MINI_PLCC4_3.5x3.5mm_P1.75mm)
(datasheet https://cdn-shop.adafruit.com/product-files/3484/3484_Datasheet.pdf)
(libsource (lib LED) (part SK6805) (description "RGB LED with integrated controller"))
(sheetpath (names /led/) (tstamps /5C20FB4A/))
(tstamp 5C3202EA))
(comp (ref D22)
(value SK6805)
(footprint LED_SMD:LED_SK6812MINI_PLCC4_3.5x3.5mm_P1.75mm)
(datasheet https://cdn-shop.adafruit.com/product-files/3484/3484_Datasheet.pdf)
(libsource (lib LED) (part SK6805) (description "RGB LED with integrated controller"))
(sheetpath (names /led/) (tstamps /5C20FB4A/))
(tstamp 5C3202F8))
(comp (ref D15)
(value SK6805)
(footprint LED_SMD:LED_SK6812MINI_PLCC4_3.5x3.5mm_P1.75mm)
(datasheet https://cdn-shop.adafruit.com/product-files/3484/3484_Datasheet.pdf)
(libsource (lib LED) (part SK6805) (description "RGB LED with integrated controller"))
(sheetpath (names /led/) (tstamps /5C20FB4A/))
(tstamp 5C5B434D))
(comp (ref D17)
(value SK6805)
(footprint LED_SMD:LED_SK6812MINI_PLCC4_3.5x3.5mm_P1.75mm)
(datasheet https://cdn-shop.adafruit.com/product-files/3484/3484_Datasheet.pdf)
(libsource (lib LED) (part SK6805) (description "RGB LED with integrated controller"))
(sheetpath (names /led/) (tstamps /5C20FB4A/))
(tstamp 5C5B4627))
(comp (ref D19)
(value SK6805)
(footprint LED_SMD:LED_SK6812MINI_PLCC4_3.5x3.5mm_P1.75mm)
(datasheet https://cdn-shop.adafruit.com/product-files/3484/3484_Datasheet.pdf)
(libsource (lib LED) (part SK6805) (description "RGB LED with integrated controller"))
(sheetpath (names /led/) (tstamps /5C20FB4A/))
(tstamp 5C5B4903))
(comp (ref D21)
(value SK6805)
(footprint LED_SMD:LED_SK6812MINI_PLCC4_3.5x3.5mm_P1.75mm)
(datasheet https://cdn-shop.adafruit.com/product-files/3484/3484_Datasheet.pdf)
(libsource (lib LED) (part SK6805) (description "RGB LED with integrated controller"))
(sheetpath (names /led/) (tstamps /5C20FB4A/))
(tstamp 5C5B4C73)))
(libparts
(libpart (lib Connector) (part Conn_01x04_Female)
(description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x04_Female))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))
(pin (num 4) (name Pin_4) (type passive))))
(libpart (lib Device) (part C_Small)
(description "Unpolarized capacitor, small symbol")
(docs ~)
(footprints
(fp C_*))
(fields
(field (name Reference) C)
(field (name Value) C_Small))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Device) (part Crystal_GND24)
(description "Four pin crystal, GND on pins 2 and 4")
(docs ~)
(footprints
(fp Crystal*))
(fields
(field (name Reference) Y)
(field (name Value) Crystal_GND24))
(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))))
(libpart (lib Device) (part D)
(description Diode)
(docs ~)
(footprints
(fp TO-???*)
(fp *_Diode_*)
(fp *SingleDiode*)
(fp D_*))
(fields
(field (name Reference) D)
(field (name Value) D))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib Device) (part D_x2_KCom_AAK)
(description "Dual diode, common cathode on pin 3")
(docs ~)
(fields
(field (name Reference) D)
(field (name Value) D_x2_KCom_AAK))
(pins
(pin (num 1) (name A) (type passive))
(pin (num 2) (name A) (type passive))
(pin (num 3) (name K) (type passive))))
(libpart (lib Device) (part LED)
(description "Light emitting diode")
(docs ~)
(footprints
(fp LED*)
(fp LED_SMD:*)
(fp LED_THT:*))
(fields
(field (name Reference) D)
(field (name Value) LED))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib Device) (part R_Small)
(description "Resistor, small symbol")
(docs ~)
(footprints
(fp R_*))
(fields
(field (name Reference) R)
(field (name Value) R_Small))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib LED) (part SK6805)
(description "RGB LED with integrated controller")
(docs https://cdn-shop.adafruit.com/product-files/3484/3484_Datasheet.pdf)
(footprints
(fp LED*SK6805*PLCC*2.4x2.7mm*P1.3mm*))
(fields
(field (name Reference) D)
(field (name Value) SK6805)
(field (name Footprint) LED_SMD:LED_SK6805_PLCC4_2.4x2.7mm_P1.3mm))
(pins
(pin (num 1) (name DOUT) (type output))
(pin (num 2) (name VSS) (type power_in))
(pin (num 3) (name DIN) (type input))
(pin (num 4) (name VDD) (type power_in))))
(libpart (lib MCU_ST_STM32F3) (part STM32F303C6Tx)
(aliases
(alias STM32F303C8Tx))
(description "ARM Cortex-M4 MCU, 32KB flash, 12KB RAM, 72MHz, 2-3.6V, 37 GPIO, LQFP-48")
(docs http://www.st.com/st-web-ui/static/active/en/resource/technical/document/datasheet/DM00092070.pdf)
(footprints
(fp LQFP*7x7mm*P0.5mm*))
(fields
(field (name Reference) U)
(field (name Value) STM32F303C6Tx)
(field (name Footprint) Package_QFP:LQFP-48_7x7mm_P0.5mm))
(pins
(pin (num 1) (name VBAT) (type power_in))
(pin (num 2) (name PC13) (type BiDi))
(pin (num 3) (name PC14) (type BiDi))
(pin (num 4) (name PC15) (type BiDi))
(pin (num 5) (name PF0) (type input))
(pin (num 6) (name PF1) (type input))
(pin (num 7) (name NRST) (type input))
(pin (num 8) (name VSSA) (type power_in))
(pin (num 9) (name VDDA) (type power_in))
(pin (num 10) (name PA0) (type BiDi))
(pin (num 11) (name PA1) (type BiDi))
(pin (num 12) (name PA2) (type BiDi))
(pin (num 13) (name PA3) (type BiDi))
(pin (num 14) (name PA4) (type BiDi))
(pin (num 15) (name PA5) (type BiDi))
(pin (num 16) (name PA6) (type BiDi))
(pin (num 17) (name PA7) (type BiDi))
(pin (num 18) (name PB0) (type BiDi))
(pin (num 19) (name PB1) (type BiDi))
(pin (num 20) (name PB2) (type BiDi))
(pin (num 21) (name PB10) (type BiDi))
(pin (num 22) (name PB11) (type BiDi))
(pin (num 23) (name VSS) (type power_in))
(pin (num 24) (name VDD) (type power_in))
(pin (num 25) (name PB12) (type BiDi))
(pin (num 26) (name PB13) (type BiDi))
(pin (num 27) (name PB14) (type BiDi))
(pin (num 28) (name PB15) (type BiDi))
(pin (num 29) (name PA8) (type BiDi))
(pin (num 30) (name PA9) (type BiDi))
(pin (num 31) (name PA10) (type BiDi))
(pin (num 32) (name PA11) (type BiDi))
(pin (num 33) (name PA12) (type BiDi))
(pin (num 34) (name PA13) (type BiDi))
(pin (num 35) (name VSS) (type power_in))
(pin (num 36) (name VDD) (type power_in))
(pin (num 37) (name PA14) (type BiDi))
(pin (num 38) (name PA15) (type BiDi))
(pin (num 39) (name PB3) (type BiDi))
(pin (num 40) (name PB4) (type BiDi))
(pin (num 41) (name PB5) (type BiDi))
(pin (num 42) (name PB6) (type BiDi))
(pin (num 43) (name PB7) (type BiDi))
(pin (num 44) (name BOOT0) (type input))
(pin (num 45) (name PB8) (type BiDi))
(pin (num 46) (name PB9) (type BiDi))
(pin (num 47) (name VSS) (type power_in))
(pin (num 48) (name VDD) (type power_in))))
(libpart (lib Mechanical) (part MountingHole)
(description "Mounting Hole without connection")
(docs ~)
(footprints
(fp MountingHole*))
(fields
(field (name Reference) H)
(field (name Value) MountingHole)))
(libpart (lib Switch) (part SW_Push)
(description "Push button switch, generic, two pins")
(docs ~)
(fields
(field (name Reference) SW)
(field (name Value) SW_Push))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib Transistor_BJT) (part BC817)
(aliases
(alias BC818)
(alias BC847)
(alias BC848)
(alias BC849)
(alias BC850)
(alias MMBT3904)
(alias MMBT5550L)
(alias MMBT5551L))
(description "0.8A Ic, 45V Vce, NPN Transistor, SOT-23")
(docs http://www.fairchildsemi.com/ds/BC/BC817.pdf)
(footprints
(fp SOT?23*))
(fields
(field (name Reference) Q)
(field (name Value) BC817)
(field (name Footprint) Package_TO_SOT_SMD:SOT-23))
(pins
(pin (num 1) (name B) (type input))
(pin (num 2) (name E) (type passive))
(pin (num 3) (name C) (type passive))))
(libpart (lib keebio) (part Hole)
(fields
(field (name Reference) H)
(field (name Value) Hole)))
(libpart (lib keyboard_parts) (part KEYSW)
(fields
(field (name Reference) K?)
(field (name Value) KEYSW))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib keypad) (part MCP1804x-1802xOT)
(aliases
(alias MCP1804x-2502xOT)
(alias MCP1804x-3002xOT)
(alias MCP1804x-3302xOT)
(alias MCP1804x-5002xOT)
(alias MCP1804x-A002xOT)
(alias MCP1804x-C002xOT))
(description "150mA, 28V LDO Regulator With Shutdown, 1.8V Fixed Output, SOT-23-5")
(docs http://ww1.microchip.com/downloads/en/DeviceDoc/20002200D.pdf)
(footprints
(fp SOT?23*))
(fields
(field (name Reference) U)
(field (name Value) MCP1804x-1802xOT)
(field (name Footprint) Package_TO_SOT_SMD:SOT-23-5))
(pins
(pin (num 1) (name VIN) (type power_in))
(pin (num 2) (name GND) (type power_in))
(pin (num 3) (name ~SHDN) (type input))
(pin (num 4) (name NC) (type NotConnected))
(pin (num 5) (name VOUT) (type power_out))))
(libpart (lib keypad-rescue) (part USB_C_Receptacle_USB2.0-Connector)
(footprints
(fp USB*C*Receptacle*))
(fields
(field (name Reference) J)
(field (name Value) USB_C_Receptacle_USB2.0-Connector))
(pins
(pin (num A1) (name GND) (type power_in))
(pin (num A4) (name VBUS) (type power_in))
(pin (num A5) (name CC1) (type BiDi))
(pin (num A6) (name D+) (type BiDi))
(pin (num A7) (name D-) (type BiDi))
(pin (num A8) (name SBU1) (type BiDi))
(pin (num A9) (name VBUS) (type power_in))
(pin (num A12) (name GND) (type power_in))
(pin (num B1) (name GND) (type power_in))
(pin (num B4) (name VBUS) (type power_in))
(pin (num B5) (name CC2) (type BiDi))
(pin (num B6) (name D+) (type BiDi))
(pin (num B7) (name D-) (type BiDi))
(pin (num B8) (name SBU2) (type BiDi))
(pin (num B9) (name VBUS) (type power_in))
(pin (num B12) (name GND) (type power_in))
(pin (num S1) (name SHIELD) (type passive)))))
(libraries
(library (logical Connector)
(uri /usr/share/kicad/library/Connector.lib))
(library (logical Device)
(uri /usr/share/kicad/library/Device.lib))
(library (logical LED)
(uri /usr/share/kicad/library/LED.lib))
(library (logical MCU_ST_STM32F3)
(uri /usr/share/kicad/library/MCU_ST_STM32F3.lib))
(library (logical Mechanical)
(uri /usr/share/kicad/library/Mechanical.lib))
(library (logical Switch)
(uri /usr/share/kicad/library/Switch.lib))
(library (logical Transistor_BJT)
(uri /usr/share/kicad/library/Transistor_BJT.lib))
(library (logical keebio)
(uri /home/fabian/PCBs/libs/keebio-components/keebio.lib))
(library (logical keyboard_parts)
(uri /home/fabian/PCBs/libraries/kicad_lib_tmk/keyboard_parts.lib))
(library (logical keypad)
(uri /home/fabian/PCBs/keypad/keypad.lib))
(library (logical keypad-rescue)
(uri /home/fabian/PCBs/keypad/keypad-rescue.lib)))
(nets
(net (code 1) (name Row2)
(node (ref K2_4) (pin 2))
(node (ref K2_1) (pin 2))
(node (ref K2_3) (pin 2))
(node (ref K2_2) (pin 2))
(node (ref U1) (pin 27)))
(net (code 2) (name Row1)
(node (ref K1_1) (pin 2))
(node (ref K1_2) (pin 2))
(node (ref K1_4) (pin 2))
(node (ref K1_3) (pin 2))
(node (ref U1) (pin 26)))
(net (code 3) (name Row4)
(node (ref K4_4) (pin 2))
(node (ref K4_1) (pin 2))
(node (ref K4_2) (pin 2))
(node (ref K4_3) (pin 2))
(node (ref U1) (pin 29)))
(net (code 4) (name Row3)
(node (ref K3_1) (pin 2))
(node (ref K3_2) (pin 2))
(node (ref K3_3) (pin 2))
(node (ref K3_4) (pin 2))
(node (ref U1) (pin 28)))
(net (code 5) (name Row5)
(node (ref U1) (pin 25))
(node (ref K5_3) (pin 2))
(node (ref K5_2) (pin 2))
(node (ref K5_1) (pin 2)))
(net (code 6) (name "Net-(U2-Pad4)")
(node (ref U2) (pin 4)))
(net (code 7) (name GND)
(node (ref U1) (pin 23))
(node (ref U1) (pin 35))
(node (ref U1) (pin 47))
(node (ref U1) (pin 8))
(node (ref D1) (pin 1))
(node (ref J3) (pin A12))
(node (ref J3) (pin A1))
(node (ref C11) (pin 2))
(node (ref R6) (pin 1))
(node (ref C3) (pin 1))
(node (ref C2) (pin 1))
(node (ref C1) (pin 1))
(node (ref C5) (pin 1))
(node (ref C4) (pin 1))
(node (ref D20) (pin 2))
(node (ref D22) (pin 2))
(node (ref D16) (pin 2))
(node (ref C10) (pin 2))
(node (ref C9) (pin 2))
(node (ref C7) (pin 1))
(node (ref C6) (pin 1))
(node (ref Y1) (pin 4))
(node (ref Y1) (pin 2))
(node (ref D21) (pin 2))
(node (ref D19) (pin 2))
(node (ref D17) (pin 2))
(node (ref D15) (pin 2))
(node (ref D18) (pin 2))
(node (ref D13) (pin 2))
(node (ref D14) (pin 2))
(node (ref J3) (pin B1))
(node (ref R7) (pin 2))
(node (ref Q1) (pin 2))
(node (ref J3) (pin B12))
(node (ref R2) (pin 1))
(node (ref C12) (pin 2))
(node (ref D25) (pin 1))
(node (ref J1) (pin 1))
(node (ref C8) (pin 1))
(node (ref U2) (pin 2)))
(net (code 8) (name /led/UGLOW_LED)
(node (ref U1) (pin 37))
(node (ref D13) (pin 3)))
(net (code 11) (name USB_N)
(node (ref R10) (pin 2))
(node (ref J1) (pin 3))
(node (ref J3) (pin B7))
(node (ref J3) (pin A7)))
(net (code 12) (name USB_P)
(node (ref J1) (pin 2))
(node (ref R11) (pin 2))
(node (ref J3) (pin B6))
(node (ref J3) (pin A6)))
(net (code 13) (name Col4)
(node (ref U1) (pin 19))
(node (ref D12) (pin 3))
(node (ref D11) (pin 3)))
(net (code 14) (name Col3)
(node (ref D8) (pin 3))
(node (ref D10) (pin 1))
(node (ref D9) (pin 3))
(node (ref U1) (pin 18)))
(net (code 15) (name Col2)
(node (ref D5) (pin 3))
(node (ref D6) (pin 3))
(node (ref U1) (pin 17))
(node (ref D7) (pin 1)))
(net (code 16) (name Col1)
(node (ref D2) (pin 3))
(node (ref D3) (pin 3))
(node (ref U1) (pin 16))
(node (ref D4) (pin 1)))
(net (code 17) (name "Net-(J3-PadB8)")
(node (ref J3) (pin B8)))
(net (code 18) (name "Net-(J3-PadA8)")
(node (ref J3) (pin A8)))
(net (code 19) (name "Net-(R1-Pad2)")
(node (ref R1) (pin 2))
(node (ref U1) (pin 33))
(node (ref R11) (pin 1)))
(net (code 20) (name "Net-(R10-Pad1)")
(node (ref R10) (pin 1))
(node (ref U1) (pin 32)))
(net (code 21) (name "Net-(J3-PadA5)")
(node (ref R7) (pin 1))
(node (ref J3) (pin B5))
(node (ref J3) (pin A5)))
(net (code 22) (name "Net-(U1-Pad3)")
(node (ref U1) (pin 3)))
(net (code 23) (name "Net-(U1-Pad10)")
(node (ref U1) (pin 10)))
(net (code 24) (name "Net-(U1-Pad22)")
(node (ref U1) (pin 22)))
(net (code 25) (name "Net-(U1-Pad21)")
(node (ref U1) (pin 21)))
(net (code 26) (name "Net-(U1-Pad46)")
(node (ref U1) (pin 46)))
(net (code 27) (name "Net-(U1-Pad45)")
(node (ref U1) (pin 45)))
(net (code 28) (name "Net-(U1-Pad43)")
(node (ref U1) (pin 43)))
(net (code 29) (name "Net-(U1-Pad42)")
(node (ref U1) (pin 42)))
(net (code 30) (name "Net-(U1-Pad41)")
(node (ref U1) (pin 41)))