-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCosmicLSM.kicad_pcb
10811 lines (10742 loc) · 498 KB
/
CosmicLSM.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20221018) (generator pcbnew)
(general
(thickness 0.8)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(1 "In1.Cu" power)
(2 "In2.Cu" power)
(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.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "prepreg") (thickness 0.1) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "In1.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 2" (type "core") (thickness 0.44) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "In2.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 3" (type "prepreg") (thickness 0.1) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (color "Green") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen") (color "White"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 4)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 1)
(scaleselection 1)
(outputdirectory "")
)
)
(net 0 "")
(net 1 "Net-(C1-Pad1)")
(net 2 "GND")
(net 3 "+5V")
(net 4 "VCC")
(net 5 "+3V3")
(net 6 "Net-(U4-BAT)")
(net 7 "+BATT")
(net 8 "unconnected-(U1-Pad1)")
(net 9 "unconnected-(U2-Pad1)")
(net 10 "/EN")
(net 11 "STATUS_LED")
(net 12 "Net-(D1-A)")
(net 13 "Net-(D2-A)")
(net 14 "Net-(D3-A)")
(net 15 "SCL")
(net 16 "LSM_INT_AUX")
(net 17 "SDA")
(net 18 "USB_D+")
(net 19 "USB_D-")
(net 20 "Net-(J3-CC1)")
(net 21 "unconnected-(J3-SBU2-PadB8)")
(net 22 "unconnected-(J3-SBU1-PadA8)")
(net 23 "Net-(J3-CC2)")
(net 24 "Net-(U3-SW)")
(net 25 "Net-(U4-SW)")
(net 26 "CHARGING_LED")
(net 27 "CHARGED_LED")
(net 28 "Net-(R7-Pad1)")
(net 29 "ADC")
(net 30 "Net-(U4-NTC)")
(net 31 "Net-(U4-TEST)")
(net 32 "Net-(U4-ICHG)")
(net 33 "Net-(U3-FB)")
(net 34 "/BOOT")
(net 35 "/GPIO2")
(net 36 "LSM_INT_MAIN")
(net 37 "unconnected-(SW1-C-Pad3)")
(net 38 "unconnected-(U2-Pad3)")
(net 39 "unconnected-(U5-INT2-Pad9)")
(net 40 "unconnected-(U5-OCSB-Pad10)")
(net 41 "unconnected-(U5-OSDO-Pad11)")
(net 42 "unconnected-(U6-IO4-Pad3)")
(net 43 "unconnected-(U6-IO7-Pad6)")
(net 44 "unconnected-(U6-RXD-Pad11)")
(net 45 "unconnected-(U6-TXD-Pad12)")
(net 46 "unconnected-(U6-IO1-Pad17)")
(footprint "CosmicLSM_Footprints:SOT-363_SC-70-6" (layer "F.Cu")
(tstamp 003d7012-6dbc-4067-899b-7f9f1240fac1)
(at 147 95.2 -90)
(descr "SOT-363, SC-70-6")
(tags "SOT-363 SC-70-6")
(property "Availability" "In Stock")
(property "Check_prices" "https://www.snapeda.com/parts/SMF05CT1G/Onsemi/view-part/?ref=eda")
(property "DESCRIPTION" "SMF05C Series 7.2 V 100 W 5-Line Transient Voltage Suppressor Array - SC-88")
(property "Description" "\n12.5V Clamp 8A (8/20µs) Ipp Tvs Diode Surface Mount SC-88/SC70-6/SOT-363\n")
(property "MANUFACTURER" "ON Semiconductor")
(property "MF" "onsemi")
(property "MP" "SMF05CT1G")
(property "PACKAGE" "SOT-363 ON Semiconductor")
(property "PRICE" "None")
(property "Package" "SC-88-6 ON Semiconductor")
(property "Price" "None")
(property "Purchase-URL" "https://pricing.snapeda.com/search?q=SMF05CT1G&ref=eda")
(property "STANDARD" "IPC7351B")
(property "Sheetfile" "Cosmic Slime (ESP+BMI+QMC).kicad_sch")
(property "Sheetname" "")
(property "SnapEDA_Link" "https://www.snapeda.com/parts/SMF05CT1G/Onsemi/view-part/?ref=snap")
(path "/68a0d87d-125d-4dc2-bf79-9ace05480913")
(attr smd)
(fp_text reference "U2" (at 0 -2 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f5e701c9-9453-453d-84ac-0ff7f0a663d3)
)
(fp_text value "SMF05CT1G" (at 0 2 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e2533041-d815-440d-850e-5ed658997ab2)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp c0a5f1d0-41ef-4d6f-af68-3bf1feca02ea)
)
(fp_line (start -0.7 1.16) (end 0.7 1.16)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9f3d16cc-dc40-46de-a59f-9f1b3b6737b2))
(fp_line (start 0.7 -1.16) (end -1.2 -1.16)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 16518997-138b-4422-bcca-097f6c847472))
(fp_line (start -1.6 -1.4) (end -1.6 1.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 50290b20-7191-4967-b146-b0d35060018e))
(fp_line (start -1.6 -1.4) (end 1.6 -1.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 86826b53-3b57-424b-90f5-98d58cb63637))
(fp_line (start -1.6 1.4) (end 1.6 1.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1643ec34-05ef-4ad3-97ae-2546cfb211c6))
(fp_line (start 1.6 1.4) (end 1.6 -1.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 96346ceb-0863-42dc-9402-8a835f1290ac))
(fp_line (start -0.675 -0.6) (end -0.675 1.1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 816c4481-6fff-44bf-ab02-b2dbf0784e44))
(fp_line (start -0.175 -1.1) (end -0.675 -0.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d1759b11-03f9-4f1e-93ab-614f2faef678))
(fp_line (start 0.675 -1.1) (end -0.175 -1.1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp da9ff90f-3ac4-44f6-b015-0742afc203d0))
(fp_line (start 0.675 -1.1) (end 0.675 1.1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a9737668-c555-409f-bac5-0dd0792dafbf))
(fp_line (start 0.675 1.1) (end -0.675 1.1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 09a25d1f-681e-42f3-bbc9-07ee25107994))
(pad "1" smd rect (at -0.95 -0.65 270) (size 0.65 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "unconnected-(U2-Pad1)") (pintype "passive+no_connect") (tstamp 56bc6ffe-5015-4191-a459-87d879f850d8))
(pad "2" smd rect (at -0.95 0 270) (size 0.65 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pintype "passive") (tstamp f42cd47e-0899-42a8-9da4-f085d2667c7e))
(pad "3" smd rect (at -0.95 0.65 270) (size 0.65 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 38 "unconnected-(U2-Pad3)") (pintype "passive+no_connect") (tstamp f86c0d7e-cbd1-4767-8856-a7f715ae65fe))
(pad "4" smd rect (at 0.95 0.65 270) (size 0.65 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "+5V") (pintype "passive") (tstamp 3934ff48-dffa-44d4-be44-2c2f1eaae4c8))
(pad "5" smd rect (at 0.95 0 270) (size 0.65 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 19 "USB_D-") (pintype "passive") (tstamp 732232b3-c78a-46db-b49b-a3cd70f2edc1))
(pad "6" smd rect (at 0.95 -0.65 270) (size 0.65 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 18 "USB_D+") (pintype "passive") (tstamp 2c34b8bb-e34e-4183-93b0-315d3632b6d5))
(model "${KIPRJMOD}/Data/CosmicLSM_3DModels/SOT-363_SC-70-6.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "CosmicLSM_Footprints:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu")
(tstamp 098ce3e1-79b8-4b86-84c6-5d325664ac01)
(at 151.8125 92.15 -90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(property "Sheetfile" "Cosmic Slime (ESP+BMI+QMC).kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/b82e0cc5-84b0-40cd-a211-ffe74291333c")
(attr smd)
(fp_text reference "C8" (at 0 -1.43 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 873dc6c6-a636-4be9-9915-cba1a183e63c)
)
(fp_text value "100n" (at 0 1.43 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 92897dc7-b4ca-40b2-a23c-133b297e672e)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 21229d5d-ab00-4d16-840f-ff9fe8fc7fb4)
)
(fp_line (start -0.146267 -0.51) (end 0.146267 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 942c8174-7a6f-48dd-ab56-a168de43595d))
(fp_line (start -0.146267 0.51) (end 0.146267 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2a8a9649-fd59-43e2-97f6-f94bd8251747))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9ba2322d-4b35-4bbc-bee6-199a31a1eda7))
(fp_line (start -1.65 0.73) (end -1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5d8662a7-5564-4fd3-9b49-fc418817bff1))
(fp_line (start 1.65 -0.73) (end 1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f5d6644e-8aa5-4a80-bda4-178009969175))
(fp_line (start 1.65 0.73) (end -1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e097b071-932f-4163-9ae9-e3982a7ffc44))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 53136a6a-de1c-46f8-b454-39bf169ab55e))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1113bb36-49f1-46db-be50-e5bbe49efbbe))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 44f3a7d1-5a37-424a-a6e5-71b6f0277fa6))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 58711c24-1890-4765-9175-46698ae12375))
(pad "1" smd roundrect (at -0.8625 0 270) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "+3V3") (pintype "passive") (tstamp 1f779c77-f1da-409c-b097-55859c82c673))
(pad "2" smd roundrect (at 0.8625 0 270) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 592396b2-d687-4e06-bc55-f4e4ca2d382f))
(model "${KIPRJMOD}/Data/CosmicLSM_3DModels/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "CosmicLSM_Footprints:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu")
(tstamp 0bac86a0-beac-4dfa-854c-47bf2f14b065)
(at 126.9125 78 180)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(property "Sheetfile" "Cosmic Slime (ESP+BMI+QMC).kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/3720a90d-e7f3-45ae-98ed-d84d50533850")
(attr smd)
(fp_text reference "R14" (at 0 -1.43) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 88ae853a-06ef-473a-8e05-2b0d7cb16357)
)
(fp_text value "680k" (at 0 1.43) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a20ea8bd-2113-46c0-9d21-7398f5efbe5a)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 9fb76478-2b3b-4932-96e0-b3797d656363)
)
(fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4ef07596-0ad9-401f-8571-72f6ac96562c))
(fp_line (start -0.254724 0.5225) (end 0.254724 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 30bb1159-2c32-4c26-b4bd-6fd11cdecac0))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 20ac355f-c13b-45bb-8e93-20e91f4726cc))
(fp_line (start -1.65 0.73) (end -1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e063f905-18ca-4f69-a1d7-f02768c37916))
(fp_line (start 1.65 -0.73) (end 1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e597e348-6f56-4556-9c43-173aa4d6b8a7))
(fp_line (start 1.65 0.73) (end -1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8d8e844c-7375-4aa7-9876-e9c0001d1938))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 44b2cd74-1692-4434-a637-7c2c05547487))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 14977276-ab13-4f09-8085-9e7b02e54cbb))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2b7dccb6-5014-4e86-a2d7-9f3b57a235b6))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 397c4c93-da7c-4116-8749-5ef764d26a24))
(pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "+3V3") (pintype "passive") (tstamp a96c60c4-814c-415e-83b0-d2476ca190d5))
(pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 33 "Net-(U3-FB)") (pintype "passive") (tstamp 06cb9dfb-a20c-48ae-afb9-ec1ee4db2953))
(model "${KIPRJMOD}/Data/CosmicLSM_3DModels/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "CosmicLSM_Footprints:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu")
(tstamp 106428fc-09f2-4e87-9754-a21c670acf63)
(at 141.6625 88.125 180)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(property "Sheetfile" "Cosmic Slime (ESP+BMI+QMC).kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/8efd8a7f-8bf3-464c-863f-e7d077704536")
(attr smd)
(fp_text reference "R9" (at 0 -1.43) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 819b36a0-c22e-4d06-b427-7cc0e06ae1ee)
)
(fp_text value "51k" (at 0 1.43) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9dac5f01-009a-458e-b1ae-69e047bd144b)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 2f9ceb2c-9084-4866-bd02-c484cc9a68bb)
)
(fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7bf84c93-0032-4111-b428-09803ef77244))
(fp_line (start -0.254724 0.5225) (end 0.254724 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3eae8947-d9fd-41e4-80a7-b938ad1a9266))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e4b01395-f182-4448-b631-878d151a8e20))
(fp_line (start -1.65 0.73) (end -1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1dc6b260-16a4-4743-98d8-b1ef54ea34cb))
(fp_line (start 1.65 -0.73) (end 1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d7cf0b99-cf80-4cd0-a9f2-4b2379ddce95))
(fp_line (start 1.65 0.73) (end -1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 53ce6cbb-93ba-4001-948a-179ca21f9338))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 89c8f66b-b6d3-4ce4-9ae4-348db40e9299))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b0c4d3fc-c82c-4e46-81ef-c70128c19e49))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a03b354c-4062-4ec1-b3ce-c237516c6f39))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e82571cd-3f09-4719-bec5-70ff04f4288a))
(pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp af76b4d5-8c9f-498e-a603-e3eb41d253ca))
(pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 30 "Net-(U4-NTC)") (pintype "passive") (tstamp 59629dbd-3466-48d8-939a-37c6cfa68ab9))
(model "${KIPRJMOD}/Data/CosmicLSM_3DModels/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "CosmicLSM_Footprints:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu")
(tstamp 12ad2afb-6fed-481f-9b00-9c2251211a8b)
(at 132.4125 90.675)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(property "Sheetfile" "Cosmic Slime (ESP+BMI+QMC).kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/978cfc04-8b45-4739-a43d-d8fadcf8f9f7")
(attr smd)
(fp_text reference "R13" (at 0 -1.43) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e16c6fa0-6fbe-49fe-bcd0-e5fd71682147)
)
(fp_text value "91k" (at 0 1.43) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1cbb6a6e-0863-4f84-97ff-40a7f114a524)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp ba9378af-6ab9-4a75-9abb-861b8e4402b0)
)
(fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ed4282a7-6e58-44e4-8363-1d1e3e785471))
(fp_line (start -0.254724 0.5225) (end 0.254724 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c6190c93-235d-40fe-bb8a-ae9d3c15ff97))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6464a516-f335-4f87-bbbb-bfc4aa494b13))
(fp_line (start -1.65 0.73) (end -1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6c3a12a7-ec5b-475d-bbd6-4dc12d6ac388))
(fp_line (start 1.65 -0.73) (end 1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5267ca04-4a2d-4538-935e-59303a0e4048))
(fp_line (start 1.65 0.73) (end -1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e8a99813-1869-4c3f-ab54-666c36ceef11))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1f6b66ba-86ad-4b44-89ab-8542d8a5c824))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6d58e9c1-bcb2-4f3f-aa45-ba41b89112fd))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6e5327b4-fa46-44da-af3c-eda0c9fea8c0))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4ddcd578-fd11-4c7a-ae93-5db879d40026))
(pad "1" smd roundrect (at -0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 05f31c1b-3cb8-47b0-b3e9-fe05391c0618))
(pad "2" smd roundrect (at 0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 32 "Net-(U4-ICHG)") (pintype "passive") (tstamp bba784fa-0ecf-40d6-b885-0adf25c820d4))
(model "${KIPRJMOD}/Data/CosmicLSM_3DModels/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "CosmicLSM_Footprints:JST_GH_SM05B-GHS-TB_1x05-1MP_P1.25mm_Horizontal" (layer "F.Cu")
(tstamp 1b1390e5-34c1-41cd-80ca-9464cf76855a)
(at 161.691949 107.25)
(descr "JST GH series connector, SM05B-GHS-TB (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator")
(tags "connector JST GH top entry")
(property "Sheetfile" "Cosmic Slime (ESP+BMI+QMC).kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x05, script generated")
(property "ki_keywords" "connector")
(path "/83c8ee92-b99e-49a7-a3b0-9a8f9955a386")
(attr smd)
(fp_text reference "J2" (at 0.108051 1.35) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 24873eb6-5a9d-4a38-b3bf-b11487b33291)
)
(fp_text value "JST GH" (at 0 3.9) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9f04647f-683d-4aeb-bd56-a3763347cca7)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 59f3eed5-cd9a-40ec-8fdd-458d85d1d613)
)
(fp_line (start -4.86 -1.71) (end -3.06 -1.71)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7e77826b-bfec-4ec8-bd0e-357f9aefe960))
(fp_line (start -4.86 -0.26) (end -4.86 -1.71)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2f0b8d7c-4fd8-4998-b20a-e54c438ea29b))
(fp_line (start -3.59 2.56) (end 3.59 2.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6e289ece-5e59-4cfb-9675-08c1d032a045))
(fp_line (start -3.06 -1.71) (end -3.06 -2.7)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ac89ffe3-8900-49a9-ab32-60be9d14b6e3))
(fp_line (start 4.86 -1.71) (end 3.06 -1.71)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fc80a969-ec82-4d94-8fe0-3cae6313e322))
(fp_line (start 4.86 -0.26) (end 4.86 -1.71)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ab1a5834-d9f0-45e8-a376-506c233b5c8f))
(fp_line (start -5.35 -3.2) (end -5.35 3.2)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f8879494-5d07-4c2e-913b-67ce4fbae630))
(fp_line (start -5.35 3.2) (end 5.35 3.2)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b449f98a-7326-4bb4-88e7-438984e13345))
(fp_line (start 5.35 -3.2) (end -5.35 -3.2)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 67ee94fe-0875-4dc7-8715-ab285fc71f77))
(fp_line (start 5.35 3.2) (end 5.35 -3.2)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 537a6cab-d6fc-4795-b633-a634c11eb4ce))
(fp_line (start -4.75 -1.6) (end -4.75 2.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9aaaa1d7-402c-42a6-b18e-658ce734db59))
(fp_line (start -4.75 -1.6) (end 4.75 -1.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 010e21db-cdde-4661-a508-40e2fab4e4ee))
(fp_line (start -4.75 2.45) (end 4.75 2.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5fd61ba5-1f01-436d-96ec-0ab30ef009a7))
(fp_line (start -3 -1.6) (end -2.5 -0.892893)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp edf952be-a8eb-4af4-9618-c49b3687d205))
(fp_line (start -2.5 -0.892893) (end -2 -1.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e65d8333-97b9-40fc-a181-e5455a0a1a37))
(fp_line (start 4.75 -1.6) (end 4.75 2.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 68ababd5-c513-4d34-91cf-f4ec27cb3c26))
(pad "1" smd roundrect (at -2.5 -1.85) (size 0.6 1.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 15 "SCL") (pinfunction "Pin_1") (pintype "passive") (tstamp e2348f7d-447e-47a6-920e-3efc3941f6d1))
(pad "2" smd roundrect (at -1.25 -1.85) (size 0.6 1.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp c9d77453-ce8a-4e1b-aede-1c1556673c6e))
(pad "3" smd roundrect (at 0 -1.85) (size 0.6 1.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 16 "LSM_INT_AUX") (pinfunction "Pin_3") (pintype "passive") (tstamp 14f75794-243d-41a5-99d3-8976a17b3eec))
(pad "4" smd roundrect (at 1.25 -1.85) (size 0.6 1.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "+3V3") (pinfunction "Pin_4") (pintype "passive") (tstamp bdc943df-203d-4221-8fe6-f0e1406c69f0))
(pad "5" smd roundrect (at 2.5 -1.85) (size 0.6 1.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 17 "SDA") (pinfunction "Pin_5") (pintype "passive") (tstamp c688d6ec-71e1-42f7-bd20-0fe0f29827af))
(pad "MP" smd roundrect (at -4.35 1.35) (size 1 2.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp d309c0ec-35cc-496d-af07-57ec7895da0f))
(pad "MP" smd roundrect (at 4.35 1.35) (size 1 2.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 9c4a3f83-63e9-4f85-9d29-836a962797c0))
(model "${KIPRJMOD}/Data/CosmicLSM_3DModels/JST_GH_SM05B-GHS-TB_1x05-1MP_P1.25mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "CosmicLSM_Footprints:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu")
(tstamp 258e18ac-af56-4fb4-97ed-365a6527e167)
(at 149.6 98.75 -90)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(property "Sheetfile" "Cosmic Slime (ESP+BMI+QMC).kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/9a8e7862-2983-4240-a57d-09c0d8c778c7")
(attr smd)
(fp_text reference "R5" (at 0 -1.43 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ab7555f1-1c87-477f-bbf1-7c3f7b52d92d)
)
(fp_text value "5k1" (at 0 1.43 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9a6efc2c-8bea-49ec-9051-f3796bf3be8e)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 9aed3c77-9fec-47a7-8cc5-ea8ac595263c)
)
(fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ddb677de-edf2-4d1f-a2c6-b18be9e5757a))
(fp_line (start -0.254724 0.5225) (end 0.254724 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0cf6d841-e18a-44ad-99fb-715ffdb1a737))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cdb004f6-42cd-4325-8aba-46286259117e))
(fp_line (start -1.65 0.73) (end -1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 054de7e1-7bf5-4b54-85f1-1797624391ce))
(fp_line (start 1.65 -0.73) (end 1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0c10c532-04fe-4688-9900-2eb8aedf0c6e))
(fp_line (start 1.65 0.73) (end -1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 305f6719-b65e-45c7-924e-b6379ec996d6))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fb231790-5b0f-48f1-92b2-54a384dcf43d))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b353f92f-8cce-4ee9-be76-0e52f581551a))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6706f473-ecb7-49ea-af61-73dc85e920df))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 99065257-3960-4818-b53c-78a2523c27d0))
(pad "1" smd roundrect (at -0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 2b570ec6-b4ea-4cce-ad19-83bb2619f2b6))
(pad "2" smd roundrect (at 0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 23 "Net-(J3-CC2)") (pintype "passive") (tstamp e479977a-202d-4455-8320-6c60d0b6ff36))
(model "${KIPRJMOD}/Data/CosmicLSM_3DModels/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "CosmicLSM_Footprints:LED_0603_1608Metric_Pad1.05x0.95mm_HandSolder" (layer "F.Cu")
(tstamp 2701842b-ab51-412d-a2d2-4f9bace96ff9)
(at 140.5 107.175 90)
(descr "LED SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "LED handsolder")
(property "Sheetfile" "Cosmic Slime (ESP+BMI+QMC).kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Light emitting diode, small symbol")
(property "ki_keywords" "LED diode light-emitting-diode")
(path "/e7849a01-abc6-4830-a95e-1f3a5efd43f2")
(attr smd)
(fp_text reference "D2" (at 0 -1.43 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4aa98b78-672d-4c61-b975-c230ed991f8a)
)
(fp_text value "RED" (at 0 1.43 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e0ea74ef-3d8e-42cf-9a9b-361eb98f42f5)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 88c7d5a5-97e3-4a21-9d64-ce98cb984b5e)
)
(fp_line (start -1.66 -0.735) (end -1.66 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ee82fbb4-de9e-4a24-b9cc-54a13875aee8))
(fp_line (start -1.66 0.735) (end 0.8 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bee287e0-a127-4107-bc53-30460721a3b7))
(fp_line (start 0.8 -0.735) (end -1.66 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7992df55-1d44-4e7b-955e-f1dade5c1cca))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4a4ca79f-e27e-4fdc-877a-3693c8c787b6))
(fp_line (start -1.65 0.73) (end -1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 454aa84a-5736-4095-9715-d89fc8c19b8e))
(fp_line (start 1.65 -0.73) (end 1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a1fdc09a-e955-4f26-b4e5-52c2bdda4e4a))
(fp_line (start 1.65 0.73) (end -1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ec5404d3-eb5f-4753-8c35-9065e051daaa))
(fp_line (start -0.8 -0.1) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 43bbc00f-370c-4c6f-b476-127453a87e6f))
(fp_line (start -0.8 0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 486b64a4-fc43-4ab9-83a7-fc331e5d3e34))
(fp_line (start -0.5 -0.4) (end -0.8 -0.1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 31d2a6b8-dca5-4671-a9b7-bbf463e63431))
(fp_line (start 0.8 -0.4) (end -0.5 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ff000ad8-3637-450a-8034-69c3c4c50821))
(fp_line (start 0.8 0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cae062d0-2ab2-49d2-980d-f62bf1dbaca6))
(pad "1" smd roundrect (at -0.875 0 90) (size 1.05 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "K") (pintype "passive") (tstamp cc46c842-b2ec-4b6a-969a-af75f76e0dc3))
(pad "2" smd roundrect (at 0.875 0 90) (size 1.05 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 13 "Net-(D2-A)") (pinfunction "A") (pintype "passive") (tstamp 9dfd2161-b24b-4cb0-8536-66b1b7a36f70))
(model "${KIPRJMOD}/Data/CosmicLSM_3DModels/LED_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "CosmicLSM_Footprints:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu")
(tstamp 276e9089-67ca-48da-9276-b7687ccc0e8f)
(at 166.75 74.94 180)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(property "Sheetfile" "Cosmic Slime (ESP+BMI+QMC).kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/f0b44492-191e-495a-a834-5ac3884bed7f")
(attr smd)
(fp_text reference "R11" (at 0 -1.43) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5622b849-a120-4ec3-be69-0feed091537d)
)
(fp_text value "150k" (at 0 1.43) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b8d21580-8146-4890-9bcc-a68c8bb24a6b)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp a699ada6-233a-4ccd-b9f6-c3a8d8c7da76)
)
(fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f64a7c7d-0b09-413d-ac42-74d75963b2db))
(fp_line (start -0.254724 0.5225) (end 0.254724 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 66f6f4d0-3627-49f8-99dd-5957a3133520))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 181c333a-9b18-4141-8ced-e4a6e65f94fb))
(fp_line (start -1.65 0.73) (end -1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8520e2eb-b6a3-4757-9cc8-ab5c14bdabbb))
(fp_line (start 1.65 -0.73) (end 1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 68b5d6a8-5397-4bf1-ad1f-476fed7c3799))
(fp_line (start 1.65 0.73) (end -1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1b42785f-daee-44d6-a8a3-99ba908f76c7))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d9f5d50a-3f2d-4a62-8257-a8f896521fba))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a77daffb-9180-425b-a7ca-d42b1cdefe43))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a83af20c-cc71-479e-9e91-545f22288d23))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp abec67e6-255a-483d-b05d-4bd6589ef88c))
(pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 5765bb24-d22e-468f-9d23-b38d66299443))
(pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 29 "ADC") (pintype "passive") (tstamp 2b91196b-ef83-4094-9acf-a1b043e45cdf))
(model "${KIPRJMOD}/Data/CosmicLSM_3DModels/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "CosmicLSM_Footprints:SW_SPST_B3U-1000P" (layer "F.Cu")
(tstamp 2fbe7f29-aa3b-4ea6-992d-69b2da5f4351)
(at 147 87.5)
(descr "Ultra-small-sized Tactile Switch with High Contact Reliability, Top-actuated Model, without Ground Terminal, without Boss")
(tags "Tactile Switch")
(property "Sheetfile" "Cosmic Slime (ESP+BMI+QMC).kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Single Pole Single Throw (SPST) switch")
(property "ki_keywords" "switch lever")
(path "/934f6e26-4af3-4347-827d-b925d47ba228")
(attr smd)
(fp_text reference "SW2" (at 0 -2.5) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 61ba190c-efe3-4ea3-9b7c-78d27d84daba)
)
(fp_text value "SW_SPST" (at 0 2.5) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9db7dd88-e6db-443c-a2bb-fa8a0a9a2a98)
)
(fp_text user "${REFERENCE}" (at 4 -1.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cd29c792-a582-4ce9-a750-9fcc990461c8)
)
(fp_line (start -1.65 -1.4) (end 1.65 -1.4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f88fa888-b381-4bb0-978f-a1227fa1761c))
(fp_line (start -1.65 -1.1) (end -1.65 -1.4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp aee2e4fd-d14f-490d-a989-f9b0d07a91d0))
(fp_line (start -1.65 1.1) (end -1.65 1.4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d1930f1b-e026-408d-aa4f-f4f33f214c89))
(fp_line (start -1.65 1.4) (end 1.65 1.4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8cfdab04-8ada-44d4-a0e3-235c5c6b82d0))
(fp_line (start 1.65 -1.4) (end 1.65 -1.1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 66972ca2-7040-42c8-b3ec-478bd97c9d9e))
(fp_line (start 1.65 1.4) (end 1.65 1.1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b4e2cf98-bdfe-4c05-a8c2-ce025ccc38d5))
(fp_line (start -2.4 -1.65) (end -2.4 1.65)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f32237b9-ff7d-43d2-9be8-00f942423b08))
(fp_line (start -2.4 1.65) (end 2.4 1.65)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6834ec19-0f16-428b-b0a8-1cd84febf62b))
(fp_line (start 2.4 -1.65) (end -2.4 -1.65)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d7108f15-57fa-4c23-b929-efb220d6603e))
(fp_line (start 2.4 1.65) (end 2.4 -1.65)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7a819a87-c501-45e2-a6df-ef1552401a28))
(fp_line (start -1.5 -1.25) (end 1.5 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 44d6b0fe-b114-4609-bc33-0a2a0dcc0023))
(fp_line (start -1.5 1.25) (end -1.5 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp dab5a182-a45d-4724-948d-7ac9c95a8285))
(fp_line (start 1.5 -1.25) (end 1.5 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 547fc871-01ab-41c9-b35c-ab7b93d70e79))
(fp_line (start 1.5 1.25) (end -1.5 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 07d9e7a0-b1e4-4130-93e9-99ea2dac94f0))
(fp_circle (center 0 0) (end 0.75 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp da753e44-ab6c-4c61-8e50-22429faa1fde))
(pad "1" smd rect (at -1.7 0) (size 0.9 1.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 34 "/BOOT") (pinfunction "A") (pintype "passive") (tstamp 1d6b1235-47c9-437d-b307-8d946e25f38c))
(pad "2" smd rect (at 1.7 0) (size 0.9 1.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "B") (pintype "passive") (tstamp ec2d6ec6-d6bf-4340-809b-06bfd407d3e6))
(model "${KIPRJMOD}/Data/CosmicLSM_3DModels/SW_SPST_B3U-1000P.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "CosmicLSM_Footprints:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu")
(tstamp 335bcdac-460c-42d0-9c03-ebe8396d9f41)
(at 139.975 95.625)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(property "Sheetfile" "Cosmic Slime (ESP+BMI+QMC).kicad_sch")
(property "Sheetname" "")
(property "dnp" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/8277fde1-c14c-4de3-8b24-d41dbbe16c2a")
(attr smd exclude_from_pos_files)
(fp_text reference "C4" (at 0 -1.43) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f47ede1f-c442-48ec-8f55-44e60b079f3f)
)
(fp_text value "22u" (at 0 1.43) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 32ebde0e-8d42-4f2e-bdf9-b77e9dac62e6)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 5371e449-1f40-4e4f-a1e1-ccb4d47769dd)
)
(fp_line (start -0.146267 -0.51) (end 0.146267 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1ef762c1-54d0-4e5d-9d16-65cc0c695836))
(fp_line (start -0.146267 0.51) (end 0.146267 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 423c5513-0e34-413a-b0df-ac64812c88e4))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 435663b6-bca0-4285-92b1-5a431216ad46))
(fp_line (start -1.65 0.73) (end -1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9b4f6479-7b16-43ad-b150-908c93d5095e))
(fp_line (start 1.65 -0.73) (end 1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6660415a-57ac-4fdf-8de3-48a69cd1c8b2))
(fp_line (start 1.65 0.73) (end -1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7f7ba6c9-e39e-4379-b0eb-78152e688719))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 447c4ed1-e18d-451b-83f1-972c87f3d6cb))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 687e8868-d153-431b-bdb1-d2bc7fecfcd5))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 528cf75f-7ea2-4fc5-8cbd-c9016a3a9fa2))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7d11d81e-5721-4583-90cb-1fadb713857e))
(pad "1" smd roundrect (at -0.8625 0) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+5V") (pintype "passive") (tstamp 8933ef42-6e0b-4e77-8e56-b0c0c43c6358))
(pad "2" smd roundrect (at 0.8625 0) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 57d8db13-b0bf-4a4b-b66a-bba254e3131d))
(model "${KIPRJMOD}/Data/CosmicLSM_3DModels/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "CosmicLSM_Footprints:L_0603_1608Metric_Pad1.05x0.95mm_HandSolder" (layer "F.Cu")
(tstamp 3991c577-80cc-4bd9-884c-9cb30f4c5cfa)
(at 131.125 74.7)
(descr "Inductor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "inductor handsolder")
(property "Sheetfile" "Cosmic Slime (ESP+BMI+QMC).kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Inductor, small symbol")
(property "ki_keywords" "inductor choke coil reactor magnetic")
(path "/a241c133-b9fd-4b8c-87f1-d5372f97fcec")
(attr smd)
(fp_text reference "L1" (at 0 -1.43) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ab7e7bfc-9ebb-49b9-9fba-34977efc2ff5)
)
(fp_text value "2u2" (at 0 1.43) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5bb14200-f495-4346-89a2-3005d5d4978d)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 835ae171-4d27-4abb-af45-b6309c2a0453)
)
(fp_line (start -0.171267 -0.51) (end 0.171267 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4744ed89-f095-4e5e-b507-d0fbcb942f22))
(fp_line (start -0.171267 0.51) (end 0.171267 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fa88110f-97d3-49d9-b458-be58242b9a12))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9a01fbe6-49f1-4d41-a9a8-a8c09f47786d))
(fp_line (start -1.65 0.73) (end -1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 160274f3-3bb6-4a35-95f0-605ff73af025))
(fp_line (start 1.65 -0.73) (end 1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9f3a7b61-f0d9-4fd8-9327-f8276b252bb9))
(fp_line (start 1.65 0.73) (end -1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 14e2d780-14e9-4f6f-b745-47a4b6681798))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c6b2a3a0-5cee-4281-81ca-986d43710a66))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f1c0b22f-914c-4133-b230-fdbe29572abf))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a4fff0ba-d107-479f-ada9-7f710e8a5c1f))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7895a376-11ff-4878-8395-c954019f05a3))
(pad "1" smd roundrect (at -0.875 0) (size 1.05 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 24 "Net-(U3-SW)") (pintype "passive") (tstamp 1e5c6594-626c-463b-a011-feb6cc8a7f14))
(pad "2" smd roundrect (at 0.875 0) (size 1.05 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "+3V3") (pintype "passive") (tstamp d556e4fb-2439-4393-96fd-8bc2e6aa348e))
(model "${KIPRJMOD}/Data/CosmicLSM_3DModels/L_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "CosmicLSM_Footprints:JST_PH_S2B-PH-SM4-TB_1x02-1MP_P2.00mm_Horizontal" (layer "F.Cu")
(tstamp 3b3e8f4d-16af-4ce8-bccb-11ddae03c06c)
(at 131.019417 102.6 -45)
(descr "JST PH series connector, S2B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator")
(tags "connector JST PH top entry")
(property "Sheetfile" "Cosmic Slime (ESP+BMI+QMC).kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x02, script generated")
(property "ki_keywords" "connector")
(path "/69bf96f2-0d89-4419-8a5e-a6b53bfebf47")
(attr smd)
(fp_text reference "J1" (at 3.663225 -1.400484 135) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7f473d90-8a84-4a36-ad2f-bb6b8d205fe0)
)
(fp_text value "BAT" (at 0 5.8 135) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5671ea35-a6d0-4dc0-b9ec-bb7f0b7d75dd)
)
(fp_text user "${REFERENCE}" (at 0 1.5 135) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a143665d-91df-416a-8c5d-4579597aebed)
)
(fp_line (start -4.06 -3.31) (end -3.04 -3.31)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 31a4ce87-39a8-4447-b499-e61c7c808c0b))
(fp_line (start -4.06 0.94) (end -4.06 -3.31)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 934d7fd7-0376-48a0-87f4-ac600077176d))
(fp_line (start -3.04 -3.31) (end -3.04 -1.71)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 83a750ac-8f0a-444d-ad4c-d0a270af8533))
(fp_line (start -3.04 -1.71) (end -1.76 -1.71)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7e52afa4-44d5-453d-ab8c-eeb7dd7dd1cc))
(fp_line (start -2.34 4.51) (end 2.34 4.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 03087bc4-91f4-441f-bf7d-aad1bb4af7a8))
(fp_line (start -1.76 -1.71) (end -1.76 -4.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3f247add-912d-466c-a29a-239686d5f207))
(fp_line (start 3.04 -3.31) (end 3.04 -1.71)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b66551ad-5234-4c4b-b2f5-5f85aa6be1e3))
(fp_line (start 3.04 -1.71) (end 1.76 -1.71)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 897105d3-d825-4f7f-8ed1-115aaacab0c1))
(fp_line (start 4.06 -3.31) (end 3.04 -3.31)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 20c54496-ea31-44ef-a981-927308973ee3))
(fp_line (start 4.06 0.94) (end 4.06 -3.31)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 608089b1-3d2d-4432-8ef7-20f4b81c5937))
(fp_line (start -4.6 -5.1) (end -4.6 5.1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a1d1e095-2f5d-4e90-a2a1-c60f87a23603))
(fp_line (start -4.6 5.1) (end 4.6 5.1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 22b3eab3-1506-4b06-88da-f68f9a2c303c))
(fp_line (start 4.6 -5.1) (end -4.6 -5.1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 08a37403-3b47-4bb6-873f-391d151d50f6))
(fp_line (start 4.6 5.1) (end 4.6 -5.1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d6075f96-a460-450e-b27a-170252522af2))
(fp_line (start -3.95 -3.2) (end -3.95 4.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0cba1940-6882-4236-9904-8628d3c5f3c9))
(fp_line (start -3.95 -3.2) (end -3.15 -3.2)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b0ab325b-1b13-49c0-9429-f2a1451c8e9a))
(fp_line (start -3.95 4.4) (end 3.95 4.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e4472ce0-900b-4f14-ac8d-9c0996786f47))
(fp_line (start -3.15 -3.2) (end -3.15 -1.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ed2929c8-ba1c-46df-8b1b-03b4cfb0156c))
(fp_line (start -3.15 -1.6) (end 3.15 -1.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp eeb57a85-bcfc-47ec-87fe-98ddcf3666e3))
(fp_line (start -1.5 -1.6) (end -1 -0.892893)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 07532188-23fc-49d5-af62-bfc69d17b1b5))
(fp_line (start -1 -0.892893) (end -0.5 -1.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c817c57c-b7b4-454b-bbd8-d558c1dfed37))
(fp_line (start 3.15 -3.2) (end 3.95 -3.2)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7a7784e2-f067-4ea5-8dea-ee778066902d))
(fp_line (start 3.15 -1.6) (end 3.15 -3.2)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0742cff7-57ac-45a5-8141-91eeba50715d))
(fp_line (start 3.95 -3.2) (end 3.95 4.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a80fd601-6f0d-4b6d-8e5a-5aa65711192a))
(pad "1" smd roundrect (at -1 -2.85 315) (size 1 3.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp b00b2e15-0447-4ab1-8984-42e812156fdf))
(pad "2" smd roundrect (at 1 -2.85 315) (size 1 3.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "+BATT") (pinfunction "Pin_1") (pintype "passive") (tstamp 2600e565-5b01-4a16-8079-ae7d0ed7e342))
(pad "MP" smd roundrect (at -3.35 2.9 315) (size 1.5 3.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1666673333) (tstamp ae2749c8-350e-4b69-abb0-cbc64f9106d9))
(pad "MP" smd roundrect (at 3.35 2.9 315) (size 1.5 3.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1666673333) (tstamp 033cdfc6-3dac-4c98-8a69-9908ca60707b))
(model "${KIPRJMOD}/Data/CosmicLSM_3DModels/S2B-PH-SM4-TB(LF)(SN)--3DModel-STEP-56544.STEP"
(offset (xyz 0 -4.5 0))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 0))
)
)
(footprint "CosmicLSM_Footprints:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu")
(tstamp 3ff15ebd-70b6-4a2d-8696-b48cf60e39e2)
(at 134.6125 73.45 180)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(property "Sheetfile" "Cosmic Slime (ESP+BMI+QMC).kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/4db56458-b6fb-4cd5-a8f5-c856b6303fa9")
(attr smd)
(fp_text reference "C11" (at 0 -1.43) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9f913db6-b6aa-4db3-ab7a-fd5b78d4b4d5)
)
(fp_text value "1u" (at 0 1.43) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8a094b7a-393a-4178-8096-7ae751d148dd)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 3566f8de-5aae-475d-8bb0-1dbc61be83fe)
)
(fp_line (start -0.146267 -0.51) (end 0.146267 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 219451f5-a66b-4cae-b7ba-d8ae6d192e4c))
(fp_line (start -0.146267 0.51) (end 0.146267 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9a1a8e35-952f-406a-93eb-c9f09ee85f09))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f5e35ad8-34f5-4e43-9d6b-162d87c22cb8))
(fp_line (start -1.65 0.73) (end -1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3fafc53f-b622-4928-992b-88330f16588c))
(fp_line (start 1.65 -0.73) (end 1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 334fd376-8822-43a5-8780-fcc1e5f8ebec))
(fp_line (start 1.65 0.73) (end -1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e3d1a198-3797-48cc-82a1-ce70be24db56))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c1e06812-be66-478e-8dfa-5dd762b40764))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6291aea5-64a6-402a-81a9-692c567a1e4c))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c645b7a4-af68-4c3a-8d91-74522a26c963))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1ff175fc-de1d-424f-8a29-c9e5885c6e69))
(pad "1" smd roundrect (at -0.8625 0 180) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "+3V3") (pintype "passive") (tstamp 42385993-b6fd-4869-aff7-8f0206921c0f))
(pad "2" smd roundrect (at 0.8625 0 180) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp d396cee9-b96c-41eb-b41b-8e019028fde1))
(model "${KIPRJMOD}/Data/CosmicLSM_3DModels/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "CosmicLSM_Footprints:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu")
(tstamp 425def09-effb-455f-b9c5-57195b4c5eae)
(at 139.9875 97.425)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(property "Sheetfile" "Cosmic Slime (ESP+BMI+QMC).kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/fcb611df-2071-473c-81f2-249abdf60410")
(attr smd)
(fp_text reference "C1" (at 0 -1.43) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))