-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmosquito-c3.kicad_pcb
7591 lines (7537 loc) · 377 KB
/
mosquito-c3.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20221018) (generator pcbnew)
(general
(thickness 1.0192)
)
(paper "A4")
(title_block
(title "µHAN mosquito")
(date "2023-03-17")
(rev "1")
)
(layers
(0 "F.Cu" signal)
(1 "In1.Cu" signal)
(2 "In2.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (color "Black") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 0.0994) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "In1.Cu" (type "copper") (thickness 0.0152))
(layer "dielectric 2" (type "prepreg") (thickness 0.7) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "In2.Cu" (type "copper") (thickness 0.0152))
(layer "dielectric 3" (type "core") (thickness 0.0994) (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 "Black") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions true)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 6)
(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 false)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk true)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "gerber/")
)
)
(net 0 "")
(net 1 "Net-(D2-K)")
(net 2 "/V_FB")
(net 3 "GND")
(net 4 "Net-(U2-BOOST)")
(net 5 "+3V3")
(net 6 "/MBUS+")
(net 7 "Net-(D4-K)")
(net 8 "Net-(U2-EN)")
(net 9 "/HAN_SIGNAL")
(net 10 "/USB_VBUS")
(net 11 "/USB_P")
(net 12 "/USB_N")
(net 13 "/LED_R")
(net 14 "/LED_G")
(net 15 "/LED_B")
(net 16 "/SW_RESET")
(net 17 "/SW_BOOT")
(net 18 "Net-(D5-K)")
(net 19 "Net-(D3-A)")
(net 20 "unconnected-(J1-Pad1)")
(net 21 "unconnected-(J1-Pad2)")
(net 22 "unconnected-(J1-Pad5)")
(net 23 "unconnected-(J1-Pad6)")
(net 24 "Net-(D6-K)")
(net 25 "Net-(D7-RK)")
(net 26 "Net-(D7-GK)")
(net 27 "Net-(D7-BK)")
(net 28 "Net-(J2-CC1)")
(net 29 "Net-(J2-CC2)")
(net 30 "Net-(Q1-B)")
(net 31 "Net-(Q1-C)")
(net 32 "Net-(U1-GPIO20{slash}U0RXD)")
(net 33 "Net-(U1-GPIO21{slash}U0TXD)")
(net 34 "unconnected-(U1-NC-Pad4)")
(net 35 "unconnected-(U1-GPIO3{slash}ADC1_CH3-Pad6)")
(net 36 "unconnected-(U1-NC-Pad7)")
(net 37 "unconnected-(U1-NC-Pad9)")
(net 38 "unconnected-(U1-NC-Pad10)")
(net 39 "unconnected-(U1-GPIO0{slash}ADC1_CH0{slash}XTAL_32K_P-Pad12)")
(net 40 "unconnected-(U1-GPIO1{slash}ADC1_CH1{slash}XTAL_32K_N-Pad13)")
(net 41 "unconnected-(U1-NC-Pad15)")
(net 42 "unconnected-(U1-GPIO10-Pad16)")
(net 43 "unconnected-(U1-NC-Pad17)")
(net 44 "unconnected-(U1-NC-Pad24)")
(net 45 "unconnected-(U1-NC-Pad25)")
(net 46 "unconnected-(U1-NC-Pad28)")
(net 47 "unconnected-(U1-NC-Pad29)")
(net 48 "unconnected-(U1-NC-Pad32)")
(net 49 "unconnected-(U1-NC-Pad33)")
(net 50 "unconnected-(U1-NC-Pad34)")
(net 51 "unconnected-(U1-NC-Pad35)")
(footprint "mosquito:D_SOD-523" (layer "F.Cu")
(tstamp 35ee6ba0-2b3b-4200-a019-741d2d86f5dd)
(at 79.95 46.76 90)
(descr "http://www.diodes.com/datasheets/ap02001.pdf p.144")
(tags "Diode SOD523")
(property "DNP" "DNP")
(property "Sheetfile" "mosquito-c3.kicad_sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(property "ki_description" "Schottky diode")
(property "ki_keywords" "diode Schottky")
(path "/a97bd477-2ae1-4294-b159-410d900a72ac")
(attr exclude_from_bom)
(fp_text reference "D4" (at 0 -1.3 270) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c3a37df4-39f7-482e-a890-82e92cddcb49)
)
(fp_text value " MSK4005" (at 0 1.4 270) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1fadc631-dd08-47f0-8383-eb7f59af49fd)
)
(fp_text user "${REFERENCE}" (at -0.05 0.1 270) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a0da652c-0c64-4deb-b0b8-3a882f818f5d)
)
(fp_line (start -1.15 -0.6) (end -1.15 0.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3ae5f8b4-f697-474a-a06a-0b09fa3eac1a))
(fp_line (start 0.7 -0.6) (end -1.15 -0.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7de4d3ce-0112-4ff5-a1aa-ed435e35d4d0))
(fp_line (start 0.7 0.6) (end -1.15 0.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bba7d473-6ad8-4517-aa36-8af47921a80a))
(fp_line (start -1.25 -0.7) (end 1.25 -0.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ee072aa1-bc35-4a69-b99a-e999feb01a2c))
(fp_line (start -1.25 0.7) (end -1.25 -0.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1b578999-9cb6-4880-8baf-94b2f9772d88))
(fp_line (start 1.25 -0.7) (end 1.25 0.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d59aabf4-3bd4-4770-be74-05373af01dc7))
(fp_line (start 1.25 0.7) (end -1.25 0.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e2917ad5-bcff-46f4-936f-64e01f1f731f))
(fp_line (start -0.65 -0.45) (end 0.65 -0.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 80d4c89b-d13c-45ee-a5e5-e339732d8f26))
(fp_line (start -0.65 0.45) (end -0.65 -0.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 82718e73-5963-445d-a1a5-77338d742f4b))
(fp_line (start -0.2 0) (end -0.35 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 04308b07-1708-423c-b55f-3053874f7b7a))
(fp_line (start -0.2 0) (end 0.1 0.2)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 44411b79-3119-4383-bdc5-819aec25f417))
(fp_line (start -0.2 0.2) (end -0.2 -0.2)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fd3ee286-89c1-42f3-b7fe-40dc62f79448))
(fp_line (start 0.1 -0.2) (end -0.2 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 540c612d-2dd1-4532-afe8-3c49626d758c))
(fp_line (start 0.1 0) (end 0.25 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b39a51a9-e30b-4329-82d2-a68028686afc))
(fp_line (start 0.1 0.2) (end 0.1 -0.2)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e8c0607c-6c20-42ab-824e-87ff3c9905fa))
(fp_line (start 0.65 -0.45) (end 0.65 0.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 620c18f5-a82d-427e-9bff-27c610585c58))
(fp_line (start 0.65 0.45) (end -0.65 0.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 06023fc4-e370-40aa-8069-a716167157fc))
(pad "1" smd roundrect (at -0.7 0 270) (size 0.6 0.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "Net-(D4-K)") (pinfunction "K") (pintype "passive") (tstamp 5ded8f60-6a35-4e54-9b73-47413ae64b31))
(pad "2" smd roundrect (at 0.7 0 270) (size 0.6 0.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "GND") (pinfunction "A") (pintype "passive") (tstamp c2eeb6cf-2366-4258-8640-d710529cf82a))
(model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-523.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "mosquito:CKST252012" (layer "F.Cu")
(tstamp 3834640c-a37b-46a4-920b-02cd778ac998)
(at 78.67 49.35 180)
(descr "Inductor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "inductor")
(property "Sheetfile" "mosquito-c3.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Inductor")
(property "ki_keywords" "inductor choke coil reactor magnetic")
(path "/e8118c40-ae95-400f-8d44-11e7357ca12f")
(attr smd)
(fp_text reference "L1" (at 0 -2.28 270) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d2d6a4d4-5064-4164-b60d-d70fd641f562)
)
(fp_text value "6.8uH" (at 0 2.28 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ec00cedc-6122-4640-a1cd-584a73292713)
)
(fp_text user "${REFERENCE}" (at 0 0 180) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 353156a8-2309-4706-967e-14116845bb21)
)
(fp_line (start -0.4 -1.1) (end 0.4 -1.1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fa7e4ea5-ed71-4c6f-bd26-194c9f230e61))
(fp_line (start -0.4 1.1) (end 0.4 1.1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fee7c863-b836-4133-9294-a65186ec7989))
(fp_rect (start -1.65 -1.15) (end 1.65 1.15)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 2d1ce67e-e51a-4737-81ba-0ed9d284ca6f))
(fp_rect (start -1.25 -1) (end 1.25 1)
(stroke (width 0.02) (type solid)) (fill none) (layer "F.Fab") (tstamp f63cf483-e81d-4d13-a99d-bab296344bf9))
(fp_rect (start -1.2 -1) (end 1.3 1)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.Fab") (tstamp c41f1c4c-94b6-49e1-bd57-d3cb78225d5d))
(pad "1" smd roundrect (at -1 0 180) (size 1.2 2.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2)
(net 7 "Net-(D4-K)") (pinfunction "1") (pintype "passive") (tstamp b9f9931a-7702-46da-bf1b-454c603bccfc))
(pad "2" smd roundrect (at 1 0 180) (size 1.2 2.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2)
(net 5 "+3V3") (pinfunction "2") (pintype "passive") (tstamp 8b438b0f-889d-4c5f-9d80-12bbcaa434b9))
(model "${KICAD6_3DMODEL_DIR}/Inductor_SMD.3dshapes/L_Wuerth_MAPI-4020.wrl"
(offset (xyz 0 0 0))
(scale (xyz 0.83 0.5 0.6))
(rotate (xyz 0 0 0))
)
)
(footprint "PCM_kikit:Tab" (layer "F.Cu")
(tstamp 38c31cda-e68e-41a7-8ac6-f1aa3f5960ed)
(at 82.1 33.4 -90)
(descr "A symbol representing annotation for tab placement")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "REF**" (at 0 -2 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 53dc4597-4de5-42e3-8d3d-3ed2df2a2cab)
)
(fp_text value "Tab" (at -2.75 -1 90) (layer "Dwgs.User")
(effects (font (size 1.2 1.2) (thickness 0.2)))
(tstamp 0784463f-f2cc-418d-b0c3-575e0875dc6d)
)
(fp_text user "KIKIT: width: 10mm" (at -5.5 0) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 71b67424-5cac-4d88-9bec-8dec1a12bd4d)
)
(fp_line (start 0.25 0) (end -2.75 0)
(stroke (width 0.3) (type solid)) (layer "Dwgs.User") (tstamp 51a1f4f6-f63b-482f-a695-6284fc23212d))
(fp_line (start 0.25 0) (end -0.75 -1)
(stroke (width 0.3) (type solid)) (layer "Dwgs.User") (tstamp 8c71b7e5-d816-4300-8a24-117a0ae8f69b))
(fp_line (start 0.25 0) (end -0.75 1)
(stroke (width 0.3) (type solid)) (layer "Dwgs.User") (tstamp 59fada91-35b4-40b1-b3b2-d8ea4f793fa2))
(fp_line (start 0.25 1) (end 0.25 -1)
(stroke (width 0.3) (type solid)) (layer "Dwgs.User") (tstamp 580415ea-0103-44ab-988a-53aca7957474))
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tstamp 4c6b1570-de20-4319-bae1-3b3c20a71ad7)
(at 84.15 49.84 90)
(descr "Resistor SMD 0402 (1005 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" "mosquito-c3.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/9e89790e-9667-4c03-a88c-17a483425f3d")
(attr smd)
(fp_text reference "R2" (at 0 -1.17 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp de44aa10-b98f-4ea5-80e1-f51cd8146c11)
)
(fp_text value "24k" (at 0 1.17 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e7094c85-fcb0-4c0f-a24a-fd911bc40515)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp 932a6baa-a535-42ee-9cd9-74c5e67e3e72)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d396c1f7-44d0-41dd-944a-ed90bb1bb12d))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 613b2df7-c9cc-48cf-a213-d61b713e7a65))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0ffb8521-b14a-4859-b04f-f96212577abe))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 187f3366-060f-4e1d-b23c-24ec2d597c58))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp dd6e6200-5c63-4c66-8502-e02babcf0404))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 16984428-242c-4c34-9d37-2ff7c87c8f6a))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp abf00cff-6995-40e7-8b60-40f18a30e068))
(fp_line (start -0.525 0.27) (end -0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 958b0a29-b242-4ffa-ab7e-794b98665d90))
(fp_line (start 0.525 -0.27) (end 0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a64c2005-fb02-41c8-82a9-2ca236689048))
(fp_line (start 0.525 0.27) (end -0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 35019f57-41db-497f-9d48-3540baf3f414))
(pad "1" smd roundrect (at -0.51 0 90) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "/V_FB") (pintype "passive") (tstamp 5167a901-837d-4de7-960c-41aa4be5000a))
(pad "2" smd roundrect (at 0.51 0 90) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "GND") (pintype "passive") (tstamp 9a58de5c-9d31-4ad2-b82c-508cfba1b6ac))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-23-6" (layer "F.Cu")
(tstamp 4c8f1820-a075-4e0e-91d7-599801c0bfaa)
(at 82.17 50.4625 90)
(descr "SOT, 6 Pin (https://www.jedec.org/sites/default/files/docs/Mo-178c.PDF variant AB), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "SOT TO_SOT_SMD")
(property "Sheetfile" "mosquito-c3.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "300mA 42V Input Step-Down DC-DC Regulator, Adjustable Output Voltage, 550kHz, TSOT-23-5")
(property "ki_keywords" "Miniature Step-Down Buck Voltage Regulator")
(path "/12b12729-dedb-419b-b6ed-16608f01556e")
(attr smd)
(fp_text reference "U2" (at -0.4475 0.39 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 85eed52f-7511-413c-8303-9181eb4451cf)
)
(fp_text value "TP6841S6" (at 0 2.4 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5f3713a2-a617-4ae4-9107-f78f4acfa1c4)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp f17dabcc-942a-4dd7-9bde-c48c6981ea14)
)
(fp_line (start 0 -1.56) (end -1.8 -1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3849ced8-0489-4786-85a6-74cdd5f0684b))
(fp_line (start 0 -1.56) (end 0.8 -1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 65b11647-a3ec-4920-b723-121924c1929b))
(fp_line (start 0 1.56) (end -0.8 1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d6694c5c-4bfa-4240-9f02-05c0c11e62f3))
(fp_line (start 0 1.56) (end 0.8 1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0e475358-75fd-4c48-bd94-2f243cfb82ef))
(fp_line (start -2.05 -1.7) (end -2.05 1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b28ac5ee-0cd5-44b4-9e6c-3a27c2aadecd))
(fp_line (start -2.05 1.7) (end 2.05 1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a0018b2f-ae5a-481f-95c9-7f6030738a1e))
(fp_line (start 2.05 -1.7) (end -2.05 -1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 44dadee5-43ed-4a12-9f29-2477bae3166f))
(fp_line (start 2.05 1.7) (end 2.05 -1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 01bd948d-d382-4486-8a57-9222dbcaa8f1))
(fp_line (start -0.8 -1.05) (end -0.4 -1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4c37e802-7713-4393-badd-43cc82a553c9))
(fp_line (start -0.8 1.45) (end -0.8 -1.05)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4420edba-5776-431f-83c0-24bcf98fa2f2))
(fp_line (start -0.4 -1.45) (end 0.8 -1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 350681e0-aa72-444c-a83c-a981a07d6cd2))
(fp_line (start 0.8 -1.45) (end 0.8 1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b1c01d69-aaa2-4c6c-85ce-85f5224da498))
(fp_line (start 0.8 1.45) (end -0.8 1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7244c3f0-4b2d-43aa-b6d7-e07d694cd497))
(pad "1" smd roundrect (at -1.1375 -0.95 90) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "Net-(U2-BOOST)") (pinfunction "BOOST") (pintype "input") (tstamp 74def46b-8425-4735-ac30-e3ed9edc1ce7))
(pad "2" smd roundrect (at -1.1375 0 90) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "GND") (pinfunction "GND") (pintype "power_in") (tstamp e4671260-cb0b-4bee-80dd-069d88c2f55e))
(pad "3" smd roundrect (at -1.1375 0.95 90) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "/V_FB") (pinfunction "FB") (pintype "input") (tstamp d08f1d7d-4105-4bb2-92c4-b0930e752407))
(pad "4" smd roundrect (at 1.1375 0.95 90) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "Net-(U2-EN)") (pinfunction "EN") (pintype "input") (tstamp 08905592-a8c8-4a0e-a6fe-42b5efee3da0))
(pad "5" smd roundrect (at 1.1375 0 90) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "Net-(D2-K)") (pinfunction "VIN") (pintype "power_in") (tstamp a79316bf-701e-46c8-aabb-2d8c1c9591a0))
(pad "6" smd roundrect (at 1.1375 -0.95 90) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "Net-(D4-K)") (pinfunction "SW") (pintype "output") (tstamp 24bc17d2-b387-4ede-9fd3-936e7907b079))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23-6.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_THT:C_Radial_D6.3mm_H7.0mm_P2.50mm" (layer "F.Cu")
(tstamp 4fdbbc8b-e89d-422f-8b12-44b43d7b1430)
(at 90.25 50.283883 45)
(descr "C, Radial series, Radial, pin pitch=2.50mm, diameter=6.3mm, height=7mm, Non-Polar Electrolytic Capacitor")
(tags "C Radial series Radial pin pitch 2.50mm diameter 6.3mm height 7mm Non-Polar Electrolytic Capacitor")
(property "Sheetfile" "mosquito-c3.kicad_sch")
(property "Sheetname" "")
(property "Voltage" "35V")
(property "ki_description" "Polarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/903c93ff-b078-4ebb-a52b-809511e3ef12")
(attr through_hole)
(fp_text reference "C1" (at 1.190685 -1.897792 45) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bdd93a5a-3aa3-41cc-92dc-b3658d463590)
)
(fp_text value "150u" (at 1.25 4.4 45) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a69153d1-5163-4e09-8e90-f7cd17d6745a)
)
(fp_text user "${REFERENCE}" (at 1.25 0 45) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 745313ee-b655-4158-8915-872222a96e43)
)
(fp_circle (center 1.25 0) (end 4.52 0)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp 4a2d557b-9ccc-46b3-8757-2dd81ca0ef08))
(fp_circle (center 1.25 0) (end 4.65 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 8c19b227-4593-40c8-888c-0555cf5eb179))
(fp_circle (center 1.25 0) (end 4.4 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 26afea76-84e7-4811-a48d-fc54db04ec66))
(pad "1" thru_hole circle (at 0 0 45) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 1 "Net-(D2-K)") (pintype "passive") (tstamp a6971615-5c62-4e78-8128-97b6e184bcae))
(pad "2" thru_hole circle (at 2.5 0 45) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 3 "GND") (pintype "passive") (tstamp 417426f7-2ffc-4b8f-93d8-983f3d38ae9a))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/C_Radial_D6.3mm_H7.0mm_P2.50mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1.28))
(rotate (xyz 0 0 0))
)
)
(footprint "mosquito:D_SOD-523" (layer "F.Cu")
(tstamp 523d1ec7-3ea6-4f34-8ccd-f9a8596a607a)
(at 87.15 49.63 -90)
(descr "http://www.diodes.com/datasheets/ap02001.pdf p.144")
(tags "Diode SOD523")
(property "Sheetfile" "mosquito-c3.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Schottky diode")
(property "ki_keywords" "diode Schottky")
(path "/94d9b636-53b9-4d8c-9fee-3703c2ad803b")
(attr smd)
(fp_text reference "D2" (at 0 -1.3 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8b860923-2879-44f3-8d94-329b1e279b54)
)
(fp_text value " MSK4005" (at 0 1.4 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 457278ad-c958-4ff0-8c67-a34a3c9f4211)
)
(fp_text user "${REFERENCE}" (at -0.05 0.1 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d49a5b4f-17f9-45c6-9650-62fb58e0d129)
)
(fp_line (start -1.15 -0.6) (end -1.15 0.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3a79ba5f-fc45-4482-bed5-1f95a23c571e))
(fp_line (start 0.7 -0.6) (end -1.15 -0.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 653cfbda-85bd-40c9-9d1e-e86edba61557))
(fp_line (start 0.7 0.6) (end -1.15 0.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 90211a27-461f-4f3d-80cd-d8e3ff004e7a))
(fp_line (start -1.25 -0.7) (end 1.25 -0.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2e784030-ba58-4128-9f2b-51fe3dcdebef))
(fp_line (start -1.25 0.7) (end -1.25 -0.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6d26a998-3c01-450b-ab4d-03b4090eea3a))
(fp_line (start 1.25 -0.7) (end 1.25 0.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp aea801ee-9a9c-4e77-9bc1-8d53169a8690))
(fp_line (start 1.25 0.7) (end -1.25 0.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 92091cbc-54bc-480d-b583-fd366551700a))
(fp_line (start -0.65 -0.45) (end 0.65 -0.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e55e3308-eddc-40c5-b36c-2bfb165102b8))
(fp_line (start -0.65 0.45) (end -0.65 -0.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f6bdb0c0-bfe4-4a58-b529-15a9ad36ef72))
(fp_line (start -0.2 0) (end -0.35 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7bd9ddc7-a7bd-4fcb-a2f5-d039ada24cc7))
(fp_line (start -0.2 0) (end 0.1 0.2)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 98490ca8-3744-4ac5-b272-fc9f2be0690d))
(fp_line (start -0.2 0.2) (end -0.2 -0.2)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 31f5ad5e-ae03-45ed-9b4f-8f3923d6c08a))
(fp_line (start 0.1 -0.2) (end -0.2 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7b0555da-21ad-46f3-aa97-12ed69a3906d))
(fp_line (start 0.1 0) (end 0.25 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7c7ce4a6-669d-4666-8fbe-b93e9e1d5deb))
(fp_line (start 0.1 0.2) (end 0.1 -0.2)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6b8a1b78-5aa6-4f4b-ac74-92a915272c7a))
(fp_line (start 0.65 -0.45) (end 0.65 0.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4f36f79f-174e-46ff-a07c-82bf3750e0c0))
(fp_line (start 0.65 0.45) (end -0.65 0.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2f43b5bf-62d9-4ed8-9f8c-8cbbc7fcc4cf))
(pad "1" smd roundrect (at -0.7 0 90) (size 0.6 0.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "Net-(D2-K)") (pinfunction "K") (pintype "passive") (tstamp 6663d646-64d4-4a03-8eb7-e8245169bb19))
(pad "2" smd roundrect (at 0.7 0 90) (size 0.6 0.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "/USB_VBUS") (pinfunction "A") (pintype "passive") (tstamp eef15373-b658-4d23-9395-387f21debea7))
(model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-523.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tstamp 5a42f4bd-2c59-4509-8972-99d2db1dc48f)
(at 89.7 40.4 180)
(descr "Resistor SMD 0402 (1005 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" "mosquito-c3.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/299d2d00-258d-4cae-b28d-3981e4b9265e")
(attr smd)
(fp_text reference "R12" (at 0 -1.17) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9c1e65f7-9aff-4cd0-bc05-5217d1e9d99c)
)
(fp_text value "200k" (at 0 1.17) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b0797150-1033-4ea5-9b55-143562e76441)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp 21362cc5-eada-458f-89f4-f0d5d55bb5f7)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 986fb097-b7a1-4ccd-b371-8e0e147eba77))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a2495d17-bda4-45e5-b932-133d7e313679))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp dac443dd-dde1-4c69-8d93-0c67354ce8aa))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1c3dc979-0f65-4dc4-a1b5-9c1909e42d57))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 152311ec-79b5-403a-b4f1-1a0aba9000a1))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6eba1613-b32d-4b66-868e-f491a8178546))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3c96ab57-60f2-438e-b000-7b4e89744f88))
(fp_line (start -0.525 0.27) (end -0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c8d82e26-9e23-4203-9827-7427396e9c7b))
(fp_line (start 0.525 -0.27) (end 0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 55ce778a-fd3f-4bf7-9428-3b43582d3eef))
(fp_line (start 0.525 0.27) (end -0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ca450b9d-fd15-43e1-a93f-ce19934fea9a))
(pad "1" smd roundrect (at -0.51 0 180) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "+3V3") (pintype "passive") (tstamp c8d22040-1284-4d8e-b124-b412032e079e))
(pad "2" smd roundrect (at 0.51 0 180) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 16 "/SW_RESET") (pintype "passive") (tstamp 6f950f66-bdde-479e-ac4b-3e22b60a65b6))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tstamp 61023e7a-4bd2-45f3-be9f-8ba9dda03ee2)
(at 80.3 51.57 90)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "mosquito-c3.kicad_sch")
(property "Sheetname" "")
(property "Voltage" "50V")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/6e6f4685-a432-442a-bf25-dfeeb93a6864")
(attr smd)
(fp_text reference "C6" (at 0 -1.16 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7b2143bf-a154-497c-9b40-2ab78bb05f86)
)
(fp_text value "100n" (at 0 1.16 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 688c9272-c40e-492f-92b4-48841b909ac3)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp ebe6d8d1-d77e-4e54-824d-77998772729d)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 900e6d26-56b8-4252-8b0e-12e96d43f4e7))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b691eee9-cd5f-454c-96ee-3701256c093c))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 277390d0-f39d-4e8e-86d1-3d24015b1406))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 43edcf45-aaa5-40cd-8d54-1fdef16c5c4e))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8756726a-13c8-4f5b-a3d3-870c5f56d282))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 943c0202-ecb3-4cf8-8948-f89744fad5dd))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9d50b4e4-2481-4044-aeaf-044f864de016))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ae46ed77-db84-4b42-9ba6-0c93416fb098))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3dd02ced-ac35-44ae-b003-32ce9f9ded67))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7172596c-2973-4e7c-8543-1fc065162be2))
(pad "1" smd roundrect (at -0.48 0 90) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "Net-(U2-BOOST)") (pintype "passive") (tstamp 1ab32f10-be30-4634-acaf-82ef8c734c7a))
(pad "2" smd roundrect (at 0.48 0 90) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "Net-(D4-K)") (pintype "passive") (tstamp 2f95c81e-6949-4bf4-ac6a-678bf2270054))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "mosquito:TYPE-C-31-M-19" (layer "F.Cu")
(tstamp 64837157-a0a1-43e0-8ff9-c218a95e72fc)
(at 77.82 64.95 90)
(descr "USB TYPE C, VERT RCPT PCB, SMT, http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ117928.pdf")
(tags "USB C Type-C Receptacle SMD")
(property "Sheetfile" "mosquito-c3.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "USB 2.0-only Type-C Receptacle connector")
(property "ki_keywords" "usb universal serial bus type-C USB2.0")
(path "/7c0a23ba-d473-4f1c-bcc0-8759a044d968")
(attr through_hole)
(fp_text reference "J2" (at 4.012677 -0.01948 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1af5718b-4627-4b9e-9d51-e89527f6d596)
)
(fp_text value "USB_C_Receptacle_USB2.0" (at 0 4 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7d6b7361-ce03-484b-a79e-e4f3fb9a76b7)
)
(fp_text user "${REFERENCE}" (at 4.012677 -0.01948 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.1)))
(tstamp 0e676ce2-4c07-4197-b1f2-97589d3fcf1d)
)
(fp_line (start 0 -1.6) (end 6 -1.6)
(stroke (width 0.12) (type default)) (layer "F.SilkS") (tstamp 2eb61038-382a-456d-ba2d-2e7d31093090))
(fp_line (start 0 1.6) (end 0 -1.6)
(stroke (width 0.12) (type default)) (layer "F.SilkS") (tstamp e921be98-6931-4e60-bc79-f83721380018))
(fp_line (start 6 1.6) (end 0 1.6)
(stroke (width 0.12) (type default)) (layer "F.SilkS") (tstamp 65891ca4-3150-4221-bc39-daacb430b42d))
(fp_line (start 8 -1.6) (end 11.9 -1.6)
(stroke (width 0.12) (type default)) (layer "F.SilkS") (tstamp 65265e59-1bc0-4026-b8b3-a9a32f39e898))
(fp_line (start 11.9 1.6) (end 8 1.6)
(stroke (width 0.12) (type default)) (layer "F.SilkS") (tstamp d3c3d2ea-a325-4d2a-88d8-0db150fbe5a9))
(fp_line (start 14 -0.9) (end 14 0.9)
(stroke (width 0.12) (type default)) (layer "F.SilkS") (tstamp ea8f836d-8a03-491a-9182-59e4073802b4))
(fp_rect (start 14.1 -1.7) (end -0.1 1.7)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp ff41226c-815b-456b-8dba-a2840411ed23))
(fp_line (start 0 -1.58) (end 14 -1.58)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b14645e9-1df6-4a53-bfa6-6930b975acfe))
(fp_line (start 0 1.58) (end 0 -1.58)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cf885473-61bb-466c-8d06-a44deb25742e))
(fp_line (start 0 1.58) (end 14 1.58)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 67589377-def7-452f-a341-3e590369727c))
(fp_line (start 14 1.58) (end 14 -1.58)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7b8a5912-eb3c-42e0-8932-9e1e6f4e5fd4))
(pad "A1" thru_hole circle (at 7.05 -0.375 90) (size 0.7 0.7) (drill 0.4) (layers "*.Cu" "*.Mask")
(net 3 "GND") (pinfunction "GND") (pintype "passive") (tstamp a6d6ac3a-5436-49be-8022-c84ebab2edb5))
(pad "A4" thru_hole circle (at 7.95 -0.375 90) (size 0.7 0.7) (drill 0.4) (layers "*.Cu" "*.Mask")
(net 10 "/USB_VBUS") (pinfunction "VBUS") (pintype "passive") (tstamp 81b64e13-48a4-4395-9084-ade9e62ef442))
(pad "A5" thru_hole circle (at 8.8 -0.375 90) (size 0.7 0.7) (drill 0.4) (layers "*.Cu" "*.Mask") (remove_unused_layers) (keep_end_layers) (zone_layer_connections)
(net 28 "Net-(J2-CC1)") (pinfunction "CC1") (pintype "bidirectional") (tstamp 75f44ca7-090e-4a7c-9501-a3c683e5c16c))
(pad "A6" thru_hole circle (at 9.8 -0.375 90) (size 0.7 0.7) (drill 0.4) (layers "*.Cu" "*.Mask") (remove_unused_layers) (keep_end_layers) (zone_layer_connections)
(net 11 "/USB_P") (pinfunction "D+") (pintype "bidirectional") (tstamp efec4d59-52b9-4082-a907-56f515c48a0f))
(pad "A7" thru_hole circle (at 10.65 -0.375 90) (size 0.7 0.7) (drill 0.4) (layers "*.Cu" "*.Mask") (remove_unused_layers) (keep_end_layers) (zone_layer_connections)
(net 12 "/USB_N") (pinfunction "D-") (pintype "bidirectional") (tstamp 328617f5-d6a7-490a-aae2-c4d9603a6140))
(pad "A9" thru_hole circle (at 12 -0.375 90) (size 0.7 0.7) (drill 0.4) (layers "*.Cu" "*.Mask")
(net 10 "/USB_VBUS") (pinfunction "VBUS") (pintype "passive") (tstamp 39a4e671-6b13-42d3-9e97-3d0593805f51))
(pad "A12" thru_hole circle (at 12.9 -0.375 90) (size 0.7 0.7) (drill 0.4) (layers "*.Cu" "*.Mask")
(net 3 "GND") (pinfunction "GND") (pintype "passive") (tstamp e068b1f4-6e2a-4268-8b45-faf8cc1ca26b))
(pad "B1" thru_hole circle (at 12.9 0.375 90) (size 0.7 0.7) (drill 0.4) (layers "*.Cu" "*.Mask")
(net 3 "GND") (pinfunction "GND") (pintype "passive") (tstamp cf821820-dbf4-455d-988e-f4320b6b91cd))
(pad "B4" thru_hole circle (at 12 0.375 90) (size 0.7 0.7) (drill 0.4) (layers "*.Cu" "*.Mask")
(net 10 "/USB_VBUS") (pinfunction "VBUS") (pintype "passive") (tstamp 4f794d25-8900-4f2d-96dc-7d414bf9b57f))
(pad "B5" thru_hole circle (at 11.1 0.375 90) (size 0.7 0.7) (drill 0.4) (layers "*.Cu" "*.Mask") (remove_unused_layers) (keep_end_layers) (zone_layer_connections)
(net 29 "Net-(J2-CC2)") (pinfunction "CC2") (pintype "bidirectional") (tstamp cf3b8780-cb1c-4d88-8371-ee9a36dc9888))
(pad "B6" thru_hole circle (at 10.2 0.375 90) (size 0.7 0.7) (drill 0.4) (layers "*.Cu" "*.Mask") (remove_unused_layers) (keep_end_layers) (zone_layer_connections)
(net 11 "/USB_P") (pinfunction "D+") (pintype "bidirectional") (tstamp 56e8ceb3-be3d-44bd-9697-17dbf6a0e095))
(pad "B7" thru_hole circle (at 9.3 0.375 90) (size 0.7 0.7) (drill 0.4) (layers "*.Cu" "*.Mask") (remove_unused_layers) (keep_end_layers) (zone_layer_connections)
(net 12 "/USB_N") (pinfunction "D-") (pintype "bidirectional") (tstamp 3059abca-9ad7-43b9-acc9-cbd9b530c4af))
(pad "B9" thru_hole circle (at 7.95 0.375 90) (size 0.7 0.7) (drill 0.4) (layers "*.Cu" "*.Mask")
(net 10 "/USB_VBUS") (pinfunction "VBUS") (pintype "passive") (tstamp 63e5b418-7931-4465-bace-f7dec8c57239))
(pad "B12" thru_hole circle (at 7.05 0.375 90) (size 0.7 0.7) (drill 0.4) (layers "*.Cu" "*.Mask")
(net 3 "GND") (pinfunction "GND") (pintype "passive") (tstamp 82551022-5b42-4596-9c51-c0c00b4c845a))
(pad "S1" thru_hole oval (at 7 -1.43 180) (size 1 1.7) (drill oval 0.5 1.2) (layers "*.Cu" "*.Mask")
(net 3 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp 3fd90f95-aec0-4a72-90f3-f47f754830a0))
(pad "S1" thru_hole oval (at 7 1.43 180) (size 1 1.7) (drill oval 0.5 1.2) (layers "*.Cu" "*.Mask")
(net 3 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp e7740ec5-a5a7-4f43-911d-442a6b8a4e9e))
(pad "S1" thru_hole oval (at 13.1 -1.43 180) (size 1 2) (drill oval 0.5 1.5) (layers "*.Cu" "*.Mask")
(net 3 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp b0838d22-a0eb-4199-a73a-6f9d6268c87a))
(pad "S1" thru_hole oval (at 13.1 1.43 180) (size 1 2) (drill oval 0.5 1.5) (layers "*.Cu" "*.Mask")
(net 3 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp e7ae347d-3611-45cc-b3a6-1a858ebd50b4))
(model "${KIPRJMOD}/mosquito-lib/3d/usbc-19.wrl"
(offset (xyz 7 0 4.5))
(scale (xyz 0.39 0.39 0.39))
(rotate (xyz 0 0 90))
)
)
(footprint "mosquito:D_SOD-123" (layer "F.Cu")
(tstamp 64fa8275-a0a5-46ee-87f3-38639bd90e19)
(at 86 51.75 180)
(descr "SOD-123")
(tags "SOD-123")
(property "Sheetfile" "mosquito-c3.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "1μA to 10mA 3-Terminal Adjustable Current Source, SO-8")
(property "ki_keywords" "Adjustable Current Source 10mA")
(path "/eaf148e8-2718-493e-bf35-cbe1d7ede636")
(attr smd)
(fp_text reference "D1" (at 0 -0.1) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a4b7bde0-846b-4fff-9caf-d249ff60529d)
)
(fp_text value " AL5809-40S1-7" (at 0 2.1) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ea3ac858-b17a-41f0-883c-f32ebf5748ac)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e9b5902f-abe4-436b-adef-bf4dfa351310)
)
(fp_line (start -2.25 -1) (end -2.25 1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e3dcdb66-c1f3-4d84-9a21-ee05a8614b6d))
(fp_line (start -2.25 -1) (end 1.65 -1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e0920e4a-9596-4437-9825-b51ac368bc27))
(fp_line (start -2.25 1) (end 1.65 1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e7ad7f85-22fb-46e8-8fdb-8fec47e321ae))
(fp_line (start -2.35 -1.15) (end -2.35 1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a18b1d83-e33a-4106-b07b-87add0c309f2))
(fp_line (start -2.35 -1.15) (end 2.35 -1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6ef6b652-dbac-4c2b-8237-917eeb36a26c))
(fp_line (start 2.35 -1.15) (end 2.35 1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3d42bfe1-4ded-442c-b86c-cb16c413f6e3))
(fp_line (start 2.35 1.15) (end -2.35 1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9e5f3cab-3536-4941-ab6c-8c4c6156bb4f))
(fp_line (start -1.4 -0.9) (end 1.4 -0.9)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e532c796-c145-4e0a-8ac3-468cda4efbed))
(fp_line (start -1.4 0.9) (end -1.4 -0.9)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp debe9496-ada6-4616-a85d-3fe74ba9f789))
(fp_line (start -0.75 0) (end -0.35 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 35f0e804-9374-4835-b872-eff782b6df1c))
(fp_line (start -0.35 0) (end -0.35 -0.55)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 30f76343-836c-4f07-a6f6-99806ce544d5))
(fp_line (start -0.35 0) (end -0.35 0.55)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f9a344af-1c13-406c-ba26-77d7ea34c60d))
(fp_line (start -0.35 0) (end 0.25 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0f253ffb-faad-4ba7-a230-29ef205a3802))
(fp_line (start 0.25 -0.4) (end 0.25 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6b716e4e-b6a8-4af2-a256-2025a8402995))
(fp_line (start 0.25 0) (end 0.75 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a2c725ea-829a-4d3c-bc44-15c99c5c8515))
(fp_line (start 0.25 0.4) (end -0.35 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a8ae0878-c509-4f97-9528-5e75c29fe430))
(fp_line (start 1.4 -0.9) (end 1.4 0.9)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8f2732c7-9ff9-4fcd-bfe2-9043904b4e89))
(fp_line (start 1.4 0.9) (end -1.4 0.9)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1e1676e7-e428-43f2-af84-1cd8f50243db))
(pad "1" smd roundrect (at -1.65 0 180) (size 0.9 1.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 19 "Net-(D3-A)") (pintype "passive") (tstamp 07044488-5d48-4aa6-937b-cf099d608334))
(pad "2" smd roundrect (at 1.65 0 180) (size 0.9 1.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "/MBUS+") (pintype "passive") (tstamp 173b558a-1c3a-42a8-a10f-011765b6f2d2))
(model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-123.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "mosquito:D_SOD-523" (layer "F.Cu")
(tstamp 6ebc35a4-93e6-4843-b089-ddbcebbeebfb)
(at 85.95 49.63 -90)
(descr "http://www.diodes.com/datasheets/ap02001.pdf p.144")
(tags "Diode SOD523")
(property "Sheetfile" "mosquito-c3.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Schottky diode")
(property "ki_keywords" "diode Schottky")
(path "/5fa491b3-3c95-4daf-9cb6-e875d94a8d72")
(attr smd)
(fp_text reference "D3" (at 0 -1.3 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2e01d83f-2cdb-4a85-ac93-3ef3946b10ac)
)
(fp_text value " MSK4005" (at 0 1.4 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1e3c82e7-2dec-4968-9636-0577addd9e4a)
)
(fp_text user "${REFERENCE}" (at -0.05 0.1 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b5efcac0-9245-485d-b11c-febcf7e51853)
)
(fp_line (start -1.15 -0.6) (end -1.15 0.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 33be80fa-ce37-4f96-b74c-e7be0f1df32c))
(fp_line (start 0.7 -0.6) (end -1.15 -0.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b392cb52-ec0d-4ead-9d93-dae5a104f4b4))
(fp_line (start 0.7 0.6) (end -1.15 0.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 985f3733-e00f-47a8-b667-a69ae1c7ca15))
(fp_line (start -1.25 -0.7) (end 1.25 -0.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2738b2ef-bde1-43f3-aed0-06e19c3afc98))
(fp_line (start -1.25 0.7) (end -1.25 -0.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9805750d-d066-4f60-a29c-5234be624ac2))
(fp_line (start 1.25 -0.7) (end 1.25 0.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a4ea5e97-9f5f-4b2f-ae59-50ca728b96fc))
(fp_line (start 1.25 0.7) (end -1.25 0.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3d0bf317-1ef4-4f67-b756-6bbce3fcc44b))
(fp_line (start -0.65 -0.45) (end 0.65 -0.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp eee92ee0-2b43-4145-8b61-234853ac1c5a))
(fp_line (start -0.65 0.45) (end -0.65 -0.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b6b517f6-baf5-4fca-866a-79f31eb10c79))
(fp_line (start -0.2 0) (end -0.35 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8de57c3e-e275-415e-a1d8-825e5c895097))
(fp_line (start -0.2 0) (end 0.1 0.2)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b37c8be8-8b0e-4cd5-85e6-9b88e7253e35))
(fp_line (start -0.2 0.2) (end -0.2 -0.2)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fc824dff-0bce-4a76-aa2e-924e86e41222))
(fp_line (start 0.1 -0.2) (end -0.2 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 47608f33-538c-4f88-82a0-ef36bc77e5f1))
(fp_line (start 0.1 0) (end 0.25 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f67acf37-27c3-4174-9b34-c4ed419df6ea))
(fp_line (start 0.1 0.2) (end 0.1 -0.2)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a7c3acdc-48b3-410d-a51e-4d030c6b29c3))
(fp_line (start 0.65 -0.45) (end 0.65 0.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4c373594-14bf-43ad-9c4f-c9641000ce16))
(fp_line (start 0.65 0.45) (end -0.65 0.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 93f7e705-af57-48ff-a4dd-50ff513cd322))
(pad "1" smd roundrect (at -0.7 0 90) (size 0.6 0.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "Net-(D2-K)") (pinfunction "K") (pintype "passive") (tstamp 62655c0b-1143-4432-8fd6-ea96500b1236))
(pad "2" smd roundrect (at 0.7 0 90) (size 0.6 0.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 19 "Net-(D3-A)") (pinfunction "A") (pintype "passive") (tstamp 6af7bf46-c5c2-446e-8282-2e8566675d88))
(model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-523.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tstamp 6fb9a11c-c66f-4794-8952-5942782b94c5)
(at 87.61 46.98)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "mosquito-c3.kicad_sch")
(property "Sheetname" "")
(property "Voltage" "35V")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/db5430bc-7179-4ef6-8dc6-691bfe255914")
(attr smd)
(fp_text reference "C8" (at 0 -1.16) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f7c41558-9c8c-4b23-97f7-7b8e1ef4e7d9)
)
(fp_text value "2.2u" (at 0 1.16) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fb8f92d4-253e-4017-b8d1-a7392865d250)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 90973925-1df8-4a78-b0e2-242c501a2c4d)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9e9299d6-a9b1-4cb7-81b7-da404ba56a7e))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b850cd92-58db-44d7-966e-ede66f12ec6d))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4bbc4983-5608-41e8-bd8a-f47706b9bab9))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6e1c49f6-b530-4fc9-8f27-0a8cdff80d6a))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7d1db2a2-e492-47e3-b3d9-9a0ecb941d60))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 40aef655-a10f-4eee-adf4-81bdca2fbace))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f25ee115-b15f-4e93-ba52-41c5ebfc5384))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 22f02921-4b9e-4a3e-9598-04290b310f7d))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a05c7150-456a-4c17-9d97-4f0c1dbcbb1d))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2c05b273-03d1-415d-989c-c7b5bcf16316))
(pad "1" smd roundrect (at -0.48 0) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "GND") (pintype "passive") (tstamp 807922e9-8c71-49b2-9eb0-1a63d6b57115))
(pad "2" smd roundrect (at 0.48 0) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 18 "Net-(D5-K)") (pintype "passive") (tstamp f9cc2ad0-cbd5-4830-97b9-7024452c2ccb))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tstamp 7f427772-75dc-4623-847e-6874c55bf077)
(at 82.58 46.95 -90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "mosquito-c3.kicad_sch")
(property "Sheetname" "")
(property "Voltage" "35V")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/6938eb5f-4e9f-474e-a4fb-4b84c3789702")
(attr smd)
(fp_text reference "C3" (at 0 -1.43 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c571292e-5725-4e2d-9133-340be3e61d7e)
)
(fp_text value "10u" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 48e73251-024c-456f-b6d5-4c3d8dbcbb62)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 08e12c08-f1c6-4412-93c6-17a65a26ea85)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 33e2ffe8-2a65-4158-87ec-456461edc108))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9f7d9992-039e-408c-8634-679c6695cbf5))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp df69171c-59a2-434e-9982-0dfe7794ef58))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ff806180-24ce-4521-956d-b9d4a37732e2))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f717809f-ebc2-42e3-ad15-59663e18f0e3))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1d4344e5-7f22-4685-81ee-cbc5446402f7))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bf8816fb-8bd5-4edc-bcf1-86aae51f5a6e))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3725cc01-2313-4071-85f1-93beae1fc56b))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c326974b-a5f4-4e5d-a43e-0eb9a9036337))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5167d76e-5dfc-4dea-a768-89c2344c5360))
(pad "1" smd roundrect (at -0.775 0 270) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "GND") (pintype "passive") (tstamp 06a0da85-4684-4ee3-ac7d-334421897ff6))
(pad "2" smd roundrect (at 0.775 0 270) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "Net-(D2-K)") (pintype "passive") (tstamp f14d286a-9368-4f92-a9fc-828f155f4bcb))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tstamp 84fd91ce-11b0-4fde-9fdd-c4b5defa3c62)
(at 89.7 43.36 180)
(descr "Resistor SMD 0402 (1005 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" "mosquito-c3.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/9d30f2e2-b2de-4b0d-b49f-da916c1c74b1")
(attr smd)
(fp_text reference "R8" (at 0 -1.17) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 18dd2cf8-4ac3-4222-b2d5-283c3dcb3363)
)
(fp_text value "1M" (at 0 1.17) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 14b2b809-a53a-47f1-bded-87b809a8b7ea)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp 274eeeb9-0c16-41fc-aa7b-29d8c62a641c)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9dff246b-375f-4743-9380-374b61bdb96c))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5808eeb4-1f84-47d2-a964-96a5677cfe3b))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)