-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSolarNode.kicad_pcb
15660 lines (15517 loc) · 898 KB
/
SolarNode.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 20211014) (generator pcbnew)
(general
(thickness 1.686)
)
(paper "A4")
(title_block
(title "SolarNode")
(date "2021-12-23")
(rev "0.1")
(comment 4 "AISLER Project ID: CXRWYORN")
)
(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") (color "White"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (color "Green") (thickness 0.025))
(layer "F.Cu" (type "copper") (thickness 0.043))
(layer "dielectric 1" (type "core") (thickness 1.55) (material "FR4") (epsilon_r 4.4) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.043))
(layer "B.Mask" (type "Bottom Solder Mask") (color "Green") (thickness 0.025))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen") (color "White"))
(copper_finish "HAL lead-free")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00311fc_ffffffff)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer false)
(plotframeref false)
(viasonmask true)
(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 true)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "output/pcb/manufacture/gerber/")
)
)
(net 0 "")
(net 1 "VDC")
(net 2 "GND")
(net 3 "+BATT")
(net 4 "/BatteryCharger/VOUT")
(net 5 "/Supervisor/+VBATT_SUP")
(net 6 "VCC")
(net 7 "+3V3")
(net 8 "/LDO_EN")
(net 9 "+3.3VA")
(net 10 "/LDO_AUX_EN")
(net 11 "Net-(C24-Pad1)")
(net 12 "+5V")
(net 13 "Net-(C25-Pad2)")
(net 14 "Net-(C27-Pad1)")
(net 15 "/BOOST_EN")
(net 16 "VBUS")
(net 17 "/EN")
(net 18 "/ESP32_WROOM_32E/SOLAR_ISC_ADC")
(net 19 "/ESP32_WROOM_32E/BATT_ADC")
(net 20 "/IO0{slash}BUTTON_IO")
(net 21 "Net-(C40-Pad1)")
(net 22 "Net-(C41-Pad1)")
(net 23 "/SOLAR-")
(net 24 "/SOLAR_ISC")
(net 25 "/DC_IN")
(net 26 "Net-(D2-Pad2)")
(net 27 "/VBUS_IN")
(net 28 "/D+")
(net 29 "/D-")
(net 30 "Net-(D6-Pad2)")
(net 31 "/~{CHG}")
(net 32 "Net-(D7-Pad2)")
(net 33 "/~{PGOOD}")
(net 34 "Net-(D8-Pad2)")
(net 35 "Net-(D10-Pad2)")
(net 36 "Net-(D11-Pad2)")
(net 37 "Net-(D12-Pad2)")
(net 38 "Net-(D13-Pad2)")
(net 39 "Net-(D14-Pad2)")
(net 40 "/ESP32_WROOM_32E/~{CHG_IO}")
(net 41 "/ESP32_WROOM_32E/~{PGOOD_IO}")
(net 42 "/SOLAR+")
(net 43 "unconnected-(J2-PadMP)")
(net 44 "Net-(J3-PadA5)")
(net 45 "unconnected-(J3-PadA8)")
(net 46 "Net-(J3-PadB5)")
(net 47 "unconnected-(J3-PadB8)")
(net 48 "unconnected-(J3-PadS1)")
(net 49 "/~{CE}")
(net 50 "/ISET")
(net 51 "/IO3{slash}RXD0")
(net 52 "/IO1{slash}TXD0")
(net 53 "/IO2{slash}LED_IO")
(net 54 "/IO32{slash}XTAL_32K_P")
(net 55 "/IO33{slash}XTAL_32K_N")
(net 56 "/IO25{slash}DAC1")
(net 57 "/IO16{slash}U2RXD")
(net 58 "/IO17{slash}U2TXD")
(net 59 "/IO5{slash}SPI3CS0")
(net 60 "/IO18{slash}SPI3SCLK")
(net 61 "/IO19{slash}SPI3MISO")
(net 62 "/IO23{slash}SPI3MOSI")
(net 63 "/IO21{slash}SDA")
(net 64 "/IO22{slash}SCL")
(net 65 "/IO13{slash}MTCK")
(net 66 "/IO12{slash}MTDI")
(net 67 "/IO14{slash}MTMS")
(net 68 "/IO15{slash}MTDO")
(net 69 "-BATT")
(net 70 "unconnected-(J6-PadMP)")
(net 71 "Net-(J6-Pad1)")
(net 72 "Net-(JP3-Pad2)")
(net 73 "Net-(JP4-Pad2)")
(net 74 "Net-(JP5-Pad2)")
(net 75 "Net-(JP6-Pad2)")
(net 76 "Net-(Q1-Pad1)")
(net 77 "/USBtoUART/~{RTS}")
(net 78 "/USBtoUART/~{DTR}")
(net 79 "Net-(R8-Pad2)")
(net 80 "Net-(R10-Pad2)")
(net 81 "Net-(R11-Pad1)")
(net 82 "unconnected-(SW1-Pad3)")
(net 83 "unconnected-(SW2-Pad3)")
(net 84 "unconnected-(U3-Pad4)")
(net 85 "unconnected-(U4-Pad4)")
(net 86 "unconnected-(U6-Pad1)")
(net 87 "Net-(U6-Pad5)")
(net 88 "unconnected-(U6-Pad9)")
(net 89 "unconnected-(U6-Pad10)")
(net 90 "unconnected-(U6-Pad11)")
(net 91 "unconnected-(U6-Pad12)")
(net 92 "unconnected-(U6-Pad13)")
(net 93 "unconnected-(U6-Pad14)")
(net 94 "unconnected-(U6-Pad15)")
(net 95 "unconnected-(U6-Pad16)")
(net 96 "unconnected-(U6-Pad17)")
(net 97 "unconnected-(U6-Pad18)")
(net 98 "unconnected-(U6-Pad22)")
(net 99 "unconnected-(U6-Pad24)")
(net 100 "unconnected-(U7-Pad17)")
(net 101 "unconnected-(U7-Pad18)")
(net 102 "unconnected-(U7-Pad19)")
(net 103 "unconnected-(U7-Pad20)")
(net 104 "unconnected-(U7-Pad21)")
(net 105 "unconnected-(U7-Pad22)")
(net 106 "unconnected-(U7-Pad32)")
(net 107 "/IrradianceSensor/1.024V")
(net 108 "unconnected-(U10-Pad3)")
(net 109 "unconnected-(U10-Pad4)")
(net 110 "Net-(R15-Pad2)")
(net 111 "unconnected-(SW1-Pad6)")
(net 112 "unconnected-(SW2-Pad6)")
(net 113 "Net-(C14-Pad1)")
(net 114 "Net-(C15-Pad1)")
(footprint "Button_Switch_SMD:SW_SPST_B3U-1000P" (layer "F.Cu")
(tedit 5A02FC95) (tstamp 0153aa27-921f-417f-898e-c0e037003bab)
(at 160.274 85.344 90)
(descr "Ultra-small-sized Tactile Switch with High Contact Reliability, Top-actuated Model, without Ground Terminal, without Boss")
(tags "Tactile Switch")
(property "MPN" "B3U-1000P")
(property "Manufacturer" "Omron Electronics Inc-EMC Div")
(property "Sheetfile" "ESP32_WROOM_32E.kicad_sch")
(property "Sheetname" "ESP32_WROOM_32E")
(path "/b2732ae0-0902-4410-945a-e49794315d88/a103682e-d7fb-4f7f-aeaf-d8392acc1a3b")
(attr smd)
(fp_text reference "SW5" (at 0 -2.5 90) (layer "F.SilkS") hide
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp b94856cb-ed53-4f9a-91cc-ec73b20e97b2)
)
(fp_text value "IO0" (at 0 -2.286 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 27ae923f-ff58-4a19-ab7e-1a8fe7bd246d)
)
(fp_text user "${REFERENCE}" (at 0 -2.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 589aea8e-1124-4594-8004-4d3cf8f7cd9c)
)
(fp_line (start -1.65 1.1) (end -1.65 1.4) (layer "F.SilkS") (width 0.12) (tstamp 1b17b808-caa7-499b-9190-d98cea80aeb2))
(fp_line (start 1.65 1.4) (end 1.65 1.1) (layer "F.SilkS") (width 0.12) (tstamp 306208c0-f8e6-453f-9da1-e441526f9997))
(fp_line (start -1.65 -1.1) (end -1.65 -1.4) (layer "F.SilkS") (width 0.12) (tstamp 4366d023-861d-4d87-941c-9cc62c1a25ec))
(fp_line (start 1.65 -1.4) (end 1.65 -1.1) (layer "F.SilkS") (width 0.12) (tstamp 531c05c3-b521-48d3-88ec-0b98455b8f2d))
(fp_line (start -1.65 -1.4) (end 1.65 -1.4) (layer "F.SilkS") (width 0.12) (tstamp 5b76a550-161e-421b-8f7f-73af571c7853))
(fp_line (start -1.65 1.4) (end 1.65 1.4) (layer "F.SilkS") (width 0.12) (tstamp 775de55f-5dc0-45e5-a43e-586dd9bb91f0))
(fp_line (start 2.4 1.65) (end 2.4 -1.65) (layer "F.CrtYd") (width 0.05) (tstamp 8c20e544-c4cc-412c-a933-370a9153a608))
(fp_line (start -2.4 1.65) (end 2.4 1.65) (layer "F.CrtYd") (width 0.05) (tstamp 9a298fbc-309c-48ba-a31f-f02e07925d93))
(fp_line (start -2.4 -1.65) (end -2.4 1.65) (layer "F.CrtYd") (width 0.05) (tstamp db2c84ee-e097-4dba-bcc2-b2d816155c31))
(fp_line (start 2.4 -1.65) (end -2.4 -1.65) (layer "F.CrtYd") (width 0.05) (tstamp f925ac3e-f44a-4dfc-9407-6a5cc9f21d12))
(fp_line (start 1.5 1.25) (end -1.5 1.25) (layer "F.Fab") (width 0.1) (tstamp 369b469a-5074-4b08-85fc-158b06bcb802))
(fp_line (start 1.5 -1.25) (end 1.5 1.25) (layer "F.Fab") (width 0.1) (tstamp 45b6aa7e-3f00-41f9-928b-f71cca6961b1))
(fp_line (start -1.5 -1.25) (end 1.5 -1.25) (layer "F.Fab") (width 0.1) (tstamp 9d65f86d-8f0d-4593-b3f6-3e0e20b37bdc))
(fp_line (start -1.5 1.25) (end -1.5 -1.25) (layer "F.Fab") (width 0.1) (tstamp e447d8dc-f3e1-4462-98e4-c5acdd8df8ef))
(fp_circle (center 0 0) (end 0.75 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 05b9066d-0428-44a4-859b-343fb49e4468))
(pad "1" smd rect locked (at -1.7 0 90) (size 0.9 1.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 20 "/IO0{slash}BUTTON_IO") (pinfunction "A") (pintype "passive") (tstamp f8746523-b981-48b6-b0da-9f3279bf8025))
(pad "2" smd rect locked (at 1.7 0 90) (size 0.9 1.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "B") (pintype "passive") (tstamp ddf8f591-0d1c-4052-8199-77ed40948226))
(model "${KICAD6_3DMODEL_DIR}/Button_Switch_SMD.3dshapes/SW_SPST_B3U-1000P.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Diode_SMD:D_SOD-323" (layer "F.Cu")
(tedit 58641739) (tstamp 03b0116a-5b55-4fa6-9e99-20e3f0cf1c2e)
(at 144.018 118.872 90)
(descr "SOD-323")
(tags "SOD-323")
(property "MPN" "BAT48JFILM")
(property "Manufacturer" "STMicroelectronics")
(property "Sheetfile" "Supervisor.kicad_sch")
(property "Sheetname" "Supervisor")
(path "/136c12f3-c2e4-4465-a5a3-7a84125775bd/643e772e-f700-4790-a3ed-c7bc3c425861")
(attr smd)
(fp_text reference "D9" (at -1.27 -1.778 180) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 77c0ad11-a995-4352-9576-39667f7a1bc7)
)
(fp_text value "BAT48JFILM" (at 0.1 1.9 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4e846eb0-0fc3-4fd5-b3ed-220300b21d0f)
)
(fp_text user "${REFERENCE}" (at 0 -1.524 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8a8b4fbd-db54-4205-9f53-a28c2ae8b546)
)
(fp_line (start -1.5 0.85) (end 1.05 0.85) (layer "F.SilkS") (width 0.12) (tstamp 17dad97b-8df1-4eaf-9d6e-9a679cab9f17))
(fp_line (start -1.5 -0.85) (end -1.5 0.85) (layer "F.SilkS") (width 0.12) (tstamp bb89caee-1971-4b34-b08a-25a67fe09826))
(fp_line (start -1.5 -0.85) (end 1.05 -0.85) (layer "F.SilkS") (width 0.12) (tstamp f85e726d-6c87-43de-8e1e-9f594851b4ad))
(fp_line (start -1.6 0.95) (end 1.6 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 13d0c913-b4d4-4a66-99e3-00693b3c4d01))
(fp_line (start 1.6 -0.95) (end 1.6 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 79a09bc8-98d7-4cf9-92cf-4f525101c25b))
(fp_line (start -1.6 -0.95) (end -1.6 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 935e6244-a002-4162-989e-1b4c8eee95bc))
(fp_line (start -1.6 -0.95) (end 1.6 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp ac9be618-d029-4a80-a68f-fd83df49bf50))
(fp_line (start -0.3 0) (end 0.2 -0.35) (layer "F.Fab") (width 0.1) (tstamp 065b95b2-8326-4bcc-8b84-53e73780ad15))
(fp_line (start 0.2 0.35) (end -0.3 0) (layer "F.Fab") (width 0.1) (tstamp 2e4798e9-d06f-4e29-ae18-32dd89f621c3))
(fp_line (start 0.2 -0.35) (end 0.2 0.35) (layer "F.Fab") (width 0.1) (tstamp 3fc9b06e-4e5c-49b1-9050-b021f6165c4c))
(fp_line (start -0.9 0.7) (end -0.9 -0.7) (layer "F.Fab") (width 0.1) (tstamp 53d26bec-da1c-485e-981b-95a7dd201668))
(fp_line (start -0.3 -0.35) (end -0.3 0.35) (layer "F.Fab") (width 0.1) (tstamp 5d98e6b1-e4d6-4ecb-8ecf-feaa2b4a99f5))
(fp_line (start -0.3 0) (end -0.5 0) (layer "F.Fab") (width 0.1) (tstamp 67757212-ae15-4ac2-a2e6-76c129f9e26a))
(fp_line (start -0.9 -0.7) (end 0.9 -0.7) (layer "F.Fab") (width 0.1) (tstamp 6b3cdaaa-7b57-4162-9824-6f9da60183b2))
(fp_line (start 0.2 0) (end 0.45 0) (layer "F.Fab") (width 0.1) (tstamp 92a0d5fe-3ddb-4e6d-96b3-46e891e970cf))
(fp_line (start 0.9 -0.7) (end 0.9 0.7) (layer "F.Fab") (width 0.1) (tstamp b16db9c7-2212-4c7d-bfd6-ff0c2038b1c4))
(fp_line (start 0.9 0.7) (end -0.9 0.7) (layer "F.Fab") (width 0.1) (tstamp fb0df9fc-e4ab-4e4e-a491-0f4db966d548))
(pad "1" smd rect locked (at -1.05 0 90) (size 0.6 0.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "/Supervisor/+VBATT_SUP") (pinfunction "K") (pintype "passive") (tstamp ed759d0f-097d-4bae-9717-317b5699458a))
(pad "2" smd rect locked (at 1.05 0 90) (size 0.6 0.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "+BATT") (pinfunction "A") (pintype "passive") (tstamp e74b74f2-7b24-4043-8d51-6aa029b1015c))
(model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Button_Switch_SMD:SW_SPST_B3U-1000P" (layer "F.Cu")
(tedit 5A02FC95) (tstamp 05bfeeda-1ae3-4f8e-9872-c1c13e5cbd63)
(at 160.274 80.518 -90)
(descr "Ultra-small-sized Tactile Switch with High Contact Reliability, Top-actuated Model, without Ground Terminal, without Boss")
(tags "Tactile Switch")
(property "MPN" "B3U-1000P")
(property "Manufacturer" "Omron Electronics Inc-EMC Div")
(property "Sheetfile" "ESP32_WROOM_32E.kicad_sch")
(property "Sheetname" "ESP32_WROOM_32E")
(path "/b2732ae0-0902-4410-945a-e49794315d88/e2287032-eb32-4a45-9384-7971c1df50d6")
(attr smd)
(fp_text reference "SW4" (at 0 -2.5 90) (layer "F.SilkS") hide
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 7d2b3519-23af-4c4f-a3db-ab59da6893da)
)
(fp_text value "EN" (at 0 2.286 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c9e8ba0e-6d3e-41cf-af76-bd14ac7c94c6)
)
(fp_text user "${REFERENCE}" (at 0 -2.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7dfed57a-5b60-422f-a741-93ee94a95041)
)
(fp_line (start -1.65 1.1) (end -1.65 1.4) (layer "F.SilkS") (width 0.12) (tstamp 0dbb74d8-cd92-432f-90bf-b8fd7f044f37))
(fp_line (start -1.65 1.4) (end 1.65 1.4) (layer "F.SilkS") (width 0.12) (tstamp 3a391d0f-11ff-4915-b8e3-bbed485200b6))
(fp_line (start -1.65 -1.1) (end -1.65 -1.4) (layer "F.SilkS") (width 0.12) (tstamp 3d3aa51f-d194-4206-9e6e-d4bb10e35ac9))
(fp_line (start 1.65 -1.4) (end 1.65 -1.1) (layer "F.SilkS") (width 0.12) (tstamp b1d49c49-266a-471a-a4b8-05c14dd287b1))
(fp_line (start -1.65 -1.4) (end 1.65 -1.4) (layer "F.SilkS") (width 0.12) (tstamp d918cd96-cfbf-46ab-a67d-4dd13d74899e))
(fp_line (start 1.65 1.4) (end 1.65 1.1) (layer "F.SilkS") (width 0.12) (tstamp f36c3507-a768-442e-89f5-ca78f34cc322))
(fp_line (start -2.4 -1.65) (end -2.4 1.65) (layer "F.CrtYd") (width 0.05) (tstamp 37df9f9c-a64e-4be0-a22a-e442bc1b6f31))
(fp_line (start 2.4 -1.65) (end -2.4 -1.65) (layer "F.CrtYd") (width 0.05) (tstamp 44af3b64-a701-4495-b321-77fcd3c67ca0))
(fp_line (start -2.4 1.65) (end 2.4 1.65) (layer "F.CrtYd") (width 0.05) (tstamp 73d11db0-4015-4518-9a76-2c1f0fc29804))
(fp_line (start 2.4 1.65) (end 2.4 -1.65) (layer "F.CrtYd") (width 0.05) (tstamp d0600dde-4a12-45b4-b964-a6a16bb89788))
(fp_line (start 1.5 -1.25) (end 1.5 1.25) (layer "F.Fab") (width 0.1) (tstamp 2e20ef52-b1a3-4354-ac1f-97e80af4d93e))
(fp_line (start 1.5 1.25) (end -1.5 1.25) (layer "F.Fab") (width 0.1) (tstamp 571c3a47-3c09-48dd-9c77-da9b5d2eee38))
(fp_line (start -1.5 -1.25) (end 1.5 -1.25) (layer "F.Fab") (width 0.1) (tstamp 9a1bb573-309b-4fbe-b553-75c7bf6abf09))
(fp_line (start -1.5 1.25) (end -1.5 -1.25) (layer "F.Fab") (width 0.1) (tstamp 9ddd3e92-6880-4ca8-80fb-49ecd30c582c))
(fp_circle (center 0 0) (end 0.75 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp f607e141-8e7f-4d13-b161-3298849c27dc))
(pad "1" smd rect locked (at -1.7 0 270) (size 0.9 1.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 17 "/EN") (pinfunction "A") (pintype "passive") (tstamp c6207cb3-0ffb-40d7-a11d-c5d8448e0a4d))
(pad "2" smd rect locked (at 1.7 0 270) (size 0.9 1.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "B") (pintype "passive") (tstamp a66189e7-daae-43ed-b42c-3614f2e6abd7))
(model "${KICAD6_3DMODEL_DIR}/Button_Switch_SMD.3dshapes/SW_SPST_B3U-1000P.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Diode_SMD:D_SMA" (layer "F.Cu")
(tedit 586432E5) (tstamp 070eab83-c474-42fc-b596-6e1f86804dbc)
(at 148.844 135.382 -90)
(descr "Diode SMA (DO-214AC)")
(tags "Diode SMA (DO-214AC)")
(property "MPN" "MBRA340")
(property "Manufacturer" "onsemi")
(property "Sheetfile" "SolarNode.kicad_sch")
(property "Sheetname" "")
(path "/1df641af-882e-4b17-ba26-01bdef00c862")
(attr smd)
(fp_text reference "D3" (at -4.318 0 90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 7c14569a-e38c-42df-89cb-036a4d8f5592)
)
(fp_text value "MBRA340" (at 0 2.6 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 27294f38-fac6-4ebe-9df7-778e54c0429c)
)
(fp_text user "${REFERENCE}" (at -3.048 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b8948779-b7ba-4da5-a927-1dad4ad9af4f)
)
(fp_line (start -3.4 1.65) (end 2 1.65) (layer "F.SilkS") (width 0.12) (tstamp 728199f3-d880-4a8e-b0c5-9db7578bb109))
(fp_line (start -3.4 -1.65) (end 2 -1.65) (layer "F.SilkS") (width 0.12) (tstamp c12cb3ac-7de5-4d35-998e-b4267aa33a8e))
(fp_line (start -3.4 -1.65) (end -3.4 1.65) (layer "F.SilkS") (width 0.12) (tstamp d1a268e8-529b-490a-a452-378285b56b5d))
(fp_line (start 3.5 1.75) (end -3.5 1.75) (layer "F.CrtYd") (width 0.05) (tstamp 39304ba6-da61-4479-b1f7-5f01b8e728a9))
(fp_line (start -3.5 -1.75) (end 3.5 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 43b0d6d4-d61e-4641-812a-cc8e340e7208))
(fp_line (start -3.5 1.75) (end -3.5 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp baf89441-3e53-4474-98f5-103b79aa1a47))
(fp_line (start 3.5 -1.75) (end 3.5 1.75) (layer "F.CrtYd") (width 0.05) (tstamp ef02a60d-1f42-48e3-a567-6df9c7841373))
(fp_line (start -2.3 1.5) (end -2.3 -1.5) (layer "F.Fab") (width 0.1) (tstamp 075ca600-43b4-4e0e-8615-dd54499edb2f))
(fp_line (start 0.50118 0.75032) (end 0.50118 -0.79908) (layer "F.Fab") (width 0.1) (tstamp 082c11f9-3411-4674-8936-ae35dc584f21))
(fp_line (start -0.64944 0.00102) (end -1.55114 0.00102) (layer "F.Fab") (width 0.1) (tstamp 264fd5a3-f7f3-44b7-8a28-ecc4ceaa5217))
(fp_line (start -0.64944 0.00102) (end 0.50118 -0.79908) (layer "F.Fab") (width 0.1) (tstamp 676e6c94-3afb-4169-a7f3-492a81da61c6))
(fp_line (start 2.3 -1.5) (end -2.3 -1.5) (layer "F.Fab") (width 0.1) (tstamp 7a633e69-b897-41f7-b106-0205738f3d20))
(fp_line (start 2.3 -1.5) (end 2.3 1.5) (layer "F.Fab") (width 0.1) (tstamp 820ac2c8-6c7e-4da0-a038-9d94ea4306eb))
(fp_line (start 0.50118 0.00102) (end 1.4994 0.00102) (layer "F.Fab") (width 0.1) (tstamp 8b6f3394-849c-4078-8759-db57f653f548))
(fp_line (start 2.3 1.5) (end -2.3 1.5) (layer "F.Fab") (width 0.1) (tstamp 9de5db22-e4e0-47a6-bb6d-9ed0251229fb))
(fp_line (start -0.64944 -0.79908) (end -0.64944 0.80112) (layer "F.Fab") (width 0.1) (tstamp c96a23e6-6f33-4b0f-8ff5-5b7a29d318f9))
(fp_line (start -0.64944 0.00102) (end 0.50118 0.75032) (layer "F.Fab") (width 0.1) (tstamp dd6d40cf-e24c-457a-97c3-a9866a5ddf02))
(pad "1" smd rect locked (at -2 0 270) (size 2.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "VDC") (pinfunction "K") (pintype "passive") (tstamp 2b15aa57-4b43-40ca-9726-a9b8301407bf))
(pad "2" smd rect locked (at 2 0 270) (size 2.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 27 "/VBUS_IN") (pinfunction "A") (pintype "passive") (tstamp 57c62d81-ef7c-48c3-944d-54ba781f21f1))
(model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SMA.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "SolarNode:R_0603_1608Metric_0.65" (layer "F.Cu")
(tedit 623CA2CA) (tstamp 084064fa-5c53-4f32-a91d-27b324fb57ee)
(at 145.542 114.3 180)
(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 "MPN" "RC0603FR-07453KL")
(property "Manufacturer" "YAGEO")
(property "Sheetfile" "Supervisor.kicad_sch")
(property "Sheetname" "Supervisor")
(path "/136c12f3-c2e4-4465-a5a3-7a84125775bd/f4e8d1fe-631b-4339-803c-0f5f7cf25022")
(attr smd)
(fp_text reference "R20" (at 2.794 0.508) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 86c0b3a9-57b5-4585-8c86-327bdede09fe)
)
(fp_text value "453K" (at 0 1.43) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8c4654a1-3070-44e2-bf7a-748ae477d20c)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 56e25cd2-0f09-475b-909f-c36bdb25e3d2)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 502f5c17-c8b5-408b-b01a-e345a086efe8))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp baa789ae-af9c-4e65-928f-7cb74d7f24a7))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 169e8abd-58f2-4340-af7a-fe6a1bfd69f4))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 4c7108a7-f7c3-4057-aa62-3216ff3b4c29))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp b4fc7434-9326-4a93-854b-9f1a49142abe))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp c10dc0a8-8955-43fe-8534-187bf0420ea3))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 22837863-9c0a-46e5-af10-2bf4a60b69f3))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 46c65159-9890-4ea6-a35b-e1b9777fa1a0))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 68cec67c-89ef-485f-a375-bc4f33c0cfe6))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp e48c5d58-26d3-47ef-9b68-75752dbd988c))
(pad "1" smd roundrect (at -0.775 0 180) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 15a0b962-5cda-43f2-a8a5-088b0f67ebfb))
(pad "2" smd roundrect (at 0.775 0 180) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 114 "Net-(C15-Pad1)") (pintype "passive") (tstamp cea6bd12-cb87-4ee8-b38c-45cc32a5818a))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_2.2mm_M2" locked (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 0b41fe9d-0a27-46bb-8d13-35dc7adc7e08)
(at 127 137.16)
(descr "Mounting Hole 2.2mm, no annular, M2")
(tags "mounting hole 2.2mm no annular m2")
(property "Sheetfile" "SolarNode.kicad_sch")
(property "Sheetname" "")
(path "/fec109ea-b532-432e-82cf-e347b7286d0d")
(attr exclude_from_pos_files)
(fp_text reference "H1" (at 0 -3.2) (layer "F.SilkS") hide
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp b8733d45-a354-4aa8-9a41-c96e932a0cc3)
)
(fp_text value "MountingHole" (at 0 3.2) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7a547722-0757-4e2f-be43-95d87c7e7070)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 805e6430-947c-486d-bae1-e545d51b12c5)
)
(fp_circle (center 0 0) (end 2.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 8f6026cd-1fb3-49fb-8b86-bd492e93b258))
(fp_circle (center 0 0) (end 2.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 43ee3166-e212-4e13-87d4-d39cafbec645))
(pad "" np_thru_hole circle locked (at 0 0) (size 2.2 2.2) (drill 2.2) (layers *.Cu *.Mask) (tstamp ef977821-07a2-4f18-b82c-22e21a9b80d9))
)
(footprint "SolarNode:R_0603_1608Metric_0.65" (layer "F.Cu")
(tedit 623CA2CA) (tstamp 0c071eed-aa77-441c-94f6-e77d4f8b687e)
(at 136.906 92.202 90)
(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 "MPN" "RC0603FR-071ML")
(property "Manufacturer" "YAGEO")
(property "Sheetfile" "ESP32_WROOM_32E.kicad_sch")
(property "Sheetname" "ESP32_WROOM_32E")
(path "/b2732ae0-0902-4410-945a-e49794315d88/1af46c84-c8cb-4f6c-8092-82983c0af320")
(attr smd)
(fp_text reference "R31" (at 3.302 -1.016 270) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp a0126217-0658-4c14-9e02-f89049153ee6)
)
(fp_text value "1M" (at 0 1.43 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 044feeca-0f9d-451a-a710-e4b7258d1733)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 9a3279ff-4b0d-412e-b70b-7085469aaab7)
)
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 26774e4f-f93c-4f73-b9fd-ade697ebb321))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp b5bd2d1b-8163-4c49-96e3-b5ffab0682a4))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 250f72d2-1dab-46ec-a897-32bf8e176a02))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 70143007-f684-432e-a20b-9daf66058a79))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp ad7e88c2-fc3a-4194-86ea-0052925eb230))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp c02e8d50-479e-48b2-893a-3f1bb53fd800))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 349fb70b-786f-40bc-bb5d-8b713334225b))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 42c96f8c-2b86-4a1c-8944-413e28b08eb1))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp a5299676-6536-4310-a526-f7b6dda81322))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp f5eff54c-0371-419d-acbb-2616c079c642))
(pad "1" smd roundrect (at -0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 19 "/ESP32_WROOM_32E/BATT_ADC") (pintype "passive") (tstamp c8b9ee9e-a63a-40bb-8598-7bace7647055))
(pad "2" smd roundrect (at 0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp e7ae925f-f275-41bf-af30-1fb8cacb9fe1))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Diode_SMD:D_SMA" (layer "F.Cu")
(tedit 586432E5) (tstamp 0edf0a6c-9a31-44c3-ab9a-cabfc0a27023)
(at 145.542 135.382 -90)
(descr "Diode SMA (DO-214AC)")
(tags "Diode SMA (DO-214AC)")
(property "MPN" "MBRA340")
(property "Manufacturer" "onsemi")
(property "Sheetfile" "SolarNode.kicad_sch")
(property "Sheetname" "")
(path "/b17b8aed-dafe-4948-b434-7313ec36e784")
(attr smd)
(fp_text reference "D1" (at -1.27 2.286 -90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 9bc5fb1d-9985-42af-982d-340335cdedb3)
)
(fp_text value "MBRA340" (at 0 2.6 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cc21cb26-40b2-45ed-8a47-912305cafa36)
)
(fp_text user "${REFERENCE}" (at -3.048 0 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e1c02956-8e6a-4d41-85ce-5c87609312dd)
)
(fp_line (start -3.4 -1.65) (end 2 -1.65) (layer "F.SilkS") (width 0.12) (tstamp 7515e520-cd30-4a93-81ca-a2c63df58958))
(fp_line (start -3.4 1.65) (end 2 1.65) (layer "F.SilkS") (width 0.12) (tstamp 7b164c91-a932-4e4a-924b-026f83dfe515))
(fp_line (start -3.4 -1.65) (end -3.4 1.65) (layer "F.SilkS") (width 0.12) (tstamp 7cceb1ec-ef66-4300-b14a-a6d5885566c6))
(fp_line (start -3.5 -1.75) (end 3.5 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 0cc229e3-2d4f-49cc-b173-2ee83c4f1e6f))
(fp_line (start -3.5 1.75) (end -3.5 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 40fd78fe-f0f0-4901-ac8d-14a1805ad625))
(fp_line (start 3.5 1.75) (end -3.5 1.75) (layer "F.CrtYd") (width 0.05) (tstamp ed85af9e-5dda-46c5-b493-7796e017080c))
(fp_line (start 3.5 -1.75) (end 3.5 1.75) (layer "F.CrtYd") (width 0.05) (tstamp eea6f6ee-e7a1-44dc-8d01-f5e955033612))
(fp_line (start -0.64944 -0.79908) (end -0.64944 0.80112) (layer "F.Fab") (width 0.1) (tstamp 189d77a7-c7dc-40b0-b845-23c04e78fe1d))
(fp_line (start 0.50118 0.00102) (end 1.4994 0.00102) (layer "F.Fab") (width 0.1) (tstamp 2069e9aa-98ae-443d-a59d-33869d20b980))
(fp_line (start -0.64944 0.00102) (end 0.50118 0.75032) (layer "F.Fab") (width 0.1) (tstamp 2edda5e4-ba6d-47b7-9ca6-a3b77474b002))
(fp_line (start 2.3 1.5) (end -2.3 1.5) (layer "F.Fab") (width 0.1) (tstamp 42bd022a-557c-4a83-b1fc-85eafa770851))
(fp_line (start -0.64944 0.00102) (end -1.55114 0.00102) (layer "F.Fab") (width 0.1) (tstamp 51c4fbbd-0607-425e-ac57-57330db2f832))
(fp_line (start -0.64944 0.00102) (end 0.50118 -0.79908) (layer "F.Fab") (width 0.1) (tstamp 71097da8-8a12-4a13-8bce-8cfee32d9211))
(fp_line (start 2.3 -1.5) (end 2.3 1.5) (layer "F.Fab") (width 0.1) (tstamp 89ab2354-50e9-4daf-904f-59b428bcab34))
(fp_line (start 2.3 -1.5) (end -2.3 -1.5) (layer "F.Fab") (width 0.1) (tstamp 9bc5f846-5b97-4ac6-adeb-77112fed7b6e))
(fp_line (start -2.3 1.5) (end -2.3 -1.5) (layer "F.Fab") (width 0.1) (tstamp e22e8a0f-bb10-4b8b-b431-a9c9a85b77af))
(fp_line (start 0.50118 0.75032) (end 0.50118 -0.79908) (layer "F.Fab") (width 0.1) (tstamp ffc53cdf-0843-42ea-9e65-7e3f3817815c))
(pad "1" smd rect locked (at -2 0 270) (size 2.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "VDC") (pinfunction "K") (pintype "passive") (tstamp 2b2baf5e-85bf-4369-bff2-b37f5676798b))
(pad "2" smd rect locked (at 2 0 270) (size 2.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 25 "/DC_IN") (pinfunction "A") (pintype "passive") (tstamp 07eed643-11a7-4b55-a07d-8f8f4fe5082f))
(model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SMA.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "SolarNode:R_0603_1608Metric_0.65" (layer "F.Cu")
(tedit 623CA2CA) (tstamp 0faabe81-48ab-4fa3-95a4-be644e86817b)
(at 131.572 105.918)
(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 "MPN" "RC0603FR-0710KL")
(property "Manufacturer" "YAGEO")
(property "Sheetfile" "BatteryCharger.kicad_sch")
(property "Sheetname" "BatteryCharger")
(path "/98945077-58e1-4bfa-9871-04e47f3c7dd2/37a6f6f6-6465-4078-9fa1-7549fd979500")
(attr smd)
(fp_text reference "R8" (at -2.794 0 90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp d8af7089-4efb-4e11-a6cd-559862f15bbe)
)
(fp_text value "10K" (at 0 1.43) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d252701f-b751-4df1-91fe-49c493fda9ed)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp c81b9a71-a3fb-414d-a1e0-33362f03e3dd)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 8fc062bb-1e82-4006-b15a-e64ab4bc19c0))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp de239ec1-465e-4f6d-89b6-859f8c147093))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 04484599-72b2-44e8-a500-356de5318b3e))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 830ae23c-d182-4917-807b-fd3f827de7c9))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp a92e4eba-2a5b-4145-aff8-0e308ba1c9b9))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp c240cc00-6f2a-473b-9fc7-fe881e7ff7f2))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 704429d5-3342-4fe3-9317-92ed4d2c4c10))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 746f3fe3-10e2-41a6-8497-50187ce7b1ca))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 7e3d9de6-2f53-4595-bdc5-3d2a7735b5d5))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp ce5ad8b9-c8d7-4a11-8a2f-d0ac728c79f0))
(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 2 "GND") (pintype "passive") (tstamp 2aaed502-5735-4111-a695-0cf7f55813f2))
(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 79 "Net-(R8-Pad2)") (pintype "passive") (tstamp fde17712-9196-41da-be5b-4cb7e41fece2))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_SO:MSOP-8_3x3mm_P0.65mm" (layer "F.Cu")
(tedit 5E509FDD) (tstamp 133b181d-e453-40af-bb15-e77e27c2804d)
(at 157.226 112.268)
(descr "MSOP, 8 Pin (https://www.jedec.org/system/files/docs/mo-187F.pdf variant AA), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "MSOP SO")
(property "MPN" "OPA2356AIDGKR")
(property "Manufacturer" "Texas Instruments")
(property "Sheetfile" "IrradianceSensor.kicad_sch")
(property "Sheetname" "IrradianceSensor")
(path "/5758e8e9-9376-441f-b071-0fa07fc961ab/9ac73cf4-7116-459a-995d-b6e5371f9f90")
(attr smd)
(fp_text reference "U8" (at 0 2.286) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 7a254fe0-2e3d-4757-94a8-e8063c9b286a)
)
(fp_text value "OPA2356xxD" (at 0 2.45) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ae97490d-f048-4e9a-b0b1-b0800c2de21c)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.75 0.75) (thickness 0.11)))
(tstamp e71be2a4-ab7b-4d72-849e-f004a2eec07f)
)
(fp_line (start 0 1.61) (end 1.5 1.61) (layer "F.SilkS") (width 0.12) (tstamp 2100ec73-5fa4-4c58-9143-7ff1495b4366))
(fp_line (start 0 1.61) (end -1.5 1.61) (layer "F.SilkS") (width 0.12) (tstamp 8988aba1-cb19-4799-a6f2-044d53135f96))
(fp_line (start 0 -1.61) (end 1.5 -1.61) (layer "F.SilkS") (width 0.12) (tstamp 90274882-ac51-44d9-8a8e-8e6d4556733a))
(fp_line (start 0 -1.61) (end -2.925 -1.61) (layer "F.SilkS") (width 0.12) (tstamp fc55ca61-6415-4c57-ba53-053909e539e3))
(fp_line (start 3.18 1.75) (end 3.18 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 0ebc9132-cc8a-4baa-bcdf-c3c6d5ed01af))
(fp_line (start -3.18 1.75) (end 3.18 1.75) (layer "F.CrtYd") (width 0.05) (tstamp 38b0e256-7ab5-42c8-9eeb-5277e8612b49))
(fp_line (start -3.18 -1.75) (end -3.18 1.75) (layer "F.CrtYd") (width 0.05) (tstamp a041239d-695d-4bf9-a472-f4f5ced446b7))
(fp_line (start 3.18 -1.75) (end -3.18 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp c311f0b6-07e3-4713-8d4f-4d87e6d8a6e5))
(fp_line (start 1.5 -1.5) (end 1.5 1.5) (layer "F.Fab") (width 0.1) (tstamp 0181adf9-9c07-481c-a56c-0e5561b1c4fe))
(fp_line (start 1.5 1.5) (end -1.5 1.5) (layer "F.Fab") (width 0.1) (tstamp 13f4cb65-7e56-485e-bc70-dd33e34cd9ad))
(fp_line (start -1.5 -0.75) (end -0.75 -1.5) (layer "F.Fab") (width 0.1) (tstamp 1e9e90cf-1870-4a08-8262-1b3a409cfbfd))
(fp_line (start -1.5 1.5) (end -1.5 -0.75) (layer "F.Fab") (width 0.1) (tstamp 370438fa-5fae-4ee6-881e-4aa2df9aec55))
(fp_line (start -0.75 -1.5) (end 1.5 -1.5) (layer "F.Fab") (width 0.1) (tstamp 5c9075e4-dc9d-412e-96ed-93791b100115))
(pad "1" smd roundrect locked (at -2.1125 -0.975) (size 1.625 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 24 "/SOLAR_ISC") (pintype "output") (tstamp 795b0662-1b02-490b-b543-3688556f1619))
(pad "2" smd roundrect locked (at -2.1125 -0.325) (size 1.625 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 23 "/SOLAR-") (pinfunction "-") (pintype "input") (tstamp e74da89f-7894-4245-8995-3d140990b25a))
(pad "3" smd roundrect locked (at -2.1125 0.325) (size 1.625 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 42 "/SOLAR+") (pinfunction "+") (pintype "input") (tstamp c45e9f5f-e27d-49ab-ae2c-6262d223f826))
(pad "4" smd roundrect locked (at -2.1125 0.975) (size 1.625 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "V-") (pintype "power_in") (tstamp 8294ea36-850a-4ef2-b9cb-d076766310da))
(pad "5" smd roundrect locked (at 2.1125 0.975) (size 1.625 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 107 "/IrradianceSensor/1.024V") (pinfunction "+") (pintype "input") (tstamp b8268ce4-71ac-464b-87f8-60766d41d172))
(pad "6" smd roundrect locked (at 2.1125 0.325) (size 1.625 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 42 "/SOLAR+") (pinfunction "-") (pintype "input") (tstamp 0378c304-2ceb-400b-b714-0d6128b601fa))
(pad "7" smd roundrect locked (at 2.1125 -0.325) (size 1.625 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 42 "/SOLAR+") (pintype "output") (tstamp 00af6f0f-4ec7-4fcd-b3f5-4b264b4c395c))
(pad "8" smd roundrect locked (at 2.1125 -0.975) (size 1.625 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "+3.3VA") (pinfunction "V+") (pintype "power_in") (tstamp 3bcedeac-96a0-403a-a5e3-ef94f9a31675))
(model "${KICAD6_3DMODEL_DIR}/Package_SO.3dshapes/MSOP-8_3x3mm_P0.65mm.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")
(tedit 5F68FEEE) (tstamp 1577c5bb-51f2-44c0-b37a-419ebd057b1b)
(at 134.112 74.93 180)
(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 "MPN" "CC0603KRX7R9BB104")
(property "Manufacturer" "YAGEO")
(property "Sheetfile" "ESP32_WROOM_32E.kicad_sch")
(property "Sheetname" "ESP32_WROOM_32E")
(path "/b2732ae0-0902-4410-945a-e49794315d88/7a36b342-6e81-41ec-b264-6a409d0705e5")
(attr smd)
(fp_text reference "C33" (at 0 1.27) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 7b7e0428-6060-400c-9f82-69b340b549d3)
)
(fp_text value "0.1u" (at 0 1.43) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4c333968-2329-450f-9329-403434ec5545)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp e2ad0dc0-cc92-4fd7-9b3b-844d81e1bf43)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 356334d4-6bbb-4324-8239-9534ac54c8dd))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp b10bf03c-ea77-413a-8e2b-d6343e4e2f5f))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 03701cbd-f6d8-4fac-96ed-77fb7c47f835))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 2a3d1c00-6f2f-4876-a7b1-947a46f5e794))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 405e68cf-3847-473c-a7d9-aa9bc93c54c6))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 8a894d69-f990-4255-b742-c1e53111aead))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 90f2018c-355a-490f-bc79-78f279574fbd))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp a8fd5a77-02a0-4dcd-9438-1d63d34764ab))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp b5d3558d-fe4f-4d5e-9154-90ee6e046d75))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp eefc3485-016b-4b16-b9a0-fb639ca1a19e))
(pad "1" smd roundrect locked (at -0.775 0 180) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 18 "/ESP32_WROOM_32E/SOLAR_ISC_ADC") (pintype "passive") (tstamp 41ab6189-f044-4d5d-9db0-445f1fe16d46))
(pad "2" smd roundrect locked (at 0.775 0 180) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 1ce885e2-064c-4783-869c-4a6fa2d8db37))
(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 "SolarNode:R_0603_1608Metric_0.65" (layer "F.Cu")
(tedit 623CA2CA) (tstamp 1aea5caa-2b22-47f8-b2a3-0576cef2f055)
(at 135.128 111.76 90)
(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 "MPN" "RC0603FR-0710KL")
(property "Manufacturer" "YAGEO")
(property "Sheetfile" "BatteryCharger.kicad_sch")
(property "Sheetname" "BatteryCharger")
(path "/98945077-58e1-4bfa-9871-04e47f3c7dd2/f5196299-bf52-4fc2-99f6-a7dbc9b5991a")
(attr smd)
(fp_text reference "R15" (at 0 1.27 90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp ac99fa07-de52-40d1-a5c2-491acb2cce65)
)
(fp_text value "10K" (at 0 1.43 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 52a9171d-304a-4de0-9538-d3831eb27473)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 5202bb01-21ab-4495-a6ea-dd5c0d53f700)
)
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 39e96c61-a6c6-4af2-a40b-ff5d3cc47044))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 3d93c86c-151b-4326-b1ba-7cb1781a40b4))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 3bddef4b-4e8d-4483-ab90-874a720dd6c8))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 49e74c7c-d16f-414f-9e36-8d1148076654))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp b0b85838-c534-4324-9c12-cd37e551e62e))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp fdbf5463-423a-43df-be7c-b37f1b0a553a))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 07fc7b1e-191b-462c-a1cf-1fd95ad79e92))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp a3ee47ed-b43c-4a5b-bc77-30aeffbc3c5e))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp a646e65b-8a4e-4941-85e9-334a978835ca))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp e9150e42-0577-438f-8a60-4c8152785b92))
(pad "1" smd roundrect (at -0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 72 "Net-(JP3-Pad2)") (pintype "passive") (tstamp 110f4e4b-f378-47f0-9ea9-a7d38fa3cc41))
(pad "2" smd roundrect (at 0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 110 "Net-(R15-Pad2)") (pintype "passive") (tstamp c21d996f-879c-4e92-aee1-f4ae147d9712))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "SolarNode:R_0603_1608Metric_0.65" (layer "F.Cu")
(tedit 623CA2CA) (tstamp 1bc7c379-02cb-4d5e-967b-ca62254d068c)
(at 131.572 107.442)
(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 "MPN" "RC0603FR-075K9L")
(property "Manufacturer" "YAGEO")
(property "Sheetfile" "BatteryCharger.kicad_sch")
(property "Sheetname" "BatteryCharger")
(path "/98945077-58e1-4bfa-9871-04e47f3c7dd2/187343ec-8d03-48d8-8153-6e016779df36")
(attr smd)
(fp_text reference "R12" (at 2.032 0 90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp ed6449e8-65ee-4a05-8f13-44b60d91d88f)
)
(fp_text value "5.90K" (at 0 1.43) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ec10829c-40ea-4bd4-89c6-0e86207a84a7)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 95608da0-53e1-4377-9cbc-534021a365c4)
)
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 5447b8c5-4ef6-48d5-a60d-db6f08824d3f))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 59d32b0e-fd67-4f3f-92cb-02347a9ead15))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 11572c74-ac2e-47a5-b0c9-f2a6b9f28179))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 3efeaaf2-3243-430e-bca4-473b01f112a6))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp aedf7cb2-5d03-4c0b-bb4a-d6f37134f9b2))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp ff5d00ad-c6c7-4ec3-a9c3-d72f1bd7b3de))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 18caa3dc-1d1c-4b53-9d18-82aee1cf3d15))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 2cc2c226-f1f1-45fc-9c92-7cc5fe84b195))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp aa621718-9297-4924-a2d5-3b469df7a0be))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp d7455bb5-7fde-4735-8cf2-aba027f71324))
(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 73 "Net-(JP4-Pad2)") (pintype "passive") (tstamp 0ece439c-4c61-4756-bf50-7d4c84246b46))
(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 50 "/ISET") (pintype "passive") (tstamp 55c0083f-7679-4a5e-bff0-99334039de8c))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "SolarNode:R_0603_1608Metric_0.65" (layer "F.Cu")
(tedit 623CA2CA) (tstamp 2010c88f-7b27-4d9b-9dfe-c67dc5fe4348)
(at 149.098 114.3)
(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 "MPN" "RC0603FR-07422KL")
(property "Manufacturer" "YAGEO")
(property "Sheetfile" "Supervisor.kicad_sch")
(property "Sheetname" "Supervisor")
(path "/136c12f3-c2e4-4465-a5a3-7a84125775bd/3eb335c8-040d-4e16-bddf-878f69a028c8")
(attr smd)
(fp_text reference "R18" (at 2.54 0) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 642434e8-02e0-417b-a252-e8af6c61792e)
)
(fp_text value "422K" (at 0 1.43) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f125e61a-e1dd-4b23-bd40-17d8e6edef4e)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 6b94c34f-b9f8-4432-bd32-91c8999e4659)
)
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 1f3dfb76-eff1-4aee-b32f-822fb7c25c1d))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 4f8d0a1f-df14-439e-b467-3583b0baf1e8))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 6d0bf4b7-6e70-4b1b-96da-87185b6b1511))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 852a0887-1c41-495e-9d98-11250e0f3c5a))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 8cacf4c5-4536-4614-bb0b-6c353c8d8733))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp acc0ef6e-a5d0-4ae2-9658-5d2bf056b436))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 5537480d-c349-4f1c-a52f-477867a62420))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 82157763-4cd7-46ed-bd45-116ddf70187e))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp cf60f8ba-9828-4b63-a611-17846c84ccd4))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp d3768cc5-28ee-4db3-854a-7139ef9000c4))
(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 2 "GND") (pintype "passive") (tstamp aae7067d-9b5e-4a24-a5f6-2b78929cd219))
(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 113 "Net-(C14-Pad1)") (pintype "passive") (tstamp 7198a3da-47cd-4a96-8da6-fc2f4f97d3ec))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_THT:CP_Radial_D6.3mm_P2.50mm" (layer "F.Cu")
(tedit 61B3DE91) (tstamp 24539f83-694a-4f09-956d-48b68b367030)
(at 148.864 126.746)
(descr "CP, Radial series, Radial, pin pitch=2.50mm, , diameter=6.3mm, Electrolytic Capacitor")
(tags "CP Radial series Radial pin pitch 2.50mm diameter 6.3mm Electrolytic Capacitor")
(property "MPN" "16YXF100MEFCT16.3X11")
(property "Manufacturer" "Rubycon")
(property "Sheetfile" "SolarNode.kicad_sch")
(property "Sheetname" "")
(path "/70131001-e5f3-4015-acb0-242b5f6dbffe")
(attr through_hole)
(fp_text reference "C1" (at 1.25 -4.064 180) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 8ffe0316-9466-47db-9452-028cca177b21)
)
(fp_text value "100u" (at 1.25 4.4) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2a1ff5e8-428b-481f-bec1-86c1b9389e1b)
)
(fp_text user "${REFERENCE}" (at 1.25 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2239f724-0fa8-4eae-9f24-a2a2ae260599)
)
(fp_line (start 3.331 1.04) (end 3.331 2.484) (layer "F.SilkS") (width 0.12) (tstamp 01167a2d-bbe9-4e26-920e-d6822efd2a83))
(fp_line (start 2.331 1.04) (end 2.331 3.047) (layer "F.SilkS") (width 0.12) (tstamp 017f04ad-b977-4791-b1f6-81d7416503e1))
(fp_line (start 2.371 -3.033) (end 2.371 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 018a42d4-26ba-4ca0-9f87-aa6bd0f898ca))
(fp_line (start 3.371 -2.45) (end 3.371 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 020e348e-84c7-472d-ae7c-04a9d100e2e7))
(fp_line (start 1.61 1.04) (end 1.61 3.211) (layer "F.SilkS") (width 0.12) (tstamp 0225d4c4-26a5-4210-a1d0-753bbcfaaf18))
(fp_line (start 3.851 -1.944) (end 3.851 1.944) (layer "F.SilkS") (width 0.12) (tstamp 04f701cd-ca4e-4863-a2f3-40fe3b035a13))
(fp_line (start 3.411 1.04) (end 3.411 2.416) (layer "F.SilkS") (width 0.12) (tstamp 054efea3-d788-4925-a571-276e792ed9ff))
(fp_line (start 2.531 1.04) (end 2.531 2.97) (layer "F.SilkS") (width 0.12) (tstamp 07ceae4a-30c4-478d-9ac9-c95085c8568c))
(fp_line (start 1.73 1.04) (end 1.73 3.195) (layer "F.SilkS") (width 0.12) (tstamp 0a230cfb-8793-470f-a80a-242a8a103a1d))
(fp_line (start 2.971 1.04) (end 2.971 2.742) (layer "F.SilkS") (width 0.12) (tstamp 0b9d0c4e-ee53-48de-b68e-6498c38c9280))
(fp_line (start 3.891 -1.89) (end 3.891 1.89) (layer "F.SilkS") (width 0.12) (tstamp 0e5bc635-526b-4847-970c-9fdaf273d599))
(fp_line (start 1.53 -3.218) (end 1.53 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 0f0d75cd-ec61-4e74-b9be-376125e7da13))
(fp_line (start 3.491 -2.343) (end 3.491 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 145df2e7-a638-42d0-bad2-6385bc3b80c8))
(fp_line (start 1.77 1.04) (end 1.77 3.189) (layer "F.SilkS") (width 0.12) (tstamp 14e82064-be45-4d45-82f2-ccefd162d04a))
(fp_line (start 2.611 1.04) (end 2.611 2.934) (layer "F.SilkS") (width 0.12) (tstamp 1953b564-da1a-46c3-b413-b737aa99c5b5))
(fp_line (start 2.771 1.04) (end 2.771 2.856) (layer "F.SilkS") (width 0.12) (tstamp 1d577110-1115-4988-aaa8-0f8a6b5aa744))
(fp_line (start 1.53 1.04) (end 1.53 3.218) (layer "F.SilkS") (width 0.12) (tstamp 22b7f941-f944-4d8e-a224-3e758befee10))
(fp_line (start 4.131 -1.509) (end 4.131 1.509) (layer "F.SilkS") (width 0.12) (tstamp 2341b475-d6db-4c3f-939c-f4aad7a48985))
(fp_line (start 2.011 1.04) (end 2.011 3.141) (layer "F.SilkS") (width 0.12) (tstamp 2415664b-7ca2-4335-a0df-dbb95479034c))
(fp_line (start 2.371 1.04) (end 2.371 3.033) (layer "F.SilkS") (width 0.12) (tstamp 25f62e8a-d788-44a2-9784-0ee5f716ded6))
(fp_line (start 3.131 1.04) (end 3.131 2.636) (layer "F.SilkS") (width 0.12) (tstamp 2649868e-472f-4183-a2be-a4539b6e83f0))
(fp_line (start 1.25 -3.23) (end 1.25 3.23) (layer "F.SilkS") (width 0.12) (tstamp 265a0292-af2d-4bb4-b133-2316a667470e))
(fp_line (start 4.451 -0.633) (end 4.451 0.633) (layer "F.SilkS") (width 0.12) (tstamp 271e8485-902f-46cf-bcda-06ade18f7cfc))
(fp_line (start 3.171 -2.607) (end 3.171 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 2ac17745-4cf1-47bb-981a-602f44e254b7))
(fp_line (start 3.651 -2.182) (end 3.651 2.182) (layer "F.SilkS") (width 0.12) (tstamp 2b5dfbbb-511a-49c8-8185-b77fb6b49620))
(fp_line (start 2.891 -2.79) (end 2.891 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 2c535467-8b84-49f7-bc04-c77275672321))
(fp_line (start 1.65 -3.206) (end 1.65 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 2d5c34f3-c572-4660-861b-4bfa8c5e65d1))
(fp_line (start 1.81 -3.182) (end 1.81 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 3047a9e4-5b38-4216-9022-0a89c3859e94))
(fp_line (start 2.531 -2.97) (end 2.531 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 32f7116a-e5c1-4608-98aa-ea15b23b16f1))
(fp_line (start 2.411 -3.018) (end 2.411 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 3502274c-d636-4ebe-b642-8a8d0e42604f))
(fp_line (start 1.971 -3.15) (end 1.971 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 3835ed8a-2874-4ad8-9ec6-7da89240a648))
(fp_line (start 4.291 -1.165) (end 4.291 1.165) (layer "F.SilkS") (width 0.12) (tstamp 3b0fcd45-2395-4ed4-9e0d-49af710a4efe))
(fp_line (start 1.85 1.04) (end 1.85 3.175) (layer "F.SilkS") (width 0.12) (tstamp 3b332720-7244-4ee3-aeae-495e51a4dda0))
(fp_line (start 1.89 1.04) (end 1.89 3.167) (layer "F.SilkS") (width 0.12) (tstamp 3d4f495c-e937-4ba7-88d3-e590de06709e))
(fp_line (start 3.451 1.04) (end 3.451 2.38) (layer "F.SilkS") (width 0.12) (tstamp 3f6b990e-b0ce-4ae8-8fda-c66f0fd9ab32))
(fp_line (start 3.011 -2.716) (end 3.011 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 3ff2a85d-ecc3-4cfb-9d0f-7937777b7952))
(fp_line (start 2.291 -3.061) (end 2.291 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 416f34e0-2b6c-4e5c-9233-1ab3eb6fbd40))
(fp_line (start 2.411 1.04) (end 2.411 3.018) (layer "F.SilkS") (width 0.12) (tstamp 417a1bd4-7941-4318-8fd1-ae0a2429399b))
(fp_line (start 3.811 -1.995) (end 3.811 1.995) (layer "F.SilkS") (width 0.12) (tstamp 41f0f47f-cae6-4fa4-8b5f-348e5a4b5ba6))
(fp_line (start 1.65 1.04) (end 1.65 3.206) (layer "F.SilkS") (width 0.12) (tstamp 42e875fd-b78f-4079-aebc-f7decef3490c))
(fp_line (start 2.811 1.04) (end 2.811 2.834) (layer "F.SilkS") (width 0.12) (tstamp 48803028-cde5-4625-869d-5b649d5d2c37))
(fp_line (start 2.491 1.04) (end 2.491 2.986) (layer "F.SilkS") (width 0.12) (tstamp 49470504-0a5a-4ffd-91cc-bb40c5e2946d))
(fp_line (start 1.49 -3.222) (end 1.49 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 4ad76cae-13ef-4f91-b028-6865da15ca35))
(fp_line (start 3.171 1.04) (end 3.171 2.607) (layer "F.SilkS") (width 0.12) (tstamp 4bd20550-2139-4703-b8af-a17c78b249b0))
(fp_line (start 1.85 -3.175) (end 1.85 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 4d08c4ba-5bf9-4ba1-ba2f-941b60ac0cbe))
(fp_line (start 2.051 -3.131) (end 2.051 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 510a07b9-392b-4f4a-828d-a779317077ff))
(fp_line (start 2.731 1.04) (end 2.731 2.876) (layer "F.SilkS") (width 0.12) (tstamp 5159aa83-2163-40b4-92f6-9a78a1098b93))
(fp_line (start 1.45 -3.224) (end 1.45 3.224) (layer "F.SilkS") (width 0.12) (tstamp 54569470-dbc4-4da0-b9e0-26e82316b21c))
(fp_line (start 2.091 -3.121) (end 2.091 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 54c61549-7be4-4a87-89e8-2df7555cb1b9))
(fp_line (start 1.93 -3.159) (end 1.93 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 5506c46d-054d-4ebe-a2f0-21bf2bdd4a8a))
(fp_line (start 3.731 -2.092) (end 3.731 2.092) (layer "F.SilkS") (width 0.12) (tstamp 5abcac3f-18cd-4e1f-997d-8ccc65fabc86))
(fp_line (start 2.691 -2.896) (end 2.691 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 5c33002e-be55-4579-a4fc-24bfb6f926d9))
(fp_line (start 3.091 -2.664) (end 3.091 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 5df40fa4-6126-4706-b674-4602408aeb50))
(fp_line (start 2.451 1.04) (end 2.451 3.002) (layer "F.SilkS") (width 0.12) (tstamp 5fb89cc4-8a4f-422b-9c5b-ae38b4bc7b14))
(fp_line (start 3.051 1.04) (end 3.051 2.69) (layer "F.SilkS") (width 0.12) (tstamp 5fc6718e-9415-449b-8a31-80ca26c2b7d1))
(fp_line (start 2.491 -2.986) (end 2.491 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 62ea53fa-3604-425b-ab59-0b7f9ffe4930))
(fp_line (start 2.891 1.04) (end 2.891 2.79) (layer "F.SilkS") (width 0.12) (tstamp 62ecaa2c-6611-4395-be53-602be17f74d0))
(fp_line (start 2.211 1.04) (end 2.211 3.086) (layer "F.SilkS") (width 0.12) (tstamp 66cab850-e6f9-4925-b946-8725bd050fd4))
(fp_line (start 3.531 1.04) (end 3.531 2.305) (layer "F.SilkS") (width 0.12) (tstamp 67a36267-e970-4184-94c3-efbf0da669f9))
(fp_line (start 2.171 -3.098) (end 2.171 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 698021ad-5917-44ca-a1f9-1186cb0dc43f))
(fp_line (start 1.49 1.04) (end 1.49 3.222) (layer "F.SilkS") (width 0.12) (tstamp 6e90778a-5ef3-478c-b1f2-c1bb73c1d088))
(fp_line (start 4.331 -1.059) (end 4.331 1.059) (layer "F.SilkS") (width 0.12) (tstamp 6f285f68-107a-4951-ac37-74d644152a4f))
(fp_line (start 2.011 -3.141) (end 2.011 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 6fd38876-0e22-4ca3-a7c8-c23ff3f56d7a))
(fp_line (start 4.371 -0.94) (end 4.371 0.94) (layer "F.SilkS") (width 0.12) (tstamp 729a41bf-c8f7-489c-aad9-e86c49934c3a))
(fp_line (start 3.131 -2.636) (end 3.131 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 74757141-3b76-4893-8ede-c29d5071f18a))
(fp_line (start 1.89 -3.167) (end 1.89 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 7babfd74-8b78-4559-9b42-5a5bfa5c8056))
(fp_line (start 2.931 -2.766) (end 2.931 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 7c45cf3e-9646-4d38-bbdc-c76a309d2d36))
(fp_line (start 3.011 1.04) (end 3.011 2.716) (layer "F.SilkS") (width 0.12) (tstamp 7efaa103-eb87-4c3c-9f4e-92193dcbc5a7))
(fp_line (start 1.69 -3.201) (end 1.69 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 82b76d74-3d86-47a9-aea5-b2448b85562d))
(fp_line (start 2.851 1.04) (end 2.851 2.812) (layer "F.SilkS") (width 0.12) (tstamp 882d6744-b908-46f8-98b1-ddf14c287381))
(fp_line (start 2.571 -2.952) (end 2.571 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 883fd129-3bf1-4065-874f-01f66a8ba6d6))
(fp_line (start 4.011 -1.714) (end 4.011 1.714) (layer "F.SilkS") (width 0.12) (tstamp 8a36bd2f-9411-4173-9917-2a48f061cccc))
(fp_line (start 3.251 1.04) (end 3.251 2.548) (layer "F.SilkS") (width 0.12) (tstamp 8b023233-b181-4bb1-a21a-6168777df26e))
(fp_line (start 2.571 1.04) (end 2.571 2.952) (layer "F.SilkS") (width 0.12) (tstamp 8b2641be-ec7b-4627-a7fe-64d633cb596d))
(fp_line (start 2.931 1.04) (end 2.931 2.766) (layer "F.SilkS") (width 0.12) (tstamp 8b47aaf7-2bc0-462e-8afa-2590bfc6afa8))
(fp_line (start 3.291 1.04) (end 3.291 2.516) (layer "F.SilkS") (width 0.12) (tstamp 8ca6bb1d-6e6b-473f-9119-86ed5d08f728))
(fp_line (start 3.491 1.04) (end 3.491 2.343) (layer "F.SilkS") (width 0.12) (tstamp 95718c8d-940d-40fa-8241-f73b3fd42e93))
(fp_line (start 2.211 -3.086) (end 2.211 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 9601482c-d5f1-4702-b273-467354385bd6))
(fp_line (start 2.451 -3.002) (end 2.451 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 96183682-58c7-4933-89ce-e813723431d0))
(fp_line (start 2.731 -2.876) (end 2.731 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 96e32252-fd20-46b9-b952-13f3fa6b1cab))
(fp_line (start 3.451 -2.38) (end 3.451 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 976def1b-b601-4240-bfce-3ae0575663aa))
(fp_line (start 3.251 -2.548) (end 3.251 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 9b7d437e-c284-4820-a821-c0584573a298))
(fp_line (start 2.051 1.04) (end 2.051 3.131) (layer "F.SilkS") (width 0.12) (tstamp 9e19283b-37fd-4b3a-b0a3-058b0039ff2a))
(fp_line (start 1.81 1.04) (end 1.81 3.182) (layer "F.SilkS") (width 0.12) (tstamp 9fc4c053-fd0c-453c-884d-10eb54045d72))
(fp_line (start 2.251 -3.074) (end 2.251 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 9feffb4a-e87a-47fb-8a1b-dadec6f714f0))
(fp_line (start 2.131 1.04) (end 2.131 3.11) (layer "F.SilkS") (width 0.12) (tstamp a1188ff1-21ef-45b8-8256-8643d9c82a1a))
(fp_line (start 2.691 1.04) (end 2.691 2.896) (layer "F.SilkS") (width 0.12) (tstamp a4c32a71-51e4-40bb-9a7b-7dd163e4f35c))
(fp_line (start 3.931 -1.834) (end 3.931 1.834) (layer "F.SilkS") (width 0.12) (tstamp a5fbc354-b241-4b51-8c65-321ecbda4d38))
(fp_line (start 4.251 -1.262) (end 4.251 1.262) (layer "F.SilkS") (width 0.12) (tstamp a61a4745-60fa-462c-83bf-b1a41494d8cd))
(fp_line (start 1.971 1.04) (end 1.971 3.15) (layer "F.SilkS") (width 0.12) (tstamp a638d853-8a3c-4a40-affe-7615b2946544))
(fp_line (start 3.211 -2.578) (end 3.211 -1.04) (layer "F.SilkS") (width 0.12) (tstamp acd7c3c8-6622-4cef-8403-b0d6293239d3))
(fp_line (start 4.051 -1.65) (end 4.051 1.65) (layer "F.SilkS") (width 0.12) (tstamp ada71ec0-ed02-4f03-b08a-fed0a9b5cc3e))
(fp_line (start 2.971 -2.742) (end 2.971 -1.04) (layer "F.SilkS") (width 0.12) (tstamp ae7f24bf-6abb-48dc-85a5-ecbb33cd005a))
(fp_line (start 1.33 -3.23) (end 1.33 3.23) (layer "F.SilkS") (width 0.12) (tstamp b19ab0c2-f9fb-491c-ae79-4c9e17b3c70f))
(fp_line (start 2.611 -2.934) (end 2.611 -1.04) (layer "F.SilkS") (width 0.12) (tstamp b46922a1-a9db-4038-b0fc-7d28c20a196f))
(fp_line (start 3.291 -2.516) (end 3.291 -1.04) (layer "F.SilkS") (width 0.12) (tstamp b8e4127a-ee6d-49d5-bb84-abbca6d7438e))
(fp_line (start 2.811 -2.834) (end 2.811 -1.04) (layer "F.SilkS") (width 0.12) (tstamp ba8dc826-f5ac-4705-8374-d39ad0472133))
(fp_line (start 3.571 -2.265) (end 3.571 2.265) (layer "F.SilkS") (width 0.12) (tstamp bc98225c-bdfa-42e6-82c5-119f59499dc5))
(fp_line (start -1.839 0) (end -1.209 0) (layer "F.SilkS") (width 0.12) (tstamp c4d2555a-0103-4a33-b0a9-fc862e5445ab))
(fp_line (start 1.57 1.04) (end 1.57 3.215) (layer "F.SilkS") (width 0.12) (tstamp c4f00adc-e035-491b-b888-4111d8f3433f))
(fp_line (start 2.651 1.04) (end 2.651 2.916) (layer "F.SilkS") (width 0.12) (tstamp c521838b-b374-41c2-8157-1b04a8e0c2fb))
(fp_line (start 3.531 -2.305) (end 3.531 -1.04) (layer "F.SilkS") (width 0.12) (tstamp c526cdfc-3291-4e21-8267-05bf3518e5ae))
(fp_line (start 2.091 1.04) (end 2.091 3.121) (layer "F.SilkS") (width 0.12) (tstamp c94300ad-2367-46da-b8f5-1090251fcae8))
(fp_line (start 2.771 -2.856) (end 2.771 -1.04) (layer "F.SilkS") (width 0.12) (tstamp cba0cc89-9161-45d1-9bf1-3c613e412f4b))
(fp_line (start 3.771 -2.044) (end 3.771 2.044) (layer "F.SilkS") (width 0.12) (tstamp cbf65e9c-d997-4330-81cd-bea3009c59ff))
(fp_line (start 1.57 -3.215) (end 1.57 -1.04) (layer "F.SilkS") (width 0.12) (tstamp ce32a811-e0d9-4c5d-8da9-b17073678214))
(fp_line (start 3.091 1.04) (end 3.091 2.664) (layer "F.SilkS") (width 0.12) (tstamp ce807458-a51b-438a-b879-80cf4ea74ace))
(fp_line (start -1.524 -0.315) (end -1.524 0.315) (layer "F.SilkS") (width 0.12) (tstamp ce8c4a6c-316b-499a-8950-bba9cc11cfa5))
(fp_line (start 1.37 -3.228) (end 1.37 3.228) (layer "F.SilkS") (width 0.12) (tstamp cedf57dd-c6e3-4f64-8a2f-8505f4ccb104))
(fp_line (start 3.971 -1.776) (end 3.971 1.776) (layer "F.SilkS") (width 0.12) (tstamp d054bb67-38b9-4347-a476-1d85a5b7f843))
(fp_line (start 2.851 -2.812) (end 2.851 -1.04) (layer "F.SilkS") (width 0.12) (tstamp d0eb6e79-b340-4de8-a183-6cfd0d4359d4))
(fp_line (start 4.091 -1.581) (end 4.091 1.581) (layer "F.SilkS") (width 0.12) (tstamp d31763c4-4f39-4e03-bd3a-6bc3ea0599a4))
(fp_line (start 1.77 -3.189) (end 1.77 -1.04) (layer "F.SilkS") (width 0.12) (tstamp d782739f-8be0-4fb4-9c4b-36680ff67d03))
(fp_line (start 3.331 -2.484) (end 3.331 -1.04) (layer "F.SilkS") (width 0.12) (tstamp db32b85f-32bd-4ba2-849f-0c9e252ad009))
(fp_line (start 2.331 -3.047) (end 2.331 -1.04) (layer "F.SilkS") (width 0.12) (tstamp db9220df-fafd-45ff-8d00-3eb02d068a3e))
(fp_line (start 2.251 1.04) (end 2.251 3.074) (layer "F.SilkS") (width 0.12) (tstamp ddc97cab-34ed-49fd-b8f1-ea13c2d21327))
(fp_line (start 2.131 -3.11) (end 2.131 -1.04) (layer "F.SilkS") (width 0.12) (tstamp df44a5d2-be3e-4141-8565-cac9cc9b605c))
(fp_line (start 1.61 -3.211) (end 1.61 -1.04) (layer "F.SilkS") (width 0.12) (tstamp df54686d-2efc-4033-bc8d-054d363df78c))
(fp_line (start 2.291 1.04) (end 2.291 3.061) (layer "F.SilkS") (width 0.12) (tstamp e0a5bdfd-8139-4b9a-97a9-8868d798dcb0))
(fp_line (start 3.611 -2.224) (end 3.611 2.224) (layer "F.SilkS") (width 0.12) (tstamp e10e0819-e2bc-4161-9190-210a9ad12c94))
(fp_line (start 4.211 -1.35) (end 4.211 1.35) (layer "F.SilkS") (width 0.12) (tstamp e25c3151-a37d-4a87-9a51-d9ec60dfd3f6))