-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvhario-espc3.kicad_pcb
20331 lines (20267 loc) · 811 KB
/
vhario-espc3.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20211014) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(aux_axis_origin 89 100)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 1)
(scaleselection 1)
(outputdirectory "")
)
)
(net 0 "")
(net 1 "Net-(BZ1-Pad1)")
(net 2 "Net-(BZ1-Pad2)")
(net 3 "Net-(C1-Pad1)")
(net 4 "GND")
(net 5 "Net-(C2-Pad1)")
(net 6 "Net-(C2-Pad2)")
(net 7 "+VSW")
(net 8 "Net-(C4-Pad1)")
(net 9 "+BATT")
(net 10 "Net-(C6-Pad1)")
(net 11 "+3V3")
(net 12 "/PWR_SENS")
(net 13 "Net-(C10-Pad1)")
(net 14 "/ADC")
(net 15 "Net-(F1-Pad1)")
(net 16 "Net-(D2-Pad1)")
(net 17 "Net-(D3-Pad1)")
(net 18 "Net-(D3-Pad2)")
(net 19 "/D-")
(net 20 "Net-(D5-Pad2)")
(net 21 "/D+")
(net 22 "unconnected-(J1-Pad3)")
(net 23 "Net-(J1-Pad4)")
(net 24 "unconnected-(J1-Pad9)")
(net 25 "Net-(J1-Pad10)")
(net 26 "unconnected-(J1-Pad13)")
(net 27 "unconnected-(J1-Pad14)")
(net 28 "unconnected-(J1-Pad15)")
(net 29 "Net-(Q1-Pad1)")
(net 30 "/PWR_CTRL")
(net 31 "/DRDY")
(net 32 "Net-(R4-Pad2)")
(net 33 "Net-(R6-Pad1)")
(net 34 "/AUDIO_EN")
(net 35 "/SCK")
(net 36 "/MOSI")
(net 37 "/NCS")
(net 38 "/MISO")
(net 39 "/CSB")
(net 40 "/AUDIO")
(net 41 "unconnected-(U3-Pad9)")
(net 42 "unconnected-(U3-Pad10)")
(net 43 "unconnected-(U3-Pad11)")
(net 44 "unconnected-(U3-Pad14)")
(net 45 "unconnected-(U5-Pad4)")
(net 46 "unconnected-(SW2-Pad3)")
(footprint "0-vhario-espc3:MountingHole_2.5mm" locked (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 04f680b1-64ab-4811-9798-631cf08b9c58)
(at 146 97.25)
(descr "Mounting Hole 2.5mm, no annular")
(tags "mounting hole 2.5mm no annular")
(property "Sheetfile" "vhario-espc3.kicad_sch")
(property "Sheetname" "")
(path "/d5e70288-cda6-4285-b7e5-f8449c15ca50")
(attr exclude_from_pos_files)
(fp_text reference "H2" (at 0 0.05) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 53be1376-fda7-4d9b-af9e-528891eab5ee)
)
(fp_text value "MountingHole" (at 0 3.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 91b70cf1-ea4d-49a3-906d-fcad7d8d6e02)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e3227d7e-105d-45b4-a6c5-57195a96dfa8)
)
(fp_circle (center 0 0) (end 2.5 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 54f051b0-c44c-469d-a76b-3acb42367121))
(fp_circle (center 0 0) (end 2.75 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 8a8fdb76-0b9a-40c2-8f84-45b244a16249))
(pad "" np_thru_hole circle locked (at 0 0) (size 2.5 2.5) (drill 2.5) (layers *.Cu *.Mask) (tstamp baf2894c-8f1a-45fd-b9d6-022cebf250ec))
)
(footprint "0-vhario-espc3:cjmcu117" (layer "F.Cu")
(tedit 0) (tstamp 639f85b5-654c-4d15-9ce5-47747abc799e)
(at 132.65 69.8)
(property "Sheetfile" "vhario-espc3.kicad_sch")
(property "Sheetname" "")
(path "/f6c9036e-b114-4fcd-8770-b951785aed89")
(attr through_hole)
(fp_text reference "U1" (at 9.1 10.8 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 61a330e6-02d4-42ff-92e8-37e83194b307)
)
(fp_text value "cjmcu117" (at 9.5 6.7 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e6ebd78c-7448-4a99-a1f7-a1f4bfd6937e)
)
(fp_text user "vcc" (at -3.4 -0.1 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0265432e-57b6-43f7-a691-ab74ed336629)
)
(fp_text user "int" (at -3.4 15.2 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 028df561-34d8-4d6d-91eb-a27c91323f0b)
)
(fp_text user "ps" (at -3.1 22.7 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1aed724a-e7be-4fa4-8f17-f378db5e6b9c)
)
(fp_text user "sda" (at -3.4 7.6 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5d3f6da6-9f46-428b-804c-ae8cc319d21b)
)
(fp_text user "ad0" (at -3.4 12.7 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6cfea06d-15d7-4c4e-a529-e2f04ba4548f)
)
(fp_text user "sdo" (at -3.2 17.7 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8b186870-6b8b-4d8d-b1c0-db761c962198)
)
(fp_text user "ncs" (at -3.5 10.1 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 964f1ff8-ab88-4f23-b084-1e09d44490a6)
)
(fp_text user "gnd" (at -3.3 2.5 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dececc07-4a04-4fc7-84b2-56ce0876540b)
)
(fp_text user "csb" (at -3.3 20.3 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f6c8c6db-cd4e-4f9d-b1bf-150ec990c117)
)
(fp_text user "scl" (at -3.3 5 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fb52429c-b7b8-4ff5-b067-5e2cefc0a04c)
)
(fp_text user "${REFERENCE}" (at 9.1 10.9 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 13e0ef1b-3a70-4a28-934e-804b60a6a487)
)
(fp_rect (start -1.6 -1.8) (end 17.8 24.7) (layer "F.SilkS") (width 0.12) (fill none) (tstamp e849dcaf-87e3-4752-873d-9b602e3afe2d))
(pad "1" thru_hole roundrect (at 0 0 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
(net 5 "Net-(C2-Pad1)") (pinfunction "vcc") (pintype "input") (tstamp 918d8a18-f882-4c85-b22b-1348b599ee84))
(pad "2" thru_hole circle (at 0 2.54 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 6 "Net-(C2-Pad2)") (pinfunction "gnd") (pintype "input") (tstamp cb3a5349-c0bd-4847-bdba-5a7e942dcac0))
(pad "3" thru_hole circle (at 0 5.08 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 35 "/SCK") (pinfunction "scl") (pintype "input") (tstamp de358c55-add8-47a9-afdb-4541a21ee69b))
(pad "4" thru_hole circle (at 0 7.62 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 36 "/MOSI") (pinfunction "sda") (pintype "input") (tstamp 4f856082-5325-4b7f-ab81-8259addf10cf))
(pad "5" thru_hole circle (at 0 10.16 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 37 "/NCS") (pinfunction "ncs") (pintype "input") (tstamp 70a7206b-1edd-4493-aa8a-fb810cde971c))
(pad "6" thru_hole circle (at 0 12.7 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 38 "/MISO") (pinfunction "ad0") (pintype "input") (tstamp 255287dc-1f73-4c81-9af8-133e966f1692))
(pad "7" thru_hole circle (at 0 15.24 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 31 "/DRDY") (pinfunction "int") (pintype "input") (tstamp b65da1c9-f9e5-4eec-9120-7892f8fa5540))
(pad "8" thru_hole circle (at 0 17.78 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 38 "/MISO") (pinfunction "sdo") (pintype "input") (tstamp 069636cf-23f5-4a73-9999-e66478443c61))
(pad "9" thru_hole circle (at 0 20.32 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 39 "/CSB") (pinfunction "csb") (pintype "input") (tstamp 5af9b61c-1bff-4517-9942-aa214189ef19))
(pad "10" thru_hole circle (at 0 22.86 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 4 "GND") (pinfunction "ps") (pintype "input") (tstamp 295f2663-b777-4843-bb6a-89539e8b7503))
)
(footprint "0-vhario-espc3:MountingHole_2.5mm" locked (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 9d9afb31-b01d-4509-8acd-c54926b4b442)
(at 106 68.75)
(descr "Mounting Hole 2.5mm, no annular")
(tags "mounting hole 2.5mm no annular")
(property "Sheetfile" "vhario-espc3.kicad_sch")
(property "Sheetname" "")
(path "/6f383bf9-6380-4e73-8a20-059e22788329")
(attr exclude_from_pos_files)
(fp_text reference "H1" (at -0.025 0.025) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dd468a3e-ff81-4c47-8428-591b5c13c022)
)
(fp_text value "MountingHole" (at 0 3.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2a89af5f-064b-4d78-bd73-ded69a15a86a)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7aa2250d-0fc3-4cb1-bd4a-12b4ff8718fa)
)
(fp_circle (center 0 0) (end 2.5 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp e96a61a5-1945-44df-9382-e5a24169e1ee))
(fp_circle (center 0 0) (end 2.75 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 8a7405c5-4098-4f06-9a67-f781599991d7))
(pad "" np_thru_hole circle locked (at 0 0) (size 2.5 2.5) (drill 2.5) (layers *.Cu *.Mask) (tstamp fb4b7e44-b8ff-4a59-9c33-e0339f789281))
)
(footprint "0-vhario-espc3:usb_c_16" (layer "F.Cu")
(tedit 0) (tstamp bc13280f-5ee4-40c4-9c9e-b3e057c239dd)
(at 95.155 79.8 -90)
(property "Sheetfile" "vhario-espc3.kicad_sch")
(property "Sheetname" "")
(path "/4e526f0f-0fb2-49da-9082-a7dbd2b7897b")
(attr smd)
(fp_text reference "J1" (at -3.275 2.905 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4d97b2a0-476f-4b98-b31e-8c24e188cb13)
)
(fp_text value "USB_C" (at 3.1 5.7 -90 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c2691369-35e9-4cf7-a632-df5fe3756a43)
)
(fp_text user "${REFERENCE}" (at 3.1 3.8 -90 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ed7bbeaa-4e1a-4d9d-821a-646ca60a310b)
)
(fp_line (start -1.27 7.3) (end -1.27 5.9) (layer "F.SilkS") (width 0.12) (tstamp b41d09e9-518e-4ba5-8af8-d8bd9b7fe70e))
(fp_line (start 7.67 7.3) (end 7.67 5.9) (layer "F.SilkS") (width 0.12) (tstamp e0ab6a67-a1ba-4d14-b78d-74fefcbb7145))
(fp_line (start -1.27 7.325) (end 7.67 7.325) (layer "F.SilkS") (width 0.12) (tstamp f9a6a2ec-c18b-49c6-a6ba-1b731380f3b2))
(pad "" np_thru_hole circle (at 6.09 1.075 270) (size 0.65 0.65) (drill 0.65) (layers F&B.Cu *.Mask) (tstamp 45a19505-efab-493c-83da-828db9ac00c5))
(pad "" np_thru_hole circle (at 0.31 1.075 270) (size 0.65 0.65) (drill 0.65) (layers F&B.Cu *.Mask) (tstamp 8b48d1aa-2e1d-452b-90ba-6001912c1261))
(pad "1" smd rect (at 0 0 270) (size 0.6 1.15) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "GND") (pinfunction "gnd") (pintype "input") (tstamp c8d8fd02-263c-459a-b8b7-0646f46337d3))
(pad "2" smd rect (at 0.8 0 270) (size 0.6 1.15) (layers "F.Cu" "F.Paste" "F.Mask")
(net 15 "Net-(F1-Pad1)") (pinfunction "vbus") (pintype "input") (tstamp f7d273bc-6af4-436f-90e0-48fb7a69c90a))
(pad "3" smd rect (at 1.45 0 270) (size 0.3 1.15) (layers "F.Cu" "F.Paste" "F.Mask")
(net 22 "unconnected-(J1-Pad3)") (pinfunction "sbu1") (pintype "input+no_connect") (tstamp 7719f297-2703-47bc-9326-1c888bd4d3c2))
(pad "4" smd rect (at 1.95 0 270) (size 0.3 1.15) (layers "F.Cu" "F.Paste" "F.Mask")
(net 23 "Net-(J1-Pad4)") (pinfunction "cc1") (pintype "input") (tstamp e88b2e6a-c35e-4e98-afbb-7aae602b1127))
(pad "5" smd rect (at 2.45 0 270) (size 0.3 1.15) (layers "F.Cu" "F.Paste" "F.Mask")
(net 19 "/D-") (pinfunction "d-") (pintype "input") (tstamp 8067a01d-2388-42bf-bd23-d003e19a6340))
(pad "6" smd rect (at 2.95 0 270) (size 0.3 1.15) (layers "F.Cu" "F.Paste" "F.Mask")
(net 21 "/D+") (pinfunction "d+") (pintype "input") (tstamp 57f9b103-c59d-4a9a-aee9-5d90420f740f))
(pad "7" smd rect (at 3.45 0 270) (size 0.3 1.15) (layers "F.Cu" "F.Paste" "F.Mask")
(net 19 "/D-") (pinfunction "d-") (pintype "input") (tstamp 9c5aae21-2ae6-489b-95f6-3ae5121e5b38))
(pad "8" smd rect (at 3.95 0 270) (size 0.3 1.15) (layers "F.Cu" "F.Paste" "F.Mask")
(net 21 "/D+") (pinfunction "d+") (pintype "input") (tstamp 61662280-1a54-47cb-afba-11ee70654141))
(pad "9" smd rect (at 4.45 0 270) (size 0.3 1.15) (layers "F.Cu" "F.Paste" "F.Mask")
(net 24 "unconnected-(J1-Pad9)") (pinfunction "sbu2") (pintype "input+no_connect") (tstamp 0793dfd8-c819-4195-b3a5-8b82cea0b4e5))
(pad "10" smd rect (at 4.95 0 270) (size 0.3 1.15) (layers "F.Cu" "F.Paste" "F.Mask")
(net 25 "Net-(J1-Pad10)") (pinfunction "cc2") (pintype "input") (tstamp 90fd0ba2-fc79-4f68-b629-cb2c9c09a549))
(pad "11" smd rect (at 5.6 0 270) (size 0.6 1.15) (layers "F.Cu" "F.Paste" "F.Mask")
(net 15 "Net-(F1-Pad1)") (pinfunction "vbus") (pintype "input") (tstamp e4ac2d0f-9012-4afb-9e37-6ca0e4d8f575))
(pad "12" smd rect (at 6.4 0 270) (size 0.6 1.15) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "GND") (pinfunction "gnd") (pintype "input") (tstamp 92a4b266-c13a-4797-9c02-6feda3ca01ff))
(pad "13" thru_hole oval (at -1.12 0.575 270) (size 1 2.1) (drill oval 0.65 1.7) (layers *.Cu *.Mask)
(net 26 "unconnected-(J1-Pad13)") (pinfunction "s1") (pintype "input+no_connect") (tstamp 3d97f4d1-b5c2-4c52-bf02-33b66705f8b8))
(pad "14" thru_hole oval (at 7.52 0.575 270) (size 1 2.1) (drill oval 0.65 1.7) (layers *.Cu *.Mask)
(net 27 "unconnected-(J1-Pad14)") (pinfunction "s2") (pintype "input+no_connect") (tstamp 063d4dfc-b6f5-45fa-8859-6fbd08f39e29))
(pad "15" thru_hole oval (at -1.12 4.725 270) (size 1 1.8) (drill oval 0.65 1.4) (layers *.Cu *.Mask)
(net 28 "unconnected-(J1-Pad15)") (pinfunction "s3") (pintype "input+no_connect") (tstamp 84b88c8a-e4c3-4355-8833-515f87227b82))
(pad "16" thru_hole oval (at 7.52 4.725 270) (size 1 1.8) (drill oval 0.65 1.4) (layers *.Cu *.Mask)
(net 3 "Net-(C1-Pad1)") (pinfunction "s4") (pintype "input") (tstamp 124450ab-28f0-4067-848e-04221586e95e))
)
(footprint "0-vhario-espc3:espc3fn4" (layer "F.Cu")
(tedit 0) (tstamp c687fa79-88f2-4adf-9ca4-4c6e43b0444f)
(at 122.25 91.42 180)
(property "Sheetfile" "vhario-espc3.kicad_sch")
(property "Sheetname" "")
(path "/771cddff-e134-4675-9613-6124686318a1")
(attr smd)
(fp_text reference "U3" (at 8.15 -2.58 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1d5c120c-0263-4ee9-818b-e0b7600bafac)
)
(fp_text value "espc3fn4" (at 7.62 -6.35 180 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fcdb45d2-bfb9-4109-be0f-c60284ec5f3a)
)
(fp_text user "7" (at 11 17.4 180 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0b82ff3e-f6d4-4e8a-bbef-00a349be363d)
)
(fp_text user "21" (at 18.1 0 180 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 16764408-8829-47fe-874d-eea16e7e43af)
)
(fp_text user "2" (at -1.8 6.1 180 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 24abd234-3b55-49f3-9a13-7ad088407829)
)
(fp_text user "gnd" (at 18.5 13.8 180 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3c042bf6-deba-4251-8143-4a49eda6cc8a)
)
(fp_text user "20" (at 18.1 2 180 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 44a0096d-d928-4360-accc-a7b840fa8e44)
)
(fp_text user "0" (at -1.8 0.1 180 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 483dad05-9615-48c2-a670-4a3b7f7ba123)
)
(fp_text user "en" (at -2 3.9 180 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6e8ae9b9-da7f-45e7-82c4-6f008ac54099)
)
(fp_text user "vcc" (at -2.4 14 180 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a51266b1-7169-4a3b-996d-1472195c079a)
)
(fp_text user "10" (at 18.1 10 180 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b49eb5cb-1c40-4d8e-820d-e12728dfef4c)
)
(fp_text user "9" (at 17.6 7.9 180 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b674aba8-6a93-4ff9-9c63-9aa0480fb1d3)
)
(fp_text user "4" (at -1.9 10.1 180 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bac0f1f6-76db-4377-9305-c45c81f37782)
)
(fp_text user "d-" (at 18.2 5.9 180 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bb3c9900-c3cc-47b2-81a1-10393ea641d4)
)
(fp_text user "1" (at -1.7 2.1 180 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cf5316aa-8429-4ee3-810d-fd965f4071e8)
)
(fp_text user "5" (at -1.7 12.1 180 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d0ffe687-428a-4ed9-86a9-3dcddcd97b8a)
)
(fp_text user "6" (at 9 17.5 180 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dcf91519-0f76-4022-bf1f-079e851b23cb)
)
(fp_text user "8" (at 17.7 12 180 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e05e2bae-1a89-45e6-b369-801017f49837)
)
(fp_text user "d+" (at 18.2 3.9 180 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e727a075-ae20-4f1e-a2e8-49db8a50e358)
)
(fp_text user "3" (at -1.9 8.1 180 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ffe5ad39-5cd0-433a-a2dc-fbb87ac8363a)
)
(fp_text user "${REFERENCE}" (at 7.62 -3.8 180 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4fb691c1-6e1b-42bf-b627-134407a4f766)
)
(fp_line (start 13.9 15.5) (end 16 15.5) (layer "F.SilkS") (width 0.12) (tstamp 2bf8bc73-986c-4659-a5c9-8a4a85cd0226))
(fp_line (start 16 15.5) (end 16 14.8) (layer "F.SilkS") (width 0.12) (tstamp 3c6ea2fb-80e8-4d85-9191-37bd4dd576f0))
(fp_line (start 0 15.5) (end 1.9 15.5) (layer "F.SilkS") (width 0.12) (tstamp 76df8707-c07f-4251-8ff8-7bbf55c74144))
(fp_line (start 0 -1.27) (end 0 -8.5) (layer "F.SilkS") (width 0.12) (tstamp 89967f5b-342b-4f8f-a192-11c7965755fa))
(fp_line (start 0 -8.5) (end 16 -8.5) (layer "F.SilkS") (width 0.12) (tstamp b38ea901-9dbc-46a7-88b0-57ea05fb899b))
(fp_line (start 16 -1.5) (end 16 -8.5) (layer "F.SilkS") (width 0.12) (tstamp cc90540b-820a-4c65-9ccc-fe2144af465b))
(fp_line (start 0 14.8) (end 0 15.5) (layer "F.SilkS") (width 0.12) (tstamp d9fb2776-597d-4b6c-a24d-c01c9aa96902))
(pad "1" smd roundrect (at 0 0 180) (size 1.8 1.1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 14 "/ADC") (pinfunction "io0") (pintype "input") (tstamp 14bf8f3d-06e6-4b43-a05f-3e71923c5c52))
(pad "2" smd roundrect (at 0 2 180) (size 1.8 1.1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 38 "/MISO") (pinfunction "io1") (pintype "input") (tstamp d8e06890-92a0-4aba-ad74-9911834b16a9))
(pad "3" smd roundrect (at 0 4 180) (size 1.8 1.1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "Net-(C6-Pad1)") (pinfunction "en") (pintype "input") (tstamp 3b58b0d8-176f-49a0-8682-771bea838c2e))
(pad "4" smd roundrect (at 0 6 180) (size 1.8 1.1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 31 "/DRDY") (pinfunction "io2") (pintype "input") (tstamp 83f49289-8be1-4684-b880-7c6ab0270378))
(pad "5" smd roundrect (at 0 8 180) (size 1.8 1.1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 37 "/NCS") (pinfunction "io3") (pintype "input") (tstamp b3925f2d-fa42-4fad-b1da-984b9cd792a1))
(pad "6" smd roundrect (at 0 10 180) (size 1.8 1.1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 36 "/MOSI") (pinfunction "io4") (pintype "input") (tstamp 86550635-506d-443c-b751-30179c998f56))
(pad "7" smd roundrect (at 0 12 180) (size 1.8 1.1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 35 "/SCK") (pinfunction "io5") (pintype "input") (tstamp 14f52113-67df-4002-bcb2-316fca01d719))
(pad "8" smd roundrect (at 0 14 180) (size 1.8 1.1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "+3V3") (pinfunction "vcc") (pintype "input") (tstamp 54c07083-5f95-4b9d-9537-b779ede5002a))
(pad "9" smd roundrect (at 3 15.5 270) (size 1.8 1.1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 41 "unconnected-(U3-Pad9)") (pintype "input+no_connect") (tstamp ff987e4d-b044-4700-9370-655152b801a5))
(pad "10" smd roundrect (at 5 15.5 270) (size 1.8 1.1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 42 "unconnected-(U3-Pad10)") (pintype "input+no_connect") (tstamp efd4dad9-b4a0-4c1a-b390-a795a81078fa))
(pad "11" smd roundrect (at 7 15.5 270) (size 1.8 1.1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 43 "unconnected-(U3-Pad11)") (pintype "input+no_connect") (tstamp 3f64c33f-470f-4619-8b2b-fdfdf058c61b))
(pad "12" smd roundrect (at 9 15.5 270) (size 1.8 1.1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 34 "/AUDIO_EN") (pinfunction "io6") (pintype "input") (tstamp 08bf4724-1d23-4f58-bf72-11608b8bc88e))
(pad "13" smd roundrect (at 11 15.5 270) (size 1.8 1.1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 40 "/AUDIO") (pinfunction "io7") (pintype "input") (tstamp 36333775-3c57-4700-80c7-99323a4b5e27))
(pad "14" smd roundrect (at 13 15.5 270) (size 1.8 1.1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 44 "unconnected-(U3-Pad14)") (pintype "input+no_connect") (tstamp a7324b1a-dd91-4e9b-a507-2d3a88e4c754))
(pad "15" smd roundrect (at 16 14 180) (size 1.8 1.1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "GND") (pinfunction "gnd") (pintype "input") (tstamp 793cb546-f357-4d01-a972-1dea10795fb6))
(pad "16" smd roundrect (at 16 12 180) (size 1.8 1.1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 17 "Net-(D3-Pad1)") (pinfunction "io8") (pintype "input") (tstamp 7242618d-30f3-42e7-bbdb-b69cb5d4e517))
(pad "17" smd roundrect (at 16 10 180) (size 1.8 1.1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 30 "/PWR_CTRL") (pinfunction "io10") (pintype "input") (tstamp 8d9a973b-fdcb-48d4-9839-f68bc60271ed))
(pad "18" smd roundrect (at 16 8 180) (size 1.8 1.1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 13 "Net-(C10-Pad1)") (pinfunction "io9") (pintype "input") (tstamp 48f39fbc-e292-4350-bc6b-bd4df89f62fc))
(pad "19" smd roundrect (at 16 6 180) (size 1.8 1.1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 19 "/D-") (pinfunction "d-") (pintype "input") (tstamp 1ce6639d-3403-41cc-aa33-5111c2b0b50c))
(pad "20" smd roundrect (at 16 4 180) (size 1.8 1.1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 21 "/D+") (pinfunction "d+") (pintype "input") (tstamp c602393e-2ba7-4a01-9336-ca8832172f8b))
(pad "21" smd roundrect (at 16 2 180) (size 1.8 1.1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 39 "/CSB") (pinfunction "io20") (pintype "input") (tstamp d79747f1-3d90-4c38-bfe8-1c895f5df217))
(pad "22" smd roundrect (at 16 0 180) (size 1.8 1.1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "/PWR_SENS") (pinfunction "io21") (pintype "input") (tstamp c234d3b5-8472-49b6-a43f-2160944fed80))
)
(footprint "0-vhario-espc3:JST_PH_B2B-PH-K_1x02_P2.00mm_Vertical" (layer "F.Cu")
(tedit 5B7745C2) (tstamp c86d5a45-b32a-42cf-9d2e-9c5b0078a868)
(at 159.225 74.8)
(descr "JST PH series connector, B2B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator")
(tags "connector JST PH side entry")
(property "Sheetfile" "vhario-espc3.kicad_sch")
(property "Sheetname" "")
(path "/00984f86-66b3-44cb-95cd-8ea1962a277f")
(attr through_hole)
(fp_text reference "J2" (at -2.65 -2) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 20d17ec5-f59a-4102-8dd9-523efe29af80)
)
(fp_text value "Battery" (at 1 4) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d882cb78-1170-4c13-9775-104196c4395a)
)
(fp_text user "${REFERENCE}" (at 1 1.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c4d06201-db35-4cee-92b3-e27a4934d768)
)
(pad "1" thru_hole roundrect (at 0 0) (size 1.2 1.75) (drill 0.75) (layers *.Cu *.Mask) (roundrect_rratio 0.2083333333)
(net 9 "+BATT") (pinfunction "Pin_1") (pintype "passive") (tstamp 129e8f15-c8b2-415e-a749-648397573df9))
(pad "2" thru_hole oval (at 2 0) (size 1.2 1.75) (drill 0.75) (layers *.Cu *.Mask)
(net 4 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp fa7b1b84-8b11-4736-82a7-cc566ffdd6d9))
(model "${KICAD6_3DMODEL_DIR}/Connector_JST.3dshapes/JST_PH_B2B-PH-K_1x02_P2.00mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "0-vhario-espc3:PinSocket_1x02_P2.54mm_Vertical" (layer "F.Cu")
(tedit 5A19A420) (tstamp ecc9b275-ec8a-437a-b47e-900d36377096)
(at 160.55 94.36)
(descr "Through hole straight socket strip, 1x02, 2.54mm pitch, single row (from Kicad 4.0.7), script generated")
(tags "Through hole socket strip THT 1x02 2.54mm single row")
(property "Sheetfile" "vhario-espc3.kicad_sch")
(property "Sheetname" "")
(path "/c29ee67a-9b4f-475d-bbc9-98a66359a1c7")
(attr through_hole)
(fp_text reference "JP1" (at 0 -2.77) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e8478e22-4611-4674-a107-cbd83262c444)
)
(fp_text value "DBG" (at 0 5.31) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 79bff52b-9f31-4c58-a0bb-4b27f6127117)
)
(fp_text user "${REFERENCE}" (at 0 -2.8 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8b277aaa-4e1b-4134-8335-7779cf36b5e0)
)
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 9 "+BATT") (pinfunction "A") (pintype "passive") (tstamp 6787ab10-1019-408d-8b21-b0c66177fc63))
(pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 20 "Net-(D5-Pad2)") (pinfunction "B") (pintype "passive") (tstamp 40f28def-6181-4a4d-ba2e-99749b324e0a))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_1x02_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "0-vhario-espc3:Fuse_1812_4532Metric_Pad1.30x3.40mm_HandSolder" (layer "B.Cu")
(tedit 5F68FEF1) (tstamp 0d2b41cb-6a3b-4c6c-8ca6-07a1eb646e95)
(at 101.925 74.8)
(descr "Fuse SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), generated with kicad-footprint-generator")
(tags "fuse handsolder")
(property "Sheetfile" "vhario-espc3.kicad_sch")
(property "Sheetname" "")
(path "/6c2635ea-4759-4924-aba2-a43f07416ae7")
(attr smd)
(fp_text reference "F1" (at -2.075 -2.725 180) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp a459eff1-28cf-4602-a669-1acc2a5c4de5)
)
(fp_text value "nSMD100-16" (at 0 -2.65 180) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 3e9da025-750b-4984-be62-405c121aa7ba)
)
(fp_text user "${REFERENCE}" (at 0 0 180) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp cf96d55b-dcc3-474b-b551-1d3aa13189d0)
)
(fp_line (start -0.5 1) (end 0.6 -1.2) (layer "B.SilkS") (width 0.12) (tstamp 2db7fa1d-fb03-45b6-9a64-3dec652d4d28))
(fp_line (start -1.386252 -1.71) (end 1.386252 -1.71) (layer "B.SilkS") (width 0.12) (tstamp a9ac1494-e52e-4425-a7fb-5051a2b8348a))
(fp_line (start 0.6 -1.2) (end 1.2 1) (layer "B.SilkS") (width 0.12) (tstamp b0ae8585-7a06-4edf-b3da-117b9f20abec))
(fp_line (start -1.2 -1.2) (end -0.5 1) (layer "B.SilkS") (width 0.12) (tstamp c8c71578-f844-46ba-88de-a0591c6332ae))
(fp_line (start -1.386252 1.71) (end 1.386252 1.71) (layer "B.SilkS") (width 0.12) (tstamp d6a64b27-fd89-40bd-99b0-ec3fbcff6651))
(fp_line (start -3.12 1.95) (end 3.12 1.95) (layer "B.CrtYd") (width 0.05) (tstamp 14dd063f-4dea-44f4-93d7-4115c3f968e3))
(fp_line (start 3.12 1.95) (end 3.12 -1.95) (layer "B.CrtYd") (width 0.05) (tstamp 37b00bb3-05e9-4721-8100-6bba7736765b))
(fp_line (start -3.12 -1.95) (end -3.12 1.95) (layer "B.CrtYd") (width 0.05) (tstamp 874803fe-a5f9-44a7-8e47-f97cadee8bf2))
(fp_line (start 3.12 -1.95) (end -3.12 -1.95) (layer "B.CrtYd") (width 0.05) (tstamp b3472acc-4470-4f60-a985-2cbf44495153))
(fp_line (start -2.25 1.6) (end 2.25 1.6) (layer "B.Fab") (width 0.1) (tstamp 0396f5e3-bb54-4588-b7de-af01c55fee71))
(fp_line (start 2.25 -1.6) (end -2.25 -1.6) (layer "B.Fab") (width 0.1) (tstamp 17dcc4e0-62f4-48f8-954f-24f175f892f1))
(fp_line (start 2.25 1.6) (end 2.25 -1.6) (layer "B.Fab") (width 0.1) (tstamp b505e3ac-8333-44d9-b4f9-3a21a2405ef3))
(fp_line (start -2.25 -1.6) (end -2.25 1.6) (layer "B.Fab") (width 0.1) (tstamp ee261a23-f41d-4027-be8c-f1c2192c65bb))
(pad "1" smd roundrect (at -2.225 0) (size 1.8 3.4) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.1923077778)
(net 15 "Net-(F1-Pad1)") (pintype "passive") (tstamp 5a2cb494-f70f-429e-8beb-ad756abc245a))
(pad "2" smd roundrect (at 2.225 0) (size 1.8 3.4) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.1923077778)
(net 8 "Net-(C4-Pad1)") (pintype "passive") (tstamp 539c0317-223f-4f74-ad51-f20cfdd40e4a))
(model "${KICAD6_3DMODEL_DIR}/Fuse.3dshapes/Fuse_1812_4532Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "0-vhario-espc3:D_SOD-323_HandSoldering" (layer "B.Cu")
(tedit 58641869) (tstamp 168867f5-7bad-4394-9ce3-da3d8c243de4)
(at 100.225 88 -90)
(descr "SOD-323")
(tags "SOD-323")
(property "Sheetfile" "vhario-espc3.kicad_sch")
(property "Sheetname" "")
(path "/7f9b634b-c121-4c22-9fb2-7090bc15a00f")
(attr smd)
(fp_text reference "D6" (at 0.2 2.025 180) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp c46f5fe8-91dd-4615-9e64-e8c50995d823)
)
(fp_text value "BV03C" (at 0.1 -1.9 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 32feedc1-1131-4525-8e31-06740235b56d)
)
(fp_text user "${REFERENCE}" (at 0 1.85 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 63ae653f-deee-43f2-981a-ccbd8860e40f)
)
(fp_line (start 0.3 0.5) (end 0.3 -0.5) (layer "B.SilkS") (width 0.12) (tstamp 1aa5cda3-0169-4f35-9302-ad1f12d378df))
(fp_line (start -0.3 0) (end -0.3 0.5) (layer "B.SilkS") (width 0.12) (tstamp 35a4363c-06eb-4a4b-8bd3-4553da280358))
(fp_line (start 0.3 -0.5) (end -0.3 0) (layer "B.SilkS") (width 0.12) (tstamp 5929fb6c-abc4-4b27-b684-0aa54fb7447a))
(fp_line (start -0.3 0.5) (end -0.3 -0.5) (layer "B.SilkS") (width 0.12) (tstamp afcdd41e-6f51-43fb-8ebb-3a195ffa9359))
(fp_line (start -0.3 0) (end 0.3 0.5) (layer "B.SilkS") (width 0.12) (tstamp ff04ae07-8f54-4436-9637-00969177731a))
(fp_line (start 2 0.95) (end 2 -0.95) (layer "B.CrtYd") (width 0.05) (tstamp 76e10e3f-8619-4035-9ca6-1ad99e116492))
(fp_line (start -2 -0.95) (end 2 -0.95) (layer "B.CrtYd") (width 0.05) (tstamp 879fa32a-24ff-471b-8cf2-f54e5d4fe6c6))
(fp_line (start -2 0.95) (end 2 0.95) (layer "B.CrtYd") (width 0.05) (tstamp 9d0d381c-2531-4be4-9710-fe32dc288237))
(fp_line (start -2 0.95) (end -2 -0.95) (layer "B.CrtYd") (width 0.05) (tstamp b0aaefcc-63d8-4e15-acf9-42fc4c7a5ba6))
(fp_line (start -0.3 0.35) (end -0.3 -0.35) (layer "B.Fab") (width 0.1) (tstamp 033604dc-847b-48f0-8c17-c1bb726c275c))
(fp_line (start -0.3 0) (end 0.2 0.35) (layer "B.Fab") (width 0.1) (tstamp 0a778412-f47b-4505-9d81-d5f4f55db9e1))
(fp_line (start 0.2 0) (end 0.45 0) (layer "B.Fab") (width 0.1) (tstamp 0fdd3e7d-80dd-48d4-b071-6916b9b9b403))
(fp_line (start 0.9 -0.7) (end -0.9 -0.7) (layer "B.Fab") (width 0.1) (tstamp 6c050803-7979-4271-82c1-0b518a3ac75a))
(fp_line (start 0.9 0.7) (end 0.9 -0.7) (layer "B.Fab") (width 0.1) (tstamp 734a6853-5be4-43f4-a9e9-3199eda311fb))
(fp_line (start 0.2 0.35) (end 0.2 -0.35) (layer "B.Fab") (width 0.1) (tstamp 9558e388-d9f8-49d4-8966-07e49b76d62c))
(fp_line (start -0.9 -0.7) (end -0.9 0.7) (layer "B.Fab") (width 0.1) (tstamp ada50017-ef21-425c-83b8-dd035185ea64))
(fp_line (start -0.3 0) (end -0.5 0) (layer "B.Fab") (width 0.1) (tstamp c926dc22-fc0b-4a73-a312-91427ca5ec5e))
(fp_line (start 0.2 -0.35) (end -0.3 0) (layer "B.Fab") (width 0.1) (tstamp efe56775-5255-43c1-a211-74bdd76249bb))
(fp_line (start -0.9 0.7) (end 0.9 0.7) (layer "B.Fab") (width 0.1) (tstamp f80d85e2-c669-4f6b-82fe-ba389806d365))
(pad "1" smd rect (at -1.25 0 270) (size 1 1) (layers "B.Cu" "B.Paste" "B.Mask")
(net 21 "/D+") (pinfunction "A1") (pintype "passive") (tstamp acd30127-bcda-4e50-8b4d-f25160565599))
(pad "2" smd rect (at 1.25 0 270) (size 1 1) (layers "B.Cu" "B.Paste" "B.Mask")
(net 4 "GND") (pinfunction "A2") (pintype "passive") (tstamp 4dca31a8-c763-4604-9550-d73fcf699f66))
(model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "0-vhario-espc3:D_SOD-323_HandSoldering" (layer "B.Cu")
(tedit 58641869) (tstamp 1946392b-c9cc-45b7-a6b3-c3823bb75766)
(at 100.2 82.9 90)
(descr "SOD-323")
(tags "SOD-323")
(property "Sheetfile" "vhario-espc3.kicad_sch")
(property "Sheetname" "")
(path "/99b1001f-83f3-42c8-ba22-24ddf78fcf6a")
(attr smd)
(fp_text reference "D4" (at -0.45 2.125) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 9fd7391e-4e12-42fa-9bda-380ed0442876)
)
(fp_text value "BV03C" (at 0.1 -1.9 270) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 90ea928e-7a6a-4bff-a994-642cd84a85d8)
)
(fp_text user "${REFERENCE}" (at 0 1.85 270) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 70c12121-b7ff-4ed8-a57b-a6ca8bc2a6d4)
)
(fp_line (start 0.3 0.5) (end 0.3 -0.5) (layer "B.SilkS") (width 0.12) (tstamp 41c5d7b0-aa9b-4355-924f-0811be993e32))
(fp_line (start -0.3 0.5) (end -0.3 -0.5) (layer "B.SilkS") (width 0.12) (tstamp cba69be3-369e-4951-84a6-4193296cf99d))
(fp_line (start -0.3 0) (end -0.3 0.5) (layer "B.SilkS") (width 0.12) (tstamp cec780b4-6cd7-4549-895b-50f1e939264b))
(fp_line (start 0.3 -0.5) (end -0.3 0) (layer "B.SilkS") (width 0.12) (tstamp dbc65699-2306-4d6f-b2b5-9217404ac8f7))
(fp_line (start -0.3 0) (end 0.3 0.5) (layer "B.SilkS") (width 0.12) (tstamp f7480fb9-1709-4fb6-aafd-d9b61c879cae))
(fp_line (start -2 0.95) (end -2 -0.95) (layer "B.CrtYd") (width 0.05) (tstamp 64781987-c84f-45c6-a704-ecac6a126588))
(fp_line (start -2 -0.95) (end 2 -0.95) (layer "B.CrtYd") (width 0.05) (tstamp 90dee4c1-5146-44cf-a561-8e30ff59cf01))
(fp_line (start 2 0.95) (end 2 -0.95) (layer "B.CrtYd") (width 0.05) (tstamp b5dbd4d6-35c8-49bc-8447-abb38e0df328))
(fp_line (start -2 0.95) (end 2 0.95) (layer "B.CrtYd") (width 0.05) (tstamp ed8e5313-32c1-4b73-93f3-b5b91af6b279))
(fp_line (start 0.2 0.35) (end 0.2 -0.35) (layer "B.Fab") (width 0.1) (tstamp 042ab96d-6b34-4dff-9fde-7d037ffe9f16))
(fp_line (start -0.9 -0.7) (end -0.9 0.7) (layer "B.Fab") (width 0.1) (tstamp 1957adf6-5d24-4b3f-8d48-d39fd1e4ce08))
(fp_line (start -0.3 0.35) (end -0.3 -0.35) (layer "B.Fab") (width 0.1) (tstamp 2103cd68-475f-411b-98ad-1ccff92e2f29))
(fp_line (start 0.2 -0.35) (end -0.3 0) (layer "B.Fab") (width 0.1) (tstamp 2975f902-6a24-4299-b4f0-c1182af4ba9e))
(fp_line (start -0.3 0) (end 0.2 0.35) (layer "B.Fab") (width 0.1) (tstamp 3ef72d10-358a-4daa-91a7-c9b1daa7034d))
(fp_line (start 0.2 0) (end 0.45 0) (layer "B.Fab") (width 0.1) (tstamp 48e42498-5c58-463d-9519-6458d5cad636))
(fp_line (start 0.9 0.7) (end 0.9 -0.7) (layer "B.Fab") (width 0.1) (tstamp 59712e3b-2da0-4af7-be52-accf196493f7))
(fp_line (start 0.9 -0.7) (end -0.9 -0.7) (layer "B.Fab") (width 0.1) (tstamp b7b9f4a1-a997-431e-a1b6-4944278bef60))
(fp_line (start -0.3 0) (end -0.5 0) (layer "B.Fab") (width 0.1) (tstamp c11d6420-6cd1-49a5-90c8-8b4d22031121))
(fp_line (start -0.9 0.7) (end 0.9 0.7) (layer "B.Fab") (width 0.1) (tstamp ff639426-852b-402e-bd8b-9fbaf64a66e7))
(pad "1" smd rect (at -1.25 0 90) (size 1 1) (layers "B.Cu" "B.Paste" "B.Mask")
(net 19 "/D-") (pinfunction "A1") (pintype "passive") (tstamp 7d7fb2d6-5b82-4a40-9598-205945a32bb1))
(pad "2" smd rect (at 1.25 0 90) (size 1 1) (layers "B.Cu" "B.Paste" "B.Mask")
(net 4 "GND") (pinfunction "A2") (pintype "passive") (tstamp 1d81f202-06e7-4893-a3b1-ad20e97a9950))
(model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "0-vhario-espc3:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "B.Cu")
(tedit 5F68FEEF) (tstamp 1b520c9d-6f0d-4b1a-8088-d1b8c8ea0bf6)
(at 92.5 89.5)
(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" "vhario-espc3.kicad_sch")
(property "Sheetname" "")
(path "/2cb09612-920f-4fbb-89e2-c33c266d422c")
(attr smd)
(fp_text reference "C1" (at 0 1.43 180) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp dd497bbc-eab9-4914-8cb3-ece48899e009)
)
(fp_text value "100n" (at 0 -1.43 180) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 70db1a80-05d4-407d-9b04-4f53facc6caa)
)
(fp_text user "${REFERENCE}" (at 0 0 180) (layer "B.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror))
(tstamp cfa4af68-04e5-4b97-baee-685a5c2e0c68)
)
(fp_line (start -0.146267 0.51) (end 0.146267 0.51) (layer "B.SilkS") (width 0.12) (tstamp 03be32be-58a2-4584-b16d-46cd7c6384a8))
(fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (layer "B.SilkS") (width 0.12) (tstamp 0a6059a9-de95-4b51-90d0-c337b98307e5))
(fp_line (start 1.65 0.73) (end 1.65 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp 05ecd446-f457-4224-88a5-7dd6c2ff6415))
(fp_line (start 1.65 -0.73) (end -1.65 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp 47a5f454-49ec-430d-8f18-307e134896d2))
(fp_line (start -1.65 0.73) (end 1.65 0.73) (layer "B.CrtYd") (width 0.05) (tstamp 9157e1c0-1ddd-4684-bb72-b07f2aa999ba))
(fp_line (start -1.65 -0.73) (end -1.65 0.73) (layer "B.CrtYd") (width 0.05) (tstamp b7b83906-c14e-4c6c-9d19-e4e41f9ff743))
(fp_line (start -0.8 -0.4) (end -0.8 0.4) (layer "B.Fab") (width 0.1) (tstamp 19db1392-0bf7-4f47-b693-1bd7690f30b6))
(fp_line (start 0.8 -0.4) (end -0.8 -0.4) (layer "B.Fab") (width 0.1) (tstamp 2d494034-61c4-46ab-9211-8b65e9a9e7a3))
(fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer "B.Fab") (width 0.1) (tstamp 682a18b2-20d3-447f-8ed0-99c5ea6adeb6))
(fp_line (start -0.8 0.4) (end 0.8 0.4) (layer "B.Fab") (width 0.1) (tstamp a76f22b5-4e3a-4278-8b96-2e741c85dcb2))
(pad "1" smd roundrect (at -0.8625 0) (size 1.075 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 3 "Net-(C1-Pad1)") (pintype "passive") (tstamp 1d9318a1-7019-4e18-9883-59da58f962bf))
(pad "2" smd roundrect (at 0.8625 0) (size 1.075 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 4 "GND") (pintype "passive") (tstamp 5b512863-e319-4c48-a166-b3998a5e2d10))
(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 "0-vhario-espc3:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "B.Cu")
(tedit 5F68FEEE) (tstamp 1c6c224b-3c2b-47b8-9807-a09ab5119ae0)
(at 111.75 82.5 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" "vhario-espc3.kicad_sch")
(property "Sheetname" "")
(path "/0c8b4bc1-cfb7-4834-af38-eff91ce67c41")
(attr smd)
(fp_text reference "R11" (at -3.125 -0.05) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 48829f3a-2f26-4dc7-87c7-e5c22be6d433)
)
(fp_text value "10K" (at 0 -1.43) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp e39201e3-f65f-4f5a-bcae-0304894615ae)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror))
(tstamp d2b8af68-fa98-4e4d-9c9a-555e2d3b2598)
)
(fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "B.SilkS") (width 0.12) (tstamp c944d4fa-dbe7-4032-bf8d-ce3d59be1a71))
(fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "B.SilkS") (width 0.12) (tstamp e3fa34b8-480f-4cbc-af72-3c7228a5adc3))
(fp_line (start 1.65 -0.73) (end -1.65 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp 246fa646-90db-4375-8777-107965d8c585))
(fp_line (start -1.65 -0.73) (end -1.65 0.73) (layer "B.CrtYd") (width 0.05) (tstamp 53ad6cec-8363-424e-93e6-9979b3549026))
(fp_line (start 1.65 0.73) (end 1.65 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp 684999c7-0a10-4506-9b5a-54ba65e99a90))
(fp_line (start -1.65 0.73) (end 1.65 0.73) (layer "B.CrtYd") (width 0.05) (tstamp b3b20443-a28a-430c-8513-bc268beb19d4))
(fp_line (start -0.8 -0.4125) (end -0.8 0.4125) (layer "B.Fab") (width 0.1) (tstamp 4b16e346-ce5a-41fb-a3d7-7bd606e14d0a))
(fp_line (start -0.8 0.4125) (end 0.8 0.4125) (layer "B.Fab") (width 0.1) (tstamp 59594ea3-4a94-4c5e-a045-9e6895a66f23))
(fp_line (start 0.8 0.4125) (end 0.8 -0.4125) (layer "B.Fab") (width 0.1) (tstamp 7959403f-41ab-4f5b-9d6b-a862f1431fef))
(fp_line (start 0.8 -0.4125) (end -0.8 -0.4125) (layer "B.Fab") (width 0.1) (tstamp fdc309ef-4947-4b56-98d7-77bfa6dbd4bb))
(pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 11 "+3V3") (pintype "passive") (tstamp dccea88f-91ff-4bd3-9fae-6d4dadfd9730))
(pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 13 "Net-(C10-Pad1)") (pintype "passive") (tstamp 5cb99e3a-a98c-4a71-8ce5-62537e13abcb))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-23" (layer "B.Cu")
(tedit 5FA16958) (tstamp 1e63a44e-069f-4dad-afa1-ae4697570858)
(at 153.4 80.9)
(descr "SOT, 3 Pin (https://www.jedec.org/system/files/docs/to-236h.pdf variant AB), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "SOT TO_SOT_SMD")
(property "Sheetfile" "vhario-espc3.kicad_sch")
(property "Sheetname" "")
(path "/5ffb05fc-1ed5-4c2c-afa4-481d2996bda9")
(attr smd)
(fp_text reference "Q2" (at 0.75 -2.375 180) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 7cabc75c-3387-4fc4-8c6a-504ec8c7a2b7)
)
(fp_text value "2N7002" (at 0 -2.4 180) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 7420d805-e1a9-4905-8ecb-cf26364e0fe4)
)
(fp_text user "${REFERENCE}" (at 0 0 180) (layer "B.Fab")
(effects (font (size 0.32 0.32) (thickness 0.05)) (justify mirror))
(tstamp 9d028c32-77b8-4bc1-82d4-f6f1dcc649a2)
)
(fp_line (start 0 1.56) (end -1.675 1.56) (layer "B.SilkS") (width 0.12) (tstamp 7436c063-ad15-4590-bd69-fa8af53ad1a3))
(fp_line (start 0 -1.56) (end -0.65 -1.56) (layer "B.SilkS") (width 0.12) (tstamp 80326231-3d89-49e7-bb27-6231064fa4c6))
(fp_line (start 0 -1.56) (end 0.65 -1.56) (layer "B.SilkS") (width 0.12) (tstamp a007c2ad-2dae-4606-aab9-6bec3a3d9afa))
(fp_line (start 0 1.56) (end 0.65 1.56) (layer "B.SilkS") (width 0.12) (tstamp d0e58515-d9f4-48c2-8fbc-274f66db46bd))
(fp_line (start 1.92 1.7) (end -1.92 1.7) (layer "B.CrtYd") (width 0.05) (tstamp 58a1c15a-ea6c-40e0-a9af-c1ec3d02f0e1))
(fp_line (start -1.92 1.7) (end -1.92 -1.7) (layer "B.CrtYd") (width 0.05) (tstamp b862d33b-5bf7-428c-a632-c2fecf011793))
(fp_line (start -1.92 -1.7) (end 1.92 -1.7) (layer "B.CrtYd") (width 0.05) (tstamp ec216922-6a41-43bf-aa30-30b121e537b0))
(fp_line (start 1.92 -1.7) (end 1.92 1.7) (layer "B.CrtYd") (width 0.05) (tstamp f98b0d18-112c-4211-8eff-4b7f11be50bf))
(fp_line (start 0.65 1.45) (end 0.65 -1.45) (layer "B.Fab") (width 0.1) (tstamp 17c16a76-27e5-40de-80c5-ace7d218c9d7))
(fp_line (start -0.65 -1.45) (end -0.65 1.125) (layer "B.Fab") (width 0.1) (tstamp 34ecfc2e-2516-4a38-a9c0-10f14b550c22))
(fp_line (start -0.325 1.45) (end 0.65 1.45) (layer "B.Fab") (width 0.1) (tstamp 4f836d90-00e9-41f0-844b-756a1524e017))
(fp_line (start 0.65 -1.45) (end -0.65 -1.45) (layer "B.Fab") (width 0.1) (tstamp 57ea7652-4b13-44fb-a333-86de4e4cf65a))
(fp_line (start -0.65 1.125) (end -0.325 1.45) (layer "B.Fab") (width 0.1) (tstamp aabb2036-d047-41e3-a3ad-3ed681c3566f))
(pad "1" smd roundrect (at -0.9375 0.95) (size 1.475 0.6) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 30 "/PWR_CTRL") (pinfunction "G") (pintype "input") (tstamp 6c9a626a-4e8f-4d41-b2d5-0ae37fedd0be))
(pad "2" smd roundrect (at -0.9375 -0.95) (size 1.475 0.6) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 4 "GND") (pinfunction "S") (pintype "passive") (tstamp 9793021d-4f2f-48ab-83ff-96912c1bcff2))
(pad "3" smd roundrect (at 0.9375 0) (size 1.475 0.6) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 29 "Net-(Q1-Pad1)") (pinfunction "D") (pintype "passive") (tstamp 986ff855-1af1-4985-8a6a-294968e8b414))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "0-vhario-espc3:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "B.Cu")
(tedit 5F68FEEE) (tstamp 22c4ffd1-a803-433f-a689-18174793ba2f)
(at 123.8 86.525 -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" "vhario-espc3.kicad_sch")
(property "Sheetname" "")
(path "/3ca5468c-3b56-4344-bf4c-2c2ba0a45a03")
(attr smd)
(fp_text reference "R5" (at 2.4 0.075 180) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp b343de4b-82cd-4261-a3d8-d8612fb6b4f1)
)
(fp_text value "2K7" (at 0 -1.43 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 430ebe18-36bc-4296-ab5d-db949832beea)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "B.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror))
(tstamp e99062e5-819e-4c51-b086-888526571478)
)
(fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "B.SilkS") (width 0.12) (tstamp ba0fa5d6-4cb4-4f44-80e7-99fe74a5c0ea))
(fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "B.SilkS") (width 0.12) (tstamp bd6b0ae3-d193-4720-ab14-25c5d5bafa79))
(fp_line (start -1.65 0.73) (end 1.65 0.73) (layer "B.CrtYd") (width 0.05) (tstamp 126771ab-3a3d-4b7d-a6ae-7d571fc7aa50))
(fp_line (start 1.65 0.73) (end 1.65 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp 4c039360-d11b-402b-8dab-9c6a04746ad2))
(fp_line (start 1.65 -0.73) (end -1.65 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp 6d6205a1-9a21-4f79-8707-f80598446835))
(fp_line (start -1.65 -0.73) (end -1.65 0.73) (layer "B.CrtYd") (width 0.05) (tstamp 9899b226-006d-43d1-8102-868331881827))
(fp_line (start -0.8 0.4125) (end 0.8 0.4125) (layer "B.Fab") (width 0.1) (tstamp 479dfce9-c8d1-4362-8e83-67449eef2b2e))
(fp_line (start 0.8 -0.4125) (end -0.8 -0.4125) (layer "B.Fab") (width 0.1) (tstamp b901a619-5452-4672-98d8-35580ceb1753))
(fp_line (start -0.8 -0.4125) (end -0.8 0.4125) (layer "B.Fab") (width 0.1) (tstamp f2486666-e2d0-406c-8c77-eab15b468989))
(fp_line (start 0.8 0.4125) (end 0.8 -0.4125) (layer "B.Fab") (width 0.1) (tstamp f2bde85e-c92a-46bf-bdbe-5ba6950fcf5b))
(pad "1" smd roundrect (at -0.9125 0 270) (size 0.975 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 11 "+3V3") (pintype "passive") (tstamp abf4276f-5224-42f1-ac46-2ed6e1949c92))
(pad "2" smd roundrect (at 0.9125 0 270) (size 0.975 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 10 "Net-(C6-Pad1)") (pintype "passive") (tstamp aa30aa4e-ddf7-4118-8716-2ca9839a97ef))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "0-vhario-espc3:SW_SPDT_PCM12" (layer "B.Cu")
(tedit 58724DAF) (tstamp 2dd18555-2b32-4034-8e4e-50f64f1e4d46)
(at 155 97.25 180)
(descr "Ultraminiature Surface Mount Slide Switch")
(property "Sheetfile" "vhario-espc3.kicad_sch")
(property "Sheetname" "")
(path "/d72a6c8d-4e78-4b83-8469-96c48e984e90")
(attr smd)
(fp_text reference "SW2" (at 0 3.2) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 5396a2ee-b600-4d66-8c4b-a71b077ff66e)
)
(fp_text value "DBG" (at 0 -4.25) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 462da652-c321-488f-b87c-20c3b40d09b6)
)
(fp_text user "${REFERENCE}" (at 0 3.2) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 275c04d0-6826-426d-809f-13ab61a74dab)
)
(fp_line (start -1.2 -3.23) (end -0.3 -3.23) (layer "B.SilkS") (width 0.12) (tstamp 01d0afcb-c99b-49c9-b02e-f23174647820))
(fp_line (start -2.85 -1.73) (end 2.85 -1.73) (layer "B.SilkS") (width 0.12) (tstamp 1a250afd-69fe-4667-a680-771b67623492))
(fp_line (start -1.6 1.12) (end 0.1 1.12) (layer "B.SilkS") (width 0.12) (tstamp 27cdd048-5b6b-4e72-9048-6dfc0cc0f687))
(fp_line (start -0.1 -3.02) (end -0.1 -1.73) (layer "B.SilkS") (width 0.12) (tstamp 40255328-8309-47e6-ac5a-342f05e4fe7e))
(fp_line (start -1.4 -1.73) (end -1.4 -3.02) (layer "B.SilkS") (width 0.12) (tstamp 561e9d57-988e-4aaf-804f-749d1883a01e))
(fp_line (start -3.45 0.07) (end -3.45 -0.72) (layer "B.SilkS") (width 0.12) (tstamp 6a1b2dc6-2d9b-4cc4-b9cb-53d8fa3bef3b))
(fp_line (start -1.4 -3.02) (end -1.2 -3.23) (layer "B.SilkS") (width 0.12) (tstamp 7b63f3da-14b5-4e0a-913d-287d3d1e5e42))
(fp_line (start 3.45 -0.72) (end 3.45 0.07) (layer "B.SilkS") (width 0.12) (tstamp 7e7acb5c-790c-441f-ab74-8c539210033f))
(fp_line (start 1.4 1.12) (end 1.6 1.12) (layer "B.SilkS") (width 0.12) (tstamp c11b78c9-53b1-4106-b7e7-3dcaf0020b7b))
(fp_line (start -0.1 -3.02) (end -0.3 -3.23) (layer "B.SilkS") (width 0.12) (tstamp f0c315a2-498e-4b02-86b2-d0d146635142))
(fp_line (start 4.4 2.45) (end 4.4 -2.1) (layer "B.CrtYd") (width 0.05) (tstamp 1e587247-5296-4f3c-84cb-1d39246d1cf8))
(fp_line (start 4.4 -2.1) (end 1.65 -2.1) (layer "B.CrtYd") (width 0.05) (tstamp 44ec45b6-ccb2-4744-a337-545c107bec8b))
(fp_line (start -1.65 -2.1) (end -4.4 -2.1) (layer "B.CrtYd") (width 0.05) (tstamp 5c52c9ef-a667-4228-a1c8-bdd81ae62e39))
(fp_line (start 1.65 -2.1) (end 1.65 -3.4) (layer "B.CrtYd") (width 0.05) (tstamp 5dab05c1-711f-48e0-ab46-f9f64c3b34ad))
(fp_line (start 1.65 -3.4) (end -1.65 -3.4) (layer "B.CrtYd") (width 0.05) (tstamp 7f2b8f46-3c45-4582-8a34-8e55096296bd))
(fp_line (start -1.65 -3.4) (end -1.65 -2.1) (layer "B.CrtYd") (width 0.05) (tstamp 9dcd3327-0edf-426e-8f04-2e7b9e9d2b6c))
(fp_line (start -4.4 2.45) (end 4.4 2.45) (layer "B.CrtYd") (width 0.05) (tstamp e9bbb9d5-ef12-456f-969a-4d1b3cc1dd6d))
(fp_line (start -4.4 -2.1) (end -4.4 2.45) (layer "B.CrtYd") (width 0.05) (tstamp f6300ae2-e5f1-4a08-bbae-107c9c6a24e5))
(fp_line (start -1.4 -2.95) (end -1.2 -3.15) (layer "B.Fab") (width 0.1) (tstamp 3a6cb6ee-af39-41e6-9114-c05463396243))
(fp_line (start -1.2 -3.15) (end -0.35 -3.15) (layer "B.Fab") (width 0.1) (tstamp 66569a2e-2ecb-470d-aaa9-9fb3351f80c7))
(fp_line (start -0.35 -3.15) (end -0.15 -2.95) (layer "B.Fab") (width 0.1) (tstamp 67e37069-f85c-4a11-92b6-27106bff15e2))
(fp_line (start 3.35 -1.6) (end 3.35 1) (layer "B.Fab") (width 0.1) (tstamp 845751d8-66a2-4ce8-a4ad-f05c8082c6fb))
(fp_line (start -0.15 -2.95) (end -0.1 -2.9) (layer "B.Fab") (width 0.1) (tstamp 8b1ad5a9-3dce-4f49-97e2-7668784b0814))
(fp_line (start -3.35 -1.6) (end 3.35 -1.6) (layer "B.Fab") (width 0.1) (tstamp 8cea22c0-2961-4b67-9650-ab54fce08b83))
(fp_line (start -3.35 1) (end -3.35 -1.6) (layer "B.Fab") (width 0.1) (tstamp 9d10ea91-7494-41ea-ad8c-20c7f4e1da09))
(fp_line (start 3.35 1) (end -3.35 1) (layer "B.Fab") (width 0.1) (tstamp a3caceb6-89d9-437e-a0e6-70097e909e10))
(fp_line (start -0.1 -2.9) (end -0.1 -1.6) (layer "B.Fab") (width 0.1) (tstamp ae93beba-486a-4148-bcd5-6a115262b49a))
(fp_line (start -1.4 -1.65) (end -1.4 -2.95) (layer "B.Fab") (width 0.1) (tstamp b556fe68-54c2-4941-a2f4-d576b220b074))
(pad "" smd rect (at -3.65 -1.43 180) (size 1 0.8) (layers "B.Cu" "B.Paste" "B.Mask") (tstamp 07f8a00b-c922-4e7a-a3fe-39f0cc4565aa))
(pad "" np_thru_hole circle (at 1.5 -0.33 180) (size 0.9 0.9) (drill 0.9) (layers *.Cu *.Mask) (tstamp 38749450-798e-44fe-9878-8a69ff7be189))
(pad "" smd rect (at 3.65 0.78 180) (size 1 0.8) (layers "B.Cu" "B.Paste" "B.Mask") (tstamp 623a7c1a-8ffd-4652-bfc5-b3e184620cb9))
(pad "" smd rect (at 3.65 -1.43 180) (size 1 0.8) (layers "B.Cu" "B.Paste" "B.Mask") (tstamp 90f223fe-1645-4ba1-a58c-bf6455ccf7cc))
(pad "" smd rect (at -3.65 0.78 180) (size 1 0.8) (layers "B.Cu" "B.Paste" "B.Mask") (tstamp cf81bb9e-38bf-4a85-991e-80ee98527145))
(pad "" np_thru_hole circle (at -1.5 -0.33 180) (size 0.9 0.9) (drill 0.9) (layers *.Cu *.Mask) (tstamp ebb936cd-f2e2-45a8-8e6b-6378127613c9))
(pad "1" smd rect (at -2.25 1.43 180) (size 0.7 1.5) (layers "B.Cu" "B.Paste" "B.Mask")
(net 9 "+BATT") (pinfunction "A") (pintype "passive") (tstamp 5ba4186f-a5fa-47c8-93a3-fd6d40b4e949))
(pad "2" smd rect (at 0.75 1.43 180) (size 0.7 1.5) (layers "B.Cu" "B.Paste" "B.Mask")
(net 20 "Net-(D5-Pad2)") (pinfunction "B") (pintype "passive") (tstamp c6d49067-6669-40a5-9f25-2b3ec1edcfc5))
(pad "3" smd rect (at 2.25 1.43 180) (size 0.7 1.5) (layers "B.Cu" "B.Paste" "B.Mask")
(net 46 "unconnected-(SW2-Pad3)") (pinfunction "C") (pintype "passive+no_connect") (tstamp 3573a274-961e-4c60-9dec-9446d747065b))
(model "${KISYS3DMOD}/Buttons_Switches_SMD.3dshapes/SW_SPDT_PCM12.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "0-vhario-espc3:L_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (layer "B.Cu")
(tedit 5F68FEF0) (tstamp 3481c12d-73b5-4587-912d-f4c13bf4cd72)
(at 127.95 74.35)
(descr "Inductor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "inductor handsolder")
(property "Sheetfile" "vhario-espc3.kicad_sch")
(property "Sheetname" "")
(path "/fca57169-8e93-42d0-84f6-4c2957419807")
(attr smd)
(fp_text reference "L2" (at -0.225 1.825 180) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp dc7ed1ca-7511-43e4-8794-188fda317c92)
)
(fp_text value "GZ2012D601TF" (at 0 -1.65 180) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp f23f0a27-b414-4292-9ac4-131974a404b8)
)
(fp_text user "${REFERENCE}" (at 0 0 180) (layer "B.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)) (justify mirror))
(tstamp 22fb72be-9450-44f7-84cc-5851b80343e9)
)
(fp_line (start -0.261252 -0.71) (end 0.261252 -0.71) (layer "B.SilkS") (width 0.12) (tstamp c67f8f85-353c-4a87-bb2e-00d3dd2af805))
(fp_line (start -0.261252 0.71) (end 0.261252 0.71) (layer "B.SilkS") (width 0.12) (tstamp d09b9be6-2eb4-48b0-8a0b-ecb9439ccb7b))
(fp_line (start -1.85 -0.95) (end -1.85 0.95) (layer "B.CrtYd") (width 0.05) (tstamp 1136c88b-f5bc-4147-a8e6-de050caffe32))
(fp_line (start -1.85 0.95) (end 1.85 0.95) (layer "B.CrtYd") (width 0.05) (tstamp 1809b9c2-b33b-44d8-8f13-faba9719deb8))
(fp_line (start 1.85 0.95) (end 1.85 -0.95) (layer "B.CrtYd") (width 0.05) (tstamp 1f555ea5-c15a-4dc1-ad1b-4372bc82cab5))
(fp_line (start 1.85 -0.95) (end -1.85 -0.95) (layer "B.CrtYd") (width 0.05) (tstamp 2505d298-0662-4b2e-8445-3f0d20d585a9))
(fp_line (start 1 -0.6) (end -1 -0.6) (layer "B.Fab") (width 0.1) (tstamp 150804d0-a68f-4181-b499-4c5490ec744a))
(fp_line (start -1 -0.6) (end -1 0.6) (layer "B.Fab") (width 0.1) (tstamp 2e7161a3-5f3f-4607-ba8a-2417416344de))
(fp_line (start 1 0.6) (end 1 -0.6) (layer "B.Fab") (width 0.1) (tstamp 7fdc05f6-41c4-4491-bfd8-fae3f74d7c61))
(fp_line (start -1 0.6) (end 1 0.6) (layer "B.Fab") (width 0.1) (tstamp d2e5808b-787b-4cc4-92fb-ea5c90764cc0))
(pad "1" smd roundrect (at -1.025 0) (size 1.15 1.4) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.2173913043)
(net 4 "GND") (pinfunction "1") (pintype "passive") (tstamp 627ec657-b932-46d5-abff-82cef10df4ac))
(pad "2" smd roundrect (at 1.025 0) (size 1.15 1.4) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.2173913043)
(net 6 "Net-(C2-Pad2)") (pinfunction "2") (pintype "passive") (tstamp 62d71f96-94d5-40c1-b2ff-eb1b47f9e965))
(model "${KICAD6_3DMODEL_DIR}/Inductor_SMD.3dshapes/L_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "0-vhario-espc3:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (layer "B.Cu")
(tedit 5F68FEF1) (tstamp 3a1fe3cb-39c4-47d5-a22e-e64baff766c3)
(at 107.75 77.85)
(descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "LED handsolder")
(property "Sheetfile" "vhario-espc3.kicad_sch")
(property "Sheetname" "")
(path "/db85d6f7-85cb-4b86-8c56-e7d66fb50068")
(attr smd)
(fp_text reference "D2" (at -0.125 -1.55 180) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp f820c575-6ce5-4a1d-b153-40137ee78355)
)
(fp_text value "CHRG" (at 0 -1.65 180) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 63ce6b02-0bf3-443c-bc88-06f3766d27e6)
)
(fp_text user "${REFERENCE}" (at 0 0 180) (layer "B.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)) (justify mirror))
(tstamp ecea9ff5-2e34-42eb-bcb1-95bfefa8089e)
)
(fp_line (start -0.3 0) (end 0.3 0.5) (layer "B.SilkS") (width 0.12) (tstamp 1362555b-b8c0-4f13-a4a0-224e38e64a5b))
(fp_line (start 0.3 -0.5) (end -0.3 0) (layer "B.SilkS") (width 0.12) (tstamp 74939083-b977-476d-b50a-c1eafb422dfe))
(fp_line (start 0.3 0.5) (end 0.3 -0.5) (layer "B.SilkS") (width 0.12) (tstamp 9ad38fbd-3a41-4a05-bf1b-400031e95612))
(fp_line (start -0.3 0.5) (end -0.3 -0.5) (layer "B.SilkS") (width 0.12) (tstamp ccdf8c01-c1cb-43f5-8590-79ffcd28411c))
(fp_line (start 1.85 0.95) (end 1.85 -0.95) (layer "B.CrtYd") (width 0.05) (tstamp 02d39ae2-de2d-4a29-b478-78ac9ec97b49))
(fp_line (start 1.85 -0.95) (end -1.85 -0.95) (layer "B.CrtYd") (width 0.05) (tstamp 15a4d17c-3bd3-4da4-b137-73418ec6a4e3))
(fp_line (start -1.85 -0.95) (end -1.85 0.95) (layer "B.CrtYd") (width 0.05) (tstamp a55505f2-1ccb-4928-8806-d6be8621833e))
(fp_line (start -1.85 0.95) (end 1.85 0.95) (layer "B.CrtYd") (width 0.05) (tstamp f89c7255-16f7-46fd-ba58-991b54f03a53))
(fp_line (start -0.7 0.6) (end -1 0.3) (layer "B.Fab") (width 0.1) (tstamp 3f232980-1099-4379-92de-740463f7e31e))
(fp_line (start -1 -0.6) (end 1 -0.6) (layer "B.Fab") (width 0.1) (tstamp 541d471a-4eff-4034-80a7-6aa625a5e044))
(fp_line (start 1 -0.6) (end 1 0.6) (layer "B.Fab") (width 0.1) (tstamp 58751c4c-b183-46c7-a3fe-b6aa002d2177))
(fp_line (start 1 0.6) (end -0.7 0.6) (layer "B.Fab") (width 0.1) (tstamp 89aede00-3f25-4246-b9a2-2157fa61ef3f))