-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfirst kb project.kicad_pcb
1136 lines (1110 loc) · 81 KB
/
first kb project.kicad_pcb
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
(kicad_pcb (version 20211014) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 1)
(scaleselection 1)
(outputdirectory "")
)
)
(net 0 "")
(net 1 "+5V")
(net 2 "GND")
(net 3 "Net-(C3-Pad2)")
(net 4 "Net-(C4-Pad2)")
(net 5 "Net-(C6-Pad2)")
(net 6 "ROW0")
(net 7 "Net-(D1-Pad2)")
(net 8 "ROW1")
(net 9 "Net-(D2-Pad2)")
(net 10 "Net-(D3-Pad2)")
(net 11 "Net-(D4-Pad2)")
(net 12 "VCC")
(net 13 "COL0")
(net 14 "COL1")
(net 15 "D+")
(net 16 "Net-(R1-Pad2)")
(net 17 "D-")
(net 18 "Net-(R2-Pad2)")
(net 19 "Net-(R3-Pad2)")
(net 20 "Net-(R4-Pad1)")
(net 21 "unconnected-(U1-Pad1)")
(net 22 "unconnected-(U1-Pad8)")
(net 23 "unconnected-(U1-Pad9)")
(net 24 "unconnected-(U1-Pad10)")
(net 25 "unconnected-(U1-Pad11)")
(net 26 "unconnected-(U1-Pad12)")
(net 27 "unconnected-(U1-Pad18)")
(net 28 "unconnected-(U1-Pad19)")
(net 29 "unconnected-(U1-Pad20)")
(net 30 "unconnected-(U1-Pad21)")
(net 31 "unconnected-(U1-Pad22)")
(net 32 "unconnected-(U1-Pad25)")
(net 33 "unconnected-(U1-Pad26)")
(net 34 "unconnected-(U1-Pad27)")
(net 35 "unconnected-(U1-Pad28)")
(net 36 "unconnected-(U1-Pad29)")
(net 37 "unconnected-(U1-Pad30)")
(net 38 "unconnected-(U1-Pad31)")
(net 39 "unconnected-(U1-Pad32)")
(net 40 "unconnected-(U1-Pad36)")
(net 41 "unconnected-(U1-Pad37)")
(net 42 "unconnected-(U1-Pad38)")
(net 43 "unconnected-(U1-Pad39)")
(net 44 "unconnected-(U1-Pad40)")
(net 45 "unconnected-(U1-Pad41)")
(net 46 "unconnected-(U1-Pad42)")
(footprint "MX_Alps_Hybrid:MX-1U" (layer "F.Cu")
(tedit 5A9F3A9A) (tstamp 500298f6-b9ed-4e53-bde6-024545f1a90a)
(at 131.7625 88.9)
(property "Sheetfile" "first kb project.kicad_sch")
(property "Sheetname" "")
(path "/bf52cf73-6a0e-4058-84e2-4c574cba07e6")
(attr through_hole)
(fp_text reference "MX4" (at 0 3.175) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ab5db7e5-9de7-449f-b70b-9d0dd610b10b)
)
(fp_text value "MX-NoLED" (at 0 -7.9375) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4c756fc2-8fde-4459-8921-e1db5a89f1ba)
)
(fp_line (start -7 7) (end -5 7) (layer "Dwgs.User") (width 0.15) (tstamp 301727b6-248b-4eb4-8c37-cb369ee1a241))
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer "Dwgs.User") (width 0.15) (tstamp 303c400a-1ac8-4f8f-ae11-254f46fa0fb3))
(fp_line (start -7 -7) (end -7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 3661902e-90e5-456c-bea6-67cccf66598c))
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer "Dwgs.User") (width 0.15) (tstamp 4cd135a5-fdd1-4851-864a-dadf7c96d9ff))
(fp_line (start 5 -7) (end 7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 4e00f560-8021-4e81-b35e-f0ec870c4011))
(fp_line (start -7 5) (end -7 7) (layer "Dwgs.User") (width 0.15) (tstamp 5b6a8d92-8f02-4344-a7df-ac07f7a6431e))
(fp_line (start 7 7) (end 7 5) (layer "Dwgs.User") (width 0.15) (tstamp 81d7db25-c179-4d9d-b74b-6c074422c80f))
(fp_line (start 7 -7) (end 7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 8b6f980e-ea4f-4b84-b3d3-77fe02511849))
(fp_line (start 5 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp a9c3bdaa-fab4-451c-a38a-fd9d9b673d6c))
(fp_line (start 9.525 9.525) (end -9.525 9.525) (layer "Dwgs.User") (width 0.15) (tstamp ae3c331f-8808-430e-931c-7d9b2cc37f5b))
(fp_line (start -5 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp f5ee5341-69c8-428a-a259-66f576fa2d08))
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer "Dwgs.User") (width 0.15) (tstamp fc5e93f7-8264-46ce-a278-5944e151e5a7))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp 262fe442-673c-4133-92f6-23f6d42651f0))
(pad "" np_thru_hole circle locked (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp 8b56f428-76c6-47f4-814c-d4162e003c52))
(pad "" np_thru_hole circle locked (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp d6962950-4b71-4ba8-ac78-7b9bfb3edf70))
(pad "1" thru_hole circle locked (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu "B.Mask")
(net 14 "COL1") (pinfunction "COL") (pintype "passive") (tstamp 2330617f-82c2-43f9-8a7c-826ddfdbb89f))
(pad "1" thru_hole oval locked (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu "B.Mask")
(net 14 "COL1") (pinfunction "COL") (pintype "passive") (tstamp 6f75ea3e-6135-44f5-9313-1aad839ab6f6))
(pad "2" thru_hole circle locked (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu "B.Mask")
(net 11 "Net-(D4-Pad2)") (pinfunction "ROW") (pintype "passive") (tstamp ca0eab8e-e3fd-464d-bb03-d1603b8a651b))
(pad "2" thru_hole oval locked (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu "B.Mask")
(net 11 "Net-(D4-Pad2)") (pinfunction "ROW") (pintype "passive") (tstamp e7130644-c4ae-4f9d-997d-5b4fa9d09578))
(pad "3" thru_hole circle locked (at -1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu "B.Mask") (tstamp 4ed25a91-62bc-460f-b416-f09c2b72ae30))
(pad "4" thru_hole rect locked (at 1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu "B.Mask") (tstamp 321c97ce-037e-4926-8c05-7be14a63f7fd))
)
(footprint "MX_Alps_Hybrid:MX-1U" (layer "F.Cu")
(tedit 5A9F3A9A) (tstamp 6db4c715-f604-4ad5-b3e6-77e085153a04)
(at 112.7125 69.85)
(property "Sheetfile" "first kb project.kicad_sch")
(property "Sheetname" "")
(path "/13a46724-22c2-4427-ad2b-59e18fad31b3")
(attr through_hole)
(fp_text reference "MX1" (at 0 3.175) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 753c83e3-0e5d-49a7-99fa-14d791ee9328)
)
(fp_text value "MX-NoLED" (at 0 -7.9375) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3191783e-5075-4348-8aac-846f923d21cb)
)
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer "Dwgs.User") (width 0.15) (tstamp 16ea365c-d7f5-4c44-b4c6-7d8ef461a0ca))
(fp_line (start -7 7) (end -5 7) (layer "Dwgs.User") (width 0.15) (tstamp 1e362064-1c5c-469c-8576-28390879d190))
(fp_line (start -7 5) (end -7 7) (layer "Dwgs.User") (width 0.15) (tstamp 23425199-2ac8-404e-b295-8bb0276f526e))
(fp_line (start 7 -7) (end 7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 2afbd14f-e6ea-4bea-882b-7e9761a0434e))
(fp_line (start 7 7) (end 7 5) (layer "Dwgs.User") (width 0.15) (tstamp 5a9c0dbe-9c68-4f1b-bb8c-18e35b87c9b2))
(fp_line (start 5 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp 790aac60-8af7-4c8a-86b0-99f3fe64112a))
(fp_line (start -7 -7) (end -7 -5) (layer "Dwgs.User") (width 0.15) (tstamp a1f347f0-3fa4-4dbd-b2cf-d3082bc4e36a))
(fp_line (start 5 -7) (end 7 -7) (layer "Dwgs.User") (width 0.15) (tstamp b30e6612-e5d5-44fe-802a-8ee7b6f86412))
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer "Dwgs.User") (width 0.15) (tstamp b34ce9ce-d270-4842-8d95-94720e40d3ca))
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer "Dwgs.User") (width 0.15) (tstamp bba52ae1-2c60-4612-b640-b785ed4cdd7e))
(fp_line (start -5 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp dc419a21-b30b-44db-8d8a-272c5f8ad6c6))
(fp_line (start 9.525 9.525) (end -9.525 9.525) (layer "Dwgs.User") (width 0.15) (tstamp f6c6b658-1bf6-4c26-b6a1-d4c107527951))
(pad "" np_thru_hole circle locked (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp 1452f510-68cb-471e-a2d7-5f55b38265b4))
(pad "" np_thru_hole circle locked (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp 949cc60c-3f6b-4495-915a-ef19f31633cf))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp d67f893e-d62b-44c0-a1ed-06c27930b246))
(pad "1" thru_hole oval locked (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu "B.Mask")
(net 13 "COL0") (pinfunction "COL") (pintype "passive") (tstamp 0b264411-5df7-4227-b41c-4ba7687d2096))
(pad "1" thru_hole circle locked (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu "B.Mask")
(net 13 "COL0") (pinfunction "COL") (pintype "passive") (tstamp ea318c4c-2aac-4b16-8f77-376b163fde73))
(pad "2" thru_hole circle locked (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu "B.Mask")
(net 7 "Net-(D1-Pad2)") (pinfunction "ROW") (pintype "passive") (tstamp 78a4062b-d2b4-4346-a029-0257bf4c7e99))
(pad "2" thru_hole oval locked (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu "B.Mask")
(net 7 "Net-(D1-Pad2)") (pinfunction "ROW") (pintype "passive") (tstamp a6353897-349e-4000-937a-994d7719e8ce))
(pad "3" thru_hole circle locked (at -1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu "B.Mask") (tstamp de044b0e-b1ea-4e31-a233-e607dfa30726))
(pad "4" thru_hole rect locked (at 1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu "B.Mask") (tstamp 74bbc32f-8eb0-4d3c-9612-5a45a4c49fbd))
)
(footprint "MX_Alps_Hybrid:MX-1U" (layer "F.Cu")
(tedit 5A9F3A9A) (tstamp 92ba8945-0271-4dc3-a102-541bc7646045)
(at 131.7625 69.85)
(property "Sheetfile" "first kb project.kicad_sch")
(property "Sheetname" "")
(path "/52df7f70-6944-43b1-b765-7073be3b7109")
(attr through_hole)
(fp_text reference "MX2" (at 0 3.175) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 050ccb9c-c92e-4885-96ad-3c8ee62baa70)
)
(fp_text value "MX-NoLED" (at 0 -7.9375) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c31b0de8-04f3-4322-ac80-83337fa9be21)
)
(fp_line (start 7 -7) (end 7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 013a1c32-db17-4fdf-9087-65b8bebaf5c1))
(fp_line (start -7 7) (end -5 7) (layer "Dwgs.User") (width 0.15) (tstamp 2bf34b7c-94ca-4ac8-94c5-6312536f342f))
(fp_line (start 9.525 9.525) (end -9.525 9.525) (layer "Dwgs.User") (width 0.15) (tstamp 3655f956-9a76-438c-8e5d-c0f5921a3841))
(fp_line (start 7 7) (end 7 5) (layer "Dwgs.User") (width 0.15) (tstamp 39f65f62-d48a-4aa3-a9a3-c17d058105fe))
(fp_line (start -5 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 61e795c9-5bb5-48b3-b7a0-cb64f04c7adc))
(fp_line (start -7 5) (end -7 7) (layer "Dwgs.User") (width 0.15) (tstamp 85762fc6-4dad-4d00-b3f3-d625c47e2b72))
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer "Dwgs.User") (width 0.15) (tstamp 9b396834-9f2e-4234-8e77-e2f453053d8c))
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer "Dwgs.User") (width 0.15) (tstamp a66bd857-144e-4ab0-ab7a-3c10ed80cb1e))
(fp_line (start -7 -7) (end -7 -5) (layer "Dwgs.User") (width 0.15) (tstamp ca12753c-a5f4-49a4-bb14-a01420a86edb))
(fp_line (start 5 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp d5316dab-96ab-4569-a34d-520f96a50c86))
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer "Dwgs.User") (width 0.15) (tstamp eca73914-6f4b-487c-b8f6-6bedca0fa3fb))
(fp_line (start 5 -7) (end 7 -7) (layer "Dwgs.User") (width 0.15) (tstamp f683b564-906b-42f6-a233-cd22c58657dd))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp 815a0815-7930-45ec-8d6e-dc110f979c75))
(pad "" np_thru_hole circle locked (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp 875404be-e359-458a-af29-1bd3403dd55f))
(pad "" np_thru_hole circle locked (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp aeef9f8f-2515-46d6-a613-4e8d98d0e468))
(pad "1" thru_hole circle locked (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu "B.Mask")
(net 13 "COL0") (pinfunction "COL") (pintype "passive") (tstamp 539ff21e-64a5-4d0a-a3c6-87ad104f3729))
(pad "1" thru_hole oval locked (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu "B.Mask")
(net 13 "COL0") (pinfunction "COL") (pintype "passive") (tstamp fd2d066c-2ff9-43c4-ab8e-a65d2b71b5c1))
(pad "2" thru_hole circle locked (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu "B.Mask")
(net 9 "Net-(D2-Pad2)") (pinfunction "ROW") (pintype "passive") (tstamp 3a41f6b2-d64e-4fc9-9c78-62461e28f42c))
(pad "2" thru_hole oval locked (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu "B.Mask")
(net 9 "Net-(D2-Pad2)") (pinfunction "ROW") (pintype "passive") (tstamp c8ce7d0f-bd8a-416c-9bb9-339f4090a830))
(pad "3" thru_hole circle locked (at -1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu "B.Mask") (tstamp 93340c38-8bfd-447a-bf60-be3c6dc860d9))
(pad "4" thru_hole rect locked (at 1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu "B.Mask") (tstamp e5e03502-ed28-4743-9af6-23bafe8e639e))
)
(footprint "MX_Alps_Hybrid:MX-1U" (layer "F.Cu")
(tedit 5A9F3A9A) (tstamp e1640c92-0a7b-4990-ae42-e9436c2a460d)
(at 112.7125 88.9)
(property "Sheetfile" "first kb project.kicad_sch")
(property "Sheetname" "")
(path "/1bcd2fc8-deb8-4193-844f-efeb5d54b674")
(attr through_hole)
(fp_text reference "MX3" (at 0 3.175) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 395c69d5-4334-48e5-8637-2379eafb3eeb)
)
(fp_text value "MX-NoLED" (at 0 -7.9375) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f63dd01b-d31b-4c8b-8944-cc162e8dda4e)
)
(fp_line (start -7 -7) (end -7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 044452e8-a3b4-4d08-9835-701cc0a60807))
(fp_line (start 5 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp 3d0ee88c-fab5-44ff-91c4-a21e663a09de))
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer "Dwgs.User") (width 0.15) (tstamp 584c482d-1251-462e-825c-3a0578bafc6d))
(fp_line (start -7 5) (end -7 7) (layer "Dwgs.User") (width 0.15) (tstamp 588d3cbf-6c0a-4102-8f72-574f6ea20133))
(fp_line (start 7 -7) (end 7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 6db6b2d8-cd53-4924-910c-ce03370c85ba))
(fp_line (start 5 -7) (end 7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 7288ce3d-ad6e-43f5-96ca-99065d7798d0))
(fp_line (start -7 7) (end -5 7) (layer "Dwgs.User") (width 0.15) (tstamp 7803a0ea-b6d3-457b-b195-42c8dc80b579))
(fp_line (start 7 7) (end 7 5) (layer "Dwgs.User") (width 0.15) (tstamp 7fd58396-b4e5-46f4-aa37-499fb1457243))
(fp_line (start -5 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 8233de19-691a-4981-9177-f647c5ab854c))
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer "Dwgs.User") (width 0.15) (tstamp 89f897c4-98dd-4e30-9e76-7ca9bf021cd3))
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer "Dwgs.User") (width 0.15) (tstamp 9f9c31ca-425c-43ab-adfe-2e1ae4fe8686))
(fp_line (start 9.525 9.525) (end -9.525 9.525) (layer "Dwgs.User") (width 0.15) (tstamp afbfe9c5-779f-420f-9855-96eed1cd3301))
(pad "" np_thru_hole circle locked (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp 418a0e9c-c95f-4d4a-a88f-ec13faf3303c))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp 752fa345-d8be-4e99-aad1-e88671f99643))
(pad "" np_thru_hole circle locked (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp 92cf4db4-2dba-4763-9cd8-3c7f8aff8f24))
(pad "1" thru_hole circle locked (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu "B.Mask")
(net 14 "COL1") (pinfunction "COL") (pintype "passive") (tstamp 37e843e9-2538-4a91-9a9b-f536fa0a9e84))
(pad "1" thru_hole oval locked (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu "B.Mask")
(net 14 "COL1") (pinfunction "COL") (pintype "passive") (tstamp 5c5b3284-d7e2-4069-8087-eaf4a8346272))
(pad "2" thru_hole oval locked (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu "B.Mask")
(net 10 "Net-(D3-Pad2)") (pinfunction "ROW") (pintype "passive") (tstamp 0454b0ed-4e94-46b1-9058-7210ddee62e4))
(pad "2" thru_hole circle locked (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu "B.Mask")
(net 10 "Net-(D3-Pad2)") (pinfunction "ROW") (pintype "passive") (tstamp 794e55a0-75fe-436a-8b64-c2f248c65f18))
(pad "3" thru_hole circle locked (at -1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu "B.Mask") (tstamp 8d33a8d3-c5cc-40b4-ba71-6923d60927e2))
(pad "4" thru_hole rect locked (at 1.27 5.08) (size 1.905 1.905) (drill 1.04) (layers *.Cu "B.Mask") (tstamp 677a1070-c11b-49a9-8186-12e0a3e880b1))
)
(footprint "Resistor_SMD:R_0805_2012Metric" (layer "B.Cu")
(tedit 5F68FEEE) (tstamp 00d22a94-4415-4f7c-bba5-9ac8913c5f96)
(at 78.58125 71.89375 180)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "first kb project.kicad_sch")
(property "Sheetname" "")
(path "/af5cf0bf-215c-4cb2-87ca-5257fa8b16d2")
(attr smd)
(fp_text reference "R3" (at 0 1.65) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp aed766cc-c8d5-45cf-84bc-1c29216ccceb)
)
(fp_text value "10k" (at 0 -1.65) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 9c08e9bc-2359-4642-8957-cdc10638112d)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)) (justify mirror))
(tstamp 8764b520-89c4-4e8f-9e4f-12a445e1a616)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer "B.SilkS") (width 0.12) (tstamp 31880686-d14b-45e6-a2ae-8550fa4d37d7))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer "B.SilkS") (width 0.12) (tstamp 42b75c7f-e205-4778-8b80-6010e5eef40d))
(fp_line (start 1.68 -0.95) (end -1.68 -0.95) (layer "B.CrtYd") (width 0.05) (tstamp 16010e58-8aee-45c1-99df-d1cc2bd80779))
(fp_line (start 1.68 0.95) (end 1.68 -0.95) (layer "B.CrtYd") (width 0.05) (tstamp 59a4dc33-016c-4cea-b648-6fe1c8836f68))
(fp_line (start -1.68 0.95) (end 1.68 0.95) (layer "B.CrtYd") (width 0.05) (tstamp d732dada-3bdf-40ee-b2d0-4e0254c2408c))
(fp_line (start -1.68 -0.95) (end -1.68 0.95) (layer "B.CrtYd") (width 0.05) (tstamp e91ad237-6778-4565-a41c-5451c22b839e))
(fp_line (start -1 0.625) (end 1 0.625) (layer "B.Fab") (width 0.1) (tstamp 24c732be-56c7-40ff-a440-789a73d66281))
(fp_line (start -1 -0.625) (end -1 0.625) (layer "B.Fab") (width 0.1) (tstamp 76973292-11cb-4c20-8b65-30d05bb4f01c))
(fp_line (start 1 0.625) (end 1 -0.625) (layer "B.Fab") (width 0.1) (tstamp 8e0527a1-64cc-4c21-af5a-5910f4c387cc))
(fp_line (start 1 -0.625) (end -1 -0.625) (layer "B.Fab") (width 0.1) (tstamp d6dd0f16-8940-44d4-96ec-2f3144e7eef5))
(pad "1" smd roundrect (at -0.9125 0 180) (size 1.025 1.4) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.243902)
(net 1 "+5V") (pintype "passive") (tstamp 5498fdb6-915a-4445-8b00-6524ae4d6c27))
(pad "2" smd roundrect (at 0.9125 0 180) (size 1.025 1.4) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.243902)
(net 19 "Net-(R3-Pad2)") (pintype "passive") (tstamp e31b63b1-e50c-436f-8b2d-c664bc43a016))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric" (layer "B.Cu")
(tedit 5F68FEEE) (tstamp 0a1ac2c6-8da8-4410-b772-69afa2855077)
(at 76.2 81.75625 90)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "first kb project.kicad_sch")
(property "Sheetname" "")
(path "/6537771f-7b81-4371-831c-4dfba5041029")
(attr smd)
(fp_text reference "C2" (at 0 1.68 90) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 3d927ca0-f4ad-42ab-b902-dfef8d84eebb)
)
(fp_text value "0.1uF" (at 0 -1.68 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 8847e751-6992-4f80-92c5-c3bef4b5dbf6)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "B.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)) (justify mirror))
(tstamp f252e204-5b1e-4386-b15b-42d6a51ae097)
)
(fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer "B.SilkS") (width 0.12) (tstamp 742f6656-c86d-41c0-937e-ef6ded3bd482))
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer "B.SilkS") (width 0.12) (tstamp dff62e1d-c592-4963-80cb-25d776cdc1f4))
(fp_line (start 1.7 -0.98) (end -1.7 -0.98) (layer "B.CrtYd") (width 0.05) (tstamp 251435cb-df17-46ab-aac4-3d24ccac8db0))
(fp_line (start 1.7 0.98) (end 1.7 -0.98) (layer "B.CrtYd") (width 0.05) (tstamp 7efaeda2-e767-44b9-adb2-3a0c3f4d2f1d))
(fp_line (start -1.7 0.98) (end 1.7 0.98) (layer "B.CrtYd") (width 0.05) (tstamp dacfc6b2-f197-4446-86ee-d141533404be))
(fp_line (start -1.7 -0.98) (end -1.7 0.98) (layer "B.CrtYd") (width 0.05) (tstamp e68fac9b-3de3-4acb-9bb0-3dee3685df22))
(fp_line (start 1 0.625) (end 1 -0.625) (layer "B.Fab") (width 0.1) (tstamp 7d512d14-3ca4-4934-b506-eb07d268c7dc))
(fp_line (start 1 -0.625) (end -1 -0.625) (layer "B.Fab") (width 0.1) (tstamp 9004cee7-358e-4c08-9d64-a05f28a4e7b6))
(fp_line (start -1 -0.625) (end -1 0.625) (layer "B.Fab") (width 0.1) (tstamp b2ecb88a-4c09-46d5-b24a-de38dbb48f75))
(fp_line (start -1 0.625) (end 1 0.625) (layer "B.Fab") (width 0.1) (tstamp d8ebdeb0-2bbd-4a1b-a259-f95c97f44cbe))
(pad "1" smd roundrect (at -0.95 0 90) (size 1 1.45) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 1 "+5V") (pintype "passive") (tstamp c355ca51-32bc-4d88-a250-07d5621dd709))
(pad "2" smd roundrect (at 0.95 0 90) (size 1 1.45) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 119a2ba9-03f2-48af-8f1a-4a96cb25a3bf))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Diode_SMD:D_SOD-123" (layer "B.Cu")
(tedit 58645DC7) (tstamp 191379e4-86ba-4bf3-8d2d-4cd5385d32c3)
(at 121.35625 89.10625 90)
(descr "SOD-123")
(tags "SOD-123")
(property "Sheetfile" "first kb project.kicad_sch")
(property "Sheetname" "")
(path "/89dc425c-c2d1-4c4b-9835-9ce11fc06c21")
(attr smd)
(fp_text reference "D3" (at 0 2 90) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 0fc92961-6e51-49df-b0eb-dd1791483003)
)
(fp_text value "SOD-123" (at 0 -2.1 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 345b5742-5f5b-4133-bd63-f955ca19a62c)
)
(fp_text user "${REFERENCE}" (at 0 2 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 34bb2d5a-a1fd-4187-b623-25a5b805199b)
)
(fp_line (start -2.25 1) (end 1.65 1) (layer "B.SilkS") (width 0.12) (tstamp 066893ee-f587-4ad1-a5e3-e3171a7f7252))
(fp_line (start -2.25 1) (end -2.25 -1) (layer "B.SilkS") (width 0.12) (tstamp 2c8a20bd-e92e-46ff-b900-260ee00ab04b))
(fp_line (start -2.25 -1) (end 1.65 -1) (layer "B.SilkS") (width 0.12) (tstamp 3223d5c1-12ae-4383-9a3d-a77618f00732))
(fp_line (start 2.35 1.15) (end 2.35 -1.15) (layer "B.CrtYd") (width 0.05) (tstamp 4969850b-ae26-4ccb-823e-8fd7d1c082fe))
(fp_line (start -2.35 1.15) (end 2.35 1.15) (layer "B.CrtYd") (width 0.05) (tstamp 73892a2a-cb53-43a4-8e7c-751de25d1e29))
(fp_line (start 2.35 -1.15) (end -2.35 -1.15) (layer "B.CrtYd") (width 0.05) (tstamp 7e038545-c5a5-4131-a49e-7b5043e7ec34))
(fp_line (start -2.35 1.15) (end -2.35 -1.15) (layer "B.CrtYd") (width 0.05) (tstamp 9cb0289b-897f-4a33-9575-6ead0989832a))
(fp_line (start -0.35 0) (end -0.35 -0.55) (layer "B.Fab") (width 0.1) (tstamp 13126287-e9cb-4238-b299-7176f08d4c96))
(fp_line (start -0.35 0) (end -0.35 0.55) (layer "B.Fab") (width 0.1) (tstamp 1675ce03-54b6-4252-90b1-150b2d4729ec))
(fp_line (start -0.35 0) (end 0.25 0.4) (layer "B.Fab") (width 0.1) (tstamp 23d269d6-d694-442a-bf5d-98bf3544fc31))
(fp_line (start -0.75 0) (end -0.35 0) (layer "B.Fab") (width 0.1) (tstamp 31d127b8-e8f8-47b6-acc4-5f7197d756d8))
(fp_line (start 1.4 -0.9) (end -1.4 -0.9) (layer "B.Fab") (width 0.1) (tstamp 7c1fd6fc-5c53-4ccb-a456-46fe6fc0bc71))
(fp_line (start 0.25 0) (end 0.75 0) (layer "B.Fab") (width 0.1) (tstamp 7f3472d8-b33a-40c5-a248-c96394fd69de))
(fp_line (start 1.4 0.9) (end 1.4 -0.9) (layer "B.Fab") (width 0.1) (tstamp a49f7437-7605-4a08-b3ab-0ea16e8bc6c8))
(fp_line (start -1.4 -0.9) (end -1.4 0.9) (layer "B.Fab") (width 0.1) (tstamp bd3e3af4-a5b8-4e4b-95b1-3c69a267c242))
(fp_line (start 0.25 -0.4) (end -0.35 0) (layer "B.Fab") (width 0.1) (tstamp d1ea7795-8403-4edb-b959-1b29f77ed16f))
(fp_line (start -1.4 0.9) (end 1.4 0.9) (layer "B.Fab") (width 0.1) (tstamp daa8252e-3760-4210-b0ae-513325376d6c))
(fp_line (start 0.25 0.4) (end 0.25 -0.4) (layer "B.Fab") (width 0.1) (tstamp dbe6edc1-ee1c-41ad-b94e-6a468b80b874))
(pad "1" smd rect (at -1.65 0 90) (size 0.9 1.2) (layers "B.Cu" "B.Paste" "B.Mask")
(net 6 "ROW0") (pinfunction "K") (pintype "passive") (tstamp 463e71c6-e035-4ed0-9a41-c3c9633f2c78))
(pad "2" smd rect (at 1.65 0 90) (size 0.9 1.2) (layers "B.Cu" "B.Paste" "B.Mask")
(net 10 "Net-(D3-Pad2)") (pinfunction "A") (pintype "passive") (tstamp 2330a65f-a667-4564-b2ea-fd267508069a))
(model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-123.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Diode_SMD:D_SOD-123" (layer "B.Cu")
(tedit 58645DC7) (tstamp 2a891096-042c-4004-b161-8bd2c0b59fd7)
(at 121.44375 69.85 90)
(descr "SOD-123")
(tags "SOD-123")
(property "Sheetfile" "first kb project.kicad_sch")
(property "Sheetname" "")
(path "/62fa9ae6-5065-4040-a24a-d9c05717b029")
(attr smd)
(fp_text reference "D1" (at 0 2 90) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp bade9875-e59b-4d52-b529-c48d7c265fc4)
)
(fp_text value "SOD-123" (at 0 -2.1 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 3b398e0a-4c10-4dcc-aa1f-5dcd51a576d9)
)
(fp_text user "${REFERENCE}" (at 0 2 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp a27ad806-2f49-493b-a712-5cefb34fea4e)
)
(fp_line (start -2.25 1) (end -2.25 -1) (layer "B.SilkS") (width 0.12) (tstamp 2629f374-664b-4a6a-877f-847eba3a2928))
(fp_line (start -2.25 1) (end 1.65 1) (layer "B.SilkS") (width 0.12) (tstamp 920d067c-09ea-4120-b810-77cbd11822fb))
(fp_line (start -2.25 -1) (end 1.65 -1) (layer "B.SilkS") (width 0.12) (tstamp e096fb6c-9c86-457b-8f2e-4be4f1ee308e))
(fp_line (start -2.35 1.15) (end 2.35 1.15) (layer "B.CrtYd") (width 0.05) (tstamp 3bd1d24a-0ba6-444e-896e-ab4ac7dd5127))
(fp_line (start 2.35 1.15) (end 2.35 -1.15) (layer "B.CrtYd") (width 0.05) (tstamp 4e26d1df-a557-446c-8724-16a2959e6714))
(fp_line (start 2.35 -1.15) (end -2.35 -1.15) (layer "B.CrtYd") (width 0.05) (tstamp 5417d93e-ea72-4615-a825-50b48895bd92))
(fp_line (start -2.35 1.15) (end -2.35 -1.15) (layer "B.CrtYd") (width 0.05) (tstamp a1f64cc6-dc73-41aa-a86c-99d2c0c7e9e8))
(fp_line (start 0.25 0.4) (end 0.25 -0.4) (layer "B.Fab") (width 0.1) (tstamp 058fedcc-704d-4293-8197-34a17ef8dc07))
(fp_line (start 0.25 0) (end 0.75 0) (layer "B.Fab") (width 0.1) (tstamp 11ccd497-2713-4d03-8a7a-1dbd53fbc1f7))
(fp_line (start -0.35 0) (end 0.25 0.4) (layer "B.Fab") (width 0.1) (tstamp 328b655f-3682-4d72-b986-09747092cdfb))
(fp_line (start -0.75 0) (end -0.35 0) (layer "B.Fab") (width 0.1) (tstamp 46c31fef-8b6d-4892-b7d6-1b9818ed82f5))
(fp_line (start -0.35 0) (end -0.35 -0.55) (layer "B.Fab") (width 0.1) (tstamp 7dd46673-4551-4937-beee-2ea3f888f7bc))
(fp_line (start -0.35 0) (end -0.35 0.55) (layer "B.Fab") (width 0.1) (tstamp 99e5628a-8c61-4f9d-aa6e-5b585271b505))
(fp_line (start -1.4 0.9) (end 1.4 0.9) (layer "B.Fab") (width 0.1) (tstamp 9f289b4a-cc82-473b-9973-1ab4c36355f8))
(fp_line (start 1.4 -0.9) (end -1.4 -0.9) (layer "B.Fab") (width 0.1) (tstamp c27162ce-dec2-4696-8422-f740d31716cf))
(fp_line (start 1.4 0.9) (end 1.4 -0.9) (layer "B.Fab") (width 0.1) (tstamp c7050574-27e1-4a80-9dab-24805663409e))
(fp_line (start -1.4 -0.9) (end -1.4 0.9) (layer "B.Fab") (width 0.1) (tstamp c9af433b-c759-435f-b23f-8e61bde22221))
(fp_line (start 0.25 -0.4) (end -0.35 0) (layer "B.Fab") (width 0.1) (tstamp d46f6682-7aa3-41f8-8dfe-bfed3b1f9948))
(pad "1" smd rect (at -1.65 0 90) (size 0.9 1.2) (layers "B.Cu" "B.Paste" "B.Mask")
(net 6 "ROW0") (pinfunction "K") (pintype "passive") (tstamp 771145ed-2e00-4172-ac95-37a36c6a35ce))
(pad "2" smd rect (at 1.65 0 90) (size 0.9 1.2) (layers "B.Cu" "B.Paste" "B.Mask")
(net 7 "Net-(D1-Pad2)") (pinfunction "A") (pintype "passive") (tstamp b81cd904-69d1-4c8b-81f2-302fdf1cfeb0))
(model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-123.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Diode_SMD:D_SOD-123" (layer "B.Cu")
(tedit 58645DC7) (tstamp 37b282c6-a944-47fd-a51e-f59b7e5f431e)
(at 140.49375 88.9 90)
(descr "SOD-123")
(tags "SOD-123")
(property "Sheetfile" "first kb project.kicad_sch")
(property "Sheetname" "")
(path "/c3bf38c9-4dde-4cc4-8576-fb346e14710d")
(attr smd)
(fp_text reference "D4" (at 0 2.38125 90) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 8a56a0e1-0b83-4459-b285-5106d6ccafbb)
)
(fp_text value "SOD-123" (at 0 -2.1 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 6d4e5957-6764-40d7-9d3e-e16ba095c79a)
)
(fp_text user "${REFERENCE}" (at 0 2.38125 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 4829bee0-faa8-43f7-b2d7-8a6e5d1b3050)
)
(fp_line (start -2.25 -1) (end 1.65 -1) (layer "B.SilkS") (width 0.12) (tstamp 5f88a249-af85-4825-b9e1-a3ec67ffc637))
(fp_line (start -2.25 1) (end 1.65 1) (layer "B.SilkS") (width 0.12) (tstamp 77b09fa1-fbbb-49ab-94c4-069660b694ff))
(fp_line (start -2.25 1) (end -2.25 -1) (layer "B.SilkS") (width 0.12) (tstamp 899f373a-cf16-4f13-9d21-dfc8f80ca371))
(fp_line (start 2.35 -1.15) (end -2.35 -1.15) (layer "B.CrtYd") (width 0.05) (tstamp 43cc948b-7aa9-4530-a448-911bd0e35fae))
(fp_line (start -2.35 1.15) (end -2.35 -1.15) (layer "B.CrtYd") (width 0.05) (tstamp 449c1c23-1f0d-4ed5-b566-2c18ec95c2a3))
(fp_line (start 2.35 1.15) (end 2.35 -1.15) (layer "B.CrtYd") (width 0.05) (tstamp cfdd684c-0d04-48e4-a62a-4b899d9ad32f))
(fp_line (start -2.35 1.15) (end 2.35 1.15) (layer "B.CrtYd") (width 0.05) (tstamp e6eb6955-2cd6-4a24-9d4c-bf3c42dcce77))
(fp_line (start -0.35 0) (end 0.25 0.4) (layer "B.Fab") (width 0.1) (tstamp 2e2c4431-7ad4-4101-b72a-e48147e24a71))
(fp_line (start 0.25 0.4) (end 0.25 -0.4) (layer "B.Fab") (width 0.1) (tstamp 3c847883-a462-4ea9-9466-d1dd1edc5a97))
(fp_line (start -0.35 0) (end -0.35 -0.55) (layer "B.Fab") (width 0.1) (tstamp 5600b446-cc57-4d99-a6dd-3cb2f076483c))
(fp_line (start -0.35 0) (end -0.35 0.55) (layer "B.Fab") (width 0.1) (tstamp 73975e5a-04c0-454b-b7b1-06dcb3c81497))
(fp_line (start 0.25 0) (end 0.75 0) (layer "B.Fab") (width 0.1) (tstamp 822cf157-ecb8-46d7-8cc6-5f0248fd6b37))
(fp_line (start 0.25 -0.4) (end -0.35 0) (layer "B.Fab") (width 0.1) (tstamp 8cb63406-42c5-417f-9384-cf8cdba62340))
(fp_line (start 1.4 -0.9) (end -1.4 -0.9) (layer "B.Fab") (width 0.1) (tstamp 9b11964f-5943-49c9-bbf0-08d035779463))
(fp_line (start -0.75 0) (end -0.35 0) (layer "B.Fab") (width 0.1) (tstamp 9f7b3295-d16c-467f-88f6-2ab8ee650e3a))
(fp_line (start 1.4 0.9) (end 1.4 -0.9) (layer "B.Fab") (width 0.1) (tstamp a1cf3838-7a06-43e1-a94f-aa849ba69819))
(fp_line (start -1.4 -0.9) (end -1.4 0.9) (layer "B.Fab") (width 0.1) (tstamp a43501fb-72a9-4536-bb81-9f53755e8169))
(fp_line (start -1.4 0.9) (end 1.4 0.9) (layer "B.Fab") (width 0.1) (tstamp bdb69042-8fa0-4d7e-be19-fed7218cdfd8))
(pad "1" smd rect (at -1.65 0 90) (size 0.9 1.2) (layers "B.Cu" "B.Paste" "B.Mask")
(net 8 "ROW1") (pinfunction "K") (pintype "passive") (tstamp 019b9904-3bfd-4fd4-9d41-96b38c16849e))
(pad "2" smd rect (at 1.65 0 90) (size 0.9 1.2) (layers "B.Cu" "B.Paste" "B.Mask")
(net 11 "Net-(D4-Pad2)") (pinfunction "A") (pintype "passive") (tstamp d6570804-0f13-4bd8-a39e-13afafdb752a))
(model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-123.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric" (layer "B.Cu")
(tedit 5F68FEEE) (tstamp 39549a53-fe72-4509-a12d-de170bbf0433)
(at 89.69375 54.76875 180)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "first kb project.kicad_sch")
(property "Sheetname" "")
(path "/84ac2a03-33da-4b82-a95b-df91fc6e7219")
(attr smd)
(fp_text reference "C1" (at 0 1.68) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 1d3dd843-278a-491c-aee7-c4ca56549357)
)
(fp_text value "0.1uF" (at 0 -1.68) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp a3c07522-2d1f-4d1c-a6e5-18097136531a)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)) (justify mirror))
(tstamp 8fecaef3-3ec3-48db-b92b-42aba82b3c34)
)
(fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer "B.SilkS") (width 0.12) (tstamp 9d1d67aa-bd89-4416-8ff1-ea3aed8edbd3))
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer "B.SilkS") (width 0.12) (tstamp a07f1e79-1d7d-4a07-b840-3da61e06e5e0))
(fp_line (start -1.7 0.98) (end 1.7 0.98) (layer "B.CrtYd") (width 0.05) (tstamp 26584013-aa69-4f6e-9469-cf96829118fe))
(fp_line (start -1.7 -0.98) (end -1.7 0.98) (layer "B.CrtYd") (width 0.05) (tstamp 42921c6f-25e8-4512-9139-83b5b81397a7))
(fp_line (start 1.7 0.98) (end 1.7 -0.98) (layer "B.CrtYd") (width 0.05) (tstamp d9c7258e-64f4-44a0-b9ed-474106f56c42))
(fp_line (start 1.7 -0.98) (end -1.7 -0.98) (layer "B.CrtYd") (width 0.05) (tstamp ff3f0dce-48a8-4a4e-9a85-b6808253807b))
(fp_line (start -1 -0.625) (end -1 0.625) (layer "B.Fab") (width 0.1) (tstamp 14b6a088-e29e-4f65-bb62-fd783c1ab88e))
(fp_line (start 1 -0.625) (end -1 -0.625) (layer "B.Fab") (width 0.1) (tstamp 6b4ae552-c3dc-4d02-ab1a-556e15ae247d))
(fp_line (start 1 0.625) (end 1 -0.625) (layer "B.Fab") (width 0.1) (tstamp 8157d0c3-4115-4fef-882d-18ff9f3b1e49))
(fp_line (start -1 0.625) (end 1 0.625) (layer "B.Fab") (width 0.1) (tstamp d9209bac-cc1b-4bd5-9b0c-8896b0dbce47))
(pad "1" smd roundrect (at -0.95 0 180) (size 1 1.45) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 1 "+5V") (pintype "passive") (tstamp 5841a60a-7434-4694-9b2f-60c2321b8bd0))
(pad "2" smd roundrect (at 0.95 0 180) (size 1 1.45) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 94f92a53-a887-4e67-921d-9685969e3c14))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Crystal:Crystal_SMD_3225-4Pin_3.2x2.5mm" (layer "B.Cu")
(tedit 5A0FD1B2) (tstamp 3e2d784c-b1ea-4086-bef2-82018cbe1d69)
(at 81.75625 66.675 180)
(descr "SMD Crystal SERIES SMD3225/4 http://www.txccrystal.com/images/pdf/7m-accuracy.pdf, 3.2x2.5mm^2 package")
(tags "SMD SMT crystal")
(property "Sheetfile" "first kb project.kicad_sch")
(property "Sheetname" "")
(path "/14ed8ea6-6c5b-4ebf-847e-d7a992759944")
(attr smd)
(fp_text reference "Y1" (at 0 2.45) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp f656a274-a08d-4499-8245-beb474616c55)
)
(fp_text value "16MHz" (at 0 -2.45) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 2b3bf4ed-88d9-4ab0-910a-0ad2b3b622a5)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab")
(effects (font (size 0.7 0.7) (thickness 0.105)) (justify mirror))
(tstamp ef58db98-6c88-473d-9622-1b8b6864b4df)
)
(fp_line (start -2 -1.65) (end 2 -1.65) (layer "B.SilkS") (width 0.12) (tstamp 0f122926-6ab0-4321-bb42-3042bba502d6))
(fp_line (start -2 1.65) (end -2 -1.65) (layer "B.SilkS") (width 0.12) (tstamp 26a83821-4bc7-4e41-803f-5e8d19182c3e))
(fp_line (start -2.1 1.7) (end -2.1 -1.7) (layer "B.CrtYd") (width 0.05) (tstamp 25dcf1b7-43fe-4f66-9cb1-3580284f763b))
(fp_line (start 2.1 -1.7) (end 2.1 1.7) (layer "B.CrtYd") (width 0.05) (tstamp 5aec5c76-9c76-4aad-b7fa-9f497abad71a))
(fp_line (start 2.1 1.7) (end -2.1 1.7) (layer "B.CrtYd") (width 0.05) (tstamp a3a95987-dbc7-46c3-9b74-39d0bc0f6070))
(fp_line (start -2.1 -1.7) (end 2.1 -1.7) (layer "B.CrtYd") (width 0.05) (tstamp d1f5dbe4-d66e-4e26-be2b-62f3bc80c54d))
(fp_line (start -1.6 1.25) (end -1.6 -1.25) (layer "B.Fab") (width 0.1) (tstamp 556af892-f4e4-492b-b72b-6477c8bec323))
(fp_line (start 1.6 -1.25) (end 1.6 1.25) (layer "B.Fab") (width 0.1) (tstamp a2b398e0-0116-42e4-b9c2-9636582e46d5))
(fp_line (start 1.6 1.25) (end -1.6 1.25) (layer "B.Fab") (width 0.1) (tstamp d5fec05f-99a8-472c-a775-2ec1b2b5bea9))
(fp_line (start -1.6 -0.25) (end -0.6 -1.25) (layer "B.Fab") (width 0.1) (tstamp f36426ed-7479-4f20-ba5d-0f7f3108a945))
(fp_line (start -1.6 -1.25) (end 1.6 -1.25) (layer "B.Fab") (width 0.1) (tstamp fb66491d-bc49-47b5-a124-d31f60ba1b6d))
(pad "1" smd rect (at -1.1 -0.85 180) (size 1.4 1.2) (layers "B.Cu" "B.Paste" "B.Mask")
(net 4 "Net-(C4-Pad2)") (pinfunction "1") (pintype "passive") (tstamp fbef883a-9c30-4b66-add6-8cab5f0ab881))
(pad "2" smd rect (at 1.1 -0.85 180) (size 1.4 1.2) (layers "B.Cu" "B.Paste" "B.Mask")
(net 2 "GND") (pinfunction "2") (pintype "passive") (tstamp d16f4efb-8280-42d4-b6f7-9241e542014e))
(pad "3" smd rect (at 1.1 0.85 180) (size 1.4 1.2) (layers "B.Cu" "B.Paste" "B.Mask")
(net 3 "Net-(C3-Pad2)") (pinfunction "3") (pintype "passive") (tstamp 5d19829e-e95d-4ae6-bbd1-c9f884742daf))
(pad "4" smd rect (at -1.1 0.85 180) (size 1.4 1.2) (layers "B.Cu" "B.Paste" "B.Mask")
(net 2 "GND") (pinfunction "4") (pintype "passive") (tstamp 88effe7d-dade-4834-8c1a-104d0976182d))
(model "${KICAD6_3DMODEL_DIR}/Crystal.3dshapes/Crystal_SMD_3225-4Pin_3.2x2.5mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric" (layer "B.Cu")
(tedit 5F68FEEE) (tstamp 3fc3a397-ec3a-4314-aa6a-44925ef4cbbe)
(at 76.99375 66.675 90)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "first kb project.kicad_sch")
(property "Sheetname" "")
(path "/7cbaf778-b190-4822-9426-8aa77eebc7e7")
(attr smd)
(fp_text reference "C3" (at 0 1.68 90) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp b08a146a-6e43-46ac-8c31-9d5442623eb3)
)
(fp_text value "22pF" (at 0 -1.68 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 764ce9a2-c363-448f-a68c-a7dbf5cd80c1)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "B.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)) (justify mirror))
(tstamp 27b5a6bb-bf08-4e16-abae-290afd548f36)
)
(fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer "B.SilkS") (width 0.12) (tstamp 2fa17bd4-23af-495d-84c8-95f8b6beb5a8))
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer "B.SilkS") (width 0.12) (tstamp 961e37cd-505c-40aa-baef-0a680d665d8f))
(fp_line (start 1.7 -0.98) (end -1.7 -0.98) (layer "B.CrtYd") (width 0.05) (tstamp 76d9276c-0bff-44cf-81b5-cc0de1c97f12))
(fp_line (start 1.7 0.98) (end 1.7 -0.98) (layer "B.CrtYd") (width 0.05) (tstamp b6fc4182-53d3-44c8-80e1-53918daa9139))
(fp_line (start -1.7 -0.98) (end -1.7 0.98) (layer "B.CrtYd") (width 0.05) (tstamp e03d7bc9-2bd0-42b5-96ba-4ca164fb4c50))
(fp_line (start -1.7 0.98) (end 1.7 0.98) (layer "B.CrtYd") (width 0.05) (tstamp e721274f-b458-4ab5-8d4d-44bffaffa7c9))
(fp_line (start 1 -0.625) (end -1 -0.625) (layer "B.Fab") (width 0.1) (tstamp 325006ce-4c23-4f07-9871-dc0cd047f7fd))
(fp_line (start -1 -0.625) (end -1 0.625) (layer "B.Fab") (width 0.1) (tstamp 74796a55-82bc-4f74-9e9c-c7cb232069e3))
(fp_line (start 1 0.625) (end 1 -0.625) (layer "B.Fab") (width 0.1) (tstamp 96930a67-6215-4f2b-a9cc-16f78c9fd164))
(fp_line (start -1 0.625) (end 1 0.625) (layer "B.Fab") (width 0.1) (tstamp cf672f56-2d68-4c6c-a783-23e23c937b72))
(pad "1" smd roundrect (at -0.95 0 90) (size 1 1.45) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 1fbda89d-82ba-4f0a-b113-988f269883dc))
(pad "2" smd roundrect (at 0.95 0 90) (size 1 1.45) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 3 "Net-(C3-Pad2)") (pintype "passive") (tstamp 90dda447-2750-402e-9a9e-df264b0c0bc9))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric" (layer "B.Cu")
(tedit 5F68FEEE) (tstamp 5900b9d3-f54e-4689-953a-e125f5f9fa71)
(at 75.40625 86.51875)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "first kb project.kicad_sch")
(property "Sheetname" "")
(path "/a1dfb1e7-f5c9-4fa0-9c9a-62be4125883c")
(attr smd)
(fp_text reference "R1" (at 0 1.65) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 729e0aa9-1770-4b96-8a01-af601278faec)
)
(fp_text value "22" (at 0 -1.65) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 7847981b-5502-41f3-9413-b29fe20c5b32)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)) (justify mirror))
(tstamp 6c1d0ff6-53d9-4a5b-89a8-5313d6ca7d94)
)
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer "B.SilkS") (width 0.12) (tstamp 94b40fef-8e3d-4a32-a137-035c86ca86c8))
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer "B.SilkS") (width 0.12) (tstamp bb592211-9895-49a1-bb6a-47f7a9f85864))
(fp_line (start 1.68 -0.95) (end -1.68 -0.95) (layer "B.CrtYd") (width 0.05) (tstamp 91e34627-a183-42e4-bafa-955f631c2bab))
(fp_line (start -1.68 0.95) (end 1.68 0.95) (layer "B.CrtYd") (width 0.05) (tstamp a28b42a6-1c1a-4667-9b8b-ad6bdfd23632))
(fp_line (start -1.68 -0.95) (end -1.68 0.95) (layer "B.CrtYd") (width 0.05) (tstamp c360b637-6f5d-44e0-97f7-af09c2986ed7))
(fp_line (start 1.68 0.95) (end 1.68 -0.95) (layer "B.CrtYd") (width 0.05) (tstamp fc56b098-c3aa-474b-aac9-da58d4f42386))
(fp_line (start -1 -0.625) (end -1 0.625) (layer "B.Fab") (width 0.1) (tstamp 0df376e0-b3b8-4926-8318-ef70bcc43326))
(fp_line (start -1 0.625) (end 1 0.625) (layer "B.Fab") (width 0.1) (tstamp 644a2620-03c0-4432-a2a3-b8177b485182))
(fp_line (start 1 0.625) (end 1 -0.625) (layer "B.Fab") (width 0.1) (tstamp a97a52d6-fe14-4f06-b35e-2dc42532437e))
(fp_line (start 1 -0.625) (end -1 -0.625) (layer "B.Fab") (width 0.1) (tstamp d0e144a3-6f5f-4307-ac4c-47637e9032bf))
(pad "1" smd roundrect (at -0.9125 0) (size 1.025 1.4) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.243902)
(net 15 "D+") (pintype "passive") (tstamp 474da0bb-a80f-4ce4-b14e-5f26d8f31e91))
(pad "2" smd roundrect (at 0.9125 0) (size 1.025 1.4) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.243902)
(net 16 "Net-(R1-Pad2)") (pintype "passive") (tstamp ee5ea3d6-1422-40d3-882b-9d8b9c72bbba))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Fuse:Fuse_1206_3216Metric" (layer "B.Cu")
(tedit 5F68FEF1) (tstamp 74a9c3ca-08aa-4a6a-9a4f-5ecc24362076)
(at 96.04375 62.70625 180)
(descr "Fuse SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "fuse")
(property "Sheetfile" "first kb project.kicad_sch")
(property "Sheetname" "")
(path "/761d6949-54f7-42ab-ab65-19a1bb6be9c6")
(attr smd)
(fp_text reference "F1" (at 0 1.82) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 9f7324c5-50a2-442c-8a80-edf04aa2b2ac)
)
(fp_text value "500mA" (at 0 -1.82) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 25ada721-670a-4020-ae0b-77410c4e375a)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)) (justify mirror))
(tstamp 7f2c9904-545b-4337-acd6-8707e0924818)
)
(fp_line (start -0.602064 -0.91) (end 0.602064 -0.91) (layer "B.SilkS") (width 0.12) (tstamp 70b621b6-45b5-43cb-9683-d589118723d7))
(fp_line (start -0.602064 0.91) (end 0.602064 0.91) (layer "B.SilkS") (width 0.12) (tstamp f46f4b86-daf6-4869-98cb-928039f00f5f))
(fp_line (start -2.28 -1.12) (end -2.28 1.12) (layer "B.CrtYd") (width 0.05) (tstamp 6c5e0d12-8ed5-4c38-93b5-5d0f856a23b9))
(fp_line (start -2.28 1.12) (end 2.28 1.12) (layer "B.CrtYd") (width 0.05) (tstamp b05af61d-3c1d-44cf-aea2-61fd169c9d1a))
(fp_line (start 2.28 1.12) (end 2.28 -1.12) (layer "B.CrtYd") (width 0.05) (tstamp b7e9cf10-b74e-4e80-a7f1-e33a29fe56de))
(fp_line (start 2.28 -1.12) (end -2.28 -1.12) (layer "B.CrtYd") (width 0.05) (tstamp fd1d5da9-cff8-4c76-9b2b-14585edbbb1e))
(fp_line (start 1.6 -0.8) (end -1.6 -0.8) (layer "B.Fab") (width 0.1) (tstamp 2ecadc66-69f8-45d0-bf37-af9bed077d19))
(fp_line (start -1.6 0.8) (end 1.6 0.8) (layer "B.Fab") (width 0.1) (tstamp 3f40e620-2b34-4c9e-b852-1ba39e3dbc3a))
(fp_line (start 1.6 0.8) (end 1.6 -0.8) (layer "B.Fab") (width 0.1) (tstamp 44f6de44-c3d8-405f-ac4c-196fb6e5deee))
(fp_line (start -1.6 -0.8) (end -1.6 0.8) (layer "B.Fab") (width 0.1) (tstamp 48d919bf-1f23-4426-bfff-25ceb2530f1f))
(pad "1" smd roundrect (at -1.4 0 180) (size 1.25 1.75) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.2)
(net 12 "VCC") (pintype "passive") (tstamp e382fedc-c868-44fd-9740-47cc05b15c1c))
(pad "2" smd roundrect (at 1.4 0 180) (size 1.25 1.75) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.2)
(net 1 "+5V") (pintype "passive") (tstamp 73e2a101-0bc0-414b-9aa7-7eeb8a3caef1))
(model "${KICAD6_3DMODEL_DIR}/Fuse.3dshapes/Fuse_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_QFP:TQFP-44_10x10mm_P0.8mm" (layer "B.Cu")
(tedit 5A02F146) (tstamp 77576d54-df18-461f-833a-af44e90f9ec8)
(at 89.69375 79.375)
(descr "44-Lead Plastic Thin Quad Flatpack (PT) - 10x10x1.0 mm Body [TQFP] (see Microchip Packaging Specification 00000049BS.pdf)")
(tags "QFP 0.8")
(property "Sheetfile" "first kb project.kicad_sch")
(property "Sheetname" "")
(path "/268d73fc-21e8-410e-abf6-913a80b43c50")
(attr smd)
(fp_text reference "U1" (at 0 7.45) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 78620eb8-ad4c-482d-b1a5-6c31619b2879)
)
(fp_text value "ATmega32U4-A" (at 0 -7.45) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 05c66f7d-5ec1-4b7f-80d5-ea1eb396392f)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 3eb6166e-d2a4-4778-a9e3-fd9ea19f972e)
)
(fp_line (start 5.175 -5.175) (end 5.175 -4.5) (layer "B.SilkS") (width 0.15) (tstamp 1bd13fbe-d376-42a1-8a94-f12442f4121a))
(fp_line (start 5.175 5.175) (end 4.5 5.175) (layer "B.SilkS") (width 0.15) (tstamp 293bc8e1-4ff1-450d-8ef0-4276b77002bf))
(fp_line (start 5.175 5.175) (end 5.175 4.5) (layer "B.SilkS") (width 0.15) (tstamp 2ad27911-6b4b-41d3-af19-3a88d479912c))
(fp_line (start -5.175 4.6) (end -6.45 4.6) (layer "B.SilkS") (width 0.15) (tstamp 54c2b029-df21-4268-9a74-8433670031c7))
(fp_line (start -5.175 5.175) (end -4.5 5.175) (layer "B.SilkS") (width 0.15) (tstamp 6dda73be-73a3-4bdf-aea3-f2d520a51491))
(fp_line (start -5.175 5.175) (end -5.175 4.6) (layer "B.SilkS") (width 0.15) (tstamp 7b7fe22f-5db7-4fb0-a6e2-91b9a8e5f484))
(fp_line (start 5.175 -5.175) (end 4.5 -5.175) (layer "B.SilkS") (width 0.15) (tstamp 825e7db8-0294-426e-853c-3be31e57f559))
(fp_line (start -5.175 -5.175) (end -4.5 -5.175) (layer "B.SilkS") (width 0.15) (tstamp a6e79250-4ea1-4a1f-b168-c1d347acb43a))
(fp_line (start -5.175 -5.175) (end -5.175 -4.5) (layer "B.SilkS") (width 0.15) (tstamp c36f7147-bc6f-4cbe-8b56-617ae1aaead3))
(fp_line (start -6.7 6.7) (end 6.7 6.7) (layer "B.CrtYd") (width 0.05) (tstamp 35a1a735-588f-4c50-9b46-cb8744ae8f02))
(fp_line (start 6.7 6.7) (end 6.7 -6.7) (layer "B.CrtYd") (width 0.05) (tstamp 778130e2-5dcf-4ba4-bd77-4acc3a461105))
(fp_line (start -6.7 -6.7) (end 6.7 -6.7) (layer "B.CrtYd") (width 0.05) (tstamp 7eaae2d7-b4ad-4554-8c8a-2037170131bd))
(fp_line (start -6.7 6.7) (end -6.7 -6.7) (layer "B.CrtYd") (width 0.05) (tstamp c908cdd7-5bf2-4e04-ae66-bd89b22bab8d))
(fp_line (start 5 5) (end 5 -5) (layer "B.Fab") (width 0.15) (tstamp 51e64652-1e71-4dd7-be6f-f96020dbcaac))
(fp_line (start -5 4) (end -4 5) (layer "B.Fab") (width 0.15) (tstamp 638749f1-b1e7-4781-9f0f-dba065a717aa))
(fp_line (start -5 -5) (end -5 4) (layer "B.Fab") (width 0.15) (tstamp 67c7a478-1f53-477a-9997-e375f47aa773))
(fp_line (start 5 -5) (end -5 -5) (layer "B.Fab") (width 0.15) (tstamp 8c5a6fce-194d-4416-8856-cb66ff818319))
(fp_line (start -4 5) (end 5 5) (layer "B.Fab") (width 0.15) (tstamp c4587bb7-c73a-4ad0-bcd4-d7dc9697e09b))
(pad "1" smd rect (at -5.7 4) (size 1.5 0.55) (layers "B.Cu" "B.Paste" "B.Mask")
(net 21 "unconnected-(U1-Pad1)") (pinfunction "PE6") (pintype "bidirectional") (tstamp a8b74637-32ba-4af1-a789-5bc40c758bab))
(pad "2" smd rect (at -5.7 3.2) (size 1.5 0.55) (layers "B.Cu" "B.Paste" "B.Mask")
(net 1 "+5V") (pinfunction "UVCC") (pintype "power_in") (tstamp 2335745d-4b86-4498-9fad-6d2729137fe3))
(pad "3" smd rect (at -5.7 2.4) (size 1.5 0.55) (layers "B.Cu" "B.Paste" "B.Mask")
(net 18 "Net-(R2-Pad2)") (pinfunction "D-") (pintype "bidirectional") (tstamp b4e13e2a-b1f5-417e-8d80-b3e4cb5e5e55))
(pad "4" smd rect (at -5.7 1.6) (size 1.5 0.55) (layers "B.Cu" "B.Paste" "B.Mask")
(net 16 "Net-(R1-Pad2)") (pinfunction "D+") (pintype "bidirectional") (tstamp f2471ff2-4a7f-4d16-9dbe-788438e7c5fb))
(pad "5" smd rect (at -5.7 0.8) (size 1.5 0.55) (layers "B.Cu" "B.Paste" "B.Mask")
(net 2 "GND") (pinfunction "UGND") (pintype "passive") (tstamp 751eb404-33b7-4b8f-8aa0-576b234652fb))
(pad "6" smd rect (at -5.7 0) (size 1.5 0.55) (layers "B.Cu" "B.Paste" "B.Mask")
(net 5 "Net-(C6-Pad2)") (pinfunction "UCAP") (pintype "passive") (tstamp f4f8401f-00e2-4058-8b4d-acf3075d7f77))
(pad "7" smd rect (at -5.7 -0.8) (size 1.5 0.55) (layers "B.Cu" "B.Paste" "B.Mask")
(net 1 "+5V") (pinfunction "VBUS") (pintype "input") (tstamp 198a2a45-a86c-4371-8a75-c6e4c84fad3d))
(pad "8" smd rect (at -5.7 -1.6) (size 1.5 0.55) (layers "B.Cu" "B.Paste" "B.Mask")
(net 22 "unconnected-(U1-Pad8)") (pinfunction "PB0") (pintype "bidirectional") (tstamp 77482be5-b12a-41cb-b345-89c6c297fbe1))
(pad "9" smd rect (at -5.7 -2.4) (size 1.5 0.55) (layers "B.Cu" "B.Paste" "B.Mask")
(net 23 "unconnected-(U1-Pad9)") (pinfunction "PB1") (pintype "bidirectional") (tstamp 0a7da8e8-4a29-4619-8c2a-45042f49f661))
(pad "10" smd rect (at -5.7 -3.2) (size 1.5 0.55) (layers "B.Cu" "B.Paste" "B.Mask")
(net 24 "unconnected-(U1-Pad10)") (pinfunction "PB2") (pintype "bidirectional") (tstamp 13f293f5-71fa-4ce7-bfc1-43137bddb382))
(pad "11" smd rect (at -5.7 -4) (size 1.5 0.55) (layers "B.Cu" "B.Paste" "B.Mask")
(net 25 "unconnected-(U1-Pad11)") (pinfunction "PB3") (pintype "bidirectional") (tstamp ae81fe48-d57e-4488-a23e-f57c11561913))
(pad "12" smd rect (at -4 -5.7 270) (size 1.5 0.55) (layers "B.Cu" "B.Paste" "B.Mask")
(net 26 "unconnected-(U1-Pad12)") (pinfunction "PB7") (pintype "bidirectional") (tstamp be6377f8-a401-401c-9bdf-6f9152f2a7bd))
(pad "13" smd rect (at -3.2 -5.7 270) (size 1.5 0.55) (layers "B.Cu" "B.Paste" "B.Mask")
(net 19 "Net-(R3-Pad2)") (pinfunction "~{RESET}") (pintype "input") (tstamp 9feb2246-afac-4ea1-a19b-0b21b94e2662))
(pad "14" smd rect (at -2.4 -5.7 270) (size 1.5 0.55) (layers "B.Cu" "B.Paste" "B.Mask")
(net 1 "+5V") (pinfunction "VCC") (pintype "power_in") (tstamp a8aaba27-4342-41ce-bbda-d0444467961f))
(pad "15" smd rect (at -1.6 -5.7 270) (size 1.5 0.55) (layers "B.Cu" "B.Paste" "B.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp c760136f-382d-4dce-baed-596591861912))
(pad "16" smd rect (at -0.8 -5.7 270) (size 1.5 0.55) (layers "B.Cu" "B.Paste" "B.Mask")
(net 4 "Net-(C4-Pad2)") (pinfunction "XTAL2") (pintype "output") (tstamp 31f4dc6c-dde9-45e8-b29d-489d35e0f1d0))
(pad "17" smd rect (at 0 -5.7 270) (size 1.5 0.55) (layers "B.Cu" "B.Paste" "B.Mask")
(net 3 "Net-(C3-Pad2)") (pinfunction "XTAL1") (pintype "input") (tstamp a9d66172-b21f-445f-bff6-1303cec8590d))
(pad "18" smd rect (at 0.8 -5.7 270) (size 1.5 0.55) (layers "B.Cu" "B.Paste" "B.Mask")
(net 27 "unconnected-(U1-Pad18)") (pinfunction "PD0") (pintype "bidirectional") (tstamp 20fac508-78eb-4aa5-add1-1566151feb66))
(pad "19" smd rect (at 1.6 -5.7 270) (size 1.5 0.55) (layers "B.Cu" "B.Paste" "B.Mask")
(net 28 "unconnected-(U1-Pad19)") (pinfunction "PD1") (pintype "bidirectional") (tstamp 9c3dbdfa-1d03-4398-9be7-f28a12c9bf19))
(pad "20" smd rect (at 2.4 -5.7 270) (size 1.5 0.55) (layers "B.Cu" "B.Paste" "B.Mask")
(net 29 "unconnected-(U1-Pad20)") (pinfunction "PD2") (pintype "bidirectional") (tstamp 9d3292e9-89ed-435a-b615-fc52a41b2a3d))
(pad "21" smd rect (at 3.2 -5.7 270) (size 1.5 0.55) (layers "B.Cu" "B.Paste" "B.Mask")
(net 30 "unconnected-(U1-Pad21)") (pinfunction "PD3") (pintype "bidirectional") (tstamp 7e4a5f4a-ba57-4793-9c6e-04e153b677a9))
(pad "22" smd rect (at 4 -5.7 270) (size 1.5 0.55) (layers "B.Cu" "B.Paste" "B.Mask")
(net 31 "unconnected-(U1-Pad22)") (pinfunction "PD5") (pintype "bidirectional") (tstamp 7bfe75c7-ef59-483f-8531-f86433a553f4))
(pad "23" smd rect (at 5.7 -4) (size 1.5 0.55) (layers "B.Cu" "B.Paste" "B.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp 491de0e1-cd41-47a4-a79b-f86c4b58fa87))
(pad "24" smd rect (at 5.7 -3.2) (size 1.5 0.55) (layers "B.Cu" "B.Paste" "B.Mask")
(net 1 "+5V") (pinfunction "AVCC") (pintype "power_in") (tstamp 268c6477-051a-4631-8f4a-c86c47bf5102))
(pad "25" smd rect (at 5.7 -2.4) (size 1.5 0.55) (layers "B.Cu" "B.Paste" "B.Mask")
(net 32 "unconnected-(U1-Pad25)") (pinfunction "PD4") (pintype "bidirectional") (tstamp 39a58874-d2bf-449b-9f58-07b2f1a46d16))
(pad "26" smd rect (at 5.7 -1.6) (size 1.5 0.55) (layers "B.Cu" "B.Paste" "B.Mask")
(net 33 "unconnected-(U1-Pad26)") (pinfunction "PD6") (pintype "bidirectional") (tstamp 94d07718-2fcc-40a0-ad0e-c4bb67bc804a))
(pad "27" smd rect (at 5.7 -0.8) (size 1.5 0.55) (layers "B.Cu" "B.Paste" "B.Mask")
(net 34 "unconnected-(U1-Pad27)") (pinfunction "PD7") (pintype "bidirectional") (tstamp f1d34821-cc17-42fc-b481-1c7f738497e3))
(pad "28" smd rect (at 5.7 0) (size 1.5 0.55) (layers "B.Cu" "B.Paste" "B.Mask")
(net 35 "unconnected-(U1-Pad28)") (pinfunction "PB4") (pintype "bidirectional") (tstamp 78fa7842-f3c6-48db-8c77-7797633506e5))
(pad "29" smd rect (at 5.7 0.8) (size 1.5 0.55) (layers "B.Cu" "B.Paste" "B.Mask")
(net 36 "unconnected-(U1-Pad29)") (pinfunction "PB5") (pintype "bidirectional") (tstamp 442f453a-9b44-44ab-a898-82f45629c72d))
(pad "30" smd rect (at 5.7 1.6) (size 1.5 0.55) (layers "B.Cu" "B.Paste" "B.Mask")
(net 37 "unconnected-(U1-Pad30)") (pinfunction "PB6") (pintype "bidirectional") (tstamp 1b642110-eaa8-451d-b449-e92e71e75978))
(pad "31" smd rect (at 5.7 2.4) (size 1.5 0.55) (layers "B.Cu" "B.Paste" "B.Mask")
(net 38 "unconnected-(U1-Pad31)") (pinfunction "PC6") (pintype "bidirectional") (tstamp be52ce9f-4498-483f-a791-994a787b7224))
(pad "32" smd rect (at 5.7 3.2) (size 1.5 0.55) (layers "B.Cu" "B.Paste" "B.Mask")
(net 39 "unconnected-(U1-Pad32)") (pinfunction "PC7") (pintype "bidirectional") (tstamp 16b71e23-859c-4e16-8af1-5d30a5c2b726))
(pad "33" smd rect (at 5.7 4) (size 1.5 0.55) (layers "B.Cu" "B.Paste" "B.Mask")
(net 20 "Net-(R4-Pad1)") (pinfunction "~{HWB}/PE2") (pintype "bidirectional") (tstamp fcdae4f4-bcbc-432a-b7d5-ee4bdd3d104f))
(pad "34" smd rect (at 4 5.7 270) (size 1.5 0.55) (layers "B.Cu" "B.Paste" "B.Mask")
(net 1 "+5V") (pinfunction "VCC") (pintype "passive") (tstamp ec53b93c-c93c-4a00-b315-00a9db4c857c))
(pad "35" smd rect (at 3.2 5.7 270) (size 1.5 0.55) (layers "B.Cu" "B.Paste" "B.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp 6a8a1901-a3c7-470d-99d9-02146451972b))
(pad "36" smd rect (at 2.4 5.7 270) (size 1.5 0.55) (layers "B.Cu" "B.Paste" "B.Mask")
(net 40 "unconnected-(U1-Pad36)") (pinfunction "PF7") (pintype "bidirectional") (tstamp c4eb404f-f3d2-4506-bf24-56396736d56f))
(pad "37" smd rect (at 1.6 5.7 270) (size 1.5 0.55) (layers "B.Cu" "B.Paste" "B.Mask")
(net 41 "unconnected-(U1-Pad37)") (pinfunction "PF6") (pintype "bidirectional") (tstamp 7c7cfeb1-8cd1-4c5f-8e65-42b386d94011))
(pad "38" smd rect (at 0.8 5.7 270) (size 1.5 0.55) (layers "B.Cu" "B.Paste" "B.Mask")
(net 42 "unconnected-(U1-Pad38)") (pinfunction "PF5") (pintype "bidirectional") (tstamp 009110da-fae2-454e-8387-1e8fd70409cb))
(pad "39" smd rect (at 0 5.7 270) (size 1.5 0.55) (layers "B.Cu" "B.Paste" "B.Mask")
(net 43 "unconnected-(U1-Pad39)") (pinfunction "PF4") (pintype "bidirectional") (tstamp 834d0192-2f8f-45da-a664-ea874d4070f9))
(pad "40" smd rect (at -0.8 5.7 270) (size 1.5 0.55) (layers "B.Cu" "B.Paste" "B.Mask")
(net 44 "unconnected-(U1-Pad40)") (pinfunction "PF1") (pintype "bidirectional") (tstamp bdf9dfdb-3e3e-46cc-8bb8-4372561c164b))
(pad "41" smd rect (at -1.6 5.7 270) (size 1.5 0.55) (layers "B.Cu" "B.Paste" "B.Mask")
(net 45 "unconnected-(U1-Pad41)") (pinfunction "PF0") (pintype "bidirectional") (tstamp d9452562-ce7e-4680-9c6e-6998b86cb475))
(pad "42" smd rect (at -2.4 5.7 270) (size 1.5 0.55) (layers "B.Cu" "B.Paste" "B.Mask")
(net 46 "unconnected-(U1-Pad42)") (pinfunction "AREF") (pintype "passive") (tstamp 8519174e-f406-4836-8f33-e219a5351591))
(pad "43" smd rect (at -3.2 5.7 270) (size 1.5 0.55) (layers "B.Cu" "B.Paste" "B.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp 116b375f-957b-4eda-a12b-df384678f533))
(pad "44" smd rect (at -4 5.7 270) (size 1.5 0.55) (layers "B.Cu" "B.Paste" "B.Mask")
(net 1 "+5V") (pinfunction "AVCC") (pintype "passive") (tstamp 1b80aaa4-9cfe-448e-8ff1-d2c69f706b2e))
(model "${KICAD6_3DMODEL_DIR}/Package_QFP.3dshapes/TQFP-44_10x10mm_P0.8mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric" (layer "B.Cu")
(tedit 5F68FEEE) (tstamp 7759bcaf-350b-4897-a675-aaf4fb3e75fe)
(at 100.0125 73.025 90)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "first kb project.kicad_sch")
(property "Sheetname" "")
(path "/59b8955c-7179-44e3-bd53-d0ba9b005c2e")
(attr smd)
(fp_text reference "C5" (at 0 1.68 90) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 99a76074-fcd3-4150-83c8-79f76bdad1c5)
)
(fp_text value "0.1uF" (at 0 -1.68 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 22abab2e-9885-4da7-9852-348f356dd096)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "B.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)) (justify mirror))
(tstamp e51830a2-6dc5-4f13-834b-b490ff3a07e5)
)
(fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer "B.SilkS") (width 0.12) (tstamp c3c15276-82a5-4b64-990f-7f503a97141e))
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer "B.SilkS") (width 0.12) (tstamp fd27925d-9b2e-4663-bdb7-e46b9715b801))
(fp_line (start -1.7 -0.98) (end -1.7 0.98) (layer "B.CrtYd") (width 0.05) (tstamp 4b9a4b22-a241-4855-9d5c-4ff2f9005b1b))
(fp_line (start -1.7 0.98) (end 1.7 0.98) (layer "B.CrtYd") (width 0.05) (tstamp 4e72994f-410e-42ab-a8f9-f801527ca6d0))
(fp_line (start 1.7 0.98) (end 1.7 -0.98) (layer "B.CrtYd") (width 0.05) (tstamp 5c16107e-b60f-4f98-bbed-8abfeb5d4011))
(fp_line (start 1.7 -0.98) (end -1.7 -0.98) (layer "B.CrtYd") (width 0.05) (tstamp e4f6c439-e664-4982-a00a-ae1d4844df2b))
(fp_line (start -1 -0.625) (end -1 0.625) (layer "B.Fab") (width 0.1) (tstamp 7da919a6-904e-41c7-b0f6-91d865a93890))
(fp_line (start 1 -0.625) (end -1 -0.625) (layer "B.Fab") (width 0.1) (tstamp b748f219-0f44-41d7-bcf2-9a96e7f8b594))
(fp_line (start -1 0.625) (end 1 0.625) (layer "B.Fab") (width 0.1) (tstamp da61999d-a804-4700-a8ed-895bc2af0a31))
(fp_line (start 1 0.625) (end 1 -0.625) (layer "B.Fab") (width 0.1) (tstamp dcff1695-539e-442e-afee-9485378ce13a))
(pad "1" smd roundrect (at -0.95 0 90) (size 1 1.45) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 1 "+5V") (pintype "passive") (tstamp 28f5d24e-b605-4fad-9e07-a157526f5710))
(pad "2" smd roundrect (at 0.95 0 90) (size 1 1.45) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp cba11463-444d-4fb1-9f76-b3065c51a98b))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric" (layer "B.Cu")
(tedit 5F68FEEE) (tstamp b0ef56f0-51f0-42df-b28a-72491f7f6bb8)
(at 100.0125 79.375 180)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "first kb project.kicad_sch")
(property "Sheetname" "")
(path "/c3c20795-e7c9-412f-b8ae-2bf366beb9fc")
(attr smd)
(fp_text reference "R4" (at 0 1.65) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp caefe669-4c1f-4a42-9061-2eea0460c08d)
)
(fp_text value "10k" (at 0 -1.65) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp e584287a-6232-40cf-a082-8dea5986b945)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)) (justify mirror))
(tstamp 8de39313-d6b3-49d5-879e-e7c755da7625)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer "B.SilkS") (width 0.12) (tstamp 49edae70-5dd4-4020-bb66-e19aaf00297f))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer "B.SilkS") (width 0.12) (tstamp fa837821-0cb5-4c2d-b2ac-2376f32f5c33))
(fp_line (start 1.68 0.95) (end 1.68 -0.95) (layer "B.CrtYd") (width 0.05) (tstamp 1afdd221-608b-420b-8eb2-861de263adb5))
(fp_line (start -1.68 -0.95) (end -1.68 0.95) (layer "B.CrtYd") (width 0.05) (tstamp c12eea70-3a89-4f4e-bec5-6645406eead7))
(fp_line (start -1.68 0.95) (end 1.68 0.95) (layer "B.CrtYd") (width 0.05) (tstamp d26a8420-78a3-4a9e-b4f4-5a9910f59c4d))
(fp_line (start 1.68 -0.95) (end -1.68 -0.95) (layer "B.CrtYd") (width 0.05) (tstamp d9fdb0f1-e046-40fb-9db7-42844093657b))
(fp_line (start 1 -0.625) (end -1 -0.625) (layer "B.Fab") (width 0.1) (tstamp 408b3778-6552-41b5-9096-89c71f84e5ce))
(fp_line (start -1 -0.625) (end -1 0.625) (layer "B.Fab") (width 0.1) (tstamp cda7fe71-fae2-4327-88a1-ff4efc19520d))
(fp_line (start -1 0.625) (end 1 0.625) (layer "B.Fab") (width 0.1) (tstamp d2456fb5-2b99-45e1-9d17-eb9a485a3bd3))
(fp_line (start 1 0.625) (end 1 -0.625) (layer "B.Fab") (width 0.1) (tstamp ec51372b-772c-40c6-ad58-bf05ad60b91d))
(pad "1" smd roundrect (at -0.9125 0 180) (size 1.025 1.4) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.243902)
(net 20 "Net-(R4-Pad1)") (pintype "passive") (tstamp de119e3e-b85f-435d-9e15-bdebccebd1c5))
(pad "2" smd roundrect (at 0.9125 0 180) (size 1.025 1.4) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.243902)
(net 2 "GND") (pintype "passive") (tstamp 90871ced-792e-45f5-b74e-584f9a150cb4))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric" (layer "B.Cu")
(tedit 5F68FEEE) (tstamp b9e0ba15-f372-4a9e-a627-d594778258ac)
(at 80.16875 77.7875 90)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "first kb project.kicad_sch")
(property "Sheetname" "")
(path "/b3419523-82e3-4b9a-8734-3c825a627475")
(attr smd)
(fp_text reference "C6" (at 0 1.68 90) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 9a17b82f-671a-43cc-889d-8f643334e78c)
)
(fp_text value "1uF" (at 0 -1.68 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 26769327-3160-41f1-82e7-11d5d542abde)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "B.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)) (justify mirror))
(tstamp 9256f7aa-4f1a-4001-bdef-7fbb32e451e0)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer "B.SilkS") (width 0.12) (tstamp 94e689a1-e70f-45cb-8a5b-dc77827f725b))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer "B.SilkS") (width 0.12) (tstamp be0c7a50-2d41-4fd6-8c28-37a4cf00d900))
(fp_line (start -1.7 -0.98) (end -1.7 0.98) (layer "B.CrtYd") (width 0.05) (tstamp 23f1f71f-cee3-412e-8e0b-8dacdc450a11))
(fp_line (start 1.7 0.98) (end 1.7 -0.98) (layer "B.CrtYd") (width 0.05) (tstamp 57e128ae-5e07-4818-9f5a-1cee0e65c680))
(fp_line (start 1.7 -0.98) (end -1.7 -0.98) (layer "B.CrtYd") (width 0.05) (tstamp 83fee08f-7316-4ff9-a4fd-e9a9372f4d8f))
(fp_line (start -1.7 0.98) (end 1.7 0.98) (layer "B.CrtYd") (width 0.05) (tstamp e9862dd4-26d2-4ddd-91fc-972d848045f5))
(fp_line (start -1 0.625) (end 1 0.625) (layer "B.Fab") (width 0.1) (tstamp 106f01f3-bf47-4150-bb7b-1a3318a6eb3d))
(fp_line (start 1 -0.625) (end -1 -0.625) (layer "B.Fab") (width 0.1) (tstamp 10ddf54c-6d59-4755-8fb8-43466141a83a))
(fp_line (start 1 0.625) (end 1 -0.625) (layer "B.Fab") (width 0.1) (tstamp 537c2196-fe60-48a5-847c-84653e479b38))
(fp_line (start -1 -0.625) (end -1 0.625) (layer "B.Fab") (width 0.1) (tstamp 7eebb937-5634-42da-bd7e-2e0260369d0e))
(pad "1" smd roundrect (at -0.95 0 90) (size 1 1.45) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp d28c26df-aeff-4f6a-a1dc-f734efaf55cb))
(pad "2" smd roundrect (at 0.95 0 90) (size 1 1.45) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 5 "Net-(C6-Pad2)") (pintype "passive") (tstamp eb5c3818-51cd-4092-a6a2-1d306912382e))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)