-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy path3.2.kicad_pcb
10924 lines (10853 loc) · 574 KB
/
3.2.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 20210606) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
)
(setup
(pad_to_mask_clearance 0)
(aux_axis_origin 105.5 84.5)
(pcbplotparams
(layerselection 0x00010f0_ffffffff)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "../Gerber/")
)
)
(net 0 "")
(net 1 "GND")
(net 2 "RST")
(net 3 "RGB")
(net 4 "unconnected-(D41-Pad1)")
(net 5 "unconnected-(D42-Pad1)")
(net 6 "SCLK")
(net 7 "MISO_DQ1")
(net 8 "MOSI_DQ0")
(net 9 "CS")
(net 10 "thumb_GND")
(net 11 "bridge_GND")
(net 12 "Net-(R3-Pad2)")
(net 13 "BLUE")
(net 14 "Net-(D1-Pad1)")
(net 15 "VBUS")
(net 16 "Net-(D2-Pad1)")
(net 17 "EXT_VCC")
(net 18 "SWC")
(net 19 "SWD")
(net 20 "VDD")
(net 21 "unconnected-(J2-PadA8)")
(net 22 "Net-(J2-PadA5)")
(net 23 "D-")
(net 24 "D+")
(net 25 "unconnected-(J2-PadB8)")
(net 26 "Net-(J2-PadB5)")
(net 27 "unconnected-(J2-PadS1)")
(net 28 "BAT")
(net 29 "VCC_SWITCH")
(net 30 "BAT_MEAS")
(net 31 "Net-(R6-Pad2)")
(net 32 "Net-(R10-Pad1)")
(net 33 "unconnected-(J3-Pad3)")
(net 34 "thumb_BAT")
(net 35 "Net-(J6-Pad6)")
(net 36 "Net-(J6-Pad5)")
(net 37 "Net-(J6-Pad4)")
(net 38 "Net-(J6-Pad3)")
(net 39 "bridge_BAT")
(net 40 "MCU_BAT")
(net 41 "unconnected-(J4-Pad3)")
(net 42 "unconnected-(SW3-Pad3)")
(net 43 "SDA")
(net 44 "SCL")
(net 45 "K20")
(net 46 "K19")
(net 47 "K18")
(net 48 "thumb_K20")
(net 49 "thumb_K19")
(net 50 "thumb_K18")
(net 51 "K1")
(net 52 "K2")
(net 53 "K3")
(net 54 "K4")
(net 55 "K5")
(net 56 "K6")
(net 57 "K7")
(net 58 "K8")
(net 59 "K9")
(net 60 "K10")
(net 61 "K11")
(net 62 "K12")
(net 63 "K13")
(net 64 "K14")
(net 65 "K15")
(net 66 "K16")
(net 67 "K17")
(net 68 "unconnected-(SW4-Pad3)")
(net 69 "unconnected-(U1-Pad2)")
(net 70 "Net-(D3-Pad1)")
(net 71 "unconnected-(U1-Pad3)")
(net 72 "unconnected-(U1-Pad4)")
(net 73 "unconnected-(U1-Pad5)")
(net 74 "unconnected-(U1-Pad7)")
(net 75 "unconnected-(U1-Pad8)")
(net 76 "unconnected-(U1-Pad9)")
(net 77 "unconnected-(U1-Pad10)")
(net 78 "unconnected-(U1-Pad11)")
(net 79 "unconnected-(U1-Pad14)")
(net 80 "unconnected-(U1-Pad15)")
(net 81 "unconnected-(U1-Pad17)")
(net 82 "unconnected-(U1-Pad19)")
(net 83 "unconnected-(U1-Pad21)")
(net 84 "unconnected-(U1-Pad23)")
(net 85 "Net-(J5-Pad4)")
(net 86 "Net-(J5-Pad3)")
(net 87 "Net-(J5-Pad2)")
(net 88 "Net-(J5-Pad1)")
(footprint "Button_Switch_SMD:SW_SPST_B3U-1000P" (layer "F.Cu")
(tedit 5A02FC95) (tstamp 00000000-0000-0000-0000-00005e0123f6)
(at 27.45 64.8 90)
(descr "Ultra-small-sized Tactile Switch with High Contact Reliability, Top-actuated Model, without Ground Terminal, without Boss")
(tags "Tactile Switch")
(property "Sheetfile" "fissure.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005fe5a6e1")
(attr smd)
(fp_text reference "SW1" (at 0 -2.5 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 634bc49e-8ee1-40e6-b351-d12d0993410e)
)
(fp_text value "SW_Push" (at 0 2.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b4eb64fd-f674-4ba6-afd5-6136a5bc2979)
)
(fp_text user "${REFERENCE}" (at 0 -2.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8e35ac80-5e26-4e89-9301-98a1d4705112)
)
(fp_line (start -1.65 -1.4) (end 1.65 -1.4) (layer "F.SilkS") (width 0.12) (tstamp 0ed7fcba-e1a0-49a1-99e6-40167b87bc0a))
(fp_line (start -1.65 -1.1) (end -1.65 -1.4) (layer "F.SilkS") (width 0.12) (tstamp 248ecbd7-d43e-42ba-989b-998e124fcf3a))
(fp_line (start 1.65 1.4) (end 1.65 1.1) (layer "F.SilkS") (width 0.12) (tstamp 3922ab5e-d5e7-4dfc-b01b-5f67ffd09c0a))
(fp_line (start 1.65 -1.4) (end 1.65 -1.1) (layer "F.SilkS") (width 0.12) (tstamp 486cd513-d14d-46ff-8f25-1d3b8e51a879))
(fp_line (start -1.65 1.4) (end 1.65 1.4) (layer "F.SilkS") (width 0.12) (tstamp 59c6e60f-2785-4d06-9dba-e97370b43798))
(fp_line (start -1.65 1.1) (end -1.65 1.4) (layer "F.SilkS") (width 0.12) (tstamp df31171b-7b2c-4051-99d6-5bebb188b1ac))
(fp_line (start -2.4 -1.65) (end -2.4 1.65) (layer "F.CrtYd") (width 0.05) (tstamp 5ded6b2f-80aa-4ff6-9722-dff42ee03de8))
(fp_line (start 2.4 1.65) (end 2.4 -1.65) (layer "F.CrtYd") (width 0.05) (tstamp 6d00fe33-2ea2-48f6-97b5-9f47020f9e38))
(fp_line (start 2.4 -1.65) (end -2.4 -1.65) (layer "F.CrtYd") (width 0.05) (tstamp c1f2eb4d-3c6c-46f0-b6de-6ba8a8bf9a30))
(fp_line (start -2.4 1.65) (end 2.4 1.65) (layer "F.CrtYd") (width 0.05) (tstamp d3317f38-e7b7-4dac-8d93-e300bdbebe40))
(fp_line (start 1.5 1.25) (end -1.5 1.25) (layer "F.Fab") (width 0.1) (tstamp 0d52241c-bdb6-4193-a0a3-c9ca5310d5ac))
(fp_line (start 1.5 -1.25) (end 1.5 1.25) (layer "F.Fab") (width 0.1) (tstamp 4ecbd451-9cc0-424b-b4c6-45f259174c40))
(fp_line (start -1.5 1.25) (end -1.5 -1.25) (layer "F.Fab") (width 0.1) (tstamp 5b6ebaf1-ef26-45cd-9419-0ab89011ac38))
(fp_line (start -1.5 -1.25) (end 1.5 -1.25) (layer "F.Fab") (width 0.1) (tstamp 6953605d-0f9d-458f-8f5b-f1971c958768))
(fp_circle (center 0 0) (end 0.75 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 997c9952-af99-49f8-93eb-16bc8d927fe7))
(pad "1" smd rect locked (at -1.7 0 90) (size 0.9 1.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "RST") (pinfunction "1") (pintype "passive") (tstamp 57927ff2-8924-4513-8ca7-1f1086b58909))
(pad "2" smd rect locked (at 1.7 0 90) (size 0.9 1.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "2") (pintype "passive") (tstamp 10e86f10-e7d0-4f72-976c-7840cf51cfb7))
(model "${KISYS3DMOD}/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 "LED_SMD:LED_SK6812MINI_PLCC4_3.5x3.5mm_P1.75mm" (layer "F.Cu")
(tedit 5AA4B22F) (tstamp 00000000-0000-0000-0000-00005e0421e2)
(at 130 83.5 90)
(descr "https://cdn-shop.adafruit.com/product-files/2686/SK6812MINI_REV.01-1-2.pdf")
(tags "LED RGB NeoPixel Mini")
(property "Sheetfile" "fissure.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005ffc6862")
(attr smd)
(fp_text reference "D41" (at 0 -2.75 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp eda8ea4c-0b2f-48d6-97f5-715a7d7308e2)
)
(fp_text value "SK6812MINI" (at 0 3.25 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7ac3be73-b2c7-4fc0-abe1-7f5780ccd4a1)
)
(fp_text user "1" (at -3.5 -0.875 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4fa1c37e-e5e3-4e19-96d9-49964fb9d613)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp 70725685-c350-42eb-a4fc-8e56d96c7da4)
)
(fp_line (start 2.95 1.95) (end 2.95 0.875) (layer "F.SilkS") (width 0.12) (tstamp 0c116b7e-f6ed-4736-939a-6d841c1e92f4))
(fp_line (start -2.95 1.95) (end 2.95 1.95) (layer "F.SilkS") (width 0.12) (tstamp 24bb47dd-b9df-4e8e-8bfb-663c6ff185e2))
(fp_line (start -2.95 -1.95) (end 2.95 -1.95) (layer "F.SilkS") (width 0.12) (tstamp e8620172-840a-47f1-b6dd-97bc7d9f7e16))
(fp_line (start 2.8 2) (end 2.8 -2) (layer "F.CrtYd") (width 0.05) (tstamp 4d5054aa-f6f9-4260-b08f-c97718018e6b))
(fp_line (start -2.8 2) (end 2.8 2) (layer "F.CrtYd") (width 0.05) (tstamp 73033964-2b7c-46c1-9277-de10666df3d4))
(fp_line (start 2.8 -2) (end -2.8 -2) (layer "F.CrtYd") (width 0.05) (tstamp ac032721-3797-4848-b601-d374976ae4da))
(fp_line (start -2.8 -2) (end -2.8 2) (layer "F.CrtYd") (width 0.05) (tstamp bc831c04-458b-43fc-b449-103f6ec81532))
(fp_line (start 1.75 -1.75) (end -1.75 -1.75) (layer "F.Fab") (width 0.1) (tstamp 34328b5c-8759-45bb-b88d-f38054018aa2))
(fp_line (start 1.75 1.75) (end 1.75 -1.75) (layer "F.Fab") (width 0.1) (tstamp 4dd70ad2-289f-4544-9dbe-ae0a46ce239e))
(fp_line (start 1.75 0.75) (end 0.75 1.75) (layer "F.Fab") (width 0.1) (tstamp 6bc47cc8-99bc-44b9-99ad-7da1f1b5cc7c))
(fp_line (start -1.75 1.75) (end 1.75 1.75) (layer "F.Fab") (width 0.1) (tstamp d6541650-d6e3-4f12-a7bb-3e9072948442))
(fp_line (start -1.75 -1.75) (end -1.75 1.75) (layer "F.Fab") (width 0.1) (tstamp e508b979-aa1c-4663-90d9-46883daeac32))
(fp_circle (center 0 0) (end 0 -1.5) (layer "F.Fab") (width 0.1) (fill none) (tstamp a7235f36-5b6e-4989-9ea4-cd5181e59c23))
(pad "1" smd rect locked (at -1.75 -0.875 90) (size 1.6 0.85) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "unconnected-(D41-Pad1)") (pinfunction "DOUT") (pintype "output") (tstamp 92a0f748-7d42-4a8a-96b8-70e8caf5b47b))
(pad "2" smd rect locked (at -1.75 0.875 90) (size 1.6 0.85) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp 545e0493-487b-4da5-9140-881c3ce5ea13))
(pad "3" smd rect locked (at 1.75 0.875 90) (size 1.6 0.85) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "RGB") (pinfunction "DIN") (pintype "input") (tstamp 9ec51029-f6c7-4d05-b874-9a993d1f0bba))
(pad "4" smd rect locked (at 1.75 -0.875 90) (size 1.6 0.85) (layers "F.Cu" "F.Paste" "F.Mask")
(net 17 "EXT_VCC") (pinfunction "VDD") (pintype "power_in") (tstamp a798897c-4018-4f96-b77f-8e36bcdfadca))
(model "${KISYS3DMOD}/LED_SMD.3dshapes/LED_SK6812MINI_PLCC4_3.5x3.5mm_P1.75mm.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 00000000-0000-0000-0000-00006041f020)
(at 33.45 76.65 180)
(descr "SOD-323")
(tags "SOD-323")
(property "Sheetfile" "fissure.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000605a65a8")
(attr smd)
(fp_text reference "D3" (at 2.7 -1.1 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9ebe85ab-4b93-4e0e-bcee-f4be80d9e945)
)
(fp_text value "1N5819" (at 0.1 1.9) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5f3e4074-5d59-496d-ba0c-752a6d7318e4)
)
(fp_text user "${REFERENCE}" (at 0 -1.85) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp be2de3c5-cdb7-4689-ac7f-229182324e81)
)
(fp_line (start -1.5 0.85) (end 1.05 0.85) (layer "F.SilkS") (width 0.12) (tstamp 692b3533-9d11-451a-a80c-c0cdbd9f5a2d))
(fp_line (start -1.5 -0.85) (end 1.05 -0.85) (layer "F.SilkS") (width 0.12) (tstamp a3874d93-69c7-46b9-ae80-6fa396799150))
(fp_line (start -1.5 -0.85) (end -1.5 0.85) (layer "F.SilkS") (width 0.12) (tstamp af7aae47-1615-46e3-a194-9a2c0408f276))
(fp_line (start -1.6 0.95) (end 1.6 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 0a8cb3bd-3c52-40bb-b9bf-ccdf01efc68c))
(fp_line (start -1.6 -0.95) (end -1.6 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 372b903a-7512-485e-9626-f23225604db0))
(fp_line (start 1.6 -0.95) (end 1.6 0.95) (layer "F.CrtYd") (width 0.05) (tstamp a4c9d77d-841d-42a4-adfb-1faf8fa18a20))
(fp_line (start -1.6 -0.95) (end 1.6 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp ea026b85-ab05-4a4d-8d1c-5ea58e359ccc))
(fp_line (start -0.3 0) (end 0.2 -0.35) (layer "F.Fab") (width 0.1) (tstamp 1a0cd61b-940a-4b75-99a0-da62847f2021))
(fp_line (start 0.2 0) (end 0.45 0) (layer "F.Fab") (width 0.1) (tstamp 36e8e794-43fe-46cf-80e5-58d768128e5f))
(fp_line (start -0.3 0) (end -0.5 0) (layer "F.Fab") (width 0.1) (tstamp 4ac8826e-5751-4455-aa95-44f3fc6af67f))
(fp_line (start -0.9 0.7) (end -0.9 -0.7) (layer "F.Fab") (width 0.1) (tstamp 81c2c367-95bb-4017-a1c9-56337f8d4963))
(fp_line (start 0.2 -0.35) (end 0.2 0.35) (layer "F.Fab") (width 0.1) (tstamp 8cf89828-001f-45d2-a679-776124079c8a))
(fp_line (start 0.9 -0.7) (end 0.9 0.7) (layer "F.Fab") (width 0.1) (tstamp d6ba662e-6c01-482f-8c0e-7fd6fbed1ab0))
(fp_line (start -0.3 -0.35) (end -0.3 0.35) (layer "F.Fab") (width 0.1) (tstamp d823ba80-69cf-4de3-a055-771b50b59764))
(fp_line (start -0.9 -0.7) (end 0.9 -0.7) (layer "F.Fab") (width 0.1) (tstamp e1cad2f5-daa5-489e-a6b5-6379dd667d26))
(fp_line (start 0.2 0.35) (end -0.3 0) (layer "F.Fab") (width 0.1) (tstamp f1241d51-1169-40bd-9de1-f6b7fa049f8d))
(fp_line (start 0.9 0.7) (end -0.9 0.7) (layer "F.Fab") (width 0.1) (tstamp fd82c444-7b3f-4983-9381-73a208dddc8b))
(pad "1" smd rect locked (at -1.05 0 180) (size 0.6 0.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 70 "Net-(D3-Pad1)") (pinfunction "K") (pintype "passive") (tstamp d0c24894-24d2-46d5-9ed2-40b5a543e29f))
(pad "2" smd rect locked (at 1.05 0 180) (size 0.6 0.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 15 "VBUS") (pinfunction "A") (pintype "passive") (tstamp bfb43e16-43ca-42a4-b998-e9f7d07e01ba))
(model "${KISYS3DMOD}/Diode_SMD.3dshapes/D_SOD-323.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_USB:USB_C_Receptacle_HRO_TYPE-C-31-M-12" (layer "F.Cu")
(tedit 5D3C0721) (tstamp 00000000-0000-0000-0000-00006041f0b8)
(at 57 60.1 180)
(descr "USB Type-C receptacle for USB 2.0 and PD, http://www.krhro.com/uploads/soft/180320/1-1P320120243.pdf")
(tags "usb usb-c 2.0 pd")
(property "Sheetfile" "fissure.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00006046a0e8")
(attr smd)
(fp_text reference "J2" (at 0 -5.645) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4c2c5529-87ee-47a7-8a31-e562365cc5fe)
)
(fp_text value "USB_C_Receptacle_USB2.0" (at 0 5.1) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3fc3da72-2266-4333-9838-07ea0f457c70)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bae82e18-a549-42aa-8299-db3b6fede557)
)
(fp_line (start -4.7 -1.9) (end -4.7 0.1) (layer "F.SilkS") (width 0.12) (tstamp 3ec97d64-b481-4cb1-9c71-e8d4657759bc))
(fp_line (start 4.7 -1.9) (end 4.7 0.1) (layer "F.SilkS") (width 0.12) (tstamp 6ec7638b-659c-4207-9874-250fe63814c1))
(fp_line (start -4.7 3.9) (end 4.7 3.9) (layer "F.SilkS") (width 0.12) (tstamp 8c2dbfa3-cab3-4725-bb2a-66064b26fb4a))
(fp_line (start 4.7 2) (end 4.7 3.9) (layer "F.SilkS") (width 0.12) (tstamp aa35404c-fc14-4968-a6b4-44b973198260))
(fp_line (start -4.7 2) (end -4.7 3.9) (layer "F.SilkS") (width 0.12) (tstamp eb3726ce-2bf8-4401-9fa3-194508da3def))
(fp_line (start 5.32 -5.27) (end 5.32 4.15) (layer "F.CrtYd") (width 0.05) (tstamp 150ac662-8693-4e32-abdd-d6d87349c66d))
(fp_line (start -5.32 4.15) (end 5.32 4.15) (layer "F.CrtYd") (width 0.05) (tstamp 22a23b06-dd1e-4752-ba48-df6bf96beb3c))
(fp_line (start -5.32 -5.27) (end -5.32 4.15) (layer "F.CrtYd") (width 0.05) (tstamp 4c062750-15e9-49ba-b89f-725298c31b6e))
(fp_line (start -5.32 -5.27) (end 5.32 -5.27) (layer "F.CrtYd") (width 0.05) (tstamp c32ca6e0-5880-416a-beaa-d07fe81feb4c))
(fp_line (start -4.47 3.65) (end 4.47 3.65) (layer "F.Fab") (width 0.1) (tstamp 7edbf8b4-9492-4ab5-a1ac-f025bcbb8e89))
(fp_line (start 4.47 -3.65) (end 4.47 3.65) (layer "F.Fab") (width 0.1) (tstamp 9263699d-69dc-4a89-91de-6926694155f8))
(fp_line (start -4.47 -3.65) (end 4.47 -3.65) (layer "F.Fab") (width 0.1) (tstamp afee37bd-16ff-4cfd-9f15-d9479f23892c))
(fp_line (start -4.47 -3.65) (end -4.47 3.65) (layer "F.Fab") (width 0.1) (tstamp ecb53700-c88a-4cd2-9202-2ff204667255))
(pad "" np_thru_hole circle locked (at 2.89 -2.6 180) (size 0.65 0.65) (drill 0.65) (layers *.Cu *.Mask) (tstamp 20f0af01-fbd5-49d3-8e4c-436cbec8f47b))
(pad "" np_thru_hole circle locked (at -2.89 -2.6 180) (size 0.65 0.65) (drill 0.65) (layers *.Cu *.Mask) (tstamp e0cd6dd8-e73d-4f2b-b578-e2e41a1b379c))
(pad "A1" smd rect locked (at -3.25 -4.045 180) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp 87baa175-dc7f-456d-a460-e29650fe5239))
(pad "A4" smd rect locked (at -2.45 -4.045 180) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 15 "VBUS") (pinfunction "VBUS") (pintype "passive") (tstamp a7aa0ca3-1f7b-44c0-8a99-dbd9b611bc11))
(pad "A5" smd rect locked (at -1.25 -4.045 180) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 22 "Net-(J2-PadA5)") (pinfunction "CC1") (pintype "bidirectional") (tstamp 7d651bd8-4ddd-49f6-a5c4-d8031e44f42f))
(pad "A6" smd rect locked (at -0.25 -4.045 180) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 24 "D+") (pinfunction "D+") (pintype "bidirectional") (tstamp 36a43a4b-81b7-4f34-a72d-612d40821d81))
(pad "A7" smd rect locked (at 0.25 -4.045 180) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 23 "D-") (pinfunction "D-") (pintype "bidirectional") (tstamp 95723f9b-5297-4a59-9ec6-794c51c672da))
(pad "A8" smd rect locked (at 1.25 -4.045 180) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 21 "unconnected-(J2-PadA8)") (pinfunction "SBU1") (pintype "bidirectional+no_connect") (tstamp e05f8153-8b0c-4b9e-87b8-a09c5182eb4f))
(pad "A9" smd rect locked (at 2.45 -4.045 180) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 15 "VBUS") (pinfunction "VBUS") (pintype "passive") (tstamp f59cde5e-9511-4bc3-81a0-d3566ee65f08))
(pad "A12" smd rect locked (at 3.25 -4.045 180) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp d6379df8-6b59-4ce8-9963-76a2d593b533))
(pad "B1" smd rect locked (at 3.25 -4.045 180) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp b4e16ed5-a781-42a4-9e59-70a841e4c815))
(pad "B4" smd rect locked (at 2.45 -4.045 180) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 15 "VBUS") (pinfunction "VBUS") (pintype "passive") (tstamp 8ba41116-6b79-4fc8-aaba-06ea36acafe8))
(pad "B5" smd rect locked (at 1.75 -4.045 180) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 26 "Net-(J2-PadB5)") (pinfunction "CC2") (pintype "bidirectional") (tstamp a6bdd966-9b95-405a-8f5d-393c7cccfe22))
(pad "B6" smd rect locked (at 0.75 -4.045 180) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 24 "D+") (pinfunction "D+") (pintype "bidirectional") (tstamp 46baeb44-0667-46f1-980e-3099d9705071))
(pad "B7" smd rect locked (at -0.75 -4.045 180) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 23 "D-") (pinfunction "D-") (pintype "bidirectional") (tstamp 120c4ad4-c0c4-4675-8ea9-41df4e1b2878))
(pad "B8" smd rect locked (at -1.75 -4.045 180) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 25 "unconnected-(J2-PadB8)") (pinfunction "SBU2") (pintype "bidirectional+no_connect") (tstamp f5164b53-aafe-48ff-bda1-87527f72bc4f))
(pad "B9" smd rect locked (at -2.45 -4.045 180) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 15 "VBUS") (pinfunction "VBUS") (pintype "passive") (tstamp 86323a13-56dc-455d-abe8-a86aa538ab5a))
(pad "B12" smd rect locked (at -3.25 -4.045 180) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp 512e89ba-f048-45c5-94e1-5367c0a75e60))
(pad "S1" thru_hole oval locked (at 4.32 -3.13 180) (size 1 2.1) (drill oval 0.6 1.7) (layers *.Cu *.Mask)
(net 27 "unconnected-(J2-PadS1)") (pinfunction "SHIELD") (pintype "passive+no_connect") (tstamp 10dcbef3-dd0d-4291-89ed-da598997d3a6))
(pad "S1" thru_hole oval locked (at 4.32 1.05 180) (size 1 1.6) (drill oval 0.6 1.2) (layers *.Cu *.Mask)
(net 27 "unconnected-(J2-PadS1)") (pinfunction "SHIELD") (pintype "passive+no_connect") (tstamp 6bd203a1-7d89-49fd-97a7-79ed208a886f))
(pad "S1" thru_hole oval locked (at -4.32 1.05 180) (size 1 1.6) (drill oval 0.6 1.2) (layers *.Cu *.Mask)
(net 27 "unconnected-(J2-PadS1)") (pinfunction "SHIELD") (pintype "passive+no_connect") (tstamp 84551639-ac7e-4952-98a5-345f57558271))
(pad "S1" thru_hole oval locked (at -4.32 -3.13 180) (size 1 2.1) (drill oval 0.6 1.7) (layers *.Cu *.Mask)
(net 27 "unconnected-(J2-PadS1)") (pinfunction "SHIELD") (pintype "passive+no_connect") (tstamp 99982bf3-f61d-41ef-8948-e3b45d51de3e))
(model "/home/steven/Downloads/HRO_TYPE-C-31-M-12.step"
(offset (xyz -4.5 -3.5 0))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-23" (layer "F.Cu")
(tedit 5A02FF57) (tstamp 00000000-0000-0000-0000-00006041fa53)
(at 33.6 74 90)
(descr "SOT-23, Standard")
(tags "SOT-23")
(property "Sheetfile" "fissure.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000605913b0")
(attr smd)
(fp_text reference "Q1" (at -1.55 2.7 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 448bcfed-c484-4768-b037-8d8fbef3cf32)
)
(fp_text value "AO3401A" (at 0 2.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 16a7d466-2053-4063-be63-439ea86b1747)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp a799037d-35f4-44c0-8db0-22508a25ebcc)
)
(fp_line (start 0.76 -1.58) (end -1.4 -1.58) (layer "F.SilkS") (width 0.12) (tstamp 65e2d51e-3a1e-467e-b5d0-469410fcd344))
(fp_line (start 0.76 1.58) (end 0.76 0.65) (layer "F.SilkS") (width 0.12) (tstamp 7d8e6044-5a3a-4e74-af85-da0a77b0c3f7))
(fp_line (start 0.76 -1.58) (end 0.76 -0.65) (layer "F.SilkS") (width 0.12) (tstamp ab73e5f8-55db-4de9-ae73-76e73f1ea2a0))
(fp_line (start 0.76 1.58) (end -0.7 1.58) (layer "F.SilkS") (width 0.12) (tstamp c59e8858-a6bd-4966-87a1-fbf90ed622a6))
(fp_line (start -1.7 1.75) (end -1.7 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp a7c1914d-5507-4f5f-8fda-1576b33444a0))
(fp_line (start -1.7 -1.75) (end 1.7 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp b3d2b8f6-cdab-43d9-8b4b-1ec785ae8d61))
(fp_line (start 1.7 1.75) (end -1.7 1.75) (layer "F.CrtYd") (width 0.05) (tstamp be0f119b-9fca-4233-a4f5-6f37cbaa3173))
(fp_line (start 1.7 -1.75) (end 1.7 1.75) (layer "F.CrtYd") (width 0.05) (tstamp c8dad94a-2fe8-40e3-89be-52e16bfd597f))
(fp_line (start 0.7 -1.52) (end 0.7 1.52) (layer "F.Fab") (width 0.1) (tstamp 3e4677c1-e4a1-449f-925d-e67e71836b2e))
(fp_line (start -0.7 1.52) (end 0.7 1.52) (layer "F.Fab") (width 0.1) (tstamp 7e1b66f7-dffe-41c3-b411-51151d3c1aa6))
(fp_line (start -0.7 -0.95) (end -0.7 1.5) (layer "F.Fab") (width 0.1) (tstamp a2c85c73-efb8-49ed-81aa-580770994e25))
(fp_line (start -0.15 -1.52) (end 0.7 -1.52) (layer "F.Fab") (width 0.1) (tstamp c9f9edf4-bbd6-43e4-bcde-77bafef8d354))
(fp_line (start -0.7 -0.95) (end -0.15 -1.52) (layer "F.Fab") (width 0.1) (tstamp f4028f0f-afbd-4930-b86b-4b424c955cde))
(pad "1" smd rect locked (at -1 -0.95 90) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 15 "VBUS") (pinfunction "G") (pintype "input") (tstamp e6a4dee8-340e-4322-87a3-5eaec4bc8ad7))
(pad "2" smd rect locked (at -1 0.95 90) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 70 "Net-(D3-Pad1)") (pinfunction "S") (pintype "passive") (tstamp c7224bb8-c8c8-4493-9fad-f3c9065ff002))
(pad "3" smd rect locked (at 1 0 90) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 40 "MCU_BAT") (pinfunction "D") (pintype "passive") (tstamp 50093fbb-22f0-4197-90b0-79ae12fc8ae2))
(model "${KISYS3DMOD}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-23" (layer "F.Cu")
(tedit 5A02FF57) (tstamp 00000000-0000-0000-0000-00006041fa68)
(at 39.1 79.25)
(descr "SOT-23, Standard")
(tags "SOT-23")
(property "Sheetfile" "fissure.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00006055ff61")
(attr smd)
(fp_text reference "Q2" (at -0.95 -2.4) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cebf7b42-9fae-4f13-89f5-d02b27a662c9)
)
(fp_text value "AO3401A" (at 0 2.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 99d21d0d-06a5-42ab-982a-eca9947376a0)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp ca155269-530a-4f55-a1c9-84437b9bcb89)
)
(fp_line (start 0.76 -1.58) (end 0.76 -0.65) (layer "F.SilkS") (width 0.12) (tstamp 08b9cc89-124f-419f-bf68-710e03689b2c))
(fp_line (start 0.76 1.58) (end -0.7 1.58) (layer "F.SilkS") (width 0.12) (tstamp 33effe89-ebf1-4f97-bd5e-de1c40bcd8a2))
(fp_line (start 0.76 -1.58) (end -1.4 -1.58) (layer "F.SilkS") (width 0.12) (tstamp 6215b27d-40da-47e3-a30d-51922bc0cd37))
(fp_line (start 0.76 1.58) (end 0.76 0.65) (layer "F.SilkS") (width 0.12) (tstamp 93fa79a4-5c3f-4133-a6ee-648485be4c48))
(fp_line (start -1.7 1.75) (end -1.7 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 7e4c47ad-ed61-4507-8512-9c7ab69f39af))
(fp_line (start 1.7 -1.75) (end 1.7 1.75) (layer "F.CrtYd") (width 0.05) (tstamp a1cafa5d-6573-4e59-ac6d-124015420a74))
(fp_line (start 1.7 1.75) (end -1.7 1.75) (layer "F.CrtYd") (width 0.05) (tstamp c00a0a88-7db9-41ba-b293-e6729d178cd4))
(fp_line (start -1.7 -1.75) (end 1.7 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp eb38b18e-297d-4f5d-bf76-61f37d1ca797))
(fp_line (start -0.7 1.52) (end 0.7 1.52) (layer "F.Fab") (width 0.1) (tstamp 0b96ee6f-176f-4b83-a3af-f0b521e416c0))
(fp_line (start 0.7 -1.52) (end 0.7 1.52) (layer "F.Fab") (width 0.1) (tstamp 2fcdbff4-e0d0-49d7-a49e-b913be08cd1c))
(fp_line (start -0.7 -0.95) (end -0.15 -1.52) (layer "F.Fab") (width 0.1) (tstamp 50408382-cb4d-4bac-91be-9c8bc4d19c25))
(fp_line (start -0.15 -1.52) (end 0.7 -1.52) (layer "F.Fab") (width 0.1) (tstamp acfcb31e-4431-40d8-a66b-67281bafa861))
(fp_line (start -0.7 -0.95) (end -0.7 1.5) (layer "F.Fab") (width 0.1) (tstamp c2221bba-f492-423c-bb09-879518297bf9))
(pad "1" smd rect locked (at -1 -0.95) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 29 "VCC_SWITCH") (pinfunction "G") (pintype "input") (tstamp e9f9c794-c674-4da5-8356-e24a6edc75ab))
(pad "2" smd rect locked (at -1 0.95) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 20 "VDD") (pinfunction "S") (pintype "passive") (tstamp 8abbbe79-87f7-4103-b5fe-5af1a30afde4))
(pad "3" smd rect locked (at 1 0) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 17 "EXT_VCC") (pinfunction "D") (pintype "passive") (tstamp 7227abf6-8cf1-49f6-93e7-27357e320680))
(model "${KISYS3DMOD}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-00006041faea)
(at 31.8 64.4 -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 "Sheetfile" "fissure.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000605476c6")
(attr smd)
(fp_text reference "R5" (at 0.35 -1.7 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 03466a2f-77f5-48a4-898d-965afa76d2ab)
)
(fp_text value "5.1M" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bdc531ce-6b93-4eb9-8b99-991319dfb3b1)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 548078cc-4c4f-402f-a04f-d65449525a65)
)
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 5d6c1f76-7371-4cb6-966e-3d00e8ac4330))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp e6b8cec9-7817-4ba7-b99a-40777f1d6dab))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 3f376b46-f046-4910-9b5d-cbb42ed9fad4))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 6faf750f-6937-4a97-b486-6626a4b29475))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 79a2d4e4-ff6b-466a-bb59-c2963c33ae8d))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp d46c6af8-4049-428d-83d2-12a2566980b4))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp c4e0683b-1e43-4cd1-bde4-cf35d5c47c2c))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp dc15fd1e-fc61-497b-a892-57799142fc5a))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp dda1681c-3dd3-4d57-adad-7eec2178ea1b))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp f7561f0b-2cd4-4e11-8365-53c1275a336d))
(pad "1" smd roundrect locked (at -0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 40 "MCU_BAT") (pintype "passive") (tstamp 4aa76f95-d034-499c-be6f-ae7bd53bb4b1))
(pad "2" smd roundrect locked (at 0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 30 "BAT_MEAS") (pintype "passive") (tstamp 4ea5348d-003d-4620-81de-5b3f7a762c89))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-00006041fafb)
(at 34.5 70.6 -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 "Sheetfile" "fissure.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00006053d4aa")
(attr smd)
(fp_text reference "R6" (at -2.25 1 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f4eeff90-9585-4a14-8574-6d0a7fd72551)
)
(fp_text value "1k" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 338d3a05-b23d-4be2-80fb-07aa0a293e56)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp b4396425-ade3-46c3-8669-0cd775e79baa)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 6aa012ab-f0fc-48f3-b60a-dca1e62d49c3))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp ba838b0f-50b3-4d01-9805-18aa874b4680))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 6cedca12-aecd-4138-97a3-ec4f4ad554a4))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 82519bc7-0a7f-4e33-a54c-6a17c411dff7))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 905d5a0b-b020-4870-ba1b-0e2b0e7706b4))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp c9c58716-fea4-4856-af6b-3fde2a5ad6a3))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 3e5fc2ee-9265-4d5d-8ad0-609349dd57a8))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 4cddf9a7-64cc-49d4-81c3-29dc2992a83b))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 506af858-74d3-45e7-9e41-531109829aac))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 78ab05b8-4526-46e8-aad5-bccc37c583f9))
(pad "1" smd roundrect locked (at -0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 16 "Net-(D2-Pad1)") (pintype "passive") (tstamp 0f7635ed-185a-4f3e-98b0-8106f8acd5ab))
(pad "2" smd roundrect locked (at 0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 31 "Net-(R6-Pad2)") (pintype "passive") (tstamp 74b126c0-ae5d-4d0e-b8e0-ef88ef214831))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-00006041fb0c)
(at 57.7 66.9 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 "Sheetfile" "fissure.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00006046def8")
(attr smd)
(fp_text reference "R7" (at -0.95 1.8 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b1e5a4e7-eeab-49ec-adc8-60655f27ef83)
)
(fp_text value "5.1k" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 36332858-77b0-4b4c-b3d0-cf598ee2f738)
)
(fp_text user "${REFERENCE}" (at 0 0.1 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 17c4f2a6-026d-4b5b-b3ee-c427af73ae5f)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 25b5017f-47ab-4d23-b220-14244c2e720e))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp bfb1c8c2-a6b9-4442-9b27-01e8b8889014))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 02748b8d-ff72-4941-8486-f82662f3c134))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 33311c2c-519e-4afb-a0c7-b538bbfb9084))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 82f40a45-c8a0-4293-b39f-cabbbdda44cd))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp a35db0d8-bc9d-4b7d-ae1d-5f2a7d6a91fe))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 00732014-6e63-4d7c-a608-b677a8fa483f))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 0d2769f8-88be-4d64-b463-ca091aad6081))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 26a67fc8-12ec-45a8-ac5e-49fc5312b6c0))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp aa62ee29-d1ec-4314-97be-141f63591ed6))
(pad "1" smd roundrect locked (at -0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 840bcff5-9fe0-4de5-9b9b-a270c1c3bfee))
(pad "2" smd roundrect locked (at 0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 22 "Net-(J2-PadA5)") (pintype "passive") (tstamp ee0bb01e-ce94-462f-b93a-28b23bcb50e4))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-00006041fb1d)
(at 31.8 67.4 -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 "Sheetfile" "fissure.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060545dca")
(attr smd)
(fp_text reference "R8" (at -0.25 -1.7 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 630fd97e-ee96-43c3-a67d-fa37ccaed321)
)
(fp_text value "5.1M" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 61e6b216-e5b9-4692-90c0-8ab2f357c023)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp d3cb7551-1555-4f6f-a392-c5061ed8bd92)
)
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp c15d8f1f-abb6-49f4-a556-cdff2678b326))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp c225aa67-eda7-4720-9a6c-cc44230f420b))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 345efbe6-ad7b-4378-b6d7-b4fcf39faa34))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 462c4eb6-82c4-4843-bf35-627e85d02bd5))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp e3330d41-283c-4f5a-bc9d-0c305ee3cd8d))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp f597858f-a9fd-48e6-9297-2dffe004c64d))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 1fca6c9c-3ebf-4f67-b5bf-7574b8b703ee))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 39ff5b8a-083c-4611-a02d-facb98a527a4))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 77092f59-3da7-4e77-a9eb-011c76af2f17))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp d4b9cc07-7d39-49d2-b145-7061179c8303))
(pad "1" smd roundrect locked (at -0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 30 "BAT_MEAS") (pintype "passive") (tstamp 2e5ceea8-2077-4b8a-b0bc-bed63ca2dec0))
(pad "2" smd roundrect locked (at 0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp bdf6db63-54a2-4ef9-a5fd-c3721bd29105))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-00006041fb2e)
(at 55.3 67.4 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 "Sheetfile" "fissure.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00006047214e")
(attr smd)
(fp_text reference "R9" (at -1.1 -2.55 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 13ae6ad2-ddcc-4a17-8044-55279ce326e3)
)
(fp_text value "5.1k" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 992413ae-a649-468f-b799-9af2b3fddd1c)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 92dec3e9-c9e5-46a1-9703-c11f7b5c97ea)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 26f88538-d99a-4650-987b-972f5725e9c4))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 83ec6a91-b807-4ae0-ab0b-bd5a5dcf171c))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 0fbd3dc4-5b47-4138-9322-45195643ff12))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 2c770d26-656a-4459-baf8-970c614ec138))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 536db32f-a086-41b4-897f-8dfcf80aad1e))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 63d3ff52-a61b-40c0-a1f4-1effd9fc9553))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 37c37c3b-c887-4b1b-96ae-3fa930a1a871))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 41f283e0-6357-4831-b4d6-80bbe2d48154))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 84c49315-e770-497c-8e81-f7fc1cba8e2b))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp d1259b5c-0026-4151-a39d-5b18859fb68e))
(pad "1" smd roundrect locked (at -0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 48e2d8e3-739e-4ca4-b27b-bbfd09c9ea94))
(pad "2" smd roundrect locked (at 0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 26 "Net-(J2-PadB5)") (pintype "passive") (tstamp 8465e92a-638d-44cd-b56d-812edb8b46e9))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-00006041fb50)
(at 42.55 79.95)
(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" "fissure.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000605878c7")
(attr smd)
(fp_text reference "R11" (at -0.05 -1.45) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6f97f9fd-6a08-448a-8a79-e75a15d0c458)
)
(fp_text value "2M" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 945a03c2-47ea-4c06-9349-96aa5800cba9)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 9eba6481-86c1-46cf-b563-027e2b0d729a)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 6c5f10df-0602-49a0-936e-2583af47b1b2))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp c0e34cbf-2f14-4249-a79f-b1ad2553bdc4))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 275b67f7-64c1-47ef-8d94-da89d0860012))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 3fad49b4-c708-41db-9bb8-d7e8eea06ec2))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 7a5a8e5f-2441-42ff-ad94-aa17e5959dad))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 84fd681a-1ab7-4ad5-97ec-274395a3f042))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 049f3deb-286a-4115-8f75-766ed8da5083))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 47548390-bbdb-4d2f-9974-356bb44a0efa))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 9ae67024-899c-40ee-b196-acaae8eebd52))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp db2d69d8-6715-4521-8066-818971acc699))
(pad "1" smd roundrect locked (at -0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 29 "VCC_SWITCH") (pintype "passive") (tstamp c45cd985-8cea-4e98-b3a1-a3a76c451798))
(pad "2" smd roundrect locked (at 0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 1c76dd23-ec99-4133-944a-99fae39d26fa))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-00006041fb61)
(at 29.5 73.8 -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 "Sheetfile" "fissure.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000605a481b")
(attr smd)
(fp_text reference "R12" (at -0.2 2.15 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 037e5565-9e48-446a-8ca2-f87d3d62c23b)
)
(fp_text value "100k" (at 0 1.43 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e86a9de1-ebdb-4ae3-adfb-413d065430ec)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp c14a4aae-257d-4c6d-ac09-6b179e19c30c)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp bbdc76fe-b67a-4ad0-9b2b-1e65e1330536))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp d0f67208-c4ec-45e6-bfee-611bb388775f))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 2312ca6a-3d6c-45e2-9175-53bee9eedd15))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 32d3a5a2-a99c-45f9-be62-ddbc0b07eee2))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 3f2233d4-6f4d-484f-8e54-b0fbfc56647e))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 4d7e56e4-536a-4a96-8c59-77081709b147))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 7a02b8a7-8806-4862-b588-9afc38bced24))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp b88e492f-93ce-4ca3-8da0-815e80621355))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp be109380-3b48-49a0-8481-8902a99c6d05))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp e1e89f0e-3162-4dac-8847-9bd570ae1f37))
(pad "1" smd roundrect locked (at -0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 15 "VBUS") (pintype "passive") (tstamp 9a191c80-837f-4846-9f66-d5d6265fc6e1))
(pad "2" smd roundrect locked (at 0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 583b3eb8-3fcd-4dbc-8203-ecd2f87d72ee))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "misc:Holyiot_18010" (layer "F.Cu")
(tedit 6091BC3C) (tstamp 00000000-0000-0000-0000-00006041fc12)
(at 43.15 65.4)
(property "Sheetfile" "fissure.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000604232f6")
(attr through_hole)
(fp_text reference "U1" (at 0 10.7) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c55de8dd-4ce9-4c21-b613-e2898f180f11)
)
(fp_text value "Holyiot_18010" (at 0 -10.25) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 32cdcd80-fbd5-468d-9fee-0858164b2385)
)
(fp_line (start -6.9 8.15) (end -6.9 9.15) (layer "F.SilkS") (width 0.15) (tstamp 0cef87d0-2d34-4560-b423-a2b4c094ff00))
(fp_line (start 6.9 8.15) (end 6.9 9.15) (layer "F.SilkS") (width 0.15) (tstamp 1a2037d6-bf46-4842-98a2-6b23da521899))
(fp_line (start -6.9 -9.15) (end 6.9 -9.15) (layer "F.SilkS") (width 0.15) (tstamp 30f437d1-602e-44e2-b4a5-01970dd24d60))
(fp_line (start 6.15 9.15) (end 6.9 9.15) (layer "F.SilkS") (width 0.15) (tstamp b5893303-cc4e-4411-ac56-e0a6002927a0))
(fp_line (start -6.9 9.15) (end -6.15 9.15) (layer "F.SilkS") (width 0.15) (tstamp c5f7d4ce-d7f9-4fea-b7d6-fedfcfbd3301))
(fp_line (start 6.9 -9.15) (end 6.9 -6.35) (layer "F.SilkS") (width 0.15) (tstamp c99395ec-284e-4eda-a1bf-6944a4335089))
(fp_line (start -6.9 -6.35) (end -6.9 -9.15) (layer "F.SilkS") (width 0.15) (tstamp caf56ff6-b3a6-400d-9187-c56877ad17fd))
(fp_poly (pts (xy -4.8 5.7)
(xy -3.7 5.7)
(xy -3.7 -4.15)
(xy 3.7 -4.15)
(xy 3.7 5.7)
(xy 4.8 5.7)
(xy 4.8 -6.3)
(xy 6.1 -6.3)
(xy 6.1 8.35)
(xy -6.1 8.35)
(xy -6.1 -6.3)
(xy -4.8 -6.3)) (layer "F.SilkS") (width 0.1) (fill solid) (tstamp a1052018-0ae5-4c34-8657-16432a28352c))
(fp_line (start 6.75 -6.35) (end -6.75 -9) (layer "F.Fab") (width 0.12) (tstamp 021570e0-296e-4719-aa89-4a8195ac7d95))
(fp_line (start -6.75 -9) (end 6.75 -9) (layer "F.Fab") (width 0.12) (tstamp 4341377f-15fc-40b2-b97c-b70f6533d256))
(fp_line (start -6.75 -6.35) (end 6.75 -6.35) (layer "F.Fab") (width 0.12) (tstamp 4acbd16e-a806-42ea-8ae4-4b6d1a0136d4))
(fp_line (start 6.75 -9) (end 6.75 9) (layer "F.Fab") (width 0.12) (tstamp 521c48dc-f58e-4322-8514-718dfd1b5d0a))
(fp_line (start -6.75 9) (end 6.75 9) (layer "F.Fab") (width 0.12) (tstamp 601e990a-cbbf-4c69-a68e-4c8c2d012d22))
(fp_line (start -6.75 -6.35) (end 6.75 -9) (layer "F.Fab") (width 0.12) (tstamp 6c7cda0d-3de5-49bc-bea9-fbe92d0ddfa8))
(fp_line (start -6.75 -9) (end -6.75 9) (layer "F.Fab") (width 0.12) (tstamp 9e575364-d318-4ff3-ba67-0d2c0b502521))
(pad "1" smd rect locked (at -6.75 -5.7) (size 1.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 0350e9b7-2ace-4638-9507-8257870d6bee))
(pad "2" smd rect locked (at -6.75 -4.6) (size 1.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 69 "unconnected-(U1-Pad2)") (pinfunction "[L]_P1.10") (pintype "bidirectional") (tstamp 1f10f2f3-9f49-4ecf-9e4c-2dc391ec5af6))
(pad "3" smd rect locked (at -6.75 -3.5) (size 1.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 71 "unconnected-(U1-Pad3)") (pinfunction "[L]_P1.11") (pintype "bidirectional") (tstamp ee894eab-4a42-49d1-bf03-9215a4a3f51c))
(pad "4" smd rect locked (at -6.75 -2.4) (size 1.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 72 "unconnected-(U1-Pad4)") (pinfunction "[L]_P1.13") (pintype "bidirectional") (tstamp 644de221-c343-48b1-9462-3035c7937a72))
(pad "5" smd rect locked (at -6.75 -1.3) (size 1.2 0.85) (layers "F.Cu" "F.Paste" "F.Mask")
(net 73 "unconnected-(U1-Pad5)") (pinfunction "[L]_P1.15") (pintype "bidirectional") (tstamp b9e6c291-5249-4d9d-909d-1cc930c14825))
(pad "6" smd rect locked (at -6.75 -0.2) (size 1.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 30 "BAT_MEAS") (pinfunction "[L]_AIN_P0.03") (pintype "bidirectional") (tstamp 8e2424e7-232e-4027-945e-a180f16c29f9))
(pad "7" smd rect locked (at -6.75 0.9) (size 1.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 74 "unconnected-(U1-Pad7)") (pinfunction "[L]_AIN_P0.02") (pintype "bidirectional") (tstamp e523db74-37a8-4c14-84a7-6978eda12f27))
(pad "8" smd rect locked (at -6.75 2) (size 1.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 75 "unconnected-(U1-Pad8)") (pinfunction "[L]_AIN_P0.28") (pintype "bidirectional") (tstamp 29f19fdd-7e00-4324-af61-23f42fae5c78))
(pad "9" smd rect locked (at -6.75 3.1) (size 1.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 76 "unconnected-(U1-Pad9)") (pinfunction "[L]_AIN_P0.29") (pintype "bidirectional") (tstamp 466b9ddd-f8ad-48ab-bee3-acc0200cceb7))
(pad "10" smd rect locked (at -6.75 4.2) (size 1.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 77 "unconnected-(U1-Pad10)") (pinfunction "[L]_AIN_P0.30") (pintype "bidirectional") (tstamp ba04caf9-b01a-4c36-b6f4-cc363fb9adc0))
(pad "11" smd rect locked (at -6.75 5.3) (size 1.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 78 "unconnected-(U1-Pad11)") (pinfunction "[L]_AIN_P0.31") (pintype "bidirectional") (tstamp 722b32e3-c6d3-4b99-a7f6-0dd1c31dd4c8))
(pad "12" smd rect locked (at -6.75 6.4) (size 1.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 66 "K16") (pinfunction "AIN_P0.04") (pintype "bidirectional") (tstamp 1ef3d390-627e-4514-8be5-6eb9cae91474))
(pad "13" smd rect locked (at -6.75 7.5) (size 1.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 67 "K17") (pinfunction "AIN_P0.05") (pintype "bidirectional") (tstamp 8e80b064-afa3-4b41-8b14-e6ded4bcc973))
(pad "14" thru_hole rect locked (at -4.25 -3.5) (size 1 0.7) (drill 0.6) (layers *.Cu *.Mask)
(net 79 "unconnected-(U1-Pad14)") (pinfunction "[L]_P1.14") (pintype "bidirectional") (tstamp b1ee4c2c-102b-4be9-99ff-e8e3349564ef))
(pad "15" thru_hole rect locked (at -4.25 -2.4) (size 1 0.7) (drill 0.6) (layers *.Cu *.Mask)
(net 80 "unconnected-(U1-Pad15)") (pinfunction "[L]_P1.12") (pintype "bidirectional") (tstamp 107402f8-0d7b-4797-9805-070228d2794d))
(pad "16" thru_hole rect locked (at -4.25 -1.3) (size 1 0.7) (drill 0.6) (layers *.Cu *.Mask)
(net 9 "CS") (pinfunction "P0.25") (pintype "bidirectional") (tstamp 913a0163-029a-4af3-8f2f-32a72b9a92f8))
(pad "17" thru_hole rect locked (at -4.25 -0.2) (size 1 0.7) (drill 0.6) (layers *.Cu *.Mask)
(net 81 "unconnected-(U1-Pad17)") (pinfunction "P0.11") (pintype "bidirectional") (tstamp 05e5e9b7-4eb6-4e24-872e-3e5e891ed9b9))
(pad "18" thru_hole rect locked (at -4.25 0.9) (size 1 0.7) (drill 0.6) (layers *.Cu *.Mask)
(net 7 "MISO_DQ1") (pinfunction "P1.08") (pintype "bidirectional") (tstamp f9e0a0bb-f23e-4c17-a0c8-f492da0dfcb8))
(pad "19" thru_hole rect locked (at -4.25 2) (size 1 0.7) (drill 0.6) (layers *.Cu *.Mask)
(net 82 "unconnected-(U1-Pad19)") (pinfunction "P0.27") (pintype "bidirectional") (tstamp 1006af94-36f2-4d91-9b49-b86c3365f853))
(pad "20" thru_hole rect locked (at -4.25 3.1) (size 1 0.7) (drill 0.6) (layers *.Cu *.Mask)
(net 8 "MOSI_DQ0") (pinfunction "P0.08") (pintype "bidirectional") (tstamp f692e6bc-342e-4939-abd3-e676e8bd281f))
(pad "21" thru_hole rect locked (at -4.25 4.2) (size 1 0.7) (drill 0.6) (layers *.Cu *.Mask)
(net 83 "unconnected-(U1-Pad21)") (pinfunction "P0.06") (pintype "bidirectional") (tstamp 8f5756ea-50b2-43bf-8790-973445c00f27))
(pad "22" thru_hole rect locked (at -4.25 5.3) (size 1 0.7) (drill 0.6) (layers *.Cu *.Mask)
(net 6 "SCLK") (pinfunction "P0.26") (pintype "bidirectional") (tstamp 20158665-1efa-454d-93ac-08bda6107681))
(pad "23" thru_hole rect locked (at 4.25 -3.5) (size 1 0.7) (drill 0.6) (layers *.Cu *.Mask)
(net 84 "unconnected-(U1-Pad23)") (pinfunction "[L]_P1.07") (pintype "bidirectional") (tstamp 4f421249-b8f2-4067-a407-5530502e70c9))
(pad "24" thru_hole rect locked (at 4.25 -2.4) (size 1 0.7) (drill 0.6) (layers *.Cu *.Mask)
(net 47 "K18") (pinfunction "[L]_P1.05") (pintype "bidirectional") (tstamp dea048c0-26b2-4d6b-b2f1-ad36150a3d3b))
(pad "25" thru_hole rect locked (at 4.25 -1.3) (size 1 0.7) (drill 0.6) (layers *.Cu *.Mask)
(net 65 "K15") (pinfunction "P0.24") (pintype "bidirectional") (tstamp 8221c809-582a-49db-b168-4137ec0fe5c6))
(pad "26" thru_hole rect locked (at 4.25 -0.2) (size 1 0.7) (drill 0.6) (layers *.Cu *.Mask)
(net 64 "K14") (pinfunction "P0.20") (pintype "bidirectional") (tstamp 7d306e2f-532a-412c-be23-ba42ad1e474d))
(pad "27" thru_hole rect locked (at 4.25 0.9) (size 1 0.7) (drill 0.6) (layers *.Cu *.Mask)
(net 63 "K13") (pinfunction "P0.17") (pintype "bidirectional") (tstamp 3270bd96-7eda-4bec-8f1e-c22b3f7f5e37))
(pad "28" thru_hole rect locked (at 4.25 2) (size 1 0.7) (drill 0.6) (layers *.Cu *.Mask)
(net 58 "K8") (pinfunction "P0.15") (pintype "bidirectional") (tstamp 57829d3f-3a99-4642-97ba-c6ad93dc74e1))
(pad "29" thru_hole rect locked (at 4.25 3.1) (size 1 0.7) (drill 0.6) (layers *.Cu *.Mask)
(net 57 "K7") (pinfunction "P0.14") (pintype "bidirectional") (tstamp e19c15e6-8046-479d-92dd-95a8d2a6395e))
(pad "30" thru_hole rect locked (at 4.25 4.2) (size 1 0.7) (drill 0.6) (layers *.Cu *.Mask)
(net 45 "K20") (pinfunction "P0.13") (pintype "bidirectional") (tstamp 39e15820-476d-46d6-803c-7cc07c85ec39))
(pad "31" thru_hole rect locked (at 4.25 5.3) (size 1 0.7) (drill 0.6) (layers *.Cu *.Mask)
(net 46 "K19") (pinfunction "P0.16") (pintype "bidirectional") (tstamp 388e3d17-de8d-40f6-80fc-7f107017f100))
(pad "32" smd rect locked (at 6.75 -5.7) (size 1.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp 6de20799-0900-43bf-98a9-466a485042f0))
(pad "33" smd rect locked (at 6.75 -4.6) (size 1.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 53 "K3") (pinfunction "[L]_P0.10") (pintype "bidirectional") (tstamp dd9400d9-b000-4605-93d7-9769413c377e))
(pad "34" smd rect locked (at 6.75 -3.5) (size 1.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 54 "K4") (pinfunction "[L]_P0.09") (pintype "bidirectional") (tstamp 787c3618-b5fe-48ff-aa69-0278e9f17d64))
(pad "35" smd rect locked (at 6.75 -2.4) (size 1.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 52 "K2") (pinfunction "[L]_P1.06") (pintype "bidirectional") (tstamp 5fed5d73-608a-4152-81a2-2c5bc8387f5a))
(pad "36" smd rect locked (at 6.75 -1.3) (size 1.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 13 "BLUE") (pinfunction "[L]_P1.04") (pintype "bidirectional") (tstamp 1b3d36a8-f14c-4a65-ae58-8f83d4216060))
(pad "37" smd rect locked (at 6.75 -0.2) (size 1.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 18 "SWC") (pinfunction "SWDCLK") (pintype "input") (tstamp dbb9660a-49cc-4459-a027-afec1160f942))
(pad "38" smd rect locked (at 6.75 0.9) (size 1.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 19 "SWD") (pinfunction "SWDIO") (pintype "bidirectional") (tstamp dda6ea1d-4498-4638-8642-0f3acdce2d55))
(pad "39" smd rect locked (at 6.75 2) (size 1.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 55 "K5") (pinfunction "[L]_P1.02") (pintype "bidirectional") (tstamp e47fe8d3-71b2-4bf8-bc3b-ff04f563393d))
(pad "40" smd rect locked (at 6.75 3.1) (size 1.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 60 "K10") (pinfunction "[L]_P1.01") (pintype "bidirectional") (tstamp b87edcba-5d62-431c-a531-2f2cf6fd418e))
(pad "41" smd rect locked (at 6.75 4.2) (size 1.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 59 "K9") (pinfunction "[L]_P1.03") (pintype "bidirectional") (tstamp 92c20946-e5e4-49f4-bc79-c4a86be77780))
(pad "42" smd rect locked (at 6.75 5.3) (size 1.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 43 "SDA") (pinfunction "P1.00") (pintype "bidirectional") (tstamp 8b57a785-d38e-4364-a650-21b6482fdd31))
(pad "43" smd rect locked (at 6.75 6.4) (size 1.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 44 "SCL") (pinfunction "P0.22") (pintype "bidirectional") (tstamp 6f1008b3-53af-4214-97c9-a24cb808aefd))
(pad "44" smd rect locked (at 6.75 7.5) (size 1.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp a637c696-922e-4a7d-a38e-6905b1e7aeee))
(pad "45" smd rect locked (at 5.5 9 90) (size 1.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 24 "D+") (pinfunction "D+") (pintype "bidirectional") (tstamp f62d4880-d973-4f50-890d-6baf93521fa0))
(pad "46" smd rect locked (at 4.4 9 90) (size 1.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 23 "D-") (pinfunction "D-") (pintype "bidirectional") (tstamp 7b4b1225-d3c3-4a84-9169-d1f7adb6c6b6))
(pad "47" smd rect locked (at 3.3 9 90) (size 1.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 15 "VBUS") (pinfunction "VBUS") (pintype "power_in") (tstamp 8ba05d03-2a6c-43e6-a253-74cd2413a90d))
(pad "48" smd rect locked (at 2.2 9 90) (size 1.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "RST") (pinfunction "Reset/P0.18") (pintype "bidirectional") (tstamp 940959c1-cb81-4ca5-a450-f10892881ce8))
(pad "49" smd rect locked (at 1.1 9 90) (size 1.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "RGB") (pinfunction "P0.19") (pintype "bidirectional") (tstamp b19c26a7-0276-46d9-9985-12d54553fcc4))
(pad "50" smd rect locked (at 0 9 90) (size 1.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 51 "K1") (pinfunction "P0.21") (pintype "bidirectional") (tstamp 8bd364bf-e4d7-4aab-bca5-3a57a3735027))
(pad "51" smd rect locked (at -1.1 9 90) (size 1.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 62 "K12") (pinfunction "P0.23") (pintype "bidirectional") (tstamp 7ce27002-1e08-427f-8e94-5dff3159cc9d))
(pad "52" smd rect locked (at -2.2 9 90) (size 1.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 56 "K6") (pinfunction "P0.12") (pintype "bidirectional") (tstamp 5b3b55c4-47a7-4da7-9102-a36b460a2ffc))
(pad "53" smd rect locked (at -3.3 9 90) (size 1.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 61 "K11") (pinfunction "P1.09") (pintype "bidirectional") (tstamp 7d4fb307-5e70-4fc0-ada3-9220d484c9e2))
(pad "54" smd rect locked (at -4.4 9 90) (size 1.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 29 "VCC_SWITCH") (pinfunction "P0.07") (pintype "bidirectional") (tstamp 0793ad56-7df5-4637-ba44-54418f69d451))
(pad "55" smd rect locked (at -5.5 9 90) (size 1.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 20 "VDD") (pinfunction "VDD/VDDH") (pintype "power_in") (tstamp 49d16859-048b-4563-a40f-db8c87bff66a))
(model "${KIPRJMOD}/modules/packages3d/RF_Module.3dshapes/Holyiot_18010.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 0))
)
(model "/home/steven/gitproj/fissure/pcb/libs/misc/Holyiot_18010_v2.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 0))
)
)
(footprint "Package_TO_SOT_SMD:TSOT-23-5" (layer "F.Cu")
(tedit 5A02FF57) (tstamp 00000000-0000-0000-0000-00006041fc63)
(at 31 70.6 180)
(descr "5-pin TSOT23 package, http://cds.linear.com/docs/en/packaging/SOT_5_05-08-1635.pdf")
(tags "TSOT-23-5")
(property "Sheetfile" "fissure.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00006052b291")
(attr smd)
(fp_text reference "U3" (at 3.2 -0.05) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 95d914b1-b560-4bbd-a316-2765edbd0205)
)
(fp_text value "LTC4054ES5-4.2" (at 0 2.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1fbbe4de-ec22-4626-963b-a1c33020e51d)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp 6027f262-76f4-4d0b-8936-a9bf7fec60d8)
)
(fp_line (start 0.88 -1.51) (end -1.55 -1.51) (layer "F.SilkS") (width 0.12) (tstamp 8e7f523c-e9f0-4b31-8322-fae00b90a8ef))
(fp_line (start -0.88 1.56) (end 0.88 1.56) (layer "F.SilkS") (width 0.12) (tstamp 9ef86776-63cc-4cfd-81da-52afd0f98ff3))
(fp_line (start 2.17 1.7) (end -2.17 1.7) (layer "F.CrtYd") (width 0.05) (tstamp 2feb5aea-dd3d-4768-9737-a17ac819958e))
(fp_line (start -2.17 -1.7) (end 2.17 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp 588f1fb6-f1cf-4240-9a33-b6e635e588ae))
(fp_line (start -2.17 -1.7) (end -2.17 1.7) (layer "F.CrtYd") (width 0.05) (tstamp af8a2dd6-5b78-49c9-84ea-6ee0faca3e25))
(fp_line (start 2.17 1.7) (end 2.17 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp c553c070-85cb-4539-b86c-09c7b959a73c))
(fp_line (start 0.88 -1.45) (end -0.43 -1.45) (layer "F.Fab") (width 0.1) (tstamp 2d14b544-44ba-46dc-9c4c-c3b0b442fa6f))
(fp_line (start -0.88 -1) (end -0.43 -1.45) (layer "F.Fab") (width 0.1) (tstamp 4738df66-59ea-4d8e-871e-dea8eadfdcc1))
(fp_line (start 0.88 -1.45) (end 0.88 1.45) (layer "F.Fab") (width 0.1) (tstamp 7120e70b-bc9b-43cd-b600-b1316f71fe40))
(fp_line (start -0.88 -1) (end -0.88 1.45) (layer "F.Fab") (width 0.1) (tstamp 7dec4492-37b9-4a27-8459-919b64c4efaf))
(fp_line (start 0.88 1.45) (end -0.88 1.45) (layer "F.Fab") (width 0.1) (tstamp 88a5a83f-415a-485c-ba12-c5d4b03f8a08))
(pad "1" smd rect locked (at -1.31 -0.95 180) (size 1.22 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 31 "Net-(R6-Pad2)") (pinfunction "~CHRG") (pintype "open_collector") (tstamp 562883a8-a9b0-4496-8333-3c8c57a11453))
(pad "2" smd rect locked (at -1.31 0 180) (size 1.22 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp eaf4ba8b-074a-4e09-87ce-f62877570223))
(pad "3" smd rect locked (at -1.31 0.95 180) (size 1.22 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 28 "BAT") (pinfunction "BAT") (pintype "power_out") (tstamp 19bff05b-3db8-46ae-94e1-fbe0028909f3))
(pad "4" smd rect locked (at 1.31 0.95 180) (size 1.22 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 15 "VBUS") (pinfunction "VCC") (pintype "power_in") (tstamp 7f3a6f9d-3376-4ec3-b062-c431ea4ef495))
(pad "5" smd rect locked (at 1.31 -0.95 180) (size 1.22 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 32 "Net-(R10-Pad1)") (pinfunction "PROG") (pintype "bidirectional") (tstamp 1495d709-265e-4847-b8a0-8ca4cf1b0ce7))
(model "${KISYS3DMOD}/Package_TO_SOT_SMD.3dshapes/TSOT-23-5.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-23" (layer "F.Cu")
(tedit 5A02FF57) (tstamp 00000000-0000-0000-0000-00006041fc78)
(at 33.5 79.35 90)
(descr "SOT-23, Standard")
(tags "SOT-23")
(property "Sheetfile" "fissure.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00006057613b")
(attr smd)
(fp_text reference "U4" (at -0.9 -3) (layer "F.SilkS")