-
Notifications
You must be signed in to change notification settings - Fork 0
/
pi_ups.kicad_pcb
4353 lines (4322 loc) · 201 KB
/
pi_ups.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20221018) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(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)
(pcbplotparams
(layerselection 0x00010f0_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 4)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "gerbers/")
)
)
(net 0 "")
(net 1 "VCC")
(net 2 "GND")
(net 3 "+3.3V")
(net 4 "+5V")
(net 5 "/Bat_v")
(net 6 "Net-(J1-Pin_1)")
(net 7 "Net-(J2-Pin_1)")
(net 8 "/Bat1_i")
(net 9 "/Bat2_i")
(net 10 "/SDA")
(net 11 "/SCL")
(net 12 "/GNDB")
(net 13 "Net-(U1-VDD)")
(net 14 "Net-(U2-SW)")
(net 15 "Net-(U2-BST)")
(net 16 "Net-(ADR0-A)")
(net 17 "Net-(ADR1-A)")
(net 18 "Net-(JP1-A)")
(footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (layer "F.Cu")
(tstamp 10582c34-78ff-49ba-a106-9617ab253965)
(at 87.695 93.98 180)
(descr "SOIC, 14 Pin (JEDEC MS-012AB, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/soic_narrow-r/r_14.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "SOIC SO")
(property "Sheetfile" "pi_ups.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "16-Bit, Multi-Channel ΔΣ Analog-to-Digital Converter with I2C Interface and On-Board Reference, SOIC-14/TSSOP-14")
(property "ki_keywords" "adc 4ch 16bit i2c")
(path "/55ae54d1-f868-4c2b-b5d9-1b4f09e8cd6a")
(attr smd)
(fp_text reference "U1" (at 0.7 5.715) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4bf3f7f5-2b6c-45ac-b4b7-4285dedf2c95)
)
(fp_text value "MCP3428" (at 0 5.28) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 56191f2f-d703-45a6-a2de-92f8460cc624)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.98 0.98) (thickness 0.15)))
(tstamp a3152fd3-8ca9-4533-a6a5-2fc31c8a2bbf)
)
(fp_line (start 0 -4.435) (end -3.45 -4.435)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 43d73324-1ecf-4357-8dad-105af3ff0413))
(fp_line (start 0 -4.435) (end 1.95 -4.435)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c0ac63a8-3d5c-4af7-9bb0-7b8b0e44cee1))
(fp_line (start 0 4.435) (end -1.95 4.435)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp df69f646-f1c0-4db6-b6ae-c608ebe19594))
(fp_line (start 0 4.435) (end 1.95 4.435)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 014ca6fe-2976-4c1a-b66d-6dbf310e847c))
(fp_line (start -3.7 -4.58) (end -3.7 4.58)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0b85fadc-0059-4d4f-9316-bda01754e8d2))
(fp_line (start -3.7 4.58) (end 3.7 4.58)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 24cf5c3a-5037-4908-aa03-50f243a70e8e))
(fp_line (start 3.7 -4.58) (end -3.7 -4.58)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e98c5beb-7870-46bf-9800-ded71c9a613b))
(fp_line (start 3.7 4.58) (end 3.7 -4.58)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c1e068d8-0f4a-4107-867e-47b3b194a7ee))
(fp_line (start -1.95 -3.35) (end -0.975 -4.325)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 165d3864-f62c-432c-94e3-6a94a686aa11))
(fp_line (start -1.95 4.325) (end -1.95 -3.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c58cc153-b954-46eb-ad80-b4756a9dd163))
(fp_line (start -0.975 -4.325) (end 1.95 -4.325)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 28287ded-5f8e-4ad1-883d-ce9209a82626))
(fp_line (start 1.95 -4.325) (end 1.95 4.325)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1c726e32-8363-4f91-8072-a2e1951d2fe8))
(fp_line (start 1.95 4.325) (end -1.95 4.325)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 413c2e24-eba9-4868-9a57-622c343d3ead))
(pad "1" smd roundrect (at -2.475 -3.81 180) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "/Bat1_i") (pinfunction "CH1+") (pintype "input") (tstamp 97545be5-8b1d-4edf-8094-ec1fa240bcee))
(pad "2" smd roundrect (at -2.475 -2.54 180) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "/GNDB") (pinfunction "CH1-") (pintype "input") (tstamp 5ca33564-1f7d-4cdf-becb-b906765ec1d7))
(pad "3" smd roundrect (at -2.475 -1.27 180) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "/Bat2_i") (pinfunction "CH2+") (pintype "input") (tstamp c3135219-1c60-423f-8d88-e10f9261f028))
(pad "4" smd roundrect (at -2.475 0 180) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "/GNDB") (pinfunction "CH2-") (pintype "input") (tstamp e018f1be-3328-44ba-a6be-a9a4d6947020))
(pad "5" smd roundrect (at -2.475 1.27 180) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp e6df688c-2681-4110-ab31-48ef08283d0d))
(pad "6" smd roundrect (at -2.475 2.54 180) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 13 "Net-(U1-VDD)") (pinfunction "VDD") (pintype "power_in") (tstamp 0cd5c664-6a34-4234-b098-90ecf477b078))
(pad "7" smd roundrect (at -2.475 3.81 180) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "/SDA") (pinfunction "SDA") (pintype "bidirectional") (tstamp 4ac60126-320f-4eb2-809c-44398c0bba59))
(pad "8" smd roundrect (at 2.475 3.81 180) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "/SCL") (pinfunction "SCL") (pintype "input") (tstamp cb76b35f-b7ce-4c04-a689-4735715524d6))
(pad "9" smd roundrect (at 2.475 2.54 180) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 16 "Net-(ADR0-A)") (pinfunction "Adr0") (pintype "input") (tstamp 45bf87f3-6487-41a0-b712-7439cd62a9b6))
(pad "10" smd roundrect (at 2.475 1.27 180) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 17 "Net-(ADR1-A)") (pinfunction "Adr1") (pintype "input") (tstamp c57bc8bd-21c2-44f5-a2bc-df89c1fc507f))
(pad "11" smd roundrect (at 2.475 0 180) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "/GNDB") (pinfunction "CH3+") (pintype "input") (tstamp 5a4f5bcc-33df-41c7-ac3c-2ef224daae44))
(pad "12" smd roundrect (at 2.475 -1.27 180) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "CH3-") (pintype "input") (tstamp a67cfe9e-b614-44f7-999e-9421f70336d4))
(pad "13" smd roundrect (at 2.475 -2.54 180) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "/Bat_v") (pinfunction "CH4+") (pintype "input") (tstamp ae94c5ad-6f18-46ca-992d-a9343453bb39))
(pad "14" smd roundrect (at 2.475 -3.81 180) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "CH4-") (pintype "input") (tstamp cae9455b-eca9-40fe-9d9e-573ec46d8971))
(model "${KICAD6_3DMODEL_DIR}/Package_SO.3dshapes/SOIC-14_3.9x8.7mm_P1.27mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tstamp 16ce1472-8b15-4ab1-accd-b9138a6505af)
(at 102.489 95.504)
(descr "Capacitor SMD 0603 (1608 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" "pi_ups.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/73e11ad0-b39f-4f1b-954d-d5e8e2e800ee")
(attr smd)
(fp_text reference "C4" (at 0 1.524) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 69d55dc2-798a-438b-8ba2-8d35f94cfd12)
)
(fp_text value "10u" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e87a6d85-a37c-4f37-8be2-0162db80338d)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 545c7700-528a-49a7-a30a-150571c39f97)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ec2added-1709-4923-b80b-49c00d874220))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b0d044e9-e19e-448b-8b58-9c1be600e11b))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 13de6ccf-da8d-444f-8ff9-634df93fee39))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f0d96ae0-821e-4296-8351-966c5b54749f))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e4c7acd6-c41e-4076-b42b-6a36fa8ec9d2))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 83f33f61-f39b-49f9-a546-4f341d867774))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3f1fd08a-501e-4d02-af4d-1be696a3809f))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ffa21ae5-d444-4d71-869a-f4f89cc7879c))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c8fa30ec-48cf-487f-8e22-a7b2d15cb7c4))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c886f4ed-1b96-4ac2-b1fe-dc9bb252f95b))
(pad "1" smd roundrect (at -0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "VCC") (pintype "passive") (tstamp ce73beb6-be8d-4d96-bebe-145814b14354))
(pad "2" smd roundrect (at 0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 5a910372-6470-479f-b005-70659f33bcca))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_THT:C_Disc_D12.0mm_W4.4mm_P7.75mm" (layer "F.Cu")
(tstamp 1a52ca30-4815-4de0-8a1e-2625c423061e)
(at 98.806 110.744 90)
(descr "C, Disc series, Radial, pin pitch=7.75mm, , diameter*width=12*4.4mm^2, Capacitor")
(tags "C Disc series Radial pin pitch 7.75mm diameter 12mm width 4.4mm Capacitor")
(property "Sheetfile" "pi_ups.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resettable fuse, polymeric positive temperature coefficient")
(property "ki_keywords" "resettable fuse PTC PPTC polyfuse polyswitch")
(path "/0c671469-a8c1-4a25-99b1-1534f8bc7b4a")
(attr through_hole)
(fp_text reference "F2" (at 11.43 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d4d6a7eb-4d8d-4604-be2b-058b6b519a28)
)
(fp_text value "2A" (at 3.875 3.45 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 628c23b4-1921-434a-87a6-709015d4b728)
)
(fp_text user "${REFERENCE}" (at 3.875 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 269fb28e-4482-481a-a1c1-b6fbf0786ce9)
)
(fp_line (start -2.245 -2.321) (end -2.245 2.321)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 05f196c6-987f-4901-859a-42a156d1ac86))
(fp_line (start -2.245 -2.321) (end 9.995 -2.321)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3a05939e-5f8a-4dc8-9e48-0c704dbdfd33))
(fp_line (start -2.245 2.321) (end 9.995 2.321)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9d8a710c-95ab-4e03-92ec-9736493f5c4f))
(fp_line (start 9.995 -2.321) (end 9.995 2.321)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7ff1deb9-937a-4a5a-a704-3cb15bf90a77))
(fp_line (start -2.38 -2.45) (end -2.38 2.45)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 868b5223-d288-4983-85e2-5336c4267180))
(fp_line (start -2.38 2.45) (end 10.13 2.45)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp caecab5a-bde9-43f4-a4a3-3b236226deb2))
(fp_line (start 10.13 -2.45) (end -2.38 -2.45)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 444e484f-04ca-4664-9abd-17cdadde74f0))
(fp_line (start 10.13 2.45) (end 10.13 -2.45)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c9806402-9fd3-49d4-b168-86975d21e9d0))
(fp_line (start -2.125 -2.2) (end -2.125 2.2)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9c64d164-fc61-417c-9c40-7cb1bca5ae65))
(fp_line (start -2.125 2.2) (end 9.875 2.2)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e5eef378-b189-4ed7-8de6-b20a876bbeff))
(fp_line (start 9.875 -2.2) (end -2.125 -2.2)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fb8b1d1c-37b5-4d6e-ad8e-d78a1ef2f42d))
(fp_line (start 9.875 2.2) (end 9.875 -2.2)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 33a2aeac-0b3b-485e-b880-976376e07626))
(pad "1" thru_hole circle (at 0 0 90) (size 2.4 2.4) (drill 1.2) (layers "*.Cu" "*.Mask")
(net 7 "Net-(J2-Pin_1)") (pintype "passive") (tstamp 0f4876fe-e07f-43ab-8f99-ba56adb7df35))
(pad "2" thru_hole circle (at 7.75 0 90) (size 2.4 2.4) (drill 1.2) (layers "*.Cu" "*.Mask")
(net 1 "VCC") (pintype "passive") (tstamp 060a0f40-6570-49bd-9803-131a0c29757c))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/C_Disc_D12.0mm_W4.4mm_P7.75mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tstamp 1ef79303-45c7-4318-92ce-0100ed4768b6)
(at 92.71 91.935 -90)
(descr "Capacitor SMD 0603 (1608 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" "pi_ups.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/8994d240-5a07-4f6a-baaa-fd3f28116600")
(attr smd)
(fp_text reference "C2" (at 2.68 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a9487dfb-1f70-48bc-b7e9-0f75a526df5c)
)
(fp_text value "0.1u" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7649b477-98bb-4862-9214-78ba98ddcf68)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp abb99ac7-0a30-4b39-86fa-bfd935e6d919)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp aba35cb5-49a8-41d2-95f1-3b4a4540d395))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp eb6767a6-674f-4b42-bb4e-51dc066531cc))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5c2118c2-7f70-4a3a-baad-f50b269dfe89))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 022bd10b-b62e-4f12-abdd-678b8b2ed893))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a0c1e9f8-8def-4272-8a0e-f1bdfa7deec2))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 61cb0c52-9588-443f-9763-054eda315084))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9f7d3421-d735-45be-bc71-6aa2dd375bd8))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 44463e8b-2695-4e11-9615-ab02c3215f38))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4c2e648b-feb1-469c-85fc-017c6810d013))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f84eebf4-77c5-4f86-af34-025da9eb685f))
(pad "1" smd roundrect (at -0.775 0 270) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 13 "Net-(U1-VDD)") (pintype "passive") (tstamp a8be93c7-7203-4eff-a27c-9d1d799ca6bc))
(pad "2" smd roundrect (at 0.775 0 270) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp a436d73f-9206-46a0-819c-4a61ed9a98fb))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_THT:C_Disc_D12.0mm_W4.4mm_P7.75mm" (layer "F.Cu")
(tstamp 23f67174-720e-4188-8c50-d8d11a62defb)
(at 93.599 110.744 90)
(descr "C, Disc series, Radial, pin pitch=7.75mm, , diameter*width=12*4.4mm^2, Capacitor")
(tags "C Disc series Radial pin pitch 7.75mm diameter 12mm width 4.4mm Capacitor")
(property "Sheetfile" "pi_ups.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resettable fuse, polymeric positive temperature coefficient")
(property "ki_keywords" "resettable fuse PTC PPTC polyfuse polyswitch")
(path "/8550b4db-2117-404b-8724-73f4586badee")
(attr through_hole)
(fp_text reference "F1" (at 11.495 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3e2b7a57-74cb-4035-8176-d6e51b57b002)
)
(fp_text value "2A" (at 3.875 3.45 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4d2aa15c-e64c-41ba-9c31-77e48f648a3a)
)
(fp_text user "${REFERENCE}" (at 3.875 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2245aa06-407f-4e39-9a19-9fa5c668b1ac)
)
(fp_line (start -2.245 -2.321) (end -2.245 2.321)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6e61d513-a981-4395-862b-2b222cd671b4))
(fp_line (start -2.245 -2.321) (end 9.995 -2.321)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 22c9e9c7-e898-4e69-8650-9e0de66f86d6))
(fp_line (start -2.245 2.321) (end 9.995 2.321)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a3fb97b9-f644-4b69-ad3d-ecde3c4a9d08))
(fp_line (start 9.995 -2.321) (end 9.995 2.321)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0ba225ad-7258-42fd-85d2-b7cf07a85b71))
(fp_line (start -2.38 -2.45) (end -2.38 2.45)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 77b831d2-3163-4bd2-aab8-e926ab98f61d))
(fp_line (start -2.38 2.45) (end 10.13 2.45)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e50b5eae-5603-4d63-b761-e74a6c38616b))
(fp_line (start 10.13 -2.45) (end -2.38 -2.45)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d2623fef-0fea-4dca-81da-eb84721ce7fb))
(fp_line (start 10.13 2.45) (end 10.13 -2.45)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 855a508b-66cf-4511-82f5-75706dbd06bc))
(fp_line (start -2.125 -2.2) (end -2.125 2.2)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp af22c7a7-7f18-4b31-83a1-5c6184ff943d))
(fp_line (start -2.125 2.2) (end 9.875 2.2)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0df63fdc-2047-4fba-8c98-c7148bc2572e))
(fp_line (start 9.875 -2.2) (end -2.125 -2.2)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7877cd55-93b3-458b-bb50-a959d6f4f84b))
(fp_line (start 9.875 2.2) (end 9.875 -2.2)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7424a5e9-2b53-42dc-ba7a-d46e295ff1fd))
(pad "1" thru_hole circle (at 0 0 90) (size 2.4 2.4) (drill 1.2) (layers "*.Cu" "*.Mask")
(net 6 "Net-(J1-Pin_1)") (pintype "passive") (tstamp d3b47ce3-a143-4192-bf17-8fd002f9b76e))
(pad "2" thru_hole circle (at 7.75 0 90) (size 2.4 2.4) (drill 1.2) (layers "*.Cu" "*.Mask")
(net 1 "VCC") (pintype "passive") (tstamp 6aad0819-ef8e-4c6f-b92e-1955f6fd2adc))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/C_Disc_D12.0mm_W4.4mm_P7.75mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "TerminalBlock:TerminalBlock_bornier-2_P5.08mm" (layer "F.Cu")
(tstamp 39e01eeb-801d-4af1-bb70-3188a3225f2f)
(at 83.185 109.093)
(descr "simple 2-pin terminal block, pitch 5.08mm, revamped version of bornier2")
(tags "terminal block bornier2")
(property "Sheetfile" "pi_ups.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic screw terminal, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "screw terminal")
(path "/2947b2bc-89cc-4700-8731-224091964ae4")
(attr through_hole)
(fp_text reference "J1" (at -1.905 -4.699) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 43ff3c3e-1ba8-467b-9f52-cd769a14dd9a)
)
(fp_text value "Screw_Terminal_01x02" (at 2.54 5.08) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d4708868-02d2-49af-ab5c-c9bc37e312bc)
)
(fp_text user "${REFERENCE}" (at 2.54 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3e631b06-8db1-4838-ac7d-b98c64ae2122)
)
(fp_line (start -2.54 -3.81) (end -2.54 3.81)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d72fa8d2-e21d-4923-a59a-b614e6ec00e6))
(fp_line (start -2.54 3.81) (end 7.62 3.81)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d26a4c75-96f6-469e-9ae3-3ce9c1987cee))
(fp_line (start 7.62 -3.81) (end -2.54 -3.81)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e0220556-ae1f-4972-a3a3-af4bda888b8c))
(fp_line (start 7.62 2.54) (end -2.54 2.54)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3974aa60-53dd-434b-ad67-f40b0f9c98d3))
(fp_line (start 7.62 3.81) (end 7.62 -3.81)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ee63697e-c69e-41e3-ad05-86d9b8e8f624))
(fp_line (start -2.71 -4) (end -2.71 4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a4ddbf07-cab5-4db8-b1b0-f5287d06926c))
(fp_line (start -2.71 -4) (end 7.79 -4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 868ad6bb-63bb-496f-9b00-c7863f93bcc1))
(fp_line (start 7.79 4) (end -2.71 4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5cc078d7-11f0-448d-8c12-b2d746150b40))
(fp_line (start 7.79 4) (end 7.79 -4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1cdc8ed3-c7bb-49f5-a63a-42f24d557e09))
(fp_line (start -2.46 -3.75) (end -2.46 3.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 289f1e57-57d9-49c8-b2f8-83be6c65f5a9))
(fp_line (start -2.46 3.75) (end 7.54 3.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fb5fb03f-1ee2-4252-8112-0fba96b103f7))
(fp_line (start -2.41 2.55) (end 7.49 2.55)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9237da43-ccf9-42c4-9d77-076526117bc1))
(fp_line (start 7.54 -3.75) (end -2.46 -3.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2b6c28d0-76cf-41e3-8d96-80f83ca11634))
(fp_line (start 7.54 3.75) (end 7.54 -3.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 93882ca7-af5d-46f7-a63a-baafe7a6f67a))
(pad "1" thru_hole rect (at 0 0) (size 3 3) (drill 1.52) (layers "*.Cu" "*.Mask")
(net 6 "Net-(J1-Pin_1)") (pinfunction "Pin_1") (pintype "passive") (tstamp 0c9aba20-c107-4966-8b66-f7f4aefb40c2))
(pad "2" thru_hole circle (at 5.08 0) (size 3 3) (drill 1.52) (layers "*.Cu" "*.Mask")
(net 8 "/Bat1_i") (pinfunction "Pin_2") (pintype "passive") (tstamp dd26eae9-b689-490d-9005-8f58ae204f3c))
(model "${KICAD6_3DMODEL_DIR}/TerminalBlock.3dshapes/TerminalBlock_bornier-2_P5.08mm.wrl"
(offset (xyz 2.539999962 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tstamp 4e27ab35-1eba-4921-8162-c968eecfc018)
(at 97.536 89.916 -90)
(descr "Capacitor SMD 0603 (1608 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" "pi_ups.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/fbaeaf9c-f4d2-4e3e-a893-9998948d3797")
(attr smd)
(fp_text reference "C6" (at 0.254 1.651 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7a63fd93-76d8-4f18-a938-3904621c2761)
)
(fp_text value "0.1u" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d24abf17-736b-4a19-85bf-8f3a7ff9347d)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 0f68450a-5d48-4984-b8f3-3e5455071ced)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3c5f841d-63cf-4728-8ee8-553d8435100e))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 21e9562a-10fd-40b0-a4ab-2b7f9390b378))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c46e96ac-13cf-4bf7-a1a2-b07ded8b1002))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b9ae089f-7237-4baf-b975-f9ba0f5c4df4))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 96838fce-be9b-4a12-86cf-25fc13ae7be6))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 58d84ef6-ce67-486f-b9e2-0ea39f515296))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 43a8462d-6095-4313-be23-924503d69b2f))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e03e6ebc-d3ad-4b95-a13a-3e80c7094d0b))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9fa69ac6-3f74-4b5d-89cf-8d6ffecbf19a))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e9c592ab-0adb-4af4-afa4-481ab63c4f8d))
(pad "1" smd roundrect (at -0.775 0 270) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 14 "Net-(U2-SW)") (pintype "passive") (tstamp dcb68092-c170-4ac4-abb6-aef95f66b23b))
(pad "2" smd roundrect (at 0.775 0 270) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 15 "Net-(U2-BST)") (pintype "passive") (tstamp d8b5b807-e793-41de-8178-a216e88fc93f))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric" (layer "F.Cu")
(tstamp 7fd5df46-84ea-46d6-93c5-651f183fbaa2)
(at 102.682 92.964)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "pi_ups.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/4c453ee3-4f82-43ca-8153-a9e4e520c783")
(attr smd)
(fp_text reference "C5" (at 2.093 1.524 180) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.1)))
(tstamp eb3a492d-a949-462c-a6c2-3f828e84ed0b)
)
(fp_text value "22u" (at 0 1.68) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c3d46b1e-14aa-4e20-802f-d94de50fc682)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp d0b5a5f9-15d3-40ed-b4fc-0bb5071b2700)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp da212d2e-d9eb-448a-a671-f866d40af8f3))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1f8792e4-c52a-4626-81b3-8516d16a478b))
(fp_line (start -1.7 -0.98) (end 1.7 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6cc0c123-cf00-4794-9659-c2a4035a6bf3))
(fp_line (start -1.7 0.98) (end -1.7 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a044b960-6bc9-4997-8442-1348a390ce91))
(fp_line (start 1.7 -0.98) (end 1.7 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e54d3221-27df-46a3-929d-4888cf87bb16))
(fp_line (start 1.7 0.98) (end -1.7 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 97c96cbd-03cc-43a3-897b-8bf395fedc7a))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 783631d5-c4e1-491b-92dc-ebbc41c77b4e))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 46c20247-56cb-41c6-ba77-cd83487d10f2))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c7ee50f5-eefb-4225-ae90-14558151ae03))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp dd0ad77c-f372-4d81-bed7-f7a264893d7a))
(pad "1" smd roundrect (at -0.95 0) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp b170da2e-a5d5-473a-a253-2d7c98ce50fd))
(pad "2" smd roundrect (at 0.95 0) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "+5V") (pintype "passive") (tstamp 3989e856-41b4-4d4d-956b-d3b0aed19e8e))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "pi_ups:NRS5030" (layer "F.Cu")
(tstamp a0918ccf-3245-49fd-9ed9-2c87101e538d)
(at 101.092 89.408)
(property "Sheetfile" "pi_ups.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Inductor")
(property "ki_keywords" "inductor choke coil reactor magnetic")
(path "/c2d45bdf-967d-4c8d-abd8-df4582657ce5")
(attr smd)
(fp_text reference "L1" (at 0 -3.683 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.1)))
(tstamp 64906972-38bb-4d48-ab57-7433c56a2600)
)
(fp_text value "4.7u" (at 0 -3.81 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 71dad170-57a7-4399-ae88-b952a991641e)
)
(fp_text user "${REFERENCE}" (at 0 3.175 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 141a44ac-6e1e-41fd-bcdd-1124ef1279d1)
)
(fp_rect (start -2.5 -2.5) (end 2.5 2.5)
(stroke (width 0.05) (type default)) (fill none) (layer "F.CrtYd") (tstamp b867ab85-4494-4820-b7e8-c1532c5665a3))
(pad "1" smd rect (at -1.8 0) (size 1.5 4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 14 "Net-(U2-SW)") (pinfunction "1") (pintype "passive") (thermal_bridge_angle 45) (tstamp 1e8e1b2f-238b-4cf9-b187-4020afc14f15))
(pad "2" smd rect (at 1.8 0) (size 1.5 4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "+5V") (pinfunction "2") (pintype "passive") (thermal_bridge_angle 45) (tstamp da6b960a-2bc4-4aa6-9f21-cc8687df0c91))
)
(footprint "Capacitor_SMD:C_0805_2012Metric" (layer "F.Cu")
(tstamp ab804f72-7dd3-4c61-a482-83fff44aa287)
(at 90.17 87.63 180)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "pi_ups.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/6815a94a-a530-431e-b8e5-418b7103c962")
(attr smd)
(fp_text reference "C1" (at 0 1.905 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4eb0b490-730e-4a77-81b4-4a51e6426981)
)
(fp_text value "10u" (at 0 1.68) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 33954eab-ffa6-455a-bbe8-8fda4038d090)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 87942e86-1865-4e83-b530-eb0753275a44)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0be0440d-6055-44a2-96c0-a77094a277bd))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6a8fc1e5-76b1-4597-ad6a-809c15217ef3))
(fp_line (start -1.7 -0.98) (end 1.7 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 54a068d5-73b3-4a9f-b21b-df02b0a33ac7))
(fp_line (start -1.7 0.98) (end -1.7 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 85c8d4d7-50fb-4609-881d-2eba952d87a2))
(fp_line (start 1.7 -0.98) (end 1.7 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 446994cf-8e3d-4128-8332-03daeb2e605d))
(fp_line (start 1.7 0.98) (end -1.7 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 34d3533a-5a5c-4967-a6c0-041aac41d9a3))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 82b1bde3-500c-43db-9f94-245e83021356))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9ccbde81-193d-4625-bf12-b36a37a61d79))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fc5b1e5e-63c6-499c-995d-22d6283ad6fe))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 31df5f18-8efa-49a3-867b-f693f3ad0b55))
(pad "1" smd roundrect (at -0.95 0 180) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+3.3V") (pintype "passive") (tstamp 020c95f7-698f-4078-b465-4a9b5a9febe5))
(pad "2" smd roundrect (at 0.95 0 180) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp b4537871-3a30-463a-b246-4f1b78b81425))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:TSOT-23-6" (layer "F.Cu")
(tstamp b1881c44-f706-412c-9951-18676c38d888)
(at 99.06 94.2675 90)
(descr "TSOT, 6 Pin (https://www.jedec.org/sites/default/files/docs/MO-193D.pdf variant AA), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "TSOT TO_SOT_SMD")
(property "Sheetfile" "pi_ups.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "2A, 1.1MHz Buck DC/DC Converter, fixed 5.0V output voltage, TSOT-23-6")
(property "ki_keywords" "2A Buck DC/DC")
(path "/95c6cf45-5b90-48e5-a0d5-3cb5976357f4")
(attr smd)
(fp_text reference "U2" (at 0 -2.4 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2d607e07-7504-404f-a15e-656e923ec17d)
)
(fp_text value "AP63205WU" (at 0 2.4 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp aa6d2bb6-466c-4ef6-b7ae-d9b708284e8b)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp a5c5b1d4-68da-4bb0-8401-952f3ab2a71a)
)
(fp_line (start 0 -1.56) (end -1.8 -1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 711f6f27-0c70-49be-a7ae-0fdc4e345b66))
(fp_line (start 0 -1.56) (end 0.8 -1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b96c4484-1a26-43aa-83da-fb2ac7c63f9e))
(fp_line (start 0 1.56) (end -0.8 1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d13b3664-0c21-40d1-b986-4d857b3c47f2))
(fp_line (start 0 1.56) (end 0.8 1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b0144235-b636-48a5-a52a-08eb1ad041e1))
(fp_line (start -2.05 -1.7) (end -2.05 1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4dfa072f-05c6-418a-b8c9-98837b1d917a))
(fp_line (start -2.05 1.7) (end 2.05 1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d7f2e64f-6f26-4c2c-9d77-d24d4cc98e0f))
(fp_line (start 2.05 -1.7) (end -2.05 -1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3c5d6de6-520a-4d2d-bd13-734523eb3a0b))
(fp_line (start 2.05 1.7) (end 2.05 -1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4a5689f1-b749-47be-acb8-43b3177530d6))
(fp_line (start -0.8 -1.05) (end -0.4 -1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2fe4b18a-010c-4333-87f7-2b87a59d04d6))
(fp_line (start -0.8 1.45) (end -0.8 -1.05)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp beceec6b-1751-46f0-9738-d3f9fb4b9991))
(fp_line (start -0.4 -1.45) (end 0.8 -1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 69cf9a1f-4b3e-427b-a608-036f3381d378))
(fp_line (start 0.8 -1.45) (end 0.8 1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a12b1c67-4293-4501-8734-c5311b5c7d8a))
(fp_line (start 0.8 1.45) (end -0.8 1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fd48bb1f-d00e-4e5d-ab54-541c583fa75e))
(pad "1" smd roundrect (at -1.1375 -0.95 90) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "+5V") (pinfunction "FB") (pintype "input") (tstamp 3d1c0085-c069-4bac-a7a6-5d872bae329b))
(pad "2" smd roundrect (at -1.1375 0 90) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 18 "Net-(JP1-A)") (pinfunction "EN") (pintype "input") (tstamp 60faac46-07c4-4858-bcbe-9a26539df812))
(pad "3" smd roundrect (at -1.1375 0.95 90) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "VCC") (pinfunction "IN") (pintype "power_in") (tstamp 8ad030ed-e4f8-4cf3-818c-36863e661724))
(pad "4" smd roundrect (at 1.1375 0.95 90) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp ad6e21c3-6cc0-4be4-b319-944681c96ba3))
(pad "5" smd roundrect (at 1.1375 0 90) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 14 "Net-(U2-SW)") (pinfunction "SW") (pintype "output") (tstamp 5c9a27db-9f1c-48c1-b657-0d7243310b4b))
(pad "6" smd roundrect (at 1.1375 -0.95 90) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 15 "Net-(U2-BST)") (pinfunction "BST") (pintype "passive") (tstamp 8d0aa65e-490b-43e7-981d-b9bb902aa34a))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/TSOT-23-6.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Inductor_SMD:L_0603_1608Metric" (layer "F.Cu")
(tstamp b28761fc-170c-4eb0-9ee0-defdb6b2bdd7)
(at 92.71 88.4175 -90)
(descr "Inductor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "inductor")
(property "Sheetfile" "pi_ups.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Ferrite bead, small symbol")
(property "ki_keywords" "L ferrite bead inductor filter")
(path "/b3475212-81c4-4f10-8b11-86bb26d8cd25")
(attr smd)
(fp_text reference "FB1" (at -3.3275 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a90f1268-1102-40aa-a3a4-008c2edd3428)
)
(fp_text value "FerriteBead_Small" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a24bfbaa-45e3-4d7d-bf19-ae614a839605)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp e76242b6-0330-4f97-8172-e31e2527a5f5)
)
(fp_line (start -0.162779 -0.51) (end 0.162779 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7ed8757a-1b73-4c59-809b-9770b583ff2c))
(fp_line (start -0.162779 0.51) (end 0.162779 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 94322d16-1edf-4312-b570-0c34e29121bd))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7cc6582c-66fb-4441-98df-57451f187257))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fb3ed394-f540-4e74-92d1-89bb4a76fefa))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5f66b5ac-a10b-4a7d-a6d5-2b12c6f3ca54))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8c3df6d5-624e-44ab-a6d8-78f70fb216ea))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2d9fc9d9-250e-4df0-87ee-779c91427ef9))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b1699518-1e34-4f38-8bc3-85c58e07f7a7))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 489ec623-0a79-408e-a652-b5deb2e046ce))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d8f9b20f-e1dd-499e-b0a6-357a0814aced))
(pad "1" smd roundrect (at -0.7875 0 270) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+3.3V") (pintype "passive") (tstamp fdeccd64-437b-49fb-bc6e-c996ebffc2b8))
(pad "2" smd roundrect (at 0.7875 0 270) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 13 "Net-(U1-VDD)") (pintype "passive") (tstamp 99e3f37c-1ff1-4965-9596-7dccefcacb5b))
(model "${KICAD6_3DMODEL_DIR}/Inductor_SMD.3dshapes/L_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric" (layer "F.Cu")
(tstamp b3ca705c-af02-4680-a1a6-05de39f3979a)
(at 105.664 92.014 90)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "pi_ups.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/b487b81b-c375-4a29-8b66-b81fa04b2d07")
(attr smd)
(fp_text reference "C7" (at 2.606 0.508 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1fbf4378-9f7f-434e-9639-825633bbea6c)
)
(fp_text value "22u" (at 0 1.68 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f4176299-8dd1-4ba6-8211-b3e55061ec6f)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp f8d11ce6-79f4-4c50-88e7-525a46f1f48a)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b7ed0041-099a-491a-9ec8-84d66cb69e53))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e135351d-55ee-4db5-a907-05edb6743b0c))
(fp_line (start -1.7 -0.98) (end 1.7 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7e800a00-a6b7-4836-bcf4-44737508f5be))
(fp_line (start -1.7 0.98) (end -1.7 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 907463e4-c90a-4bff-b269-d7365f81dc99))
(fp_line (start 1.7 -0.98) (end 1.7 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 173b59bd-ba04-4e49-9bbe-8c3fa7cbb7f1))
(fp_line (start 1.7 0.98) (end -1.7 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 92f00d87-da8a-4765-8cba-380546764556))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3f7e5b99-593c-4317-8002-5a9c0a965cf2))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp aa78bd0d-c96c-4587-b5c0-a014e5fc3f6a))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2f4a2d61-2395-4bd1-a427-d1d1de28646d))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 401038e0-0d2c-4c52-8938-8550d164ba0a))
(pad "1" smd roundrect (at -0.95 0 90) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp d055fa7d-b11e-444d-ad65-bfd4cff70f95))
(pad "2" smd roundrect (at 0.95 0 90) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "+5V") (pintype "passive") (tstamp 1db8154d-f4d1-42d6-8695-f06734a54df8))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_1206_3216Metric" (layer "F.Cu")
(tstamp c05d38cb-99c8-4f5a-82d7-3da2341b7f25)
(at 87.63 103.0625)
(descr "Resistor SMD 1206 (3216 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" "pi_ups.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, US symbol")
(property "ki_keywords" "R res resistor")
(path "/41fbea74-06a2-4526-ac0b-d344d64014e9")
(attr smd)
(fp_text reference "R1" (at -3.302 0.6965) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6cc0f3f3-adc9-4990-82f1-d3338e411749)
)
(fp_text value "50m" (at 0 1.82) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2188c9dc-be2c-410b-abf5-e835081acc89)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 6af4838e-d95f-45b3-8566-0df25af3c655)
)
(fp_line (start -0.727064 -0.91) (end 0.727064 -0.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7e0d3c0c-6de0-47a3-aff6-4bfd4a6bb686))
(fp_line (start -0.727064 0.91) (end 0.727064 0.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 26fdcbf1-6681-47f4-9b33-75c4c900250d))
(fp_line (start -2.28 -1.12) (end 2.28 -1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7f34a924-dac3-4745-9f87-6dd631b19e69))
(fp_line (start -2.28 1.12) (end -2.28 -1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c0da3566-1eb6-4f88-bf0d-73213ca5c93d))
(fp_line (start 2.28 -1.12) (end 2.28 1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp aaf03143-598f-46f1-afc5-63682e5da64e))
(fp_line (start 2.28 1.12) (end -2.28 1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7b9b4b7f-3107-4dcc-82ef-5c4d07693f3d))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fc892553-3df3-4f24-9a2e-f48cec539cff))
(fp_line (start -1.6 0.8) (end -1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0d6b5016-4dd1-4e8c-8b89-fe6f2f264d04))
(fp_line (start 1.6 -0.8) (end 1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9b768cd1-2d0e-4986-b49a-d41885a5e7fa))
(fp_line (start 1.6 0.8) (end -1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8ae32d85-4f55-4e90-88d4-fe83f05d286d))
(pad "1" smd roundrect (at -1.4625 0) (size 1.125 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2222222222)
(net 8 "/Bat1_i") (pintype "passive") (tstamp 24569bb4-3bc5-4715-957b-382389d383f6))
(pad "2" smd roundrect (at 1.4625 0) (size 1.125 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2222222222)
(net 12 "/GNDB") (pintype "passive") (tstamp 5aec7dcf-7635-45d4-9e0f-afa431e16cb0))
(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 "TerminalBlock:TerminalBlock_bornier-2_P5.08mm" (layer "F.Cu")
(tstamp c38b652f-0a5f-44bc-b975-8c067c0c7a09)
(at 104.14 109.22)
(descr "simple 2-pin terminal block, pitch 5.08mm, revamped version of bornier2")
(tags "terminal block bornier2")
(property "Sheetfile" "pi_ups.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic screw terminal, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "screw terminal")
(path "/1c5e80f1-3bd3-4836-9d1c-b4ad44d4c606")
(attr through_hole)
(fp_text reference "J2" (at 8.89 0.635) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b0f9cb3c-6e24-4103-8f89-7e5516bd887b)
)
(fp_text value "Screw_Terminal_01x02" (at 2.54 5.08) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0d2696fa-e367-468b-ba41-69ae3c01d812)
)
(fp_text user "${REFERENCE}" (at 2.54 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3e04ecea-9997-48a6-9ee9-1a6749452b88)
)
(fp_line (start -2.54 -3.81) (end -2.54 3.81)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a6441de6-1c0b-42f5-92d4-0944e14d5d0e))
(fp_line (start -2.54 3.81) (end 7.62 3.81)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 69c961c5-6e49-46ed-82dd-be578bc3b276))
(fp_line (start 7.62 -3.81) (end -2.54 -3.81)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fb18ac35-b13c-446b-bdd6-71bc159c270c))
(fp_line (start 7.62 2.54) (end -2.54 2.54)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3001e287-0a50-4f2a-acfd-3b0c48f8c5ee))
(fp_line (start 7.62 3.81) (end 7.62 -3.81)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e2ec513e-49af-41f6-b5d5-722bd4ec43bf))
(fp_line (start -2.71 -4) (end -2.71 4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 38d6c532-4842-46c0-b224-587b5f030554))
(fp_line (start -2.71 -4) (end 7.79 -4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6ce1707c-3012-4bce-b722-d23f238eb5f9))
(fp_line (start 7.79 4) (end -2.71 4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5a4091d7-b9ef-4fbe-bfe8-037727a6e593))
(fp_line (start 7.79 4) (end 7.79 -4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5c0b0398-4d07-47a7-b0f8-9a6e9ff61833))
(fp_line (start -2.46 -3.75) (end -2.46 3.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5efd8c4c-649b-4f7a-a6e8-d2470003f2ea))
(fp_line (start -2.46 3.75) (end 7.54 3.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5aaa8733-08a1-45ae-b21f-a5982a2af391))
(fp_line (start -2.41 2.55) (end 7.49 2.55)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp af1a9adb-f7f0-4201-86a5-f8e27856f73a))
(fp_line (start 7.54 -3.75) (end -2.46 -3.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cf915ab7-1a11-48bb-b3cc-dd57272c00e2))
(fp_line (start 7.54 3.75) (end 7.54 -3.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 54d160f0-36bb-4e22-9a0f-5311e7ddb39a))
(pad "1" thru_hole rect (at 0 0) (size 3 3) (drill 1.52) (layers "*.Cu" "*.Mask")
(net 7 "Net-(J2-Pin_1)") (pinfunction "Pin_1") (pintype "passive") (tstamp e0968cc0-500b-4ed9-9f48-c142113f641a))
(pad "2" thru_hole circle (at 5.08 0) (size 3 3) (drill 1.52) (layers "*.Cu" "*.Mask")
(net 9 "/Bat2_i") (pinfunction "Pin_2") (pintype "passive") (tstamp 4f3adfce-8f59-4350-bb2d-3cf61a467ef5))
(model "${KICAD6_3DMODEL_DIR}/TerminalBlock.3dshapes/TerminalBlock_bornier-2_P5.08mm.wrl"
(offset (xyz 2.539999962 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tstamp c729d957-deeb-44f6-b48a-d82721f4a78c)
(at 83.058 99.822)
(descr "Resistor SMD 0603 (1608 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" "pi_ups.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, US symbol")
(property "ki_keywords" "R res resistor")
(path "/7ef66b3c-4731-4bc5-be38-4685b843389e")
(attr smd)
(fp_text reference "R5" (at 0 -1.43) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9bd68bf5-4be7-42e9-abc3-a57a1d72d57d)
)
(fp_text value "100k" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4a51db4f-e231-4750-a2af-b2198abc92c9)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 31776321-c638-4b0c-94b0-913b373b7de1)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 12b093c8-68a0-4274-a97f-d2497ef93c86))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ae83e225-d0f6-42c1-bf98-002a171b267d))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0fb29b52-0675-48a2-97ca-3795a513abd4))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 459d9e00-48c6-4ab7-b624-e3ad023d6ca4))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 002be45e-b955-421d-b6f3-89e2864764af))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fbcc1b36-ffcf-412d-8f76-eeed69765890))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7ae16c72-73d2-4138-8f04-59385988a01c))