-
Notifications
You must be signed in to change notification settings - Fork 0
/
DCPowerFire.kicad_pcb
7778 lines (7721 loc) · 401 KB
/
DCPowerFire.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 20210623) (generator pcbnew)
(general
(thickness 1.01064)
)
(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)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (color "Green") (thickness 0.02032))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 0.1) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "In1.Cu" (type "copper") (thickness 0.0175))
(layer "dielectric 2" (type "prepreg") (thickness 0.665) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "In2.Cu" (type "copper") (thickness 0.0175))
(layer "dielectric 3" (type "core") (thickness 0.1) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (color "Green") (thickness 0.02032))
(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)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(disableapertmacros false)
(usegerberextensions true)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile false)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "gerber/")
)
)
(net 0 "")
(net 1 "GND")
(net 2 "VBUS")
(net 3 "Bat_Voltage")
(net 4 "+BATT")
(net 5 "+3V3")
(net 6 "Net-(D1-Pad3)")
(net 7 "Net-(D1-Pad2)")
(net 8 "Net-(D1-Pad1)")
(net 9 "Net-(D6-Pad3)")
(net 10 "Net-(D6-Pad2)")
(net 11 "Net-(D6-Pad1)")
(net 12 "USB_DP")
(net 13 "USB_ID")
(net 14 "USB_DN")
(net 15 "NTC1")
(net 16 "unconnected-(J6-Pad6)")
(net 17 "SCK")
(net 18 "NRST")
(net 19 "SWD")
(net 20 "Net-(J8-Pad1)")
(net 21 "Net-(J9-Pad1)")
(net 22 "Coil_1")
(net 23 "Coil_2")
(net 24 "R_1")
(net 25 "G_1")
(net 26 "B_1")
(net 27 "R_2")
(net 28 "G_2")
(net 29 "B_2")
(net 30 "Net-(R12-Pad1)")
(net 31 "Net-(R15-Pad2)")
(net 32 "Net-(R15-Pad1)")
(net 33 "Charge")
(net 34 "unconnected-(U2-Pad4)")
(net 35 "unconnected-(U3-Pad46)")
(net 36 "unconnected-(U3-Pad40)")
(net 37 "unconnected-(U3-Pad38)")
(net 38 "unconnected-(U3-Pad31)")
(net 39 "unconnected-(U3-Pad26)")
(net 40 "unconnected-(U3-Pad25)")
(net 41 "unconnected-(U3-Pad13)")
(net 42 "unconnected-(U3-Pad11)")
(net 43 "unconnected-(U3-Pad6)")
(net 44 "unconnected-(U3-Pad5)")
(net 45 "unconnected-(U3-Pad4)")
(net 46 "Net-(Q1-Pad2)")
(net 47 "Net-(Q2-Pad2)")
(net 48 "NTC2")
(net 49 "unconnected-(U3-Pad39)")
(net 50 "WP")
(net 51 "RST")
(net 52 "unconnected-(U3-Pad3)")
(net 53 "unconnected-(U3-Pad1)")
(net 54 "MOSI")
(net 55 "MISO")
(net 56 "CLK")
(net 57 "CS")
(net 58 "/+BATT_RAW")
(net 59 "+BATT_FUSED")
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-0000606baeb9)
(at 85.5472 53.3654 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 "Sheetfile" "DCPowerFire.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000606cdceb")
(attr smd)
(fp_text reference "C1" (at 0 -1.16 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a32dbc69-998b-4a6c-9955-6a260608a78f)
)
(fp_text value "1u" (at 0 1.16 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7e1a1c47-5b70-4b76-95cd-7317b89468f1)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 22ef6121-2462-4b98-b05d-c2c79006b024)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36) (layer "F.SilkS") (width 0.12) (tstamp 7e3bcf46-522b-46fc-9023-7580b30fcdb2))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36) (layer "F.SilkS") (width 0.12) (tstamp 826bba4d-bfe6-4676-8f76-b91a4804bba7))
(fp_line (start 0.91 -0.46) (end 0.91 0.46) (layer "F.CrtYd") (width 0.05) (tstamp 450de37d-795b-41b4-beed-5dfa262217b5))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46) (layer "F.CrtYd") (width 0.05) (tstamp 4d92a23e-296f-4b89-8db8-8c23cca5c39b))
(fp_line (start 0.91 0.46) (end -0.91 0.46) (layer "F.CrtYd") (width 0.05) (tstamp 55e4fa53-2c47-4df7-8f50-2d97e3c83eb1))
(fp_line (start -0.91 0.46) (end -0.91 -0.46) (layer "F.CrtYd") (width 0.05) (tstamp e1b3dcc6-4a19-4335-9143-bf0ce9e20523))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 68ff08d2-3444-4b3f-bb15-671b25193367))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 9c7ed412-5462-4d80-923a-6e4c6cd4bfa0))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp b64ee692-863f-41b8-90bb-8be454d68ef1))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp f2e6ac8f-43e2-4381-94d4-40b1240ee74b))
(pad "1" smd roundrect locked (at -0.48 0 90) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "VBUS") (pintype "passive") (tstamp 5304418b-b12a-4730-9339-c55c0350e94e))
(pad "2" smd roundrect locked (at 0.48 0 90) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 8c4ced12-ce4c-4706-a418-7263071dce5c))
(model "${KISYS3DMOD}/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_0402_1005Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-0000606baeca)
(at 91.2368 55.372 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 "Sheetfile" "DCPowerFire.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060701102")
(attr smd)
(fp_text reference "C2" (at 0 -1.16) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 49e64e25-0b4f-47c4-b68a-0b3f6691f3e4)
)
(fp_text value "100n" (at 0 1.16) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 527c928a-bdce-47d9-8747-4afb78d96b8d)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp f6b19156-d849-442c-b631-53987bd5c97a)
)
(fp_line (start -0.107836 0.36) (end 0.107836 0.36) (layer "F.SilkS") (width 0.12) (tstamp 0af5b363-8e50-403e-bd9d-654acda7ba48))
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36) (layer "F.SilkS") (width 0.12) (tstamp 4ef22767-c6b6-4831-9167-f1174303f3f7))
(fp_line (start -0.91 0.46) (end -0.91 -0.46) (layer "F.CrtYd") (width 0.05) (tstamp 126f3304-201f-4a0d-87ff-ae2e67c2cb22))
(fp_line (start 0.91 0.46) (end -0.91 0.46) (layer "F.CrtYd") (width 0.05) (tstamp 8073c8c0-053f-4ed0-8670-25c15c88e609))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46) (layer "F.CrtYd") (width 0.05) (tstamp 86eb7609-6f20-4e27-b88e-f5ed258875a0))
(fp_line (start 0.91 -0.46) (end 0.91 0.46) (layer "F.CrtYd") (width 0.05) (tstamp 92928f40-376e-4d72-9b25-791ffee55dd0))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 3f1ee232-d727-4b53-9ed8-92adc9361a40))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 98c16e2e-895f-407a-9084-871e3555bcd9))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp a9a64470-b79f-40ca-9a24-b645746b1285))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp aa5d4405-bcf5-4371-801a-939e3f25af1c))
(pad "1" smd roundrect locked (at -0.48 0 180) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "Bat_Voltage") (pintype "passive") (tstamp 002efb7d-9eeb-4d81-9f30-9e91c549627d))
(pad "2" smd roundrect locked (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 8f973260-8b86-46d8-9d77-85fd57449ed1))
(model "${KISYS3DMOD}/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_0402_1005Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-0000606baeec)
(at 90.3986 57.6072 -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 "Sheetfile" "DCPowerFire.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060711f29")
(attr smd)
(fp_text reference "C4" (at 0 -1.16 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2026a114-5c39-4bda-9f5b-c64bb1747082)
)
(fp_text value "1u" (at 0 1.16 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp eed39f55-f2f6-426f-9e16-391093f604f5)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp d946620d-e72e-4f2a-8fbd-735c019b7ae5)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36) (layer "F.SilkS") (width 0.12) (tstamp 6572fbc6-041c-4696-9eb1-6ebffc5c8279))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36) (layer "F.SilkS") (width 0.12) (tstamp b3cdb57b-ffc1-4f54-9d01-d121e1e45cdf))
(fp_line (start 0.91 -0.46) (end 0.91 0.46) (layer "F.CrtYd") (width 0.05) (tstamp 00cae6ab-aa5f-4d8e-a232-1ae85fa04670))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46) (layer "F.CrtYd") (width 0.05) (tstamp 46fa0424-8034-464a-a634-e2989eb05262))
(fp_line (start -0.91 0.46) (end -0.91 -0.46) (layer "F.CrtYd") (width 0.05) (tstamp acb91a2b-d3ac-4f11-bd1a-cafcc71f1875))
(fp_line (start 0.91 0.46) (end -0.91 0.46) (layer "F.CrtYd") (width 0.05) (tstamp b8b2e86c-6817-4a53-9c97-2ef9fef817e5))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 45250516-d2d0-4577-9714-38c0c2ef6320))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 943d673d-50aa-4b38-ac64-662f9ff1f082))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp bf1a55fc-6f2f-4a17-9cbe-ac0305b59ccf))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp d03c538c-62e6-4d72-a21e-f95bf2e7c397))
(pad "1" smd roundrect locked (at -0.48 0 270) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "+3V3") (pintype "passive") (tstamp bca12d68-6447-4f21-a8ea-541a604295ce))
(pad "2" smd roundrect locked (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 2af667a9-406e-444c-837e-447e9129815d))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LeoDJ-kicad:TestPoint_Pad_1.0x1.0mm_NoSilk" (layer "F.Cu")
(tedit 60E62A7A) (tstamp 00000000-0000-0000-0000-0000606baf56)
(at 106.7054 52.8066 180)
(descr "SMD rectangular pad as test Point, square 1.0mm side length")
(tags "test point SMD pad rectangle square")
(property "Sheetfile" "DCPowerFire.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000607972ae")
(attr exclude_from_pos_files)
(fp_text reference "J1" (at 0 -1.448 180) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 05ac4b71-03cc-47d5-8038-2e1259ebf8d8)
)
(fp_text value "Coil+/LidSwitch" (at 0.7366 3.048 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b77f61f7-b031-43e7-a25b-1052bf89b47c)
)
(fp_text user "${REFERENCE}" (at 0 -1.45 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2176ae1b-773e-407a-8596-a70d2e6c36f7)
)
(fp_line (start -0.6 -0.6) (end -0.6 0.6) (layer "F.CrtYd") (width 0.05) (tstamp 24ab2d76-a714-4f8b-8f27-c71ac4631d27))
(fp_line (start 0.6 0.6) (end -0.6 0.6) (layer "F.CrtYd") (width 0.05) (tstamp 2af850e7-0883-4fa5-9024-825b98882dcb))
(fp_line (start 0.6 0.6) (end 0.6 -0.6) (layer "F.CrtYd") (width 0.05) (tstamp 5d652f69-5842-4452-b2c9-a926385ccd8e))
(fp_line (start -0.6 -0.6) (end 0.6 -0.6) (layer "F.CrtYd") (width 0.05) (tstamp c889082b-39fd-4f19-9bc3-0c8873e8a124))
(pad "1" smd rect locked (at 0 0 180) (size 1 1) (layers "F.Cu" "F.Mask")
(net 59 "+BATT_FUSED") (pinfunction "Pin_1") (pintype "passive") (tstamp 3f39b56f-4b70-4c1c-83a9-e88b4ac533ae))
)
(footprint "LeoDJ-kicad:TestPoint_Pad_1.0x1.0mm_NoSilk" (layer "F.Cu")
(tedit 60E62A7A) (tstamp 00000000-0000-0000-0000-0000606baf64)
(at 110.6932 52.7558 180)
(descr "SMD rectangular pad as test Point, square 1.0mm side length")
(tags "test point SMD pad rectangle square")
(property "Sheetfile" "DCPowerFire.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060797fd0")
(attr exclude_from_pos_files)
(fp_text reference "J2" (at 0 -1.448) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b187fa7e-6e51-422f-8bf4-dc451fe4e06a)
)
(fp_text value "BAT-" (at -1.9558 1.651) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2cf44607-681b-4991-b73d-0476bc973b84)
)
(fp_text user "${REFERENCE}" (at 0 -1.45) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b9733598-bc34-4122-96e2-1ab25ce6d0f8)
)
(fp_line (start 0.6 0.6) (end 0.6 -0.6) (layer "F.CrtYd") (width 0.05) (tstamp 1a47cf6a-ee3e-43c0-a8b5-1c6ef9c4dcaf))
(fp_line (start -0.6 -0.6) (end 0.6 -0.6) (layer "F.CrtYd") (width 0.05) (tstamp 1be14107-09b9-4a83-9911-a98c57b32c96))
(fp_line (start -0.6 -0.6) (end -0.6 0.6) (layer "F.CrtYd") (width 0.05) (tstamp 585112ea-0641-43ba-b512-2ff13bc26927))
(fp_line (start 0.6 0.6) (end -0.6 0.6) (layer "F.CrtYd") (width 0.05) (tstamp 729b101c-456b-457f-99a9-1f0e9b919bf7))
(pad "1" smd rect locked (at 0 0 180) (size 1 1) (layers "F.Cu" "F.Mask")
(net 1 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp cf0807c5-28dc-41fc-b2fe-f478570618de))
)
(footprint "LeoDJ-kicad:TestPoint_Pad_1.0x1.0mm_NoSilk" (layer "F.Cu")
(tedit 60E62A7A) (tstamp 00000000-0000-0000-0000-0000606bafd3)
(at 102.9208 52.7812 180)
(descr "SMD rectangular pad as test Point, square 1.0mm side length")
(tags "test point SMD pad rectangle square")
(property "Sheetfile" "DCPowerFire.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000606fb26d")
(attr exclude_from_pos_files)
(fp_text reference "J7" (at 0 -1.448 180) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 243b6d6b-844c-4b82-b0a7-b69b8a3b1cd3)
)
(fp_text value "BAT+" (at 0.6604 1.6002 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c3efa793-0a78-4759-93b2-0ea694e8178d)
)
(fp_text user "${REFERENCE}" (at 0 -1.45 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b7590ff2-b501-44a3-8b7c-72dcb37f0aa7)
)
(fp_line (start -0.6 -0.6) (end -0.6 0.6) (layer "F.CrtYd") (width 0.05) (tstamp 2f3cc2c0-bf72-43af-a040-34f9540b7bab))
(fp_line (start -0.6 -0.6) (end 0.6 -0.6) (layer "F.CrtYd") (width 0.05) (tstamp 3ac51784-d4a8-4f17-8a2d-5e5a3b796835))
(fp_line (start 0.6 0.6) (end 0.6 -0.6) (layer "F.CrtYd") (width 0.05) (tstamp 8ae708c9-faa1-43e5-8d91-176d34397a59))
(fp_line (start 0.6 0.6) (end -0.6 0.6) (layer "F.CrtYd") (width 0.05) (tstamp d8582012-135a-4ff2-886b-1a74cc1f6b66))
(pad "1" smd rect locked (at 0 0 180) (size 1 1) (layers "F.Cu" "F.Mask")
(net 58 "/+BATT_RAW") (pinfunction "Pin_1") (pintype "passive") (tstamp 9fb1fc1d-cc5b-492d-9a37-1e2277e6f72c))
)
(footprint "LeoDJ-kicad:TestPoint_Pad_1.0x1.0mm_NoSilk" (layer "F.Cu")
(tedit 60E62A7A) (tstamp 00000000-0000-0000-0000-0000606bafe1)
(at 129.7178 52.9082)
(descr "SMD rectangular pad as test Point, square 1.0mm side length")
(tags "test point SMD pad rectangle square")
(property "Sheetfile" "DCPowerFire.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000606fb8de")
(attr exclude_from_pos_files)
(fp_text reference "J8" (at 0 -1.448) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fce5c9a4-a4db-49c6-bcf1-fa81978b4bd0)
)
(fp_text value "Coil_1" (at 0 1.55) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8d713176-2b89-4e81-aa14-31017bcc25f4)
)
(fp_text user "${REFERENCE}" (at 0 -1.45) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 35677e8a-f504-4a8c-b93b-9d8ffe4ae259)
)
(fp_line (start -0.6 -0.6) (end -0.6 0.6) (layer "F.CrtYd") (width 0.05) (tstamp 019586dd-3a91-4353-b41d-a7ba391a0671))
(fp_line (start -0.6 -0.6) (end 0.6 -0.6) (layer "F.CrtYd") (width 0.05) (tstamp 451bd349-f68c-4726-b797-baeea7434f8c))
(fp_line (start 0.6 0.6) (end -0.6 0.6) (layer "F.CrtYd") (width 0.05) (tstamp 5a1a2f39-cc66-48d8-ba03-5a9efa9ba6d8))
(fp_line (start 0.6 0.6) (end 0.6 -0.6) (layer "F.CrtYd") (width 0.05) (tstamp 96255fd2-37f4-4c41-88d6-13f74f6d71aa))
(pad "1" smd rect locked (at 0 0) (size 1 1) (layers "F.Cu" "F.Mask")
(net 20 "Net-(J8-Pad1)") (pinfunction "Pin_1") (pintype "passive") (tstamp 32d9090a-1d7e-4a64-9cd2-6ec35e1e1f7e))
)
(footprint "LeoDJ-kicad:TestPoint_Pad_1.0x1.0mm_NoSilk" (layer "F.Cu")
(tedit 60E62A7A) (tstamp 00000000-0000-0000-0000-0000606bafef)
(at 116.2304 53.0098)
(descr "SMD rectangular pad as test Point, square 1.0mm side length")
(tags "test point SMD pad rectangle square")
(property "Sheetfile" "DCPowerFire.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00006073edef")
(attr exclude_from_pos_files)
(fp_text reference "J9" (at 0 -1.448) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b8dc73bc-fd69-4ec6-9e36-d0539b3be746)
)
(fp_text value "Coil_2" (at 0 1.55) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 32f222f3-c7cf-4704-9e71-be2a58c0f66f)
)
(fp_text user "${REFERENCE}" (at 0 -1.45) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b47b9d26-889a-40be-8e40-e8bae1b9d576)
)
(fp_line (start 0.6 0.6) (end 0.6 -0.6) (layer "F.CrtYd") (width 0.05) (tstamp 134c28d8-d2d5-4de7-82db-ba27a275a207))
(fp_line (start 0.6 0.6) (end -0.6 0.6) (layer "F.CrtYd") (width 0.05) (tstamp 142ad16a-7794-4506-b141-9bfbef44d1b3))
(fp_line (start -0.6 -0.6) (end -0.6 0.6) (layer "F.CrtYd") (width 0.05) (tstamp 4b522149-559c-4643-912b-4afc6bf22f17))
(fp_line (start -0.6 -0.6) (end 0.6 -0.6) (layer "F.CrtYd") (width 0.05) (tstamp 51fdf5f2-e14e-4480-8170-03a892dc8b23))
(pad "1" smd rect locked (at 0 0) (size 1 1) (layers "F.Cu" "F.Mask")
(net 21 "Net-(J9-Pad1)") (pinfunction "Pin_1") (pintype "passive") (tstamp 20dc4b76-c2a7-4c4d-b0c3-5aeb2bf9478a))
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-0000606bb13e)
(at 114.3508 52.832 180)
(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 "Sheetfile" "DCPowerFire.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00006077f874")
(attr smd)
(fp_text reference "R15" (at 0 -1.17) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 19a51bb8-de22-4bcb-a235-ac5cfd40f4c3)
)
(fp_text value "100" (at 0 1.17) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1691048d-e0f7-4d48-973e-e4beef9c6dba)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp a86f6862-40c1-49a4-891f-3839067e04e7)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38) (layer "F.SilkS") (width 0.12) (tstamp 59efb179-727c-46dc-af18-c5cd2a1feb65))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38) (layer "F.SilkS") (width 0.12) (tstamp 72939f05-861a-4d67-a8b5-40ec93b163cd))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 13d8450b-2f6f-4757-a5d6-85de84501884))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 304a3e42-7248-4ca1-9279-5b2b819744f3))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 3c0e4692-8777-48a2-9cab-336f7045790e))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 5c61f358-97de-48dc-b5d2-9fc51aeb9589))
(fp_line (start 0.525 0.27) (end -0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp 6d7c56d2-9016-4ace-a797-6ec64352b83b))
(fp_line (start 0.525 -0.27) (end 0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp 9b087033-c5bb-4f80-9057-dfc0e5bfd359))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp d9cf5ccc-6401-42a0-a565-a0d312dd7a50))
(fp_line (start -0.525 0.27) (end -0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp dd18f1c2-fa41-471f-80b6-70012e657d5d))
(pad "1" smd roundrect locked (at -0.51 0 180) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 32 "Net-(R15-Pad1)") (pintype "passive") (tstamp 99b71fa2-d8d2-46cb-98f0-0db13ee4fbac))
(pad "2" smd roundrect locked (at 0.51 0 180) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 31 "Net-(R15-Pad2)") (pintype "passive") (tstamp b87837d8-77e5-4ad4-aa87-5d722cc2fbef))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_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")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-0000606bb160)
(at 118.7704 56.3626 -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 "Sheetfile" "DCPowerFire.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000606fda38")
(attr smd)
(fp_text reference "R17" (at 0 -1.17 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 99fe16b4-3b96-4f43-999a-f35487961dd8)
)
(fp_text value "4k7" (at 0 1.17 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ee0b462f-9e2d-4e47-8da5-24e83cddf40d)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp fca3f5a9-5b9c-4e86-83ae-b6462b6721ae)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38) (layer "F.SilkS") (width 0.12) (tstamp 682b7b8a-617d-41a4-b04f-265cc66f2cde))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38) (layer "F.SilkS") (width 0.12) (tstamp f091a369-e222-4c75-9522-595514bd9986))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 23cacb54-e1d0-4527-8ddf-f6cca363ac6e))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 5008f25c-7a8f-4699-80d8-3a963bca0ea0))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 621fee39-cd0d-43e7-854c-24e9e9f45cb1))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp ddf2fc1b-f089-4e67-8ef8-d39e31e966f5))
(fp_line (start 0.525 0.27) (end -0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp 99f3511d-9c7b-46cb-865c-49a7190e7089))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp d1ff034f-3194-4653-8695-f8f5bae3552b))
(fp_line (start -0.525 0.27) (end -0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp e45fd3db-2801-459a-8b3b-d0b4f56e1600))
(fp_line (start 0.525 -0.27) (end 0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp ef539316-d7c2-4f04-97fa-d3d5b8e1d10b))
(pad "1" smd roundrect locked (at -0.51 0 270) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 22 "Coil_1") (pintype "passive") (tstamp 362b03b2-9932-433d-bdc5-c0880ab3afa5))
(pad "2" smd roundrect locked (at 0.51 0 270) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp ff81cc93-1ab8-4440-b23a-c8df7656343c))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_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")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-0000606bb171)
(at 105.41 56.388 -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 "Sheetfile" "DCPowerFire.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00006073edf5")
(attr smd)
(fp_text reference "R18" (at 0 -1.17 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bb642966-4709-4518-b47d-0655c5f96a2a)
)
(fp_text value "4k7" (at 0 1.17 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c8ce8734-fc9c-4f35-b63f-1986ff54fb6c)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp 9bc72846-c8ac-42e0-b721-56f11fc53c53)
)
(fp_line (start -0.153641 0.38) (end 0.153641 0.38) (layer "F.SilkS") (width 0.12) (tstamp 0bb1a207-9631-4d23-b0bf-8c4e9fc3a951))
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38) (layer "F.SilkS") (width 0.12) (tstamp 4f4817cf-bb25-4df5-8c2e-ec0f6e86d350))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 35abf812-6c3d-4a00-bc7b-4ea26ea8db4c))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 5aa4b6cc-235f-48e3-864b-d3397f5717ab))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 7a1cc50a-44e8-42dd-a3a9-57408b0f2391))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp c5d298e1-524a-4b5c-aa58-4c6d02f00965))
(fp_line (start 0.525 -0.27) (end 0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp 4731187b-af89-4af0-95f3-86c32565b977))
(fp_line (start -0.525 0.27) (end -0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp 69c309cf-c0de-4478-8a0c-b2cd9b996b63))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp a13d338a-458c-45bb-906e-4aa7594bc8d6))
(fp_line (start 0.525 0.27) (end -0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp dd84ac90-6076-48e0-8cd5-94291f9f6194))
(pad "1" smd roundrect locked (at -0.51 0 270) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 23 "Coil_2") (pintype "passive") (tstamp 6dcb745d-a6b1-4d9c-93ad-b8f26f6f9b89))
(pad "2" smd roundrect locked (at 0.51 0 270) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 2fad5c31-a0a3-4b9b-b5cf-0103f5b1904c))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:TSOT-23-5" (layer "F.Cu")
(tedit 5A02FF57) (tstamp 00000000-0000-0000-0000-0000606bb1cd)
(at 88.2142 53.8734 180)
(descr "5-pin TSOT23 package, http://cds.linear.com/docs/en/packaging/SOT_5_05-08-1635.pdf")
(tags "TSOT-23-5")
(property "Sheetfile" "DCPowerFire.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000606b563d")
(attr smd)
(fp_text reference "U1" (at 0 -2.45) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b96ce892-ac2f-4be7-bf93-50f1613ac36f)
)
(fp_text value "LTC4054ES5-4.2" (at 0 2.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 437c8a25-fbc2-4640-a59d-c15b712dc245)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp 9bf27db6-a0ca-4842-8291-8b9441cdd953)
)
(fp_line (start 0.88 -1.51) (end -1.55 -1.51) (layer "F.SilkS") (width 0.12) (tstamp 6a813a88-ea78-4c9b-a910-756c7912d249))
(fp_line (start -0.88 1.56) (end 0.88 1.56) (layer "F.SilkS") (width 0.12) (tstamp fe397da8-45a8-45c6-923f-0863e4e7175f))
(fp_line (start 2.17 1.7) (end -2.17 1.7) (layer "F.CrtYd") (width 0.05) (tstamp 2fc3d03d-df4b-4685-938f-2bde6bcf2ee9))
(fp_line (start -2.17 -1.7) (end 2.17 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp 3ceb6418-8727-4ae9-8d5c-cda7e31ca9ca))
(fp_line (start 2.17 1.7) (end 2.17 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp a1e38026-d74b-46cf-8436-1a6f0ffd40fa))
(fp_line (start -2.17 -1.7) (end -2.17 1.7) (layer "F.CrtYd") (width 0.05) (tstamp d14bd46c-d2c9-40e8-aa9e-75db44d4c908))
(fp_line (start 0.88 -1.45) (end -0.43 -1.45) (layer "F.Fab") (width 0.1) (tstamp 0ac34bc2-ea32-4232-b680-a9c94bf1d8cf))
(fp_line (start 0.88 1.45) (end -0.88 1.45) (layer "F.Fab") (width 0.1) (tstamp 69216ee5-8368-47db-ae1d-39041afe761b))
(fp_line (start -0.88 -1) (end -0.43 -1.45) (layer "F.Fab") (width 0.1) (tstamp 75d8779c-94bc-4b00-b97b-33bc55b75a70))
(fp_line (start 0.88 -1.45) (end 0.88 1.45) (layer "F.Fab") (width 0.1) (tstamp 7fcf1852-ab9e-4cec-be32-a8fd733aaf37))
(fp_line (start -0.88 -1) (end -0.88 1.45) (layer "F.Fab") (width 0.1) (tstamp 9bed618c-7694-4e9d-921e-7a73cb9b174d))
(pad "1" smd rect locked (at -1.31 -0.95 180) (size 1.22 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 33 "Charge") (pinfunction "~CHRG") (pintype "open_collector") (tstamp 20d98590-1c80-4136-8111-dd6d845bbe12))
(pad "2" smd rect locked (at -1.31 0 180) (size 1.22 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 1e392901-dbe6-4deb-b9af-1d5f2a7e521a))
(pad "3" smd rect locked (at -1.31 0.95 180) (size 1.22 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 59 "+BATT_FUSED") (pinfunction "BAT") (pintype "power_out") (tstamp 12331d70-1a00-4f8d-882d-53dd848f53c3))
(pad "4" smd rect locked (at 1.31 0.95 180) (size 1.22 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "VBUS") (pinfunction "VCC") (pintype "power_in") (tstamp 1e056685-7b1a-434a-90f6-9b69d37096e0))
(pad "5" smd rect locked (at 1.31 -0.95 180) (size 1.22 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 30 "Net-(R12-Pad1)") (pinfunction "PROG") (pintype "bidirectional") (tstamp 51e635db-05e8-42d3-9d1a-5a619ec3eb73))
(model "${KISYS3DMOD}/Package_TO_SOT_SMD.3dshapes/TSOT-23-5.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-23-5" (layer "F.Cu")
(tedit 5A02FF57) (tstamp 00000000-0000-0000-0000-0000606bb1e2)
(at 88.011 58.0898)
(descr "5-pin SOT23 package")
(tags "SOT-23-5")
(property "Sheetfile" "DCPowerFire.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060704edd")
(attr smd)
(fp_text reference "U2" (at 0 -2.9) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d11cadf7-2a5c-4d93-a8b1-a7bf4968cc0a)
)
(fp_text value "STLQ020C33R" (at 0 2.9) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3783f46f-69a1-4423-9661-8af3bc9619d8)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp 621d253e-eaf2-4b9f-a180-6fa478c11a44)
)
(fp_line (start -0.9 1.61) (end 0.9 1.61) (layer "F.SilkS") (width 0.12) (tstamp fc075abc-8aed-4420-9210-3984c7d458b5))
(fp_line (start 0.9 -1.61) (end -1.55 -1.61) (layer "F.SilkS") (width 0.12) (tstamp ff9bd164-2015-4aad-86e6-a01e5f393a6f))
(fp_line (start 1.9 1.8) (end -1.9 1.8) (layer "F.CrtYd") (width 0.05) (tstamp 16c893da-9b94-4092-85ce-12a9baa9d6a8))
(fp_line (start -1.9 1.8) (end -1.9 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 5d14a4bb-c5af-44ed-b10a-db3f93b75d58))
(fp_line (start 1.9 -1.8) (end 1.9 1.8) (layer "F.CrtYd") (width 0.05) (tstamp a1dd379f-6484-44c3-a34d-bb8d10df125c))
(fp_line (start -1.9 -1.8) (end 1.9 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp e53cbe7b-cb81-440f-99ae-10f6d5ab274b))
(fp_line (start 0.9 -1.55) (end 0.9 1.55) (layer "F.Fab") (width 0.1) (tstamp 434c075d-c692-4065-b180-a44dc2f62f23))
(fp_line (start -0.9 -0.9) (end -0.9 1.55) (layer "F.Fab") (width 0.1) (tstamp 61298284-5cea-48e7-95ff-a7b74d28a9b3))
(fp_line (start 0.9 1.55) (end -0.9 1.55) (layer "F.Fab") (width 0.1) (tstamp 78adf46d-5ef0-42fd-9d6b-f8473fb47d75))
(fp_line (start -0.9 -0.9) (end -0.25 -1.55) (layer "F.Fab") (width 0.1) (tstamp ac35ff54-832e-4d05-b040-2564ba61e660))
(fp_line (start 0.9 -1.55) (end -0.25 -1.55) (layer "F.Fab") (width 0.1) (tstamp c27ccb06-36c7-4d1e-a945-f50b042b6aef))
(pad "1" smd rect locked (at -1.1 -0.95) (size 1.06 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "+BATT") (pinfunction "VIN") (pintype "power_in") (tstamp ee4f3e93-9b66-4f8a-94f1-59bfc8a14059))
(pad "2" smd rect locked (at -1.1 0) (size 1.06 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 015c724a-7e69-4cc3-8815-5fb6f1a06cd7))
(pad "3" smd rect locked (at -1.1 0.95) (size 1.06 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "+BATT") (pinfunction "EN") (pintype "input") (tstamp 428986c7-cef3-4051-8c86-be5145b7876e))
(pad "4" smd rect locked (at 1.1 0.95) (size 1.06 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 34 "unconnected-(U2-Pad4)") (pinfunction "NC") (pintype "no_connect") (tstamp 69e0796b-a013-4c07-ae98-bc0b3419adfc))
(pad "5" smd rect locked (at 1.1 -0.95) (size 1.06 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "+3V3") (pinfunction "VOUT") (pintype "power_out") (tstamp 83271ed9-3e97-467c-9dab-0e0011e577ca))
(model "${KISYS3DMOD}/Package_TO_SOT_SMD.3dshapes/SOT-23-5.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_USB:USB_Micro-B_GCT_USB3076-30-A" (layer "F.Cu")
(tedit 5A170D03) (tstamp 00000000-0000-0000-0000-0000606bbf7a)
(at 82.677 56.007 -90)
(descr "GCT Micro USB https://gct.co/files/drawings/usb3076.pdf")
(tags "Micro-USB SMD Typ-B GCT")
(property "Sheetfile" "DCPowerFire.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000606b46ea")
(attr smd)
(fp_text reference "J3" (at 0 -3.3 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8acc5251-1a4d-487f-9af3-5ab93cb31a87)
)
(fp_text value "USB3076-30-A" (at 0 5.2 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e756011c-33eb-4c11-8153-6cc4b355d35f)
)
(fp_text user "PCB Edge" (at 0 2.65 90) (layer "Dwgs.User")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp a0940813-7aef-4872-a415-b415d8fed14c)
)
(fp_text user "${REFERENCE}" (at 0 0.85 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 706edc75-bce7-4a5f-90a4-77d69503d47d)
)
(fp_line (start -3.81 -1.71) (end -3.15 -1.71) (layer "F.SilkS") (width 0.12) (tstamp 15b6fc70-0e2c-48e1-9673-8187219db516))
(fp_line (start 3.81 0.02) (end 3.81 -1.71) (layer "F.SilkS") (width 0.12) (tstamp 426a5289-a673-4486-950f-909ee23f15bf))
(fp_line (start -3.81 2.59) (end -3.81 2.38) (layer "F.SilkS") (width 0.12) (tstamp 4e3ff2ee-aafc-4361-9137-1741c3d4c91e))
(fp_line (start 3.81 -1.71) (end 3.16 -1.71) (layer "F.SilkS") (width 0.12) (tstamp 6b2e37b4-2497-486f-94a2-8124fe24a123))
(fp_line (start -3.81 0.02) (end -3.81 -1.71) (layer "F.SilkS") (width 0.12) (tstamp 6e164c39-e6a6-402d-bc0f-be9db41becef))
(fp_line (start -1.76 -2.41) (end -1.31 -2.41) (layer "F.SilkS") (width 0.12) (tstamp 894f40a7-78df-4c5c-b817-1b5f7d243af2))
(fp_line (start 3.81 2.59) (end 3.81 2.38) (layer "F.SilkS") (width 0.12) (tstamp 9b7eaaad-14bc-4409-ae7f-e92401223c28))
(fp_line (start -1.76 -2.41) (end -1.76 -2.02) (layer "F.SilkS") (width 0.12) (tstamp c0d2624c-56fa-4283-bbfa-47a66c280900))
(fp_line (start -4.6 -2.65) (end 4.6 -2.65) (layer "F.CrtYd") (width 0.05) (tstamp 74832b0a-7abf-4dbe-b9b5-e0d97f8b1a89))
(fp_line (start -4.6 4.45) (end 4.6 4.45) (layer "F.CrtYd") (width 0.05) (tstamp 87851d52-d889-407f-beee-142abe5b0f62))
(fp_line (start -4.6 4.45) (end -4.6 -2.65) (layer "F.CrtYd") (width 0.05) (tstamp de618fb5-9953-4a40-bbd5-1d24e32b4d8f))
(fp_line (start 4.6 -2.65) (end 4.6 4.45) (layer "F.CrtYd") (width 0.05) (tstamp f8d34d6c-2453-41f3-b305-d0029a6076c1))
(fp_line (start -1.1 -2.16) (end -1.1 -1.95) (layer "F.Fab") (width 0.1) (tstamp 1724821c-624b-4a81-bb6c-abc711c746c1))
(fp_line (start -1.5 -2.16) (end -1.5 -1.95) (layer "F.Fab") (width 0.1) (tstamp 387bd26d-42f6-407f-ae1a-cf4454798110))
(fp_line (start 3.7 3.95) (end 3.7 -1.6) (layer "F.Fab") (width 0.1) (tstamp 3b1238eb-6606-42b9-8ca7-a9963834811c))
(fp_line (start -1.3 -1.75) (end -1.5 -1.95) (layer "F.Fab") (width 0.1) (tstamp 40a97012-44f7-4611-b0a8-40b7049a90b0))
(fp_line (start -3 2.65) (end 3 2.65) (layer "F.Fab") (width 0.1) (tstamp 490446e5-b574-48ae-99b7-3e955e43a0f4))
(fp_line (start -3.7 3.95) (end -3.7 -1.6) (layer "F.Fab") (width 0.1) (tstamp 4a75e880-bfa5-4e2d-8641-ba17570ab504))
(fp_line (start -1.5 -2.16) (end -1.1 -2.16) (layer "F.Fab") (width 0.1) (tstamp 671f84b1-9429-44a0-beb6-89cce7a4ec74))
(fp_line (start -3.7 -1.6) (end 3.7 -1.6) (layer "F.Fab") (width 0.1) (tstamp a2926f82-2c07-4635-b322-922ed097382c))
(fp_line (start -3.7 3.95) (end 3.7 3.95) (layer "F.Fab") (width 0.1) (tstamp f0f006d4-0ece-4665-b8bb-309b07672a6c))
(fp_line (start -1.1 -1.95) (end -1.3 -1.75) (layer "F.Fab") (width 0.1) (tstamp f984ad03-dfa1-46f1-bf51-621cca1a850b))
(pad "1" smd rect locked (at -1.3 -1.45 270) (size 0.4 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "VBUS") (pinfunction "VBUS") (pintype "power_out") (tstamp 98fa3b46-8e49-4e07-8ba4-0a72bfcad7dc))
(pad "2" smd rect locked (at -0.65 -1.45 270) (size 0.4 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 14 "USB_DN") (pinfunction "D-") (pintype "bidirectional") (tstamp f9e9bb0b-6d48-4d52-98ff-b65eb246bb05))
(pad "3" smd rect locked (at 0 -1.45 270) (size 0.4 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 12 "USB_DP") (pinfunction "D+") (pintype "bidirectional") (tstamp 424d75d2-87b2-4e62-88ec-7805f35a61f3))
(pad "4" smd rect locked (at 0.65 -1.45 270) (size 0.4 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 13 "USB_ID") (pinfunction "ID") (pintype "passive") (tstamp a1ba19c2-8bae-4e80-ba63-ec44961469e5))
(pad "5" smd rect locked (at 1.3 -1.45 270) (size 0.4 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_out") (tstamp 055ce113-619e-41cb-a041-e3c91f947003))
(pad "6" thru_hole oval locked (at -3.575 1.2 90) (size 1.05 1.9) (drill oval 0.45 1.25) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Shield") (pintype "passive") (tstamp 244b0ac7-cac6-4404-99cd-7307c6115fc5))
(pad "6" thru_hole oval locked (at 3.575 1.2 270) (size 1.05 1.9) (drill oval 0.45 1.25) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Shield") (pintype "passive") (tstamp 37af33f2-3059-494a-ba09-cba83af04254))
(pad "6" smd rect locked (at 1.125 1.2 270) (size 1.75 1.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "Shield") (pintype "passive") (tstamp 503da6be-4d24-4a2b-8df4-66911d639c37))
(pad "6" smd rect locked (at 2.32 -1.03 270) (size 1.15 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "Shield") (pintype "passive") (tstamp 90b75040-2844-49cf-960c-b5252c7f4f76))
(pad "6" smd rect locked (at -1.125 1.2 270) (size 1.75 1.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "Shield") (pintype "passive") (tstamp c1e13e4f-b65d-426a-9f15-d49d43a0b66f))
(pad "6" smd rect locked (at -2.32 -1.03 270) (size 1.15 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "Shield") (pintype "passive") (tstamp c33b6961-e526-4efd-8057-c604d324201e))
(model "${KISYS3DMOD}/Connector_USB.3dshapes/USB_Micro-B_GCT_USB3076-30-A.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:TO-252-2" (layer "F.Cu")
(tedit 60E63C00) (tstamp 00000000-0000-0000-0000-0000606c4cf0)
(at 109.636 56.5414)
(descr "TO-252 / DPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO252/PG-TO252-3-1/")
(tags "DPAK TO-252 DPAK-3 TO-252-3 SOT-428")
(property "Sheetfile" "DCPowerFire.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000608c0b8b")
(attr smd)
(fp_text reference "Q2" (at 0 -4.5) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp caf1d313-cb66-4ea9-a896-bfe46d252641)
)
(fp_text value "IRLR6225" (at 0 4.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 267b4f34-4f69-46fc-be0e-8693de8d41c5)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 323867a8-20c8-4616-9958-da4fe91550c2)
)
(fp_line (start -5.55 -3.5) (end -5.55 3.5) (layer "F.CrtYd") (width 0.05) (tstamp 18480f08-694b-4f4f-803a-e9037b9377f0))
(fp_line (start 5.55 3.5) (end 5.55 -3.5) (layer "F.CrtYd") (width 0.05) (tstamp 30bb70b0-c2aa-4a8e-ba08-2b643c181e72))
(fp_line (start 5.55 -3.5) (end -5.55 -3.5) (layer "F.CrtYd") (width 0.05) (tstamp 7a97dc9f-0b32-48e7-b3b1-c4589e6a6564))
(fp_line (start -5.55 3.5) (end 5.55 3.5) (layer "F.CrtYd") (width 0.05) (tstamp a888fd93-e9e7-42c3-b4eb-0519b1a611ad))
(fp_line (start -4.97 -2.655) (end -4.97 -1.905) (layer "F.Fab") (width 0.1) (tstamp 00ebb969-3a9e-40dc-8e36-94c51f07a6e3))
(fp_line (start 3.95 -3.25) (end 3.95 3.25) (layer "F.Fab") (width 0.1) (tstamp 13cc5586-5715-4134-bf9b-74cea547cbe1))
(fp_line (start 4.95 2.7) (end 3.95 2.7) (layer "F.Fab") (width 0.1) (tstamp 1695de5b-8ed8-4e36-a7e0-bf900ba8334f))
(fp_line (start 3.95 3.25) (end -2.27 3.25) (layer "F.Fab") (width 0.1) (tstamp 2b03f689-f5e9-48aa-bc79-6a0e24bfef1d))
(fp_line (start -1.865 -2.655) (end -4.97 -2.655) (layer "F.Fab") (width 0.1) (tstamp 35d361a4-87c3-4efc-8be5-660952b345f9))
(fp_line (start -2.27 3.25) (end -2.27 -2.25) (layer "F.Fab") (width 0.1) (tstamp 828718ab-6899-49a0-a47f-8ffc63d9a82d))
(fp_line (start 4.95 -2.7) (end 4.95 2.7) (layer "F.Fab") (width 0.1) (tstamp 9eac2b69-ddbd-48cf-bae3-e114162d2dae))
(fp_line (start -4.97 -1.905) (end -2.27 -1.905) (layer "F.Fab") (width 0.1) (tstamp a6efb5ed-c2bf-44e4-b86d-5ae46d81c1c4))
(fp_line (start 3.95 -2.7) (end 4.95 -2.7) (layer "F.Fab") (width 0.1) (tstamp b65e9a25-ed39-4125-a968-a8cda3766d10))
(fp_line (start -2.27 -2.25) (end -1.27 -3.25) (layer "F.Fab") (width 0.1) (tstamp c37aa9d3-f509-4d8c-a168-491da2eb2b75))
(fp_line (start -4.97 1.905) (end -4.97 2.655) (layer "F.Fab") (width 0.1) (tstamp cbdf3bae-391a-4223-a710-6ec99f51990c))
(fp_line (start -1.27 -3.25) (end 3.95 -3.25) (layer "F.Fab") (width 0.1) (tstamp d6e74f1a-717c-4e8f-9864-3078298060b0))
(fp_line (start -2.27 1.905) (end -4.97 1.905) (layer "F.Fab") (width 0.1) (tstamp ead8d508-24e6-47e9-a8ac-c195252b9708))
(fp_line (start -4.97 2.655) (end -2.27 2.655) (layer "F.Fab") (width 0.1) (tstamp eafefa81-6ae5-46e4-837b-71876a11f7b5))
(pad "" smd rect locked (at 0.425 -1.525) (size 3.05 2.75) (layers "F.Paste") (tstamp 180d68ed-e34a-454c-99c8-dc7bc37e3291))
(pad "" smd rect locked (at 3.775 -1.525) (size 3.05 2.75) (layers "F.Paste") (tstamp 4c2c70f8-967d-405d-a964-cb4480d680f6))
(pad "" smd rect locked (at 0.425 1.525) (size 3.05 2.75) (layers "F.Paste") (tstamp 501db8af-928f-4222-95df-3e12ed39143e))
(pad "" smd rect locked (at 3.775 1.525) (size 3.05 2.75) (layers "F.Paste") (tstamp b63a8178-0259-4108-b52d-f357ca32814e))
(pad "1" smd rect locked (at -4.2 -2.28) (size 2.2 1.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 23 "Coil_2") (pinfunction "G") (pintype "input") (tstamp 1ce8474d-b7a2-443a-acab-2ee69455cbe5))
(pad "2" smd rect locked (at 2.1 0) (size 6.4 5.8) (layers "F.Cu" "F.Mask")
(net 47 "Net-(Q2-Pad2)") (pinfunction "D") (pintype "passive") (tstamp cb1e0eaa-945e-447e-a162-51c22eb295e0))
(pad "3" smd rect locked (at -4.2 2.28) (size 2.2 1.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "S") (pintype "passive") (tstamp 1b65621d-bc8e-4e39-80cc-935e1f8ec780))
(model "${KISYS3DMOD}/Package_TO_SOT_SMD.3dshapes/TO-252-2.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")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-0000606c75f9)
(at 86.3854 55.9408 180)
(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 "Sheetfile" "DCPowerFire.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000606ccd45")
(attr smd)
(fp_text reference "R12" (at 0 -1.17) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4b0c4f06-1d6c-4d1e-ab4e-6fdfde670240)
)
(fp_text value "2k2" (at 0 1.17) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0c3ddede-022d-4da3-9224-9b82010418b4)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp 24e08260-1f11-4a30-8c7d-5695f586aff3)
)
(fp_line (start -0.153641 0.38) (end 0.153641 0.38) (layer "F.SilkS") (width 0.12) (tstamp 4bdfd592-0ae5-4b54-813d-464aa5fc8cfc))
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38) (layer "F.SilkS") (width 0.12) (tstamp 795b2558-2b6b-49e5-89ef-18b3bf1de29e))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 6d79fb99-5dce-432b-b4f0-a456e0bf627b))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp d565ee1c-5d5e-476b-a210-d01981905938))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp e2102ca5-fc79-403b-887f-d83c77186ab3))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp ea95db4e-e107-4bc0-8dea-76d539fa3b24))
(fp_line (start -0.525 0.27) (end -0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp 5995e07d-40ee-482d-a9f6-bedf325f3a5a))
(fp_line (start 0.525 -0.27) (end 0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp a06effac-55e8-49f0-bf07-c6234b0a8926))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp a4c45bb3-be4b-42d7-9376-e349d4b97119))
(fp_line (start 0.525 0.27) (end -0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp e6b0e413-4b41-4607-a212-ae211a026ce7))
(pad "1" smd roundrect locked (at -0.51 0 180) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 30 "Net-(R12-Pad1)") (pintype "passive") (tstamp 16b02639-8693-4abf-8b46-3a927b47791b))
(pad "2" smd roundrect locked (at 0.51 0 180) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 2269a747-f22d-417d-ba4e-af9673fe33db))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.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")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-0000606c788a)
(at 88.8746 55.9308)
(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 "Sheetfile" "DCPowerFire.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060712e1a")
(attr smd)
(fp_text reference "C3" (at 0 -1.16) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2ac74df4-b94c-48cd-a74d-e271adce7c44)
)
(fp_text value "1u" (at 0 1.16) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2400cda0-0e05-4c09-aade-2227b8976c32)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 934d84c4-cd70-4b4e-a985-4028a161b88d)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36) (layer "F.SilkS") (width 0.12) (tstamp 5eb372b4-067b-402f-bf8d-e7549cd2b245))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36) (layer "F.SilkS") (width 0.12) (tstamp 6a913e38-95de-4cf4-a39d-495afde5e4f0))
(fp_line (start 0.91 -0.46) (end 0.91 0.46) (layer "F.CrtYd") (width 0.05) (tstamp 25023c75-4c15-47d0-a47f-97cb713def8d))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46) (layer "F.CrtYd") (width 0.05) (tstamp 65b5449f-dbfa-4519-8a34-04136a2adaf7))
(fp_line (start 0.91 0.46) (end -0.91 0.46) (layer "F.CrtYd") (width 0.05) (tstamp 9bbde6ea-1c61-4a1e-9efc-e2af918dd1ab))
(fp_line (start -0.91 0.46) (end -0.91 -0.46) (layer "F.CrtYd") (width 0.05) (tstamp e29bc7aa-53c3-408b-b82f-f7e0ab305f30))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 51211348-f884-4414-aa51-0774f0ccd8f3))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 7a24a32e-d87f-44cd-bc38-2d1cef0cfdf5))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 907d0112-e721-447e-8201-82ba2deffbd3))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp b181c2db-84c8-47e6-9a7a-cad2095a9681))
(pad "1" smd roundrect locked (at -0.48 0) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "+BATT") (pintype "passive") (tstamp bfe159be-ec3d-41af-bd1a-1402815da9fe))
(pad "2" smd roundrect locked (at 0.48 0) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp d7517ec5-1457-4711-af56-43f1c67ef84d))
(model "${KISYS3DMOD}/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")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-0000606cab20)
(at 92.72 54.3052 -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 "Sheetfile" "DCPowerFire.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000606f851a")
(attr smd)
(fp_text reference "R14" (at 0 -1.17 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 512febeb-b40c-4a3f-a430-f85dda530418)
)
(fp_text value "1M" (at 0 1.17 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 661dfb35-4cc4-4bc7-95ad-1377a967bc70)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp ca0ac4db-d03a-4176-b47c-0b33d8ff1d06)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38) (layer "F.SilkS") (width 0.12) (tstamp 2594f5fe-2f89-49fe-913a-c6a5d6874a1e))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38) (layer "F.SilkS") (width 0.12) (tstamp 7ef0648a-9ce7-49b9-b7c0-883f198b627a))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 13931ed6-ef1a-4d03-9428-f6d3ce0683fc))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 3a392385-6363-4694-b00b-92d065515012))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp edef9892-ba4c-4e3c-b077-5b30d4074633))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp fa372054-89e5-4139-96ea-88883bdfc5bc))
(fp_line (start -0.525 0.27) (end -0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp 05dce187-7f35-4019-b095-eb42a2fd8a92))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp 86c08d87-00af-4f93-9dc6-de18cd648144))
(fp_line (start 0.525 0.27) (end -0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp 908422e6-5438-4066-905d-a12ce2ce0a57))
(fp_line (start 0.525 -0.27) (end 0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp bb624de7-7d68-4496-80e8-231cd09773d0))
(pad "1" smd roundrect locked (at -0.51 0 270) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "Bat_Voltage") (pintype "passive") (tstamp b230bd96-59c0-4b37-80bd-1dd07afc9117))
(pad "2" smd roundrect locked (at 0.51 0 270) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp d205ed25-9173-4e41-a139-a286711e89c4))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.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")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-0000606cb996)
(at 101.5746 59.5122)
(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 "Sheetfile" "DCPowerFire.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000609618af")
(attr smd)
(fp_text reference "C6" (at 0 -1.16) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c1e7b0fd-e2f6-43ce-9a4e-0a71a2cddb6b)
)
(fp_text value "100n" (at 0 1.16) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 20583487-20f2-4bb8-97ea-9bf6daea5dfd)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 86ec987c-9fe2-43d3-ad73-7f42f0c73818)
)
(fp_line (start -0.107836 0.36) (end 0.107836 0.36) (layer "F.SilkS") (width 0.12) (tstamp 6c2ce329-95aa-4d78-b808-46e14732895c))
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36) (layer "F.SilkS") (width 0.12) (tstamp d8b51933-9ab0-44c1-bbc9-78fa3c320629))
(fp_line (start 0.91 0.46) (end -0.91 0.46) (layer "F.CrtYd") (width 0.05) (tstamp 0c407370-2b73-4233-b174-2baabfee1361))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46) (layer "F.CrtYd") (width 0.05) (tstamp 5225920f-b2de-4e34-81bb-5cf5b81ae1af))
(fp_line (start -0.91 0.46) (end -0.91 -0.46) (layer "F.CrtYd") (width 0.05) (tstamp 76a540db-4b24-4be4-af38-c9a02b1279cc))
(fp_line (start 0.91 -0.46) (end 0.91 0.46) (layer "F.CrtYd") (width 0.05) (tstamp bd3d67d4-e68f-48f9-a6ac-26ca20ec6b2d))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 164c6e35-0ccc-4c92-9091-b7ab32de4d9e))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 3362f07c-faf7-4652-8685-6edcd027100c))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 83d43e78-32d8-4c92-81fb-34d2e2b54176))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp e5aed8c0-303d-4abd-b5fc-22e312789cf8))
(pad "1" smd roundrect locked (at -0.48 0) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "+3V3") (pintype "passive") (tstamp 6a1ad70d-f919-4a2b-b736-658e1944507c))
(pad "2" smd roundrect locked (at 0.48 0) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 7cd44479-7aa4-4355-9a51-807099f00930))
(model "${KISYS3DMOD}/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_0402_1005Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-0000606cb9a7)
(at 92.71 57.757 -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 "Sheetfile" "DCPowerFire.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060961d74")
(attr smd)
(fp_text reference "C7" (at 0 -1.16 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cd9353ff-8b03-4e41-9137-f0a036353e96)
)
(fp_text value "100n" (at 0 1.16 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ee9ce19e-eda0-4b97-9a6a-fed9445d03c6)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 932e5751-3c1e-476d-bb35-baf17e670c52)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36) (layer "F.SilkS") (width 0.12) (tstamp a92b9517-6def-47a7-b703-ad996c6106f2))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36) (layer "F.SilkS") (width 0.12) (tstamp c797a32b-b9bc-4e0b-92f7-f9fc19278c29))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46) (layer "F.CrtYd") (width 0.05) (tstamp 00aa8163-941c-4b78-b800-2603b691ed3c))
(fp_line (start 0.91 -0.46) (end 0.91 0.46) (layer "F.CrtYd") (width 0.05) (tstamp 38f179a6-1895-4840-8437-ec64a36f93e8))
(fp_line (start 0.91 0.46) (end -0.91 0.46) (layer "F.CrtYd") (width 0.05) (tstamp 5eec5275-b798-425f-8136-e3a5e44d1d5e))
(fp_line (start -0.91 0.46) (end -0.91 -0.46) (layer "F.CrtYd") (width 0.05) (tstamp 9db55bad-81eb-41f6-ac7a-41199c6490de))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 0c0e3960-5f56-4509-8e8f-4bd28d51dcbd))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 43149db0-21a7-4cdd-b19d-e2d90ff54272))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp d7c6e555-deff-4f8b-b8d2-e1c1b6c355b4))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp da2527d6-5d33-4f03-a8d3-512d645a3c3d))
(pad "1" smd roundrect locked (at -0.48 0 270) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "+3V3") (pintype "passive") (tstamp b7a3b01b-692d-40d4-bc0b-97e3c112cf65))
(pad "2" smd roundrect locked (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 4aceeecd-52cb-4834-b016-33b002594265))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_DFN_QFN:QFN-48-1EP_7x7mm_P0.5mm_EP5.6x5.6mm" (layer "F.Cu")
(tedit 60F0CD28) (tstamp 00000000-0000-0000-0000-0000606cc4d5)
(at 97.2312 56.03)
(descr "QFN, 48 Pin (http://www.st.com/resource/en/datasheet/stm32f042k6.pdf#page=94), generated with kicad-footprint-generator ipc_noLead_generator.py")
(tags "QFN NoLead")
(property "Sheetfile" "DCPowerFire.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00006085e9a2")
(attr smd)
(fp_text reference "U3" (at 0 -4.82) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1e1db859-0dbf-426b-b989-92729257d3e9)
)
(fp_text value "STM32F072C8Ux" (at 0 4.82) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 31628cc7-a872-4f18-b5fe-bb0880f5e213)