forked from skot/bitaxe
-
Notifications
You must be signed in to change notification settings - Fork 6
/
NerdAxe_ultra.kicad_pcb
19923 lines (19777 loc) · 899 KB
/
NerdAxe_ultra.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)
(1 "In1.Cu" signal)
(2 "In2.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
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.02))
(layer "dielectric 1" (type "core") (thickness 0.5) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "In1.Cu" (type "copper") (thickness 0.02))
(layer "dielectric 2" (type "prepreg") (thickness 0.5) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "In2.Cu" (type "copper") (thickness 0.02))
(layer "dielectric 3" (type "core") (thickness 0.5) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.02))
(layer "B.Mask" (type "Bottom Solder Mask") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(aux_axis_origin 77.851 138.176)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions true)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 6)
(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 false)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk true)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "Manufacturing Files/gerbers/")
)
)
(net 0 "")
(net 1 "GND")
(net 2 "/VIN")
(net 3 "/BM1366/1V8")
(net 4 "Net-(Q3-D)")
(net 5 "/VDD")
(net 6 "/5V")
(net 7 "/3V3")
(net 8 "/TX")
(net 9 "/RX")
(net 10 "/BM1366/VDD3_0")
(net 11 "/BM1366/VDD2_0")
(net 12 "/RST")
(net 13 "/Power/PWR_EN")
(net 14 "/Fan/FAN_TACH")
(net 15 "/SCL")
(net 16 "/Fan/FAN_PWM")
(net 17 "/Power/OUT0")
(net 18 "/Power/SW")
(net 19 "/BM1366/0V8")
(net 20 "/BM1366/VDD1_0")
(net 21 "/BM1366/VDD1_1")
(net 22 "/BM1366/VDD2_1")
(net 23 "/BM1366/VDD3_1")
(net 24 "/BM1366/ADDR0")
(net 25 "/BM1366/ADDR1")
(net 26 "/BM1366/INV_CL0")
(net 27 "/BM1366/PIN_MODE")
(net 28 "Net-(U9-COMP)")
(net 29 "Net-(U9-BOOT)")
(net 30 "Net-(C41-Pad2)")
(net 31 "Net-(U9-BP)")
(net 32 "/BM1366/CI")
(net 33 "Net-(C45-Pad1)")
(net 34 "/BM1366/RO")
(net 35 "/BM1366/RST_N")
(net 36 "unconnected-(U3-GPIO3-Pad4)")
(net 37 "Net-(Q1-G)")
(net 38 "Net-(Q2-G)")
(net 39 "/BM1366/RI")
(net 40 "Net-(U10-FS0)")
(net 41 "Net-(U10-FS1)")
(net 42 "/BM1366/CLKI")
(net 43 "/BM1366/NRSTO")
(net 44 "/BM1366/BO")
(net 45 "/BM1366/CLKO")
(net 46 "/BM1366/CO")
(net 47 "unconnected-(U7-DP-Pad2)")
(net 48 "/Power/PGOOD")
(net 49 "unconnected-(U5-PG-Pad4)")
(net 50 "unconnected-(U6-PG-Pad4)")
(net 51 "unconnected-(U8-ALERT-Pad7)")
(net 52 "/Power/OUT1")
(net 53 "unconnected-(U8-NC-Pad13)")
(net 54 "unconnected-(U7-DN-Pad3)")
(net 55 "/SDA")
(net 56 "/BM1366/BI")
(net 57 "/PLUG_SENSE")
(net 58 "unconnected-(U3-GPIO13-Pad8)")
(net 59 "unconnected-(U3-NC-Pad9)")
(net 60 "unconnected-(U3-NC-Pad10)")
(net 61 "unconnected-(U3-NC-Pad16)")
(net 62 "unconnected-(U3-GPIO16-Pad17)")
(net 63 "unconnected-(U3-GPIO21-Pad18)")
(net 64 "/TTGO/3V")
(net 65 "Net-(D1-K)")
(footprint "Capacitor_SMD:C_0805_2012Metric" (layer "F.Cu")
(tstamp 00fa52e7-d6a1-499e-95bb-53c886d9bc7c)
(at 104.5102 82.2868 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 "DK" "1276-1096-1-ND")
(property "LCSC Part" "C89827")
(property "PARTNO" "CL21A106KOQNNNE")
(property "Sheetfile" "power.kicad_sch")
(property "Sheetname" "Power")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/8ec0a9c6-2b78-44ef-a83d-9047d2828409/07d60383-fa47-4bff-80c3-1eb55a36d83f")
(attr smd)
(fp_text reference "C43" (at -2.1682 0.0108) (layer "F.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.125)))
(tstamp 6ed883da-a6fb-49e9-92a3-4e872bb7a964)
)
(fp_text value "10uF" (at 0 1.68 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fdafdf2c-a8ab-422b-a181-2bfc18feb262)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 90aee9a9-4d61-475c-8f51-505972fcbf11)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3328e8e4-7f31-487e-bf84-08235e9c52b1))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 62bd0b1a-1db5-46ab-97ba-6968e7eb4b23))
(fp_line (start -1.7 -0.98) (end 1.7 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6dc75276-9166-4db5-ac7e-8278d4f51ccb))
(fp_line (start -1.7 0.98) (end -1.7 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7480a06f-a857-418d-8a7a-6e776fc453de))
(fp_line (start 1.7 -0.98) (end 1.7 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ca0c8782-a049-49ff-be0a-83e28ecbfb6f))
(fp_line (start 1.7 0.98) (end -1.7 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a34516b7-b92e-4cf1-be4e-3b2003da38cd))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6a9f1f8c-4fd8-4211-a25b-a5ce60af8119))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f155f407-a0ce-4e1c-9d6e-3671252ce059))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 973a275c-d5be-4387-b088-8c3a5e50446b))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bdaefd7c-84ac-45cd-b229-f206fa6e211c))
(pad "1" smd roundrect (at -0.95 0 90) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 31 "Net-(U9-BP)") (pintype "passive") (tstamp c570004d-9666-4d4e-8968-b6d08ded21ab))
(pad "2" smd roundrect (at 0.95 0 90) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 6b9f427a-20fa-4ecf-99f2-05a6506a8056))
(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_0402_1005Metric" (layer "F.Cu")
(tstamp 0188136b-2f03-4cd4-8f7b-5a33656f5641)
(at 116.356 105.4762 180)
(descr "Capacitor SMD 0402 (1005 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), generated with kicad-footprint-generator")
(tags "capacitor")
(property "DK" "1292-1639-1-ND")
(property "LCSC Part" "C1525")
(property "PARTNO" "0402X104K100CT")
(property "Sheetfile" "bm1366.kicad_sch")
(property "Sheetname" "BM1366")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/4cf9c075-d009-4c35-9949-adda70ae20c7/5e2c0617-e309-4b91-9ac3-eb1348a4b6f3")
(attr smd)
(fp_text reference "C19" (at 2.356 -0.035 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 23e7c7a4-360c-40af-84c2-80423084f66e)
)
(fp_text value "0.1uF" (at 0 1.16) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 08ee9f27-f8e3-438e-a3ca-fd5b0550d905)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp a6df57e5-ab46-4c68-bc62-c3119e2c9a09)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 91ab5ce8-cdff-40c6-a11e-9087a824fa60))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 68d3c11c-f3e5-4df2-9b52-6875da686c2c))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 296fcf22-ddce-441e-8e2a-8ad894907a4a))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a34af4d7-ebc7-4184-8aa3-3c51ca095b5f))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6551a903-3438-4996-86d3-ddb3b2792a51))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ef0b802b-6bf4-47b3-b66c-b73f4bc40463))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 56d22a12-2859-4f46-82be-8c08883ed9d2))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d7a6e89c-07be-42b3-994f-5a70e8120c07))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d5691ece-28d8-464e-9405-5fd0fea41a9e))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9fb32ce5-3a3b-40e8-a35a-d6beeb034dba))
(pad "1" smd roundrect (at -0.48 0 180) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "/BM1366/1V8") (pintype "passive") (tstamp 9bd7a29e-d117-408a-bb15-d70d0925e3e4))
(pad "2" smd roundrect (at 0.48 0 180) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp e1637383-5dea-45ce-be88-9547174ee235))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "TestPoint:TestPoint_Pad_D1.5mm" (layer "F.Cu")
(tstamp 07c1dd59-d88e-4262-a279-ac63adc04970)
(at 119.888 119.38)
(descr "SMD pad as test Point, diameter 1.5mm")
(tags "test point SMD pad")
(property "Sheetfile" "bm1366.kicad_sch")
(property "Sheetname" "BM1366")
(property "exclude_from_bom" "")
(property "ki_description" "test point")
(property "ki_keywords" "test point tp")
(path "/4cf9c075-d009-4c35-9949-adda70ae20c7/b0ab8498-4d2c-476f-9932-9242f5c9ea27")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "TP2" (at 2.54 0.381) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b962968d-0736-40bd-9c40-3039027c2697)
)
(fp_text value "TestPoint" (at 0 1.75) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5b5c81bc-534f-4fce-9859-eec34cc15ab3)
)
(fp_text user "${REFERENCE}" (at 0 -1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 20f530aa-401b-42e6-94a1-ba539fa1ed92)
)
(fp_circle (center 0 0) (end 0 0.95)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp 7cf0cc11-37b6-4047-b968-12c55ffa9ad3))
(fp_circle (center 0 0) (end 1.25 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 5e545bba-3c23-4f6d-b9ff-6db8a8c602d6))
(pad "1" smd circle (at 0 0) (size 1.5 1.5) (layers "F.Cu" "F.Mask")
(net 32 "/BM1366/CI") (pinfunction "1") (pintype "passive") (tstamp eb72b8fa-e866-4d21-934d-5ffd80e20ce3))
)
(footprint "Package_SO:TSSOP-16_4.4x5mm_P0.65mm" (layer "F.Cu")
(tstamp 080b9cf7-542e-4d5a-bd3b-62ec2ec2c0e0)
(at 81.28 87.8112)
(descr "TSSOP, 16 Pin (JEDEC MO-153 Var AB https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "TSSOP SO")
(property "DK" "296-47777-1-ND")
(property "PARTNO" "INA260AIPWR")
(property "Sheetfile" "power.kicad_sch")
(property "Sheetname" "Power")
(property "ki_description" "Current/power/voltage monitor with Integrated 2mΩ Shunt Resistor, 2.7V - 5.5V, I2C, TSSOP-16")
(property "ki_keywords" "Current/power/voltage monitor")
(path "/8ec0a9c6-2b78-44ef-a83d-9047d2828409/2c537a05-d4e5-4387-af81-3327f0b155a3")
(attr smd)
(fp_text reference "U8" (at -2.794 3.6288) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bfb5ec67-88ad-48ce-ae27-7388e963bb9e)
)
(fp_text value "INA260" (at 0 3.45) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 68ceae5c-0930-494d-bcb8-8c65386cde05)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7440fbba-4e76-4b5f-9ac6-58f94b447f4b)
)
(fp_line (start -2.22 -2.5) (end 2.2 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp f746dc3e-4be0-4a98-b47f-39f0ad32a08f))
(fp_line (start -2.2 2.5) (end -2.22 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 8afa3789-d1c0-4c2f-962e-89825242b293))
(fp_line (start 2.2 -2.5) (end 2.2 2.5)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp f2c20bdc-3891-43ba-bcec-f4accbf67943))
(fp_line (start 2.2 2.5) (end -2.2 2.5)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp a6ba4c27-8fea-411c-b530-5c2fb6c5463e))
(fp_circle (center -4.04 -2.45) (end -3.789401 -2.45)
(stroke (width 0.12) (type solid)) (fill solid) (layer "F.SilkS") (tstamp 956d6dd1-505d-4f6e-b1bb-d102f5889c6a))
(fp_line (start -3.85 -2.75) (end -3.85 2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b247fe75-b658-438e-ac2f-b9b02f80670b))
(fp_line (start -3.85 2.75) (end 3.85 2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 19ef2ea9-a7eb-44a1-b31f-3dc0c5d2d059))
(fp_line (start 3.85 -2.75) (end -3.85 -2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 810c0a7d-c6d8-4f80-8ad1-01f4e1f8c59d))
(fp_line (start 3.85 2.75) (end 3.85 -2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 163b65e7-d3a2-4bc9-8d85-95d250d283e8))
(pad "1" smd roundrect (at -2.8625 -2.275) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "/VIN") (pinfunction "IN+") (pintype "passive") (tstamp 54106e92-00d3-43a2-b57d-b6fdb6c048d8))
(pad "2" smd roundrect (at -2.8625 -1.625) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "/VIN") (pinfunction "IN+") (pintype "passive") (tstamp bc827271-b392-40eb-a1b6-cb9e84efa215))
(pad "3" smd roundrect (at -2.8625 -0.975) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "/VIN") (pinfunction "IN+") (pintype "passive") (tstamp 91da2a2f-f522-4ad4-9bde-c39f997f05bc))
(pad "4" smd roundrect (at -2.8625 -0.325) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "A1") (pintype "input") (clearance 0.1) (tstamp 6203097a-ab6d-4a7f-93d5-be6857ac0c91))
(pad "5" smd roundrect (at -2.8625 0.325) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "A0") (pintype "input") (tstamp 9ce3c4bf-4256-4202-bb87-728035161e96))
(pad "6" smd roundrect (at -2.8625 0.975) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 8286376e-bfe9-45df-8bf0-af558a5ef868))
(pad "7" smd roundrect (at -2.8625 1.625) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 51 "unconnected-(U8-ALERT-Pad7)") (pinfunction "ALERT") (pintype "open_collector") (tstamp de28a428-53c4-4bf5-97d5-25489822afc7))
(pad "8" smd roundrect (at -2.8625 2.275) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 55 "/SDA") (pinfunction "SDA") (pintype "bidirectional") (tstamp 88dc5888-2b09-45e2-9dad-90b1b5910c2f))
(pad "9" smd roundrect (at 2.8625 2.275) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 15 "/SCL") (pinfunction "SCL") (pintype "input") (tstamp a42ac234-7a2e-430e-8fa6-a947c66aac4f))
(pad "10" smd roundrect (at 2.8625 1.625) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "/3V3") (pinfunction "VS") (pintype "power_in") (tstamp a2199361-8d82-4cea-b7dd-3d14c7116a2e))
(pad "11" smd roundrect (at 2.8625 0.975) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp 46420fc8-f6b8-48af-87d0-c3c7533bb8c1))
(pad "12" smd roundrect (at 2.8625 0.325) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "/VIN") (pinfunction "VBUS") (pintype "passive") (tstamp 35588d06-16b1-4746-8898-3e2e92ddaebf))
(pad "13" smd roundrect (at 2.8625 -0.325) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 53 "unconnected-(U8-NC-Pad13)") (pinfunction "NC") (pintype "no_connect") (clearance 0.1) (tstamp 72d83a3d-1999-4376-82ea-dcccfad4ad40))
(pad "14" smd roundrect (at 2.8625 -0.975) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "/5V") (pinfunction "IN-") (pintype "passive") (tstamp f55b0d3d-a81f-4663-9666-0c0ae68cd5f6))
(pad "15" smd roundrect (at 2.8625 -1.625) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "/5V") (pinfunction "IN-") (pintype "passive") (tstamp 5adf79e4-ff58-46ef-9639-f5ee3b5c94e3))
(pad "16" smd roundrect (at 2.8625 -2.275) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "/5V") (pinfunction "IN-") (pintype "passive") (tstamp f433d026-b1e3-4830-83ba-97fba00d72b8))
(model "${KICAD6_3DMODEL_DIR}/Package_SO.3dshapes/TSSOP-16_4.4x5mm_P0.65mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tstamp 086a188d-c66c-4364-989b-3b7c99cb4552)
(at 109.093 114.709 -90)
(descr "Capacitor SMD 0402 (1005 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), generated with kicad-footprint-generator")
(tags "capacitor")
(property "DK" "1292-1639-1-ND")
(property "LCSC Part" "C1525")
(property "PARTNO" "0402X104K100CT")
(property "Sheetfile" "bm1366.kicad_sch")
(property "Sheetname" "BM1366")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/4cf9c075-d009-4c35-9949-adda70ae20c7/1b6723b4-0b8b-4f48-981b-984f531c7e8c")
(attr smd)
(fp_text reference "C7" (at -1.933 0.381 -90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp eb6e6efd-a549-492e-8dd3-092e0e9d8d6d)
)
(fp_text value "0.1uF" (at 0 1.16 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fc4fec2d-9d03-4fa4-808d-47f0c74c121e)
)
(fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 71fb6c4d-be82-4e95-898d-98e6ca0db007)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp efbe54dd-9959-42b9-9705-b61178579379))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bf18125a-d709-485e-a278-b9b39c5bcad0))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 715dc006-f3cc-45e1-a8d4-399e09bd074b))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9d128fa4-e8cf-4f59-bb0b-d1beb6b1e683))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b41c8b66-0ac8-4dc1-97cb-be980cbdfb43))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3618619d-09a2-4fa2-a761-56d6241b5138))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 996965bd-5038-4ba1-a5f7-74b4b5ed9efd))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 90e440f5-2052-4fb1-903a-52a983f52cd4))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 84b9d897-746a-4ac7-a452-02297c27bb23))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1ad2256e-c588-49d3-be0b-460ebb1551d4))
(pad "1" smd roundrect (at -0.48 0 270) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "/VDD") (pintype "passive") (tstamp d2862500-e31e-4125-a3bf-df06f1582a2f))
(pad "2" smd roundrect (at 0.48 0 270) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 149837e8-73b1-4ffc-9708-07b2b7e36ba4))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tstamp 0b6a3568-39e6-4bae-8f2a-154b92bbf9a5)
(at 88.3923 78.2112 -90)
(descr "Resistor SMD 0402 (1005 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 "DK" "311-1.33KLRCT-ND")
(property "LCSC Part" "C334646")
(property "PARTNO" "RC0402FR-071K33L")
(property "Sheetfile" "power.kicad_sch")
(property "Sheetname" "Power")
(property "ki_description" "Resistor, US symbol")
(property "ki_keywords" "R res resistor")
(path "/8ec0a9c6-2b78-44ef-a83d-9047d2828409/a5c38c58-f000-400f-a2cb-308b0f492667")
(attr smd)
(fp_text reference "R13" (at -1.7572 0.0003 90) (layer "F.SilkS")
(effects (font (size 0.508 0.508) (thickness 0.127)))
(tstamp 427a0976-7667-414a-afa2-8578c98a9ba4)
)
(fp_text value "1.33k" (at 0 1.17 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2b91edcd-0a73-4657-9889-129a1a6443f6)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp 62b615cd-25de-4101-b2c6-254a19b9d68f)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3714349c-b60a-4140-a375-477e4de7ded3))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 435f68d3-c717-4cf9-aecc-23fbbb0b17c1))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7022ba2d-d937-4b1f-85cf-6ccdc8bdb0ff))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 760a4c68-c54c-492b-b7f9-a2fabfaa61a6))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8818e3ae-5ca5-4edb-8171-fe99711c5846))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0717de44-bdd2-49c6-b2ab-cac07d9b447e))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3ad8844e-10b6-425c-9252-9e1623e087d0))
(fp_line (start -0.525 0.27) (end -0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9d286447-10d6-4b39-b777-0c0f3ce3ba41))
(fp_line (start 0.525 -0.27) (end 0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 19e7a25a-ec20-43c6-8c5a-31b36be5a755))
(fp_line (start 0.525 0.27) (end -0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3a62b2e7-5d6f-46f2-a6e6-9d581228fab0))
(pad "1" smd roundrect (at -0.51 0 270) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "/VDD") (pintype "passive") (tstamp 81f20292-ee21-4119-a013-c23a71d2b010))
(pad "2" smd roundrect (at 0.51 0 270) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 33 "Net-(C45-Pad1)") (pintype "passive") (tstamp 4f1c7f62-f2f7-4954-91f5-ca835004d2b9))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Fiducial:Fiducial_1mm_Mask2mm" (layer "F.Cu")
(tstamp 0c4799fb-e37a-4ab0-b21b-a838cb0e9601)
(at 78.486 57.785)
(descr "Circular Fiducial, 1mm bare copper, 2mm soldermask opening (Level A)")
(tags "fiducial")
(property "Sheetfile" "NerdAxe_ultra.kicad_sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(property "ki_description" "Fiducial Marker")
(property "ki_keywords" "fiducial marker")
(path "/0e45ec53-bdc9-467e-afed-3d0d20ecad53")
(attr smd exclude_from_bom)
(fp_text reference "FID1" (at 0 -2) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8d8aa1ae-e5a1-4999-84fb-42837f135775)
)
(fp_text value "Fiducial" (at 0 2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ed0bbe7a-76ca-43a4-91f2-fdcd82286e58)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp f71989bf-0a05-493a-9369-88d0500536db)
)
(fp_circle (center 0 0) (end 1.25 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 22208d82-fdda-4a19-809e-1d61ae8a7b1e))
(fp_circle (center 0 0) (end 1 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp e32b3ea9-7902-4734-8950-7c1020fce4cf))
(pad "" smd circle (at 0 0) (size 1 1) (layers "F.Cu" "F.Mask")
(solder_mask_margin 0.5) (clearance 0.5) (tstamp 01c9f4fe-ce2d-4929-8b30-7e63468f6c52))
)
(footprint "Diode_SMD:D_SMA" (layer "F.Cu")
(tstamp 0fa73f2f-01ec-497b-957d-9de3d22a4984)
(at 114.3 77.756 -90)
(descr "Diode SMA (DO-214AC)")
(tags "Diode SMA (DO-214AC)")
(property "Sheetfile" "TTGO.kicad_sch")
(property "Sheetname" "TTGO")
(property "Sim.Device" "D")
(property "Sim.Pins" "1=K 2=A")
(property "ki_description" "200V, 1A, General Purpose Rectifier Diode, SMA(DO-214AC)")
(property "ki_keywords" "Ultra Fast")
(path "/26d98239-cc99-433b-80b9-07c779389fec/66e96e79-e97d-4d30-a9c7-cde84a8a60c8")
(attr smd)
(fp_text reference "D1" (at 0 -2.5 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a44d0371-58e8-483c-bb17-2a052bc10f1f)
)
(fp_text value "US1D" (at 0 2.6 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7eaea1c8-9911-47a6-b8ca-6684509c571c)
)
(fp_text user "${REFERENCE}" (at 0 -2.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b96b30fc-598f-4067-a6a9-df90440900f6)
)
(fp_line (start -3.51 -1.65) (end -3.51 1.65)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8460913a-0012-437f-a4a6-79c779b767ee))
(fp_line (start -3.51 -1.65) (end 2 -1.65)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 02b7f6e7-484d-431d-9a56-f2ee82069698))
(fp_line (start -3.51 1.65) (end 2 1.65)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6f36132c-a667-4a0e-a88b-e277b3d47233))
(fp_line (start -3.5 -1.75) (end 3.5 -1.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 342f3ab6-6461-4c56-bf88-0bf3c2521d4a))
(fp_line (start -3.5 1.75) (end -3.5 -1.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1710bcf9-e594-4dac-8427-db2cce613533))
(fp_line (start 3.5 -1.75) (end 3.5 1.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 235af79a-b443-46aa-8559-0df29a51c5d0))
(fp_line (start 3.5 1.75) (end -3.5 1.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fdf830fe-d06b-468f-ad81-79878245942f))
(fp_line (start -2.3 1.5) (end -2.3 -1.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 463ed43d-2bb9-4d1d-86ba-a60e863504f0))
(fp_line (start -0.64944 -0.79908) (end -0.64944 0.80112)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5305bfe2-e3ba-454c-9c67-4bb4b0abde54))
(fp_line (start -0.64944 0.00102) (end -1.55114 0.00102)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 977b965b-e000-4f43-b5f0-b59be6f18e5b))
(fp_line (start -0.64944 0.00102) (end 0.50118 -0.79908)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2f2d1e1f-4992-4e4a-a9a6-41ff8d23983b))
(fp_line (start -0.64944 0.00102) (end 0.50118 0.75032)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 35bd3c73-0816-4aaf-8246-ad5a14567992))
(fp_line (start 0.50118 0.00102) (end 1.4994 0.00102)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 82fcfa5e-5e69-4514-b22d-f6b68c213ca4))
(fp_line (start 0.50118 0.75032) (end 0.50118 -0.79908)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ebcc9f7c-d107-4b55-ae11-5b18a130a781))
(fp_line (start 2.3 -1.5) (end -2.3 -1.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 62f6aab4-48d1-4070-8915-0c857c13699c))
(fp_line (start 2.3 -1.5) (end 2.3 1.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2bc41397-0673-4fdb-832c-753d067db5c8))
(fp_line (start 2.3 1.5) (end -2.3 1.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a9608b01-d851-4d33-8053-75a48c83234c))
(pad "1" smd roundrect (at -2 0 270) (size 2.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1388888889)
(net 65 "Net-(D1-K)") (pinfunction "K") (pintype "passive") (tstamp 4a20e7e2-b9cf-4d15-b040-7015edf6004b))
(pad "2" smd roundrect (at 2 0 270) (size 2.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1388888889)
(net 6 "/5V") (pinfunction "A") (pintype "passive") (tstamp 7c101140-0d3d-40c8-8c05-fcda164fcef4))
(model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SMA.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tstamp 1237b33f-7f87-4930-a127-53c3e5b848f8)
(at 115.25 127.81 180)
(descr "Capacitor SMD 0402 (1005 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), generated with kicad-footprint-generator")
(tags "capacitor")
(property "DK" "1292-1639-1-ND")
(property "LCSC Part" "C1525")
(property "PARTNO" "0402X104K100CT")
(property "Sheetfile" "bm1366.kicad_sch")
(property "Sheetname" "BM1366")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/4cf9c075-d009-4c35-9949-adda70ae20c7/6a331258-2517-4f9e-903f-55b9a1ac11ac")
(attr smd)
(fp_text reference "C1" (at 0 -1.16 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 182aef32-899f-423c-8d58-05959142cfc5)
)
(fp_text value "0.1uF" (at 0 1.16 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7b82b64b-7e3a-4d1d-852b-21ba50f403b8)
)
(fp_text user "${REFERENCE}" (at 0 0 180) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 65511ac1-8786-4ac2-8c9e-5f76d63f0288)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ff4efa02-b57e-49cf-860c-d5170ae1ae73))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ba5223d6-1bbd-4f23-bab1-d612fa17fec4))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c7c8ad83-ab66-4004-a4cc-bb8bfacecfbe))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ec880b7d-6327-4f95-8121-07128f7e50c6))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8a35726d-620a-4826-ad42-2404402d4df9))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 683a100c-003f-4f68-94e0-3dbbc9622b05))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c766a286-0993-4b2e-b1ca-3431d9ae052d))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4faf9405-13eb-4b37-8a77-1cabff23652c))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1dd404c0-05a2-497e-a521-00fe5fd424f4))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1dbcc92c-e747-4bc6-bae1-1275de3deafd))
(pad "1" smd roundrect (at -0.48 0 180) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp b96e5e14-ddb6-4af4-a7b4-85000c88cbca))
(pad "2" smd roundrect (at 0.48 0 180) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "/BM1366/1V8") (pintype "passive") (tstamp 32b7dc46-d248-433e-b8c6-305f1cece893))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric" (layer "F.Cu")
(tstamp 1594a5f0-ca61-406e-8210-7f51ed2f465f)
(at 96.8 77.8112)
(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 "DK" "311-1128-1-ND")
(property "LCSC Part" "C152884")
(property "PARTNO" "CC0805KRX7R9BB152")
(property "Sheetfile" "power.kicad_sch")
(property "Sheetname" "Power")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/8ec0a9c6-2b78-44ef-a83d-9047d2828409/41f247e2-88b6-403d-a3e5-e93da295b212")
(attr smd)
(fp_text reference "C41" (at -0.026 -1.3572) (layer "F.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.125)))
(tstamp 3c8a41ee-a85a-452e-aa70-5b629aacb67d)
)
(fp_text value "1.5nF" (at 0 1.68) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3579adb4-69fb-44cb-952f-7ccc4d9d7096)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 33313093-c3c5-4238-a29f-9273f2998da4)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a7ecb767-0132-4b34-94fe-4bbf85fb92aa))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a3d56e95-686f-4c57-a47b-83895c74e15b))
(fp_line (start -1.7 -0.98) (end 1.7 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 73c25ad7-d14f-4fce-a477-22d9bc68a846))
(fp_line (start -1.7 0.98) (end -1.7 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0456054f-9c37-4970-9996-c73fef025784))
(fp_line (start 1.7 -0.98) (end 1.7 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp dad5b45c-f027-4ff7-8bc2-6b411de2832e))
(fp_line (start 1.7 0.98) (end -1.7 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp dd5f6070-fba9-49eb-a6f1-89342ee4413c))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp df1e93c7-0801-434b-a28b-fb14c3a753c4))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 98ab0cc7-1eed-4c2a-ab7a-db0e69ad5eec))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f9c669d7-39e5-4f63-a574-046ea6c4ed8b))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 57c0c935-92b0-44d9-bc40-abba17976b83))
(pad "1" smd roundrect (at -0.95 0) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 28 "Net-(U9-COMP)") (pintype "passive") (tstamp bfbb90d1-fdc8-4638-8942-ab1041bcdaf4))
(pad "2" smd roundrect (at 0.95 0) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 30 "Net-(C41-Pad2)") (pintype "passive") (tstamp 485c7009-da7e-4077-9120-cb4903847e94))
(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_0402_1005Metric" (layer "F.Cu")
(tstamp 1a0d16dd-6aaa-4b2c-86a5-0bf3e1487bb3)
(at 114.3 109.855 180)
(descr "Capacitor SMD 0402 (1005 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), generated with kicad-footprint-generator")
(tags "capacitor")
(property "DK" "587-5514-1-ND")
(property "LCSC Part" "C113791")
(property "PARTNO" "EMK105BJ105MV-F")
(property "Sheetfile" "bm1366.kicad_sch")
(property "Sheetname" "BM1366")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/4cf9c075-d009-4c35-9949-adda70ae20c7/89673621-ca5d-4cc3-b409-90e2c6b30e74")
(attr smd)
(fp_text reference "C3" (at -1.9 -0.1 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f027485f-5352-4663-815f-05ecb8d0ebe2)
)
(fp_text value "1uF" (at 0 1.16 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 19785d33-96a5-4cfe-b99f-f5a84eb5e9b6)
)
(fp_text user "${REFERENCE}" (at 0 0 180) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 1d5f74eb-1a49-4991-b4d7-cf2a886db82c)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 90fec712-04a1-415d-bfe6-140bcbb8e3eb))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ccf4c446-ec8b-45ad-8ef2-61b5d4c61d7f))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5b4bce15-f1bb-4a57-955e-80c188a994a2))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 79f527e9-851a-4ed8-ad5f-281d10362a69))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 81bf3cef-676d-4173-8a75-9ba08aee3753))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 84628156-34f0-42c4-93e4-8605534ed705))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4c8d2ed7-50d6-462c-bf0a-6df5817348c8))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e93d2eef-a230-442c-bbe6-b2899d64cf43))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8c53e11a-54a9-4414-b233-d1e7b2a547cb))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c17a8a6c-0d27-4b38-870c-5c125bf26784))
(pad "1" smd roundrect (at -0.48 0 180) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "/BM1366/VDD3_0") (pintype "passive") (tstamp ce0ae52d-e218-4e7c-991e-814e359c9cc1))
(pad "2" smd roundrect (at 0.48 0 180) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "/BM1366/VDD2_0") (pintype "passive") (tstamp a35c5cdd-e974-47b8-bdc6-b2db2e226e78))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_3.5mm" (layer "F.Cu")
(tstamp 1ca0ce9d-5caa-444a-96f4-d7d598452c9c)
(at 84.764 97.0952)
(descr "Mounting Hole 3.5mm, no annular")
(tags "mounting hole 3.5mm no annular")
(property "Sheetfile" "NerdAxe_ultra.kicad_sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(property "ki_description" "Mounting Hole without connection")
(property "ki_keywords" "mounting hole")
(path "/ab5bb22a-5663-430c-9f9f-42a0a4a983d1")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "H6" (at 0 -4.5) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 079a791d-4be3-4f64-b2b4-2689af465fb0)
)
(fp_text value "MountingHole" (at 0 4.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 910db6c2-c19c-44ac-a6ac-6e8072eb1956)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0ccd0e62-06d2-49e8-bbb0-6ccf7c550ad7)
)
(fp_circle (center 0 0) (end 3.5 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp 33d1171e-f83c-4d6a-8352-0a81baa4ca03))
(fp_circle (center 0 0) (end 3.75 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 54a29ede-8792-42aa-a592-c4909d3dc381))
(pad "" np_thru_hole circle (at 0 0) (size 3 3) (drill 3) (layers "F&B.Cu" "*.Mask") (tstamp 0f42af37-45d6-4a55-bb59-732500a7cdbf))
)
(footprint "Capacitor_SMD:C_0805_2012Metric" (layer "F.Cu")
(tstamp 1e3df0a8-8096-476c-845a-e3f756ab9e8b)
(at 102.0276 80.1506 -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 "DK" "1276-6471-1-ND")
(property "LCSC Part" "C111768")
(property "PARTNO" "CL21B105KOFNNNG")
(property "Sheetfile" "power.kicad_sch")
(property "Sheetname" "Power")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/8ec0a9c6-2b78-44ef-a83d-9047d2828409/3b0e06de-8a14-4b40-a64e-e8160e784c9b")
(attr smd)
(fp_text reference "C38" (at 2.1454 -0.0076) (layer "F.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.125)))
(tstamp 953c952e-fb69-4a4a-be8f-efdc2f445079)
)
(fp_text value "1uF" (at 0 1.68 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ed514b39-9e8a-4242-841a-db451f079058)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp ee850d0c-3014-4cf6-b011-fd99b131bb95)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2a280827-6a02-4ad4-bbb9-eb267a0dc24e))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a383f939-ca11-4ba0-8498-47182be16ab4))
(fp_line (start -1.7 -0.98) (end 1.7 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp abf1ffad-bd00-46ae-8d81-a2f424540df6))
(fp_line (start -1.7 0.98) (end -1.7 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 43ee5faa-ca7e-4680-8b73-be256d68a4e1))
(fp_line (start 1.7 -0.98) (end 1.7 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9549d5ac-4677-4cf6-8cc1-e555c4dfec99))
(fp_line (start 1.7 0.98) (end -1.7 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2cba6633-633e-4c8b-aa28-c857b3052e2c))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 126cd778-323c-4a1e-a245-f29cae3feff7))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5d6b7c7a-da7a-4b9d-88ee-3c930700029e))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 27751d0a-a870-4417-9e5b-4e1fc6ff4061))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cac03764-d7a1-4e98-8319-3ba66b593939))
(pad "1" smd roundrect (at -0.95 0 270) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "/5V") (pintype "passive") (tstamp bc5c3ca1-25f8-421f-b072-51dbe17a5391))
(pad "2" smd roundrect (at 0.95 0 270) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 5c944090-f2e9-41bd-b5e8-b4c80ef6a2cf))
(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 "TestPoint:TestPoint_Pad_D1.5mm" (layer "F.Cu")
(tstamp 1f3aef14-63c6-40ed-abb3-918b072c31ee)
(at 113.5 94.6112)
(descr "SMD pad as test Point, diameter 1.5mm")
(tags "test point SMD pad")
(property "Sheetfile" "bm1366.kicad_sch")
(property "Sheetname" "BM1366")
(property "exclude_from_bom" "")
(property "ki_description" "test point")
(property "ki_keywords" "test point tp")
(path "/4cf9c075-d009-4c35-9949-adda70ae20c7/26ed3709-d6d7-4eab-b500-6fd5b0deda96")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "TP35" (at 3 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 94e9980d-6c2e-42f9-808d-b28d2de12a61)
)
(fp_text value "TestPoint" (at 0 1.75) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2200227a-8592-4a03-8b09-8df78121c12b)
)
(fp_text user "${REFERENCE}" (at 0 -1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 133ea4bd-b812-45ff-9de4-173efce6eb74)
)
(fp_circle (center 0 0) (end 0 0.95)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp 505ae027-b7ad-4f1f-a364-1544d57d371c))
(fp_circle (center 0 0) (end 1.25 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 6ea3e68a-60c1-4100-bd9e-450ac4fa229b))
(pad "1" smd circle (at 0 0) (size 1.5 1.5) (layers "F.Cu" "F.Mask")
(net 11 "/BM1366/VDD2_0") (pinfunction "1") (pintype "passive") (tstamp 13ceb8be-aa23-4163-b439-7724d39ba992))
)
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tstamp 23731ad9-ad07-4897-9396-19e720baca55)
(at 105.54 130.24 -90)
(descr "Capacitor SMD 0402 (1005 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), generated with kicad-footprint-generator")
(tags "capacitor")
(property "DK" "587-5514-1-ND")
(property "LCSC Part" "C113791")
(property "PARTNO" "EMK105BJ105MV-F")
(property "Sheetfile" "bm1366.kicad_sch")
(property "Sheetname" "BM1366")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/4cf9c075-d009-4c35-9949-adda70ae20c7/de3724da-7c81-486b-8c2f-8fab6e38deba")
(attr smd)
(fp_text reference "C25" (at 1.47 -1.21 -90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6a807411-8b0c-4410-8db6-5164dd6d6065)
)
(fp_text value "1uF" (at 0 1.16 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp acffc502-f285-4fdf-b054-b639d1f2e1b1)
)
(fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp b3f67492-9f38-4c12-9f37-9c696cacafb5)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bc4b1869-79c0-4256-9a68-7cd124b97b0e))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7d7c56ea-6b67-4430-b37b-9574493a15a0))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bbc22f21-4001-42ca-83c5-327ba78a1b8d))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 94dd5b9e-2338-4ed9-a0c5-cf1b763d0c23))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c52e0717-4cff-43f5-b16a-f95c60598f85))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 08655de1-a9a8-4ea4-9f9b-4486f6f1c975))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1baf09ee-15d0-47db-aff4-ee6cfa2b9356))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ec11ede1-7456-47ad-879a-d63a10993abd))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ab0f2104-3dc3-4335-ab01-6e90fedf7ba3))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cac5a2f2-e8ce-45c5-843a-d95bd537c9eb))
(pad "1" smd roundrect (at -0.48 0 270) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 19 "/BM1366/0V8") (pintype "passive") (tstamp 48c155ab-7828-48af-89d3-1012e62bc3e7))
(pad "2" smd roundrect (at 0.48 0 270) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 2bf2615c-7bd1-4683-9691-928763de150e))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "TestPoint:TestPoint_Pad_D1.5mm" (layer "F.Cu")
(tstamp 23a44108-4e83-4af9-b5bf-4225f850e37b)
(at 89.408 122.174)
(descr "SMD pad as test Point, diameter 1.5mm")
(tags "test point SMD pad")
(property "Sheetfile" "bm1366.kicad_sch")
(property "Sheetname" "BM1366")
(property "exclude_from_bom" "")
(property "ki_description" "test point")
(property "ki_keywords" "test point tp")
(path "/4cf9c075-d009-4c35-9949-adda70ae20c7/bd787298-fa5b-46a0-b04c-5046d2eda11a")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "TP46" (at 3.27 0.1) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ff3b66f4-7df4-4951-95af-99b61ffb33c3)
)
(fp_text value "TestPoint" (at 0 1.75) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b9db72a9-f700-4550-8391-462c7b606a5c)
)
(fp_text user "${REFERENCE}" (at 0 -1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 880bd46c-031b-44d4-8690-c37157e3edf7)
)
(fp_circle (center 0 0) (end 0 0.95)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp d17a26fe-324c-4358-95ba-5a45f6d68f2a))
(fp_circle (center 0 0) (end 1.25 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp dc169bcf-229c-4d6e-baeb-2b8f37e0a6a4))
(pad "1" smd circle (at 0 0) (size 1.5 1.5) (layers "F.Cu" "F.Mask")
(net 26 "/BM1366/INV_CL0") (pinfunction "1") (pintype "passive") (tstamp 26ec035c-fca5-4d30-a745-3db7448dac27))
)
(footprint "Capacitor_SMD:C_0805_2012Metric" (layer "F.Cu")
(tstamp 23d97113-7a9c-4410-a9b6-ea033bb17736)
(at 90.3 80.4112)
(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 "DK" "1292-1580-1-ND")
(property "LCSC Part" "C77469")
(property "PARTNO" "0805B471K500CT")
(property "Sheetfile" "power.kicad_sch")
(property "Sheetname" "Power")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")