-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathai03-pcb-guide.kicad_pcb
4756 lines (4725 loc) · 230 KB
/
ai03-pcb-guide.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 20221018) (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)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 4)
(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 0)
(scaleselection 1)
(outputdirectory "Gerbers")
)
)
(net 0 "")
(net 1 "Net-(U1-UCAP)")
(net 2 "GND")
(net 3 "+5V")
(net 4 "Net-(U1-XTAL1)")
(net 5 "Net-(U1-XTAL2)")
(net 6 "ROW0")
(net 7 "Net-(D1-A)")
(net 8 "Net-(D2-A)")
(net 9 "ROW1")
(net 10 "Net-(D3-A)")
(net 11 "Net-(D4-A)")
(net 12 "VCC")
(net 13 "COL0")
(net 14 "COL1")
(net 15 "Net-(U1-~{HWB}{slash}PE2)")
(net 16 "D +")
(net 17 "Net-(U1-D+)")
(net 18 "D -")
(net 19 "Net-(U1-D-)")
(net 20 "Net-(U1-~{RESET})")
(net 21 "unconnected-(U1-PE6-Pad1)")
(net 22 "unconnected-(U1-PB0-Pad8)")
(net 23 "unconnected-(U1-PB1-Pad9)")
(net 24 "unconnected-(U1-PB2-Pad10)")
(net 25 "unconnected-(U1-PB3-Pad11)")
(net 26 "unconnected-(U1-PB7-Pad12)")
(net 27 "unconnected-(U1-PD0-Pad18)")
(net 28 "unconnected-(U1-PD1-Pad19)")
(net 29 "unconnected-(U1-PD2-Pad20)")
(net 30 "unconnected-(U1-PD3-Pad21)")
(net 31 "unconnected-(U1-PD5-Pad22)")
(net 32 "unconnected-(U1-PD4-Pad25)")
(net 33 "unconnected-(U1-PD6-Pad26)")
(net 34 "unconnected-(U1-PC6-Pad31)")
(net 35 "unconnected-(U1-PC7-Pad32)")
(net 36 "unconnected-(U1-PF7-Pad36)")
(net 37 "unconnected-(U1-PF6-Pad37)")
(net 38 "unconnected-(U1-PF5-Pad38)")
(net 39 "unconnected-(U1-PF4-Pad39)")
(net 40 "unconnected-(U1-PF1-Pad40)")
(net 41 "unconnected-(U1-PF0-Pad41)")
(net 42 "unconnected-(U1-AREF-Pad42)")
(net 43 "unconnected-(USB1-ID-Pad2)")
(net 44 "unconnected-(USB1-SHIELD-Pad6)")
(footprint "MX_Alps_Hybrid:MX-1U-NoLED" (layer "F.Cu")
(tstamp 0b9a71cf-3391-4aa1-8a8d-b44d32217048)
(at 163.5125 104.775)
(property "Sheetfile" "ai03-pcb-guide.kicad_sch")
(property "Sheetname" "")
(path "/872a7a94-48b4-4411-9664-cdd3f325923d")
(attr through_hole)
(fp_text reference "MX2" (at 0 3.175) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f0d8d2f5-8e5b-4fec-86fd-aba77fe58759)
)
(fp_text value "MX-NoLED" (at 0 -7.9375) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c3bce30c-954f-4726-a5e6-b2d447abbfb4)
)
(fp_line (start -9.525 -9.525) (end 9.525 -9.525)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 58ea8e6d-5cf2-4f66-b7c5-cb8d89d687c3))
(fp_line (start -9.525 9.525) (end -9.525 -9.525)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp e0e680df-5f8a-4f5b-b6fc-e5fe5a88bc07))
(fp_line (start -7 -7) (end -7 -5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 2600e1ec-5e4f-49f7-90a0-c8f47844d809))
(fp_line (start -7 5) (end -7 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 8a685687-2a5e-44cf-a46d-6749e7495c2b))
(fp_line (start -7 7) (end -5 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 9ad5dc7b-0f01-4523-9152-33936034470e))
(fp_line (start -5 -7) (end -7 -7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 73d8be9a-ee86-496f-9924-9687412bb2a0))
(fp_line (start 5 -7) (end 7 -7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 5912502c-2441-4418-9d97-0923e3130bf9))
(fp_line (start 5 7) (end 7 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp afa087d2-9c95-49a0-a57b-8928cb1d9a7d))
(fp_line (start 7 -7) (end 7 -5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp e2edce13-b578-4eae-a7f0-93bbc57531d2))
(fp_line (start 7 7) (end 7 5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp b50f5bee-c134-40ef-b416-d3d0e99a869b))
(fp_line (start 9.525 -9.525) (end 9.525 9.525)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 82b22fef-5c73-477f-b2ba-28c4a8102556))
(fp_line (start 9.525 9.525) (end -9.525 9.525)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 032c9114-83db-4ed0-baf8-2d2be3db757e))
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers "*.Cu" "*.Mask") (tstamp c1bdaae1-ccb0-4df2-994e-76cdd3fb307a))
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers "*.Cu" "*.Mask") (tstamp 2c88c7d3-8acf-4d6f-9a5e-98a08553680b))
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers "*.Cu" "*.Mask") (tstamp cd3c4652-b5f7-41a2-9637-acf5386b6d52))
(pad "1" thru_hole oval (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 782b4fdb-9fcd-4b86-bb71-0ffb05568a92))
(pad "1" thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers "*.Cu" "B.Mask")
(net 14 "COL1") (pinfunction "COL") (pintype "passive") (tstamp ae7dc438-817c-463b-af79-8dfe409bd6b1))
(pad "2" thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers "*.Cu" "B.Mask")
(net 8 "Net-(D2-A)") (pinfunction "ROW") (pintype "passive") (tstamp db588502-bbc9-435b-808c-07feb2b3b203))
(pad "2" thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers "*.Cu" "B.Mask")
(net 8 "Net-(D2-A)") (pinfunction "ROW") (pintype "passive") (tstamp 17e5ff0c-b2f4-4a81-a944-609ec6540720))
)
(footprint "MX_Alps_Hybrid:MX-1U-NoLED" (layer "F.Cu")
(tstamp 6e7a30c2-35bd-4abf-b03f-f649bfc7ea30)
(at 163.5125 123.825)
(property "Sheetfile" "ai03-pcb-guide.kicad_sch")
(property "Sheetname" "")
(path "/b89f96ae-54df-4af1-a5e0-6b3a6514ef65")
(attr through_hole)
(fp_text reference "MX4" (at 0 3.175) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c21b14e6-504f-4e6f-92ab-125e1f2e498f)
)
(fp_text value "MX-NoLED" (at 0 -7.9375) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9959817b-a2d7-4efe-a879-c6b075f569e4)
)
(fp_line (start -9.525 -9.525) (end 9.525 -9.525)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 263aa048-3ced-4296-8b3e-7113e254e0c0))
(fp_line (start -9.525 9.525) (end -9.525 -9.525)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp aadc2c71-63eb-4a38-9ff0-6019eb68f5bc))
(fp_line (start -7 -7) (end -7 -5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 6cd75b81-0df0-4a17-b277-ad1ecec6fcc8))
(fp_line (start -7 5) (end -7 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 19bb8802-5ebc-48d7-a981-f48a0f80bc03))
(fp_line (start -7 7) (end -5 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 5a6797f2-5d49-41d4-ad24-d7175cfbe83c))
(fp_line (start -5 -7) (end -7 -7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp c8a8667f-7bf2-4c09-a093-d5630a6cd7d0))
(fp_line (start 5 -7) (end 7 -7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp a9e7effd-8e2d-46cd-99d7-117ed9c997e2))
(fp_line (start 5 7) (end 7 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 11e58e0e-19c1-4916-a024-4ee228633942))
(fp_line (start 7 -7) (end 7 -5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 400592b4-2fab-41b6-891e-c60608ef4521))
(fp_line (start 7 7) (end 7 5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 1337fee8-93da-4d8f-ad99-49cdd024e5df))
(fp_line (start 9.525 -9.525) (end 9.525 9.525)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 30c89ef4-e741-4992-8f5c-ae8e57421d1d))
(fp_line (start 9.525 9.525) (end -9.525 9.525)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp a82ec0ad-ad77-40eb-8921-1f59f2e01897))
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers "*.Cu" "*.Mask") (tstamp 8a4836fc-ca13-4370-9f98-98f51cc7c358))
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers "*.Cu" "*.Mask") (tstamp 5a3c31fa-b8b0-4820-9d4d-ae91555d7ef5))
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers "*.Cu" "*.Mask") (tstamp cde835de-73a2-4a35-afa0-3a4baffc1a27))
(pad "1" thru_hole oval (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 67f57a86-9a18-46d1-a935-be3fb8a5c5ca))
(pad "1" thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers "*.Cu" "B.Mask")
(net 14 "COL1") (pinfunction "COL") (pintype "passive") (tstamp dc717e0c-ae1e-4819-ac9a-5262b4f21941))
(pad "2" thru_hole oval (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-A)") (pinfunction "ROW") (pintype "passive") (tstamp f7011e81-5a8e-4f13-a148-b5e6ca2aebb1))
(pad "2" thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers "*.Cu" "B.Mask")
(net 11 "Net-(D4-A)") (pinfunction "ROW") (pintype "passive") (tstamp 863fd42d-eca9-472c-9c17-584be1d314be))
)
(footprint "MX_Alps_Hybrid:MX-1U-NoLED" (layer "F.Cu")
(tstamp 8d8bf097-bba8-459a-8a5d-2c195608b57e)
(at 144.4625 123.825)
(property "Sheetfile" "ai03-pcb-guide.kicad_sch")
(property "Sheetname" "")
(path "/5e2950a6-8bde-46f7-8ce5-7c50bfd34a4f")
(attr through_hole)
(fp_text reference "MX3" (at 0 3.175) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 77ba55ea-66eb-4ddc-b8dd-4c63d2e7e0b2)
)
(fp_text value "MX-NoLED" (at 0 -7.9375) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 944bfe54-5ecf-4b62-98ee-99588a30d832)
)
(fp_line (start -9.525 -9.525) (end 9.525 -9.525)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 8914d1f5-9fd2-4358-af9d-ef62f9fd831d))
(fp_line (start -9.525 9.525) (end -9.525 -9.525)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 97234cf6-b93f-4853-9bc1-9e63145dcf46))
(fp_line (start -7 -7) (end -7 -5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 274004c0-8d13-49c0-8b18-23a9e5ff2569))
(fp_line (start -7 5) (end -7 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp b20fc458-d6a9-4117-b188-2b86240f9f17))
(fp_line (start -7 7) (end -5 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 1ca52b26-4867-4451-a72e-372aa808cb0e))
(fp_line (start -5 -7) (end -7 -7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp f03cb52f-054c-4533-bfab-cfdd5a783cb2))
(fp_line (start 5 -7) (end 7 -7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 138eec59-e8d1-4f8b-9709-e6553b286ecc))
(fp_line (start 5 7) (end 7 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp dbf81f0f-4981-4904-9649-13d9a0f590ad))
(fp_line (start 7 -7) (end 7 -5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp cb566232-0980-4aaa-8ead-76972421de14))
(fp_line (start 7 7) (end 7 5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 4818bbc1-2102-4fd9-b9a0-113705586532))
(fp_line (start 9.525 -9.525) (end 9.525 9.525)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp c15ec705-4da7-49cd-8ca7-96e37424d500))
(fp_line (start 9.525 9.525) (end -9.525 9.525)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp d6d82a01-648e-4d0e-bbb9-9a68554a881e))
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers "*.Cu" "*.Mask") (tstamp 2ad2981d-1cd9-4db3-a2be-72d12c28eabd))
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers "*.Cu" "*.Mask") (tstamp 68c61244-2fc3-4ba0-af27-c8519aebe756))
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers "*.Cu" "*.Mask") (tstamp 3589a486-e902-42ae-a4aa-2ccae2834cc0))
(pad "1" thru_hole oval (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 7312e8a1-9114-4767-a39e-a25938056a0f))
(pad "1" thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers "*.Cu" "B.Mask")
(net 13 "COL0") (pinfunction "COL") (pintype "passive") (tstamp f20179ea-0e48-4d8d-b2ca-f7a763b7da55))
(pad "2" thru_hole oval (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-A)") (pinfunction "ROW") (pintype "passive") (tstamp 4e453841-a98f-4823-8f59-d099e3853cf6))
(pad "2" thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers "*.Cu" "B.Mask")
(net 10 "Net-(D3-A)") (pinfunction "ROW") (pintype "passive") (tstamp 6cd4defa-169a-4828-b9d5-8f0b8be6e674))
)
(footprint "MX_Alps_Hybrid:MX-1U-NoLED" (layer "F.Cu")
(tstamp 8fcfd498-7dec-42a1-b5ca-b12d621022e6)
(at 144.4625 104.775)
(property "Sheetfile" "ai03-pcb-guide.kicad_sch")
(property "Sheetname" "")
(path "/273ebf19-b5dc-409b-a23c-eda6e8901cd5")
(attr through_hole)
(fp_text reference "MX1" (at 0 3.175) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4837e776-3096-41c8-8cd8-d15a9f15a089)
)
(fp_text value "MX-NoLED" (at 0 -7.9375) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4223c6aa-b274-42a5-938b-422f9dde8989)
)
(fp_line (start -9.525 -9.525) (end 9.525 -9.525)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 371bb87c-1aa2-47e5-bad1-7e94875586c7))
(fp_line (start -9.525 9.525) (end -9.525 -9.525)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 82826d0f-eae5-4278-a2d0-508f4abbd905))
(fp_line (start -7 -7) (end -7 -5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 54a3859e-a396-4b5d-a15c-7bc88f37dc42))
(fp_line (start -7 5) (end -7 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp fe4a14d1-2332-4e9e-a3aa-4cb0644361de))
(fp_line (start -7 7) (end -5 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp bc2a2543-eb46-4e87-b305-c5f05d0db15a))
(fp_line (start -5 -7) (end -7 -7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp fa7ae56c-a494-4f8e-9c0e-e22ac3337308))
(fp_line (start 5 -7) (end 7 -7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 09cfde9e-0643-4af7-b0f5-2cb13936b796))
(fp_line (start 5 7) (end 7 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 6eba2037-d226-4dac-af63-8dab9c85dad0))
(fp_line (start 7 -7) (end 7 -5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 5d9ddf37-6207-4bee-a654-069f3364f210))
(fp_line (start 7 7) (end 7 5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 9b104456-a1f1-4a02-9eb1-b505f179be7c))
(fp_line (start 9.525 -9.525) (end 9.525 9.525)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp b0696a02-6752-4dc1-a5a4-171e2009da7c))
(fp_line (start 9.525 9.525) (end -9.525 9.525)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 0bb1b537-7c9d-485f-bb88-08599cb14bb9))
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers "*.Cu" "*.Mask") (tstamp f79e2a59-0742-4344-93d2-6f3d71080cd5))
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers "*.Cu" "*.Mask") (tstamp 0eb2450d-1381-4706-afd9-550a804731be))
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers "*.Cu" "*.Mask") (tstamp b973010f-a9b1-4b03-88ba-e06902f21387))
(pad "1" thru_hole oval (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 c0ea5dea-f44b-446e-bc97-abb787e2a55a))
(pad "1" thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers "*.Cu" "B.Mask")
(net 13 "COL0") (pinfunction "COL") (pintype "passive") (tstamp 5e036ec1-540d-4c4d-8c56-0a14a8f4eac5))
(pad "2" thru_hole oval (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-A)") (pinfunction "ROW") (pintype "passive") (tstamp 9173e10d-c5e5-4137-92f9-b543d3b71762))
(pad "2" thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers "*.Cu" "B.Mask")
(net 7 "Net-(D1-A)") (pinfunction "ROW") (pintype "passive") (tstamp da00b852-e7f3-4534-a950-da6ab5f1c448))
)
(footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (layer "B.Cu")
(tstamp 06aee132-42db-4bcf-ab2b-4ced8145ee92)
(at 114.3 110.33125 90)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (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 handsolder")
(property "Sheetfile" "ai03-pcb-guide.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/7eb17974-12eb-443d-a478-fe4c6e2a893c")
(attr smd)
(fp_text reference "C2" (at 0 1.5875 90) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 04975fea-1dd4-4687-9729-261129363a0d)
)
(fp_text value "0.1uF" (at 0 -1.68 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 3f056e81-5b03-43bc-96c3-6a53e47bf2af)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "B.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)) (justify mirror))
(tstamp 2dfa896b-e5de-4f1c-ba7c-5d89be5b99b0)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 44b9f8fc-cdeb-474f-b53a-a8fce067f972))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp b6ed1da2-18e9-4930-8d0d-28cb8bbd0ba0))
(fp_line (start -1.88 -0.98) (end -1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 0ecd0d00-79d1-415e-8457-bf5fda9ac3d4))
(fp_line (start -1.88 0.98) (end 1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 37d0425a-fc65-4a34-87d3-b00582d0eacb))
(fp_line (start 1.88 -0.98) (end -1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 2aa9d04c-2529-4377-a6ec-929372c9ef19))
(fp_line (start 1.88 0.98) (end 1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp cc746577-d1b2-4bb6-93fa-3bcc38d9a23d))
(fp_line (start -1 -0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 1e248c09-568d-4807-8378-ac4fa84fc904))
(fp_line (start -1 0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp bed1d1dd-b6fe-4aee-8c51-77d8ae31ea88))
(fp_line (start 1 -0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 6114e05c-4183-416a-aa1d-139340363f6a))
(fp_line (start 1 0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 60d2ea64-9dca-42ed-9796-31ebe67f523a))
(pad "1" smd roundrect (at -1.0375 0 90) (size 1.175 1.45) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.2127659574)
(net 3 "+5V") (pintype "passive") (tstamp f6a033c2-bebb-4363-b6a9-f452a0c73af0))
(pad "2" smd roundrect (at 1.0375 0 90) (size 1.175 1.45) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.2127659574)
(net 2 "GND") (pintype "passive") (tstamp 0527aeb2-4bfd-4065-aa7f-4bde23dbd8c8))
(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 "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (layer "B.Cu")
(tstamp 0d84fa62-714f-4c28-8597-d8b9d6ea7864)
(at 127.53875 106.9125 -90)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (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 handsolder")
(property "Sheetfile" "ai03-pcb-guide.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/370865ad-c781-4caf-bafb-6f1e6762c259")
(attr smd)
(fp_text reference "C6" (at 0 1.68 -270) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 230c1a43-a844-4ead-a188-f05fb50642ac)
)
(fp_text value "22pF" (at 0 -1.68 -270) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 29963ceb-7269-4312-9ba7-f3d1796c63d1)
)
(fp_text user "${REFERENCE}" (at 0 0 -270) (layer "B.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)) (justify mirror))
(tstamp 3d51ff89-2150-4723-b55e-5f1ddbcd2945)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 55e47bee-36f2-4335-9141-12629eac2ca8))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 4558c9f0-dcd8-45a6-a577-a0955d98fc1d))
(fp_line (start -1.88 -0.98) (end -1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 5229bea4-9986-4997-83fa-1887c9f5adaa))
(fp_line (start -1.88 0.98) (end 1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 30dc0e00-02f6-4d91-a82c-1eaba7062f82))
(fp_line (start 1.88 -0.98) (end -1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 313715ba-dbac-4508-81b9-b31cdca5b7b8))
(fp_line (start 1.88 0.98) (end 1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp d2fbd9ca-6b8f-4bb8-9e2e-8640c9395eba))
(fp_line (start -1 -0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 90c3cb7a-ec4a-4447-bdd2-89dbdfc558cd))
(fp_line (start -1 0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 41e5b696-256c-4364-b575-ce7b61ef50a4))
(fp_line (start 1 -0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 8728bdd8-35e4-4f17-8b73-cbb06e55c316))
(fp_line (start 1 0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp c3155df7-30f3-4c4f-8aca-82d05ab2a500))
(pad "1" smd roundrect (at -1.0375 0 270) (size 1.175 1.45) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.2127659574)
(net 2 "GND") (pintype "passive") (tstamp 6d214847-7026-421b-8dc9-4a94d9258fc2))
(pad "2" smd roundrect (at 1.0375 0 270) (size 1.175 1.45) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.2127659574)
(net 4 "Net-(U1-XTAL1)") (pintype "passive") (tstamp 38cda417-3975-4669-9168-9ab196164332))
(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 "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (layer "B.Cu")
(tstamp 132daa57-9ea9-4ac9-855b-c99536091e7c)
(at 119.15675 106.9125 90)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (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 handsolder")
(property "Sheetfile" "ai03-pcb-guide.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/ed7055b1-f4d5-49d8-8c2f-d0efa86e4fa1")
(attr smd)
(fp_text reference "C7" (at 0 1.68 -270) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 0992be8c-bf5a-415e-bed1-7027e5664bde)
)
(fp_text value "22pF" (at 0 -1.68 -270) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 9f1aa167-b1de-4a9a-a1ba-f98d236dfb1a)
)
(fp_text user "${REFERENCE}" (at 0 0 -270) (layer "B.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)) (justify mirror))
(tstamp f2a397b2-f122-4cd1-8669-e2d00ba33f8a)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp d6896ee2-24ee-45d0-99dc-6522cd568e3b))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp f231bf5f-e81a-436e-8287-c4182fffd64f))
(fp_line (start -1.88 -0.98) (end -1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 1c6231d9-46c5-41f8-bc64-40ca68ef1a70))
(fp_line (start -1.88 0.98) (end 1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp c06bde8b-2a96-45c9-8986-4af9f1c01d86))
(fp_line (start 1.88 -0.98) (end -1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp fe14502d-5d9e-451c-9f5b-ad04dc30299e))
(fp_line (start 1.88 0.98) (end 1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 69a1c553-9979-4dfb-b200-f5d7497aaf9d))
(fp_line (start -1 -0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 4f355249-4c68-4118-b4ed-a5c1c2cde263))
(fp_line (start -1 0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp f86afe08-d721-4d1c-b09d-9508ba3ad3cf))
(fp_line (start 1 -0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp a5fab2d9-d6b9-4988-abb5-e8f4ffdd8528))
(fp_line (start 1 0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp f0014fbe-55aa-4bdb-9f82-806f9a2be869))
(pad "1" smd roundrect (at -1.0375 0 90) (size 1.175 1.45) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.2127659574)
(net 2 "GND") (pintype "passive") (tstamp 519ddea8-ee9f-4d3c-b99c-ea5d7158947c))
(pad "2" smd roundrect (at 1.0375 0 90) (size 1.175 1.45) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.2127659574)
(net 5 "Net-(U1-XTAL2)") (pintype "passive") (tstamp 60187c90-1325-4eec-a570-5d7cef92169a))
(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 "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (layer "B.Cu")
(tstamp 24c07f02-d871-4407-9839-f790e6a8ab59)
(at 113.50625 125.65625 -90)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (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 handsolder")
(property "Sheetfile" "ai03-pcb-guide.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/7948f6f6-ab8e-47f2-9952-bba95e532323")
(attr smd)
(fp_text reference "C5" (at 0 1.68 -270) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 124d97b5-755a-425f-85f1-0c772f85f454)
)
(fp_text value "10uF" (at 0 -1.68 -270) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp b17c460c-eebc-4ae1-8296-5b7c28e2fc1e)
)
(fp_text user "${REFERENCE}" (at 0 0 -270) (layer "B.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)) (justify mirror))
(tstamp 7e1ef93e-27bc-4b19-a50d-a2933f774f65)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp e5530172-6553-492a-b4bc-ba5ef602eef1))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp b3569335-707b-4b65-8b5e-f16a3a59fd8b))
(fp_line (start -1.88 -0.98) (end -1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 7a481485-6704-4124-8043-d6082f5ea53c))
(fp_line (start -1.88 0.98) (end 1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 6064e566-d7b4-4cd1-a5cf-61f4e04bf46f))
(fp_line (start 1.88 -0.98) (end -1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 52f39f0a-9af0-4720-8da1-74d9af919d26))
(fp_line (start 1.88 0.98) (end 1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 81c23874-2f14-4d43-b1ba-42b1daec1493))
(fp_line (start -1 -0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 74e8b26e-353f-442b-8b51-f7f37a1ae61b))
(fp_line (start -1 0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp f1ad788a-9780-4b7d-874d-6296c505bd7b))
(fp_line (start 1 -0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 8e8c578d-d0ce-4b72-877a-e475ec509024))
(fp_line (start 1 0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 27ce3329-c797-4906-aa89-7455bec7e73a))
(pad "1" smd roundrect (at -1.0375 0 270) (size 1.175 1.45) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.2127659574)
(net 3 "+5V") (pintype "passive") (tstamp f90415d8-a4a2-49db-b7bf-7c5d43546c10))
(pad "2" smd roundrect (at 1.0375 0 270) (size 1.175 1.45) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.2127659574)
(net 2 "GND") (pintype "passive") (tstamp 43161629-66cb-44b9-b6ba-f6e7a3ee67e6))
(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 "random-keyboard-parts:Molex-0548190589" (layer "B.Cu")
(tstamp 2adef7fa-e16c-479d-b74e-be5178377886)
(at 103.98125 96.71875 -90)
(property "Sheetfile" "ai03-pcb-guide.kicad_sch")
(property "Sheetname" "")
(path "/93714e66-0201-40a0-b709-0bf3a6313a09")
(attr smd)
(fp_text reference "USB1" (at 2.032 0 -360) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 616386ef-1b0f-4f03-a78d-c024d37460aa)
)
(fp_text value "Molex-0548190589" (at -5.08 0 -360) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dbdff1df-1110-44bb-9f49-be6b30b9a576)
)
(fp_text user "${REFERENCE}" (at 2 0 -360) (layer "B.CrtYd")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp cb29d424-382b-4212-8ef0-3f63e06aa779)
)
(fp_line (start 0 -3.85) (end 5.45 -3.85)
(stroke (width 0.15) (type solid)) (layer "B.SilkS") (tstamp 321138b3-35cf-459f-aa51-15a73b09176f))
(fp_line (start 0 3.85) (end 5.45 3.85)
(stroke (width 0.15) (type solid)) (layer "B.SilkS") (tstamp 43e59c33-e321-4ed4-b67f-9c20f77457a5))
(fp_line (start 5.45 3.85) (end 5.45 -3.85)
(stroke (width 0.15) (type solid)) (layer "B.SilkS") (tstamp ec396146-88b4-46fe-bcfe-9b907210f769))
(fp_line (start -3.75 -3.85) (end 0 -3.85)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp f41117ed-8e83-494a-bf48-163a5e70bf3a))
(fp_line (start -3.75 3.85) (end -3.75 -3.85)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 08d1aed1-e667-4e94-b121-aff4e4838c82))
(fp_line (start -3.75 3.85) (end 0 3.85)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp fc198f75-c86b-428a-aa2b-397656c5871c))
(fp_line (start -1.75 4.572) (end -1.75 -4.572)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 8764cfac-7201-4cb3-b97c-e0bed017fbe2))
(fp_line (start -3.75 -3.75) (end -3.75 3.75)
(stroke (width 0.15) (type solid)) (layer "B.CrtYd") (tstamp 8c8bf7ba-52d9-4420-81fb-1927ca70a285))
(fp_line (start -3.75 3.75) (end 5.5 3.75)
(stroke (width 0.15) (type solid)) (layer "B.CrtYd") (tstamp 81764b81-7769-491f-8149-2e8b8eb7d9b6))
(fp_line (start 3.25 -2) (end 5.5 -2)
(stroke (width 0.15) (type solid)) (layer "B.CrtYd") (tstamp 2ad69dde-a2a7-426a-ad23-daf3e6e74f92))
(fp_line (start 3.25 -0.5) (end 5.5 -0.5)
(stroke (width 0.15) (type solid)) (layer "B.CrtYd") (tstamp 630f54a3-49cc-470e-889f-727d32e15ee1))
(fp_line (start 3.25 1.25) (end 5.5 1.25)
(stroke (width 0.15) (type solid)) (layer "B.CrtYd") (tstamp 942077bd-f4cc-4480-99ff-3a206180f672))
(fp_line (start 3.25 2) (end 3.25 -2)
(stroke (width 0.15) (type solid)) (layer "B.CrtYd") (tstamp 16e1c8d2-96c2-406b-b995-03714f678112))
(fp_line (start 5.5 -3.75) (end -3.75 -3.75)
(stroke (width 0.15) (type solid)) (layer "B.CrtYd") (tstamp 0b6e5574-9807-4ef6-af6d-e1137b2670c7))
(fp_line (start 5.5 -1.25) (end 3.25 -1.25)
(stroke (width 0.15) (type solid)) (layer "B.CrtYd") (tstamp 990a0fed-0e7e-4fd1-ae3d-9e907cbba9cc))
(fp_line (start 5.5 0.5) (end 3.25 0.5)
(stroke (width 0.15) (type solid)) (layer "B.CrtYd") (tstamp 3d9e3f61-f0bd-4430-aeb8-675baf313e72))
(fp_line (start 5.5 2) (end 3.25 2)
(stroke (width 0.15) (type solid)) (layer "B.CrtYd") (tstamp c0dbd7c6-f605-46cb-abbe-2855f486001d))
(fp_line (start 5.5 3.75) (end 5.5 -3.75)
(stroke (width 0.15) (type solid)) (layer "B.CrtYd") (tstamp d16ad8c9-cce7-40c7-9109-0d7adf13924d))
(pad "1" smd rect (at 4.5 -1.6 270) (size 2.25 0.5) (layers "B.Cu" "B.Paste" "B.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "input") (tstamp 0680b3c6-81bf-44b6-9d45-a1bb4097f54a))
(pad "2" smd rect (at 4.5 -0.8 270) (size 2.25 0.5) (layers "B.Cu" "B.Paste" "B.Mask")
(net 43 "unconnected-(USB1-ID-Pad2)") (pinfunction "ID") (pintype "input") (tstamp d6ae2ab5-eace-4a5f-999c-e9371b2f3091))
(pad "3" smd rect (at 4.5 0 270) (size 2.25 0.5) (layers "B.Cu" "B.Paste" "B.Mask")
(net 16 "D +") (pinfunction "D+") (pintype "input") (tstamp 4b2ad239-231f-4df4-ae35-3462c486a494))
(pad "4" smd rect (at 4.5 0.8 270) (size 2.25 0.5) (layers "B.Cu" "B.Paste" "B.Mask")
(net 18 "D -") (pinfunction "D-") (pintype "input") (tstamp 8d0f1970-a2cd-4aa3-8a72-0ae1a5c3a183))
(pad "5" smd rect (at 4.5 1.6 270) (size 2.25 0.5) (layers "B.Cu" "B.Paste" "B.Mask")
(net 12 "VCC") (pinfunction "VBUS") (pintype "input") (tstamp 0bae3714-61b7-4a00-8873-ac9209807ac0))
(pad "6" thru_hole oval (at 0 -3.65 270) (size 2.7 1.7) (drill oval 1.9 0.7) (layers "*.Cu" "*.Mask")
(net 44 "unconnected-(USB1-SHIELD-Pad6)") (pinfunction "SHIELD") (pintype "input") (tstamp 1e6ef6cb-ff11-4d0a-8947-10d5a821b4a2))
(pad "6" thru_hole oval (at 0 3.65 270) (size 2.7 1.7) (drill oval 1.9 0.7) (layers "*.Cu" "*.Mask")
(net 44 "unconnected-(USB1-SHIELD-Pad6)") (pinfunction "SHIELD") (pintype "input") (tstamp d43f79f2-6702-4745-975e-e37db4f0997b))
(pad "6" thru_hole oval (at 4.5 -3.65 270) (size 2.7 1.7) (drill oval 1.9 0.7) (layers "*.Cu" "*.Mask")
(net 44 "unconnected-(USB1-SHIELD-Pad6)") (pinfunction "SHIELD") (pintype "input") (tstamp 6cb1ae5a-e166-4f53-a4ab-769cea81bb3d))
(pad "6" thru_hole oval (at 4.5 3.65 270) (size 2.7 1.7) (drill oval 1.9 0.7) (layers "*.Cu" "*.Mask")
(net 44 "unconnected-(USB1-SHIELD-Pad6)") (pinfunction "SHIELD") (pintype "input") (tstamp 6146fd9f-826e-473f-9494-1526d69e255c))
)
(footprint "Diode_SMD:D_SOD-123" (layer "B.Cu")
(tstamp 344c5b1b-5574-46cc-9e4d-6c9b53cbc78c)
(at 171.45 123.7625 90)
(descr "SOD-123")
(tags "SOD-123")
(property "Sheetfile" "ai03-pcb-guide.kicad_sch")
(property "Sheetname" "")
(property "Sim.Device" "D")
(property "Sim.Pins" "1=K 2=A")
(property "ki_description" "Diode, small symbol")
(property "ki_keywords" "diode")
(path "/8a4742e4-8d95-4146-8bbb-38d01b2db3df")
(attr smd)
(fp_text reference "D4" (at 0 2 90) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 94dc468b-9758-4522-b29f-e2dc6b2275ec)
)
(fp_text value "SOD-123" (at 0 -2.1 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 5fd41a04-587c-493c-ba59-a8b6dd63c1a1)
)
(fp_text user "${REFERENCE}" (at 0 2 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 71398087-9ce3-47c2-9ecd-598de548caf6)
)
(fp_line (start -2.36 -1) (end 1.65 -1)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp e29471f6-1333-4174-9474-1deeb190e8a7))
(fp_line (start -2.36 1) (end -2.36 -1)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp a304874f-60d8-4d56-a1b9-88fd5f8a1fc3))
(fp_line (start -2.36 1) (end 1.65 1)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp e3b36b0c-5ce1-4761-b494-d637e42f965d))
(fp_line (start -2.35 1.15) (end -2.35 -1.15)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 8778acdd-9f37-4e43-a05d-0ad01d678e45))
(fp_line (start -2.35 1.15) (end 2.35 1.15)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 534de0f3-5826-4ea7-8bc0-1340bad995a1))
(fp_line (start 2.35 -1.15) (end -2.35 -1.15)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp e09f64fd-d7f5-4bce-80b1-a8909f455d82))
(fp_line (start 2.35 1.15) (end 2.35 -1.15)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp a336e7b2-4b60-4caa-b15e-07c27163a745))
(fp_line (start -1.4 -0.9) (end -1.4 0.9)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 93fdc938-1824-493b-81f4-f3524e8b8b93))
(fp_line (start -1.4 0.9) (end 1.4 0.9)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp badf8a97-28bb-41a9-9eb3-4628db929719))
(fp_line (start -0.75 0) (end -0.35 0)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 722ae74c-617f-49af-86e2-2853bbd67bb1))
(fp_line (start -0.35 0) (end -0.35 -0.55)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 32c3454a-2f22-49bc-87bf-76bbb7664ab7))
(fp_line (start -0.35 0) (end -0.35 0.55)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 02f3a8f7-f93d-4f72-abd4-11cb30a637a2))
(fp_line (start -0.35 0) (end 0.25 0.4)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 82b088e3-30a3-4dd7-8200-b5dad03622e0))
(fp_line (start 0.25 -0.4) (end -0.35 0)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 54882044-dbc1-41d3-87c8-c56193101e13))
(fp_line (start 0.25 0) (end 0.75 0)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 23a89e7f-cd92-4696-9bb4-5d034b22ce17))
(fp_line (start 0.25 0.4) (end 0.25 -0.4)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp ccc24bb5-3e8e-4751-b322-2ee4c251dea1))
(fp_line (start 1.4 -0.9) (end -1.4 -0.9)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 2b9a6ca9-9495-4195-a2fb-d1bdd9d76937))
(fp_line (start 1.4 0.9) (end 1.4 -0.9)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 7d0bf2c1-18bf-4bfe-9876-a895f38d5cdd))
(pad "1" smd roundrect (at -1.65 0 90) (size 0.9 1.2) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 9 "ROW1") (pinfunction "K") (pintype "passive") (tstamp 89c5b54e-e084-495f-8022-45f98665fe5b))
(pad "2" smd roundrect (at 1.65 0 90) (size 0.9 1.2) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 11 "Net-(D4-A)") (pinfunction "A") (pintype "passive") (tstamp d76e5ddc-7d6d-4d28-b2f8-4718b4721c09))
(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_Pad1.18x1.45mm_HandSolder" (layer "B.Cu")
(tstamp 3c574838-95e0-41ea-b654-0cfd1699044a)
(at 132.8625 115.7625 90)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (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 handsolder")
(property "Sheetfile" "ai03-pcb-guide.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/bddd2c70-0a8b-420a-a640-88fdb27c9d5d")
(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 b73afaaa-0870-405d-ae67-8dfe4830f8e6)
)
(fp_text value "0.1uF" (at 0 -1.68 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp a5363113-631a-4fab-9de6-2569b441c05c)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "B.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)) (justify mirror))
(tstamp 7f053a51-f567-4d22-9f61-831c3a001d35)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp a7723746-2e03-4203-8079-831f357dab12))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 5b6ca179-af68-4c4e-adfc-860a002bf353))
(fp_line (start -1.88 -0.98) (end -1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 72e6232f-ee76-42b0-84f1-b8605f2ce826))
(fp_line (start -1.88 0.98) (end 1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp c2e84f42-7385-43de-ad2c-88138c3deadd))
(fp_line (start 1.88 -0.98) (end -1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp addce194-13c6-4716-aa1c-a298f55e7ba1))
(fp_line (start 1.88 0.98) (end 1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp b9ac4ab4-8843-4160-b5b8-8a03ec3c49d1))
(fp_line (start -1 -0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp b529acec-99bb-4efd-9712-3ea45e59a583))
(fp_line (start -1 0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp ba55b6a4-8433-49a1-ac58-20093283c7fc))
(fp_line (start 1 -0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp d80b23cd-25eb-4651-88c4-e3f7e292def9))
(fp_line (start 1 0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 33d8713f-7f7a-4a32-85f9-8ccb817d963f))
(pad "1" smd roundrect (at -1.0375 0 90) (size 1.175 1.45) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.2127659574)
(net 3 "+5V") (pintype "passive") (tstamp b4c79016-5e2e-4f60-a482-02cb6642be73))
(pad "2" smd roundrect (at 1.0375 0 90) (size 1.175 1.45) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.2127659574)
(net 2 "GND") (pintype "passive") (tstamp 3c4ae0cc-90ca-4ef3-b676-12fb68ad1414))
(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")
(tstamp 56ea6bc1-6bb8-47ba-9309-dd64211543dd)
(at 152.4 103.125 90)
(descr "SOD-123")
(tags "SOD-123")
(property "Sheetfile" "ai03-pcb-guide.kicad_sch")
(property "Sheetname" "")
(property "Sim.Device" "D")
(property "Sim.Pins" "1=K 2=A")
(property "ki_description" "Diode, small symbol")
(property "ki_keywords" "diode")
(path "/84acc662-7f3c-4f0f-bd42-5932619e8415")
(attr smd)
(fp_text reference "D1" (at 0 2 90) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 518ccb49-eec3-4a67-afaf-3d6617419599)
)
(fp_text value "SOD-123" (at 0 -2.1 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp fd8bc49f-8f30-471d-973a-17b64df32f5f)
)
(fp_text user "${REFERENCE}" (at 0 2 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 8d89dbc9-64fa-40d8-9e57-09c9346f3278)
)
(fp_line (start -2.36 -1) (end 1.65 -1)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 18bf866b-01fc-463a-9aac-b0a9ccf60082))
(fp_line (start -2.36 1) (end -2.36 -1)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 33e87759-9013-4d41-b059-4000d35aa3f4))
(fp_line (start -2.36 1) (end 1.65 1)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 84a543b9-23b1-4df6-baf9-b807a9bfebb5))
(fp_line (start -2.35 1.15) (end -2.35 -1.15)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 8681397c-c0c8-4226-867a-d2cff1574365))
(fp_line (start -2.35 1.15) (end 2.35 1.15)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 4c1d4903-5b6d-4d56-bdfc-41909e726f0f))
(fp_line (start 2.35 -1.15) (end -2.35 -1.15)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp c425cc05-c99b-4bf4-8253-c16883f24f69))
(fp_line (start 2.35 1.15) (end 2.35 -1.15)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 39e23d73-e27d-4106-8403-0d56864154b9))
(fp_line (start -1.4 -0.9) (end -1.4 0.9)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 0a4b8213-b8bc-45d1-ba3e-66599f3ab40d))
(fp_line (start -1.4 0.9) (end 1.4 0.9)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 4e04548d-8c18-4a01-a64d-f5cea9b000f4))
(fp_line (start -0.75 0) (end -0.35 0)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 39d2413c-c561-41de-8549-a2b4f2b32f06))
(fp_line (start -0.35 0) (end -0.35 -0.55)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp ee960734-ecda-42f9-bed4-86c73e3d0b0d))
(fp_line (start -0.35 0) (end -0.35 0.55)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 1298fde7-eb82-4657-ac5d-2eb64785cf15))
(fp_line (start -0.35 0) (end 0.25 0.4)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp c140d33a-1dca-49e3-b0c7-f73d94d79532))
(fp_line (start 0.25 -0.4) (end -0.35 0)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 419b7c7d-eb4e-4b1b-8f02-05d4359b14bf))
(fp_line (start 0.25 0) (end 0.75 0)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp a0e76ceb-1e12-403b-b630-bd544f4df295))
(fp_line (start 0.25 0.4) (end 0.25 -0.4)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 4406db93-892e-48b1-bcb6-9b39574e69d8))
(fp_line (start 1.4 -0.9) (end -1.4 -0.9)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 23cc6f8d-79d1-4f01-9482-e26c7155ab26))
(fp_line (start 1.4 0.9) (end 1.4 -0.9)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp bbd2050c-a8f6-442d-aaf0-8bfbc5ebffe0))
(pad "1" smd roundrect (at -1.65 0 90) (size 0.9 1.2) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 6 "ROW0") (pinfunction "K") (pintype "passive") (tstamp 50aeeb40-3732-472a-b4e9-3019b0a26ace))
(pad "2" smd roundrect (at 1.65 0 90) (size 0.9 1.2) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 7 "Net-(D1-A)") (pinfunction "A") (pintype "passive") (tstamp 6520ee4e-4e4c-47c2-a43e-4cc85e83ac87))
(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 "Resistor_SMD:R_0805_2012Metric" (layer "B.Cu")
(tstamp 5daf4d53-a987-4241-873d-f01a0a016b00)
(at 105.56875 107.0375 -90)
(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" "ai03-pcb-guide.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/a7b03c2c-fd2b-4736-927e-71fb53b3e13b")
(attr smd)
(fp_text reference "R2" (at 0 1.65 90) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 16397c61-0d04-4a0c-b74e-7645ab0a2be4)
)
(fp_text value "22" (at 0 -1.65 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 369bea17-f0ba-43b6-9716-8361bd8b6aa5)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "B.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)) (justify mirror))
(tstamp d1d7e82f-d788-4a0d-9af2-5dbd74dd55fd)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 5975e9e4-a7df-42a2-9085-f4b06fa3f686))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 0cf7d09b-0ad6-42ae-a5e2-e262483876d4))
(fp_line (start -1.68 -0.95) (end -1.68 0.95)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 29483437-eae8-4a66-8374-e13af4845564))
(fp_line (start -1.68 0.95) (end 1.68 0.95)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 122e0f6e-e2e1-466f-b55b-f473abb993de))
(fp_line (start 1.68 -0.95) (end -1.68 -0.95)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 43281685-dd6c-44e7-88d5-50ed2be0b2e5))
(fp_line (start 1.68 0.95) (end 1.68 -0.95)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 94b7e698-330f-4944-a844-71f9d74bb87e))
(fp_line (start -1 -0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 84799b93-4509-4c7b-a6f1-d31fda743965))
(fp_line (start -1 0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 67d2c6c5-bfff-4d11-b7f6-91f98f93befc))
(fp_line (start 1 -0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp b7af8878-50ce-4b95-b693-a60b73c2a644))
(fp_line (start 1 0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 72e3a318-03f9-463a-9ea0-a771ec3fb186))
(pad "1" smd roundrect (at -0.9125 0 270) (size 1.025 1.4) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.243902439)
(net 16 "D +") (pintype "passive") (tstamp 967fa923-bef9-4f14-821e-fe5a63a44b40))
(pad "2" smd roundrect (at 0.9125 0 270) (size 1.025 1.4) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.243902439)
(net 17 "Net-(U1-D+)") (pintype "passive") (tstamp abfc69c9-dffb-4106-bba8-d77ed2f5ed3d))
(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_Pad1.18x1.45mm_HandSolder" (layer "B.Cu")
(tstamp 81bf7a6c-00b8-4c00-bfd7-a2fd0f5cd32f)
(at 112.46875 119.0625 180)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (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 handsolder")
(property "Sheetfile" "ai03-pcb-guide.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/8040eb2a-9d94-4c78-b110-771a1fed84bd")
(attr smd)
(fp_text reference "C1" (at 0 1.68) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 4d93b4e9-c29c-47ef-823e-569d2513c61a)
)
(fp_text value "1uF" (at 0 -1.68) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 26f5c7a4-704a-465a-ac0c-af440214ba5d)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)) (justify mirror))
(tstamp f7390aec-65fe-4702-8dac-ad67d51d266f)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp be5a811a-e38d-4766-8031-10297312d720))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 4c12b111-f63f-40b1-b54d-b622b18325c5))
(fp_line (start -1.88 -0.98) (end -1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp ebdb9107-0c0f-42cd-a12b-6e533ff002e4))
(fp_line (start -1.88 0.98) (end 1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp c7406420-1db0-4981-9da5-6eba18ad3e99))
(fp_line (start 1.88 -0.98) (end -1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp d9c03d6a-ee2f-4357-9a53-6f2a8b6523fd))
(fp_line (start 1.88 0.98) (end 1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp dd4f2629-3c73-4da9-a84d-8c23030da72a))
(fp_line (start -1 -0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp ef909fa3-0eec-4054-beb6-71e788093d7c))
(fp_line (start -1 0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 3faaf649-87ad-4dec-9767-e97d47cb60f5))
(fp_line (start 1 -0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 7a8d04fb-fdf0-4965-bdc4-02459b21e7f3))
(fp_line (start 1 0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 5c5878e8-6778-4b15-927e-1647ec01e590))
(pad "1" smd roundrect (at -1.0375 0 180) (size 1.175 1.45) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.2127659574)
(net 1 "Net-(U1-UCAP)") (pintype "passive") (tstamp 891b6387-3798-4393-9253-85b133048d4b))
(pad "2" smd roundrect (at 1.0375 0 180) (size 1.175 1.45) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.2127659574)
(net 2 "GND") (pintype "passive") (tstamp 86dfe4a1-2ec3-41f9-b4c7-f56a0fb72958))
(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")
(tstamp 8a6400bf-d8ab-43df-b1ba-d2f19f59aa39)
(at 110.09375 110.45 -90)
(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" "ai03-pcb-guide.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/b47160ca-8e9b-4ac6-ab51-88b877976f18")
(attr smd)
(fp_text reference "R4" (at 0 1.65 90) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp f7daf3cb-663e-427f-ac4a-b9abda91e9ad)
)
(fp_text value "10k" (at 0 -1.65 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 97d6064b-c928-41af-88e3-275790c20d75)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "B.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)) (justify mirror))
(tstamp 80349625-ab3b-4382-8b86-8f1b349e52fc)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 7c5c522b-0404-4077-932a-98ea9f3d7a40))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp cd3ab9a0-6ced-461d-83d6-e1d5097c781e))
(fp_line (start -1.68 -0.95) (end -1.68 0.95)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 0359b452-516c-4def-8fdf-da50286581cb))
(fp_line (start -1.68 0.95) (end 1.68 0.95)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp b75aec6d-736e-4c9e-b1dd-f6e130ea2261))
(fp_line (start 1.68 -0.95) (end -1.68 -0.95)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 3c4d4987-a0fb-4aa1-a7b0-c993d077beb7))
(fp_line (start 1.68 0.95) (end 1.68 -0.95)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp cce025d9-a6f7-4a76-8616-5a5b30a848c8))
(fp_line (start -1 -0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp ac63b682-416f-401b-a2e9-c6c9528ea735))
(fp_line (start -1 0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp b941830a-9285-4c4a-a33b-daec97f1bbc5))
(fp_line (start 1 -0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp dad7744c-8e8a-40f9-9808-770161bea658))
(fp_line (start 1 0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 57377a72-9c94-4646-8735-16bf8ec24b8b))
(pad "1" smd roundrect (at -0.9125 0 270) (size 1.025 1.4) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.243902439)
(net 3 "+5V") (pintype "passive") (tstamp 2e53fdc2-1740-4726-90d5-5e75da65279c))
(pad "2" smd roundrect (at 0.9125 0 270) (size 1.025 1.4) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.243902439)
(net 20 "Net-(U1-~{RESET})") (pintype "passive") (tstamp 8c170aac-4dc1-4696-90c8-7d0dc87d0301))
(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 "Diode_SMD:D_SOD-123" (layer "B.Cu")
(tstamp 8bc4e38b-b3f8-4003-bd63-03877ee605b9)
(at 171.45 103.1875 90)
(descr "SOD-123")
(tags "SOD-123")
(property "Sheetfile" "ai03-pcb-guide.kicad_sch")
(property "Sheetname" "")
(property "Sim.Device" "D")
(property "Sim.Pins" "1=K 2=A")
(property "ki_description" "Diode, small symbol")
(property "ki_keywords" "diode")
(path "/59932777-7a2b-4f9d-8144-6017faa35493")
(attr smd)
(fp_text reference "D2" (at 0 2 90) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 1ee587c2-55c7-457c-9302-2806bbceeddb)
)
(fp_text value "SOD-123" (at 0 -2.1 90) (layer "B.Fab")