-
Notifications
You must be signed in to change notification settings - Fork 2
/
tinyUPS.kicad_pcb
3130 lines (3078 loc) · 212 KB
/
tinyUPS.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20221018) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
)
(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.035))
(layer "dielectric 1" (type "core") (thickness 1.51) (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") (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 144.55 58)
(pcbplotparams
(layerselection 0x0001000_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 4)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "../../../../Machine Jobs/tinyUPS/")
)
)
(net 0 "")
(net 1 "GND")
(net 2 "+3.3V")
(net 3 "+12V")
(net 4 "Net-(D1-A)")
(net 5 "Net-(D3-K)")
(net 6 "Net-(D3-A)")
(net 7 "unconnected-(J1-Pin_1-Pad1)")
(net 8 "unconnected-(J1-Pin_2-Pad2)")
(net 9 "unconnected-(J1-Pin_3-Pad3)")
(net 10 "unconnected-(J1-Pin_4-Pad4)")
(net 11 "unconnected-(J1-Pin_5-Pad5)")
(net 12 "unconnected-(J1-Pin_6-Pad6)")
(net 13 "Net-(J1-Pin_7)")
(net 14 "unconnected-(J2-Pin_1-Pad1)")
(net 15 "unconnected-(J2-Pin_3-Pad3)")
(net 16 "unconnected-(J2-Pin_5-Pad5)")
(net 17 "unconnected-(J2-Pin_8-Pad8)")
(net 18 "Net-(J5-Pin_1)")
(net 19 "Net-(J6-Pin_1)")
(net 20 "Net-(J7-Pin_1)")
(net 21 "Net-(J8-Pin_1)")
(net 22 "Net-(J9-Pin_1)")
(net 23 "+5V")
(net 24 "unconnected-(J1-Pin_9-Pad9)")
(net 25 "Net-(J1-Pin_10)")
(net 26 "unconnected-(J1-Pin_11-Pad11)")
(net 27 "unconnected-(J1-Pin_12-Pad12)")
(net 28 "unconnected-(J1-Pin_13-Pad13)")
(net 29 "unconnected-(J1-Pin_14-Pad14)")
(net 30 "unconnected-(J1-Pin_15-Pad15)")
(net 31 "unconnected-(J1-Pin_16-Pad16)")
(net 32 "unconnected-(J2-Pin_6-Pad6)")
(net 33 "Net-(J2-Pin_4)")
(net 34 "Net-(J2-Pin_11)")
(net 35 "Net-(J2-Pin_15)")
(net 36 "unconnected-(J2-Pin_12-Pad12)")
(net 37 "Net-(J2-Pin_13)")
(net 38 "unconnected-(J2-Pin_14-Pad14)")
(net 39 "unconnected-(J2-Pin_16-Pad16)")
(net 40 "Net-(U1-SS)")
(net 41 "Net-(U1-COMP)")
(net 42 "Net-(C2-Pad2)")
(net 43 "Net-(U1-SW)")
(net 44 "Net-(U1-BS)")
(net 45 "Net-(U1-EN)")
(net 46 "Net-(U1-FB)")
(net 47 "unconnected-(J2-Pin_9-Pad9)")
(footprint "Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder" (layer "F.Cu")
(tstamp 084260f5-ff91-4566-b55a-6cdf97b4d065)
(at 147 102.7125 -90)
(descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(property "Sheetfile" "tinyUPS.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/92cfc55d-7bc3-4188-89fc-606223b984b6")
(attr smd)
(fp_text reference "C2" (at -0.0125 1.75 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bf3c6e89-16d3-48f5-b8d4-426f0337a809)
)
(fp_text value "4.7nF" (at 0 1.85 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 37fe9bb6-924c-40e6-b54a-53001d210be5)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 73a8d56e-39df-4b16-9f20-aec2a8d3932d)
)
(fp_line (start -0.711252 -0.91) (end 0.711252 -0.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e5049ed9-a254-4ac8-9b62-2966e0ade945))
(fp_line (start -0.711252 0.91) (end 0.711252 0.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6e425be1-75e5-4736-b817-4931339f6bf7))
(fp_line (start -2.48 -1.15) (end 2.48 -1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 08ff4936-029d-4b85-b589-ccad3845c117))
(fp_line (start -2.48 1.15) (end -2.48 -1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 481aee4c-6004-43d2-ada5-290a9e5d3d64))
(fp_line (start 2.48 -1.15) (end 2.48 1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a1f84811-5239-4d8f-9ac3-cef265aae4d5))
(fp_line (start 2.48 1.15) (end -2.48 1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2e0b03f0-bd6f-4c32-9f48-afbfa288f0e0))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 40fce847-88f6-4996-9d4a-01fba4731e79))
(fp_line (start -1.6 0.8) (end -1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 93dc2867-f3c5-488c-8107-1adf44ef7ecf))
(fp_line (start 1.6 -0.8) (end 1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8c39ae80-73e7-424f-9022-9bcf1f45bda8))
(fp_line (start 1.6 0.8) (end -1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bbc8cc90-3f53-4070-9125-d0c04542380c))
(pad "1" smd roundrect (at -1.5625 0 270) (size 1.325 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1886792453)
(net 41 "Net-(U1-COMP)") (pintype "passive") (tstamp 654b16b9-69d8-405c-ae6f-e33985a1f735))
(pad "2" smd roundrect (at 1.5625 0 270) (size 1.325 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1886792453)
(net 42 "Net-(C2-Pad2)") (pintype "passive") (tstamp 47d17e3d-483f-405a-9d85-851c5d09642b))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder" (layer "F.Cu")
(tstamp 1c08cb28-31b2-4e17-bb19-0c9bf5725c10)
(at 150.3 102.75 90)
(descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (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 handsolder")
(property "Sheetfile" "tinyUPS.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/f50f14f4-27e1-40c0-8217-589e404d6047")
(attr smd)
(fp_text reference "R14" (at -0.2 -1.82 90) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 726eeed8-2205-4f30-98e1-4d0406068262)
)
(fp_text value "1k5" (at 0 1.82 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b2c0fa7c-6646-4f57-8b11-59ae6bed138c)
)
(fp_text user "${REFERENCE}" (at -0.15 0 90) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp b6eec4e2-f7fd-4e3b-a13d-0b90aab8db2f)
)
(fp_line (start -0.727064 -0.91) (end 0.727064 -0.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 122f69b6-587e-42e9-a335-9de38a8249af))
(fp_line (start -0.727064 0.91) (end 0.727064 0.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5f3d9978-064f-4132-ad78-2887d084ae14))
(fp_line (start -2.45 -1.12) (end 2.45 -1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ae3e9f21-0aab-4df1-a743-333d7baa0f0b))
(fp_line (start -2.45 1.12) (end -2.45 -1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5f89a476-32ed-4062-814b-32cae28c81cf))
(fp_line (start 2.45 -1.12) (end 2.45 1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 30f52f41-b6cb-47f9-b3f5-5ada180a9215))
(fp_line (start 2.45 1.12) (end -2.45 1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 44dcd37a-06ad-46f9-9cc6-1fecfb55d7e9))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 166f4e28-818b-42d9-a7fa-f6d612884122))
(fp_line (start -1.6 0.8) (end -1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 96a5239d-f70a-4204-94d0-0da636372d6e))
(fp_line (start 1.6 -0.8) (end 1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ae02aa51-e0d8-4b45-8bae-c8c36bd0e979))
(fp_line (start 1.6 0.8) (end -1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 17a70cf7-479a-4a44-9567-ed3de92fbf48))
(pad "1" smd roundrect (at -1.55 0 90) (size 1.3 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1923076923)
(net 1 "GND") (pintype "passive") (tstamp 51ed0904-62e9-4ccf-aa4c-9869b5ceeda9))
(pad "2" smd roundrect (at 1.55 0 90) (size 1.3 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1923076923)
(net 42 "Net-(C2-Pad2)") (pintype "passive") (tstamp 4db580e8-906e-4eef-b4e1-3a5da832125a))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 277a78e5-4068-40e9-8337-add0d0495e6c)
(at 123.65 109.55)
(descr "Through hole straight pin header, 1x01, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x01 2.54mm single row")
(property "Sheetfile" "tinyUPS.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x01, script generated")
(property "ki_keywords" "connector")
(path "/b731388c-16b5-4118-a9a6-4b9c17c0aea9")
(attr through_hole)
(fp_text reference "J8" (at 0 -2.33) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 54bfc636-48a6-43ff-9c14-8ed42d3412e8)
)
(fp_text value "INF" (at 0 2.54) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b4dcfc2a-2989-46a0-b60f-3b8eed47646c)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9e00ac1b-c0b0-4ed6-84ee-98499abcb9bb)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e3919ccf-aa7b-4744-b499-70fc55f867c2))
(fp_line (start -1.33 0) (end -1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 97ce0ede-d882-4340-a38f-99675370953d))
(fp_line (start -1.33 1.27) (end -1.33 1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 65635b93-b023-4412-a989-4421bd5a58a1))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d03b25e5-2a68-46f6-bf86-fc642de0df47))
(fp_line (start -1.33 1.33) (end 1.33 1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 09bf68f5-dc40-4536-b57e-98b0d39131f4))
(fp_line (start 1.33 1.27) (end 1.33 1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 885a846e-cca8-41af-9bfc-041a3a9b75f4))
(fp_line (start -1.8 -1.8) (end -1.8 1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d853b91e-7814-44b5-9cc4-bccbcbd9674e))
(fp_line (start -1.8 1.8) (end 1.8 1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2b7aae1f-9038-47fd-a6ce-d470503f0419))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 01c896a8-be1a-48c5-9810-5adf95980a23))
(fp_line (start 1.8 1.8) (end 1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 19b0dc55-0bb4-4d99-93fc-6c238003cd5a))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5df3f8af-f7ff-4407-bda7-506d5e67fb55))
(fp_line (start -1.27 1.27) (end -1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8d9faee3-2ab0-4fd9-83cb-f21760d70fc9))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 525901b8-0d0f-4699-bc0b-9fa04e6ceb95))
(fp_line (start 1.27 -1.27) (end 1.27 1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ba283c1f-bb83-47d6-96e5-9f2e9fc037f3))
(fp_line (start 1.27 1.27) (end -1.27 1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9e275470-729e-43b2-b500-5d8988906a98))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 21 "Net-(J8-Pin_1)") (pinfunction "Pin_1") (pintype "passive") (tstamp 9250cf35-0e24-45de-a383-f44967bfb038))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x01_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 2b593fba-08b3-4fd3-8929-1faeb0543583)
(at 159.95 109.5)
(descr "Through hole straight pin header, 1x01, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x01 2.54mm single row")
(property "Sheetfile" "tinyUPS.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x01, script generated")
(property "ki_keywords" "connector")
(path "/6f765f94-286a-453a-a1d0-1908b9949951")
(attr through_hole)
(fp_text reference "J14" (at 0 -2.33) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 530e2011-4a71-434e-b099-8e5fe5390e84)
)
(fp_text value "GND" (at 0 2.33) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2fd084ec-6b03-4d72-b0a4-da446559027d)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0b51fc5d-ab00-4310-9b31-5dd871724488)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5d2b307e-cae1-467e-a494-69de5279234a))
(fp_line (start -1.33 0) (end -1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 95e578e9-acbf-4d00-8ac8-1d7f2c0e27b2))
(fp_line (start -1.33 1.27) (end -1.33 1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 154e3cbb-5376-4846-bcd9-19a8a81c6cba))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b6e44cc1-1393-45c8-9148-fc183cbb6e35))
(fp_line (start -1.33 1.33) (end 1.33 1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a125e453-d687-415a-8c00-59d95e5bf394))
(fp_line (start 1.33 1.27) (end 1.33 1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1146776f-4678-463a-a1ad-57b18b287579))
(fp_line (start -1.8 -1.8) (end -1.8 1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c177a40e-0177-49b0-afa9-6a6fe380dd33))
(fp_line (start -1.8 1.8) (end 1.8 1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3da3a633-c9e5-48d9-8317-e6103646c244))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 079e600b-7a1e-40c7-849a-af8fdd398577))
(fp_line (start 1.8 1.8) (end 1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e780cb9c-a0e2-41d4-adb8-f8bef7c886af))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 68eb39c1-155b-41bd-9a76-afb692694c0c))
(fp_line (start -1.27 1.27) (end -1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d07a9389-2927-4924-bc34-f8a3cfa1345f))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 85fe8a94-b41c-4b98-95b2-bf2d9c286f10))
(fp_line (start 1.27 -1.27) (end 1.27 1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9550e250-d96e-4206-8b2b-8a27b6b90d7d))
(fp_line (start 1.27 1.27) (end -1.27 1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp daa6e67f-90f9-404c-8c0d-e2643e149b90))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp ed436fbc-f2d3-4389-85ef-7b58471dca18))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x01_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" (layer "F.Cu")
(tstamp 3ef4d3bd-3f00-4e38-9e88-c129e2db5830)
(at 147.9 95.15 -90)
(descr "SOIC, 8 Pin (JEDEC MS-012AA, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/soic_narrow-r/r_8.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "SOIC SO")
(property "Sheetfile" "tinyUPS.kicad_sch")
(property "Sheetname" "")
(path "/4673c97d-565f-4cce-8299-3a5439f17a07")
(attr smd)
(fp_text reference "U1" (at 0 -3.4 -270) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9b2bc724-2993-4b13-8ab8-3c777081c388)
)
(fp_text value "MP1484 (SOIC8E)" (at 0 3.4 -270) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4f7abc2b-a093-460c-bad5-3784df345dbc)
)
(fp_text user "${REFERENCE}" (at 0 0 -270) (layer "F.Fab")
(effects (font (size 0.98 0.98) (thickness 0.15)))
(tstamp da611471-0854-4f51-9403-1ff0d0d4c831)
)
(fp_line (start 0 -2.56) (end -3.45 -2.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9f9aec79-d329-4471-99b7-3de7273a1219))
(fp_line (start 0 -2.56) (end 1.95 -2.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9352d0a7-e0db-469c-8f32-72853a7a4937))
(fp_line (start 0 2.56) (end -1.95 2.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 247753e3-0d35-4725-9e5f-1d24674e6da2))
(fp_line (start 0 2.56) (end 1.95 2.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 57acae6e-5f38-4db8-ad86-6b79e2d12bc9))
(fp_line (start -3.7 -2.7) (end -3.7 2.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4c995ba8-8cdc-4862-8fe3-3521729e10c4))
(fp_line (start -3.7 2.7) (end 3.7 2.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3461b08d-e267-4cef-b3bc-43d229b2330e))
(fp_line (start 3.7 -2.7) (end -3.7 -2.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8998fa71-6b05-405b-bf12-50c92663791a))
(fp_line (start 3.7 2.7) (end 3.7 -2.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f905624e-5027-4b1a-9e59-b6d2f1f0a311))
(fp_line (start -1.95 -1.475) (end -0.975 -2.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 820c9db8-e6df-4020-8fc8-c0c67b66d464))
(fp_line (start -1.95 2.45) (end -1.95 -1.475)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c0ee86fc-a482-4881-82c7-31b505db8614))
(fp_line (start -0.975 -2.45) (end 1.95 -2.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 751e827d-d054-43e4-a3ea-a28b79ba7d0c))
(fp_line (start 1.95 -2.45) (end 1.95 2.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 88e83b11-6bb2-4c62-a73b-563f84a3f1c4))
(fp_line (start 1.95 2.45) (end -1.95 2.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0e9be756-9579-476d-b8e6-23ef0cf1e570))
(pad "1" smd roundrect (at -2.475 -1.905 270) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 44 "Net-(U1-BS)") (pinfunction "BS") (pintype "output") (tstamp db4f8ee5-82a0-490b-b239-eff794ce5b68))
(pad "2" smd roundrect (at -2.475 -0.635 270) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+12V") (pinfunction "IN") (pintype "power_in") (tstamp ab4f65b9-8f82-40bf-8f47-01080abe68bb))
(pad "3" smd roundrect (at -2.475 0.635 270) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 43 "Net-(U1-SW)") (pinfunction "SW") (pintype "output") (tstamp ac3d75dd-4e94-4738-ade5-df6531032c86))
(pad "4" smd roundrect (at -2.475 1.905 270) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "GND") (pintype "input") (tstamp e113f01b-3c3c-4a52-8e5f-cd4aee8549f6))
(pad "5" smd roundrect (at 2.475 1.905 270) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 46 "Net-(U1-FB)") (pinfunction "FB") (pintype "input") (tstamp 97c0e5e5-3c5b-435d-bab2-98b66b0af283))
(pad "6" smd roundrect (at 2.475 0.635 270) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 41 "Net-(U1-COMP)") (pinfunction "COMP") (pintype "input") (tstamp 3ad817f8-cfa5-42dc-9c7f-11dc1546ecff))
(pad "7" smd roundrect (at 2.475 -0.635 270) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 45 "Net-(U1-EN)") (pinfunction "EN") (pintype "input") (tstamp 397fe2c1-b13f-4df0-8787-1eb989cb0e9b))
(pad "8" smd roundrect (at 2.475 -1.905 270) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 40 "Net-(U1-SS)") (pinfunction "SS") (pintype "passive") (tstamp 448331a2-65ee-48c0-8a22-f2ea77eec262))
(model "${KICAD6_3DMODEL_DIR}/Package_SO.3dshapes/SOIC-8_3.9x4.9mm_P1.27mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_2x08_P2.54mm_Vertical" locked (layer "F.Cu")
(tstamp 532d718f-ca2b-4dfe-baee-b7ad4614b057)
(at 123.952 65.024)
(descr "Through hole straight pin header, 2x08, 2.54mm pitch, double rows")
(tags "Through hole pin header THT 2x08 2.54mm double row")
(property "Sheetfile" "tinyUPS.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, double row, 02x08, counter clockwise pin numbering scheme (similar to DIP package numbering), script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/5540d4fb-183e-40e0-9acb-b85b6746b1f2")
(attr through_hole)
(fp_text reference "J1" (at 1.27 -2.809) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0a64815d-5f2e-4c68-9b21-4ca5f2d00a5d)
)
(fp_text value "P1-16" (at 1.27 20.11) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 31567693-bcf3-4cfb-9194-cea0b5d2ad54)
)
(fp_text user "${REFERENCE}" (at 1.27 8.89 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 89691876-a4fc-403b-b7b9-9991e54ae7e8)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7f8fbf4d-3d43-479d-8177-1456c8ef5b08))
(fp_line (start -1.33 0) (end -1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a1591d6f-1b63-44f9-963b-df06f684a8ff))
(fp_line (start -1.33 1.27) (end -1.33 19.11)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d9161f76-66c1-45d6-bbbb-6cc96ba324e7))
(fp_line (start -1.33 1.27) (end 1.27 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1ce05b55-304d-457c-8321-33b88d9a594b))
(fp_line (start -1.33 19.11) (end 3.87 19.11)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fbcabeca-57a6-43cc-88ba-986cb6fe366d))
(fp_line (start 1.27 -1.33) (end 3.87 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7265247b-7aeb-4c83-baa0-ab7e4b41e349))
(fp_line (start 1.27 1.27) (end 1.27 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 636cdecf-3ead-4638-8f6f-b0bf3a7aaacd))
(fp_line (start 3.87 -1.33) (end 3.87 19.11)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1cd6fa80-9f82-4b22-8cb3-8f9797433ae0))
(fp_line (start -1.8 -1.8) (end -1.8 19.55)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f43a2c08-75a8-4cf4-82d3-9a1b19e88d3d))
(fp_line (start -1.8 19.55) (end 4.35 19.55)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b8af66a1-0c06-4dd4-91d4-e605003dc284))
(fp_line (start 4.35 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 975a849a-3689-4cc6-b8f1-b696d40f311c))
(fp_line (start 4.35 19.55) (end 4.35 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b5b683b6-2522-4b1a-ab40-553015275d97))
(fp_line (start -1.27 0) (end 0 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d5bda561-7dda-4e01-ae67-fee80bdda2bc))
(fp_line (start -1.27 19.05) (end -1.27 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp aefde65b-20ac-44d9-bb6d-9b9bb015bf5f))
(fp_line (start 0 -1.27) (end 3.81 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ecad181b-3b1c-4523-8106-d57b7e230f26))
(fp_line (start 3.81 -1.27) (end 3.81 19.05)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9e1332db-7bfa-40bd-8adf-f868c3077607))
(fp_line (start 3.81 19.05) (end -1.27 19.05)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fc94d66f-d7b4-405c-8105-7565dba779d6))
(pad "1" thru_hole rect locked (at 0 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 7 "unconnected-(J1-Pin_1-Pad1)") (pinfunction "Pin_1") (pintype "passive+no_connect") (tstamp 2a1b24f7-b5d8-45e9-a3b7-fd5e7b383e77))
(pad "2" thru_hole oval locked (at 0 2.54) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 8 "unconnected-(J1-Pin_2-Pad2)") (pinfunction "Pin_2") (pintype "passive+no_connect") (tstamp e8c35115-674f-4174-a075-0682227e6c0c))
(pad "3" thru_hole oval locked (at 0 5.08) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 9 "unconnected-(J1-Pin_3-Pad3)") (pinfunction "Pin_3") (pintype "passive+no_connect") (tstamp 9c01a25a-3afc-46f6-94b3-9e6a9a6d78c9))
(pad "4" thru_hole oval locked (at 0 7.62) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 10 "unconnected-(J1-Pin_4-Pad4)") (pinfunction "Pin_4") (pintype "passive+no_connect") (tstamp 272cdc82-af56-415d-a8e5-aa49fccf3587))
(pad "5" thru_hole oval locked (at 0 10.16) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 11 "unconnected-(J1-Pin_5-Pad5)") (pinfunction "Pin_5") (pintype "passive+no_connect") (tstamp 729961af-4a84-4dcf-bbeb-adc77fc6caa3))
(pad "6" thru_hole oval locked (at 0 12.7) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 12 "unconnected-(J1-Pin_6-Pad6)") (pinfunction "Pin_6") (pintype "passive+no_connect") (tstamp f025c174-3e2d-4133-8d4c-1d3f5f8cc2d7))
(pad "7" thru_hole oval locked (at 0 15.24) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 13 "Net-(J1-Pin_7)") (pinfunction "Pin_7") (pintype "passive") (tstamp 393517e3-dbfb-4792-8a4d-7c07b9722ed9))
(pad "8" thru_hole oval locked (at 0 17.78) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 2 "+3.3V") (pinfunction "Pin_8") (pintype "passive") (tstamp 4f55a47f-3765-44a8-8490-a1a6828eb451))
(pad "9" thru_hole oval locked (at 2.54 17.78) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 24 "unconnected-(J1-Pin_9-Pad9)") (pinfunction "Pin_9") (pintype "passive+no_connect") (tstamp c8062154-9f72-480d-ad28-399b31baf8b4))
(pad "10" thru_hole oval locked (at 2.54 15.24) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 25 "Net-(J1-Pin_10)") (pinfunction "Pin_10") (pintype "passive") (tstamp 29f8aadf-1a12-4d4d-8497-ffb1b9f38336))
(pad "11" thru_hole oval locked (at 2.54 12.7) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 26 "unconnected-(J1-Pin_11-Pad11)") (pinfunction "Pin_11") (pintype "passive+no_connect") (tstamp 9da531c2-b132-4bb2-8004-4cd2ae54ca37))
(pad "12" thru_hole oval locked (at 2.54 10.16) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 27 "unconnected-(J1-Pin_12-Pad12)") (pinfunction "Pin_12") (pintype "passive+no_connect") (tstamp 1c151a03-447f-4024-87dc-7a521be6695b))
(pad "13" thru_hole oval locked (at 2.54 7.62) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 28 "unconnected-(J1-Pin_13-Pad13)") (pinfunction "Pin_13") (pintype "passive+no_connect") (tstamp 17017a32-0561-4add-84e3-659bb98dda7a))
(pad "14" thru_hole oval locked (at 2.54 5.08) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 29 "unconnected-(J1-Pin_14-Pad14)") (pinfunction "Pin_14") (pintype "passive+no_connect") (tstamp 310c8cfe-159e-45f0-8979-cdc461dff9d9))
(pad "15" thru_hole oval locked (at 2.54 2.54) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 30 "unconnected-(J1-Pin_15-Pad15)") (pinfunction "Pin_15") (pintype "passive+no_connect") (tstamp 4ff1f540-afd1-4c19-9ddd-f83aa24de82d))
(pad "16" thru_hole oval locked (at 2.54 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 31 "unconnected-(J1-Pin_16-Pad16)") (pinfunction "Pin_16") (pintype "passive+no_connect") (tstamp dacd29fa-80bf-412c-9cc6-fd98f64e1204))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_2x08_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder" (layer "F.Cu")
(tstamp 53d1dbdd-7f11-48f7-a433-989cfa8fe0b2)
(at 154.2 91.7125 90)
(descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(property "Sheetfile" "tinyUPS.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/bb926a7d-6f13-475d-a6f1-47df4b2ded62")
(attr smd)
(fp_text reference "C4" (at 0 -1.85 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8e1f1e61-9da5-4597-9969-6cb833268475)
)
(fp_text value "10nF" (at 0 1.85 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2f9f62fe-2514-40e9-9bed-497ebfe83c72)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp cb6cd4f8-cc3a-411e-abfb-7b5bef4e1d84)
)
(fp_line (start -0.711252 -0.91) (end 0.711252 -0.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4963fd52-4ecc-4dbd-8cf3-50677974a894))
(fp_line (start -0.711252 0.91) (end 0.711252 0.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b0e44290-0b86-4258-a579-beefc7993135))
(fp_line (start -2.48 -1.15) (end 2.48 -1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5d5160e4-72cb-42c0-a088-41ee9f7682dc))
(fp_line (start -2.48 1.15) (end -2.48 -1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b75a43c8-8914-462e-9661-875051a9c039))
(fp_line (start 2.48 -1.15) (end 2.48 1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 693e5cd9-7873-447f-826d-1c9111ddf161))
(fp_line (start 2.48 1.15) (end -2.48 1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 77b3bb6a-8783-4312-a50a-aa5516c2fbfa))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp dc944e4c-7dbd-4356-98bc-57e9014c7136))
(fp_line (start -1.6 0.8) (end -1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 990f8221-1a83-4bd9-9846-a41d1e5ebb23))
(fp_line (start 1.6 -0.8) (end 1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a201a15e-f036-4cd5-8651-0ac05ab5eb43))
(fp_line (start 1.6 0.8) (end -1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c67e9f2f-e14d-4f63-8be3-24132cbee68b))
(pad "1" smd roundrect (at -1.5625 0 90) (size 1.325 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1886792453)
(net 43 "Net-(U1-SW)") (pintype "passive") (tstamp 743153b1-9584-4344-a7a5-a5c03e409f35))
(pad "2" smd roundrect (at 1.5625 0 90) (size 1.325 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1886792453)
(net 44 "Net-(U1-BS)") (pintype "passive") (tstamp ed2044dc-a8ec-4a32-b9f2-5190c458ed44))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 57511c43-df12-4121-81f5-b8465d37baab)
(at 136.15 109.55)
(descr "Through hole straight pin header, 1x01, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x01 2.54mm single row")
(property "Sheetfile" "tinyUPS.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x01, script generated")
(property "ki_keywords" "connector")
(path "/6fe5adb9-1ead-4812-b805-43c4094a9a93")
(attr through_hole)
(fp_text reference "J6" (at 0 -2.33) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3bc7944e-f788-479d-b082-29b824e4856a)
)
(fp_text value "MOSI" (at 0 2.33) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 13382ac6-c263-46ac-a8de-925ff49528c5)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 081e0772-7a08-4258-9aa1-84c337142ff4)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 858bd206-8159-4a1a-aacb-8a0470c5f135))
(fp_line (start -1.33 0) (end -1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e933c23f-a9ad-4579-9b6c-1c9ea9bcf3fc))
(fp_line (start -1.33 1.27) (end -1.33 1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f5c5e33c-3fb1-4e7b-848c-fefc77a4dec5))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d7e3901d-f9a7-4719-a446-00acd9246786))
(fp_line (start -1.33 1.33) (end 1.33 1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f97128f6-de20-440c-a63c-9dc4235dc5e3))
(fp_line (start 1.33 1.27) (end 1.33 1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1fca9f8e-5359-4f28-877d-a12fb67bbb18))
(fp_line (start -1.8 -1.8) (end -1.8 1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8a113089-c104-4884-82c4-e6f0656cf9a5))
(fp_line (start -1.8 1.8) (end 1.8 1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 04863370-27d5-475d-b513-0cd98b1e37c3))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 433a2879-c1ec-407b-bf0b-c85532d1f101))
(fp_line (start 1.8 1.8) (end 1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp dd7de24d-bc39-432b-910a-eeddca790f39))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4ae8e003-fe8d-4ea6-9b27-a5d75f085c35))
(fp_line (start -1.27 1.27) (end -1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2869abe2-76a8-45b6-86cf-5e590cf22e28))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f6accb3a-47e9-4236-9575-de6347d1b404))
(fp_line (start 1.27 -1.27) (end 1.27 1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3cdf1146-5bef-4b22-af7a-a0b2e92774da))
(fp_line (start 1.27 1.27) (end -1.27 1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d01dd1cb-0dd9-4db3-b9ce-9207b8088945))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 19 "Net-(J6-Pin_1)") (pinfunction "Pin_1") (pintype "passive") (tstamp 25daca60-7a95-4b1e-ae31-dd577cd2ed6d))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x01_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 66ea1855-4457-4a48-b2b1-165d747d95a7)
(at 148.45 109.55)
(descr "Through hole straight pin header, 1x01, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x01 2.54mm single row")
(property "Sheetfile" "tinyUPS.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x01, script generated")
(property "ki_keywords" "connector")
(path "/03bf3bf2-a05b-456b-86c0-76c25b0449cd")
(attr through_hole)
(fp_text reference "J7" (at 0 -2.33) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ef9a17f2-7413-40bb-929d-92a79d85020f)
)
(fp_text value "CLK" (at 0 2.33) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2224e061-8838-45f4-bc56-b9a2f1c0a8b9)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4f0b3310-15fb-4b3e-b34e-385b16192564)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bf8c603a-da95-4823-b227-3c8c95e01a08))
(fp_line (start -1.33 0) (end -1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 512e537f-d735-437c-a2da-8ef55d122bce))
(fp_line (start -1.33 1.27) (end -1.33 1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b5c7b528-69ae-45d0-a580-ff044790d88d))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0898462c-5995-48f6-b278-d2349d95d62f))
(fp_line (start -1.33 1.33) (end 1.33 1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dc870306-eba4-4515-b332-b8ba1779a3bd))
(fp_line (start 1.33 1.27) (end 1.33 1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7ebe562a-8594-4dc1-ade4-f254d865b54d))
(fp_line (start -1.8 -1.8) (end -1.8 1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2122ae92-8f86-4ce6-a88b-620d771a4310))
(fp_line (start -1.8 1.8) (end 1.8 1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 81b28e74-1c41-4a93-9bf4-eadcb6f7594e))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 091b91ac-cf90-420b-9414-d84f915e950e))
(fp_line (start 1.8 1.8) (end 1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0c735ce4-9670-46e1-b3b3-67c392fb2b45))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7d8d6eb1-d306-4efe-b143-a88adb45544f))
(fp_line (start -1.27 1.27) (end -1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 102281d9-a1e7-4214-82cf-c64558b8c3ed))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0ecef743-95dc-409a-bb7a-74aa5482b3b6))
(fp_line (start 1.27 -1.27) (end 1.27 1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3aa0e3aa-a593-41b0-89f8-58a53632055e))
(fp_line (start 1.27 1.27) (end -1.27 1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8401cd66-9edf-4634-a8d5-640aabaa7b56))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 20 "Net-(J7-Pin_1)") (pinfunction "Pin_1") (pintype "passive") (tstamp e8491054-0ed0-460f-9142-7508cc07099d))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x01_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_2.2mm_M2_DIN965_Pad" locked (layer "F.Cu")
(tstamp 9e141ead-cf79-4c6c-9e8e-6a099753c887)
(at 144.55 115.85)
(descr "Mounting Hole 2.2mm, M2, DIN965")
(tags "mounting hole 2.2mm m2 din965")
(attr through_hole exclude_from_pos_files exclude_from_bom)
(fp_text reference "REF**" (at 0 -2.9) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3df95526-2e34-4a2b-ae13-1b356c6a8a53)
)
(fp_text value "MountingHole_2.2mm_M2_DIN965_Pad" (at 0 2.9) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 947bdc57-07a6-45b8-976a-920ebc17307d)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b3cb624d-13e3-4b87-9bd0-233b850660d5)
)
(fp_circle (center 0 0) (end 1.9 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp c6844029-b46f-4f3c-a358-441141383756))
(fp_circle (center 0 0) (end 2.15 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 1f492884-f0fd-4ae4-858d-38b1f90eac9d))
(pad "1" thru_hole circle locked (at 0 0) (size 3.8 3.8) (drill 2.2) (layers "*.Cu" "*.Mask") (tstamp 96799281-b8f4-4f00-b9e4-ddee56c4bf3a))
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" (layer "F.Cu")
(tstamp a865c63a-4315-4716-8fc7-880fede3b1da)
(at 164.85 70.15 -90)
(descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x02 2.54mm single row")
(property "Sheetfile" "tinyUPS.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x02, script generated")
(property "ki_keywords" "connector")
(path "/ac726ca6-0a5f-4d07-9ce7-470549844e32")
(attr through_hole)
(fp_text reference "J11" (at 0 -2.33 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5e68db6a-64cb-4bb6-9dfe-64fbf2fa891b)
)
(fp_text value "FAN" (at 0 4.87 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e6b2d08d-afbf-4a98-85f6-d529fb8575cf)
)
(fp_text user "${REFERENCE}" (at 0 1.524) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d7351539-b991-4787-8be6-cf1d1bf59ee4)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0f5ed722-67c3-4a79-9672-e84fd6dc48bb))
(fp_line (start -1.33 0) (end -1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ad611f79-d09b-428f-888b-99ebaac59533))
(fp_line (start -1.33 1.27) (end -1.33 3.87)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dc990bcd-5d90-44a0-8567-fe6a0ab3485a))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6b86222d-1e20-428b-9d36-bff1312e84c7))
(fp_line (start -1.33 3.87) (end 1.33 3.87)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b4c184ce-4d02-45d0-a539-69930de3503c))
(fp_line (start 1.33 1.27) (end 1.33 3.87)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 991fafd6-02c0-4c86-a1af-e808a51240f3))
(fp_line (start -1.8 -1.8) (end -1.8 4.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a5485ffc-cd5b-41c0-ad87-ce3ba80e9416))
(fp_line (start -1.8 4.35) (end 1.8 4.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bc391e89-6a00-4312-b536-79f31675f0cd))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 26beca56-7bd7-4067-a178-cd6a1c536232))
(fp_line (start 1.8 4.35) (end 1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp caa5df09-d7da-4e4d-b9e1-6bd381360e72))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 26f5eb29-9f9b-45e4-95b5-230ddfc59189))
(fp_line (start -1.27 3.81) (end -1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 90b0ebc9-de78-40a0-8520-1d70b6ea2cc6))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1f1b28da-2ae9-4fa9-a9cc-2ac7b7fc35aa))
(fp_line (start 1.27 -1.27) (end 1.27 3.81)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e0e93e6f-f82e-4634-a486-9b2779ea4928))
(fp_line (start 1.27 3.81) (end -1.27 3.81)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ec02b62d-c7c5-4111-a58f-96e0cf4892da))
(pad "1" thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 3 "+12V") (pinfunction "Pin_1") (pintype "passive") (tstamp 40fa8354-7020-4048-b2bc-643390812a8f))
(pad "2" thru_hole oval (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 4 "Net-(D1-A)") (pinfunction "Pin_2") (pintype "passive") (tstamp 748e27d6-5726-47c2-ade5-1f18406a04af))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Inductor_SMD:L_Bourns-SRN8040_8x8.15mm" (layer "F.Cu")
(tstamp c5470433-7de5-4b7f-a8f2-6cce9a4798c5)
(at 139.15 94 -90)
(descr "Bourns SRN8040 series SMD inductor 8x8.15mm, https://www.bourns.com/docs/Product-Datasheets/SRN8040.pdf")
(tags "Bourns SRN8040 SMD inductor")
(property "Sheetfile" "tinyUPS.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Inductor")
(property "ki_keywords" "inductor choke coil reactor magnetic")
(path "/0cb3935a-cecc-48b8-afc8-2cfaf4005f6f")
(attr smd)
(fp_text reference "L1" (at 0.09 -5.23 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fe501165-e9c3-4ea1-9b4a-eb553cf32955)
)
(fp_text value "100uH" (at 0.17 5.23 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9a847539-ecb6-4440-b1bb-f66f0b0cf814)
)
(fp_text user "${REFERENCE}" (at 0.127 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 56a41bd7-c1f6-46ac-877a-18c856cbbae0)
)
(fp_line (start -1.25 4.2) (end 1.25 4.2)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9d8726ac-5f5c-4a10-bbb3-0a335273f6da))
(fp_line (start 1.25 -4.2) (end -1.25 -4.2)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a77ab244-dd6e-42a8-a0b6-78a22061b1af))
(fp_line (start -4.35 -4.35) (end -4.35 4.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5cb645bf-1b2d-43aa-b667-32c5e18d78a9))
(fp_line (start -4.35 -4.35) (end 4.35 -4.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9d4d5bd8-69ff-4cec-9e7f-e74c84fcdbc1))
(fp_line (start -4.35 4.35) (end 4.35 4.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4b6613cd-164c-4ead-a01e-55beb395cb12))
(fp_line (start 4.35 -4.35) (end 4.35 4.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 22eef18b-e4fc-443d-8627-7301db345fdf))
(fp_line (start -4 -1.96) (end -4 1.96)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 494750e5-a044-454b-b417-0715b4017637))
(fp_line (start -1.8 -4.075) (end 1.8 -4.075)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 11aba7f6-6dfa-4c39-a4df-ee42077a3ea4))
(fp_line (start 1.8 4.075) (end -1.8 4.075)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp acdb7be5-ea23-4395-8e29-c04dc4ef431d))
(fp_line (start 4 -1.96) (end 4 1.96)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8a355789-e914-460a-9d56-c16fe3966e78))
(fp_arc (start -3.99824 -1.964613) (mid -3.085179 -3.213611) (end -1.8 -4.075)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d1260339-e98b-43bf-8e90-ef7d99d2e089))
(fp_arc (start -1.804314 4.072598) (mid -3.088411 3.209878) (end -4 1.96)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b5bf6076-73e4-462e-b19b-76d7e3be46e5))
(fp_arc (start 1.799817 -4.074587) (mid 3.086639 -3.211582) (end 4 -1.96)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e7aeb1b7-5a83-4a12-858b-de07f296977c))
(fp_arc (start 3.99824 1.964613) (mid 3.085179 3.213611) (end 1.8 4.075)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e5d10999-6c71-4dea-9bd5-eed2f2cd557a))
(pad "1" smd rect (at -2.8 0 270) (size 2.6 8.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 43 "Net-(U1-SW)") (pinfunction "1") (pintype "passive") (tstamp bfcd8e62-2265-4cf6-95c5-a056aeabef08))
(pad "2" smd rect (at 2.8 0 270) (size 2.6 8.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "+3.3V") (pinfunction "2") (pintype "passive") (tstamp 5b65fdaa-c88a-44a9-9488-407b5940121f))
(model "${KICAD6_3DMODEL_DIR}/Inductor_SMD.3dshapes/L_Bourns-SRN8040_8x8.15mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical" (layer "F.Cu")
(tstamp c663e262-76b2-4e84-8b89-80713a664449)
(at 129.685 109.55)
(descr "Through hole straight pin header, 1x01, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x01 2.54mm single row")
(property "Sheetfile" "tinyUPS.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x01, script generated")
(property "ki_keywords" "connector")
(path "/f88f729d-a9d8-4de0-8fe9-ac9f6dcf0541")
(attr through_hole)
(fp_text reference "J9" (at 0 -2.33) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f1a21ced-60b2-4af2-b7c2-c24d86c4630a)
)
(fp_text value "OUTF" (at 0 2.33) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 185efedb-cdc6-455a-846d-fc03d050b7d7)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a687de86-2a5b-4cef-850c-0c1c27bafedc)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6fab44e2-b573-4c37-956c-8fe02748add8))
(fp_line (start -1.33 0) (end -1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 23aeb490-74e5-4730-a989-58751c1dbf62))
(fp_line (start -1.33 1.27) (end -1.33 1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 00d5019a-4d60-4e9f-bc5c-9b912e2416fb))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a7c1702e-37c1-4e6e-ba97-118bb27d76d3))
(fp_line (start -1.33 1.33) (end 1.33 1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a97fa8c2-0a04-4fe0-91e3-43d872c4f4bf))
(fp_line (start 1.33 1.27) (end 1.33 1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 85e1392e-35c0-4322-92ac-4e490b7c8161))
(fp_line (start -1.8 -1.8) (end -1.8 1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 04f496e4-57fc-4e69-bdf6-1c99ded80bdb))
(fp_line (start -1.8 1.8) (end 1.8 1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 07d8806b-e842-40b7-a5b6-10741e8cea01))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp facbab48-df32-4e82-855a-1752d092311c))
(fp_line (start 1.8 1.8) (end 1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 41c5c850-3e01-4c56-beea-d37f4c7c783b))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 99e7f45a-02b3-4c2b-b374-7f39908cb571))
(fp_line (start -1.27 1.27) (end -1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b5b0cd3a-a51f-497c-8507-5b626303c71e))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7c87a023-96d0-4537-b55f-b3745e9efaef))
(fp_line (start 1.27 -1.27) (end 1.27 1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fe9090b8-9061-4109-8323-16bc2bf0ff33))
(fp_line (start 1.27 1.27) (end -1.27 1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a074f6d3-bc67-4b31-81ad-d941377976dc))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 22 "Net-(J9-Pin_1)") (pinfunction "Pin_1") (pintype "passive") (tstamp 1221a2e6-21cb-406f-a24c-e675066979f9))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x01_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Potentiometer_SMD:Potentiometer_Bourns_3224W_Vertical" (layer "F.Cu")
(tstamp c98f6f4e-9832-4d0a-8b8f-ca74ce52128a)
(at 137.95 102.3 180)
(descr "Potentiometer, vertical, Bourns 3224W, https://www.bourns.com/docs/Product-Datasheets/3224.pdf")
(tags "Potentiometer vertical Bourns 3224W")
(property "Sheetfile" "tinyUPS.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Potentiometer")
(property "ki_keywords" "resistor variable")
(path "/91f5e972-f4d8-4792-be23-9ff44fa79148")
(attr smd)
(fp_text reference "RV1" (at 0 -3.5) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1da11723-6f5e-4c43-871c-c45060ff755f)
)
(fp_text value "220k" (at 0 3.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 00e2b720-256a-4eca-9bcc-258d664a9f56)
)
(fp_text user "${REFERENCE}" (at 0.6 0) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.15)))
(tstamp 1ad3f3c8-616f-4c5b-903c-63342a81feb9)
)
(fp_line (start -2.52 -1.87) (end -2.52 1.87)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0f1d6fd1-d5f7-4c0d-9f12-402ec940a570))
(fp_line (start -2.52 -1.87) (end -2.14 -1.87)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0412ece4-a735-4f45-be54-bc954f693573))
(fp_line (start -2.52 1.87) (end -1.24 1.87)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp da578b66-53db-4926-92bd-8a68e93d6109))
(fp_line (start -0.36 -1.87) (end 0.36 -1.87)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 05a1e0a2-0262-475f-a040-9c90f1e19014))
(fp_line (start 1.24 1.87) (end 2.52 1.87)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 875b812a-5e70-4b8d-9f98-cad5d168a22b))
(fp_line (start 2.14 -1.87) (end 2.52 -1.87)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f17583a2-8e06-42be-8ba7-c17f08b5ae07))
(fp_line (start 2.52 -1.87) (end 2.52 1.87)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7d1f278a-102c-4639-8eea-505d6799b693))
(fp_line (start -2.65 -2.5) (end -2.65 2.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 267d602a-9e80-4d9c-8232-b403b775cd8b))
(fp_line (start -2.65 2.5) (end 2.65 2.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d32260e7-8e50-4196-87fd-e28c0cf8af62))
(fp_line (start 2.65 -2.5) (end -2.65 -2.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a420f4e5-8195-4a4c-a004-2ef57f323f01))
(fp_line (start 2.65 2.5) (end 2.65 -2.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cd9742cf-bde4-4da1-84ae-d2d586836468))
(fp_line (start -2.4 -1.75) (end -2.4 1.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d9db6d21-412f-441d-a772-03e5e224ba3d))
(fp_line (start -2.4 1.75) (end 2.4 1.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b63e4358-b970-4c69-839c-6307ba024bde))
(fp_line (start -1.2 1.393) (end -1.199 -0.092)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4132e969-5745-4197-90b0-d86a838a51cc))
(fp_line (start -1.2 1.393) (end -1.199 -0.092)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c5770780-f23c-45ab-b545-de79bac0f771))
(fp_line (start 2.4 -1.75) (end -2.4 -1.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp adb7396b-1360-42b8-9fe3-93e3d0fcdaab))
(fp_line (start 2.4 1.75) (end 2.4 -1.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 34186896-96f7-44aa-98f3-4251666ee7c4))
(fp_circle (center -1.2 0.65) (end -0.45 0.65)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp b3e06e35-906c-4458-86e9-5478b0084a07))
(pad "1" smd rect (at 1.25 -1.45 180) (size 1.3 1.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "+3.3V") (pinfunction "1") (pintype "passive") (tstamp 4fb92788-6479-4c3d-9ca5-f31a723362e8))
(pad "2" smd rect (at 0 1.45 180) (size 2 1.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "+3.3V") (pinfunction "2") (pintype "passive") (tstamp e2e3c20a-e1a8-412f-afc5-976c1230d145))
(pad "3" smd rect (at -1.25 -1.45 180) (size 1.3 1.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 46 "Net-(U1-FB)") (pinfunction "3") (pintype "passive") (tstamp a532b835-dee3-423f-b729-8af21d4a427b))
(model "${KICAD6_3DMODEL_DIR}/Potentiometer_SMD.3dshapes/Potentiometer_Bourns_3224W_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder" (layer "F.Cu")
(tstamp d5696cd4-652c-4b6e-becd-02ad85e3e358)
(at 154.15 97.2 -90)
(descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (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 handsolder")
(property "Sheetfile" "tinyUPS.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small symbol")