-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMHI ESP.kicad_pcb
7537 lines (7508 loc) · 326 KB
/
MHI ESP.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)
)
(setup
(pad_to_mask_clearance 0.051)
(solder_mask_min_width 0.25)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "Gerbers")
)
)
(net 0 "")
(net 1 "GND")
(net 2 "+5V")
(net 3 "MHI-MISO")
(net 4 "MHI-SCK")
(net 5 "MHI-MOSI")
(net 6 "+12V")
(net 7 "ESP-SCK")
(net 8 "+3V3")
(net 9 "ESP-MISO")
(net 10 "ESP-MOSI")
(net 11 "IRDIN")
(net 12 "IRDOUT")
(net 13 "ESP-IRDIN")
(net 14 "ESP-IRDOUT")
(net 15 "unconnected-(U1-Pad1)")
(net 16 "unconnected-(U1-Pad2)")
(net 17 "unconnected-(U1-Pad3)")
(net 18 "unconnected-(U1-Pad7)")
(net 19 "unconnected-(U1-Pad11)")
(net 20 "unconnected-(U1-Pad12)")
(net 21 "unconnected-(U1-Pad15)")
(net 22 "unconnected-(U1-Pad16)")
(footprint "Package_TO_SOT_SMD:SOT-23" (layer "F.Cu")
(tedit 5A02FF57) (tstamp 00000000-0000-0000-0000-000061392b0c)
(at 123 98.25)
(descr "SOT-23, Standard")
(tags "SOT-23")
(property "Sheetfile" "MHI ESP.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000613ac880")
(attr smd)
(fp_text reference "Q2" (at 1.75 2) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8de464a1-3f64-4013-91f8-ec30d979a536)
)
(fp_text value "BSS138" (at 0 2.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 576a645a-e5d2-4549-9c21-bd9a29afa8ff)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp 1b9a3e43-3076-466b-a942-070b1244a6ae)
)
(fp_line (start 0.76 1.58) (end 0.76 0.65) (layer "F.SilkS") (width 0.12) (tstamp 1364d0ae-2f9a-4e85-85fc-bb64d023af2f))
(fp_line (start 0.76 1.58) (end -0.7 1.58) (layer "F.SilkS") (width 0.12) (tstamp 47d25667-2a3d-4509-bde4-ecd3d8b3a332))
(fp_line (start 0.76 -1.58) (end 0.76 -0.65) (layer "F.SilkS") (width 0.12) (tstamp 7b64c891-db27-4e8d-a1c7-cd601f92b345))
(fp_line (start 0.76 -1.58) (end -1.4 -1.58) (layer "F.SilkS") (width 0.12) (tstamp 950306d5-4b22-4cb9-a245-a497badc60d7))
(fp_line (start 1.7 1.75) (end -1.7 1.75) (layer "F.CrtYd") (width 0.05) (tstamp 3d3614e5-e479-4875-bb23-18890b8baed7))
(fp_line (start 1.7 -1.75) (end 1.7 1.75) (layer "F.CrtYd") (width 0.05) (tstamp 8a71c2ac-5798-47a7-9e4b-d7f0cd924809))
(fp_line (start -1.7 1.75) (end -1.7 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 97fd468d-8bc8-4e10-b1f9-8256ee7bc731))
(fp_line (start -1.7 -1.75) (end 1.7 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp d2d0f0a1-0ba7-439c-afac-e0cf52b78d74))
(fp_line (start -0.7 1.52) (end 0.7 1.52) (layer "F.Fab") (width 0.1) (tstamp 0e83806c-e00b-49db-b9c0-9c9b6956247c))
(fp_line (start -0.15 -1.52) (end 0.7 -1.52) (layer "F.Fab") (width 0.1) (tstamp 15b31065-7b5b-4150-8f93-3bd2cb5086cc))
(fp_line (start -0.7 -0.95) (end -0.15 -1.52) (layer "F.Fab") (width 0.1) (tstamp 7dd02fd0-a122-44f1-bf6b-4fccc66e5950))
(fp_line (start 0.7 -1.52) (end 0.7 1.52) (layer "F.Fab") (width 0.1) (tstamp 91d7856b-277c-46b0-89f3-ccd5043c98c3))
(fp_line (start -0.7 -0.95) (end -0.7 1.5) (layer "F.Fab") (width 0.1) (tstamp b79a330f-f586-49fb-a412-0ba1e15e6a4b))
(pad "1" smd rect locked (at -1 -0.95) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "+3V3") (pinfunction "G") (pintype "input") (tstamp 4b7dd3a1-1545-4c38-8bfa-2bd5451248ec))
(pad "2" smd rect locked (at -1 0.95) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "ESP-MISO") (pinfunction "S") (pintype "passive") (tstamp dad256c1-f965-4b2f-86b3-c2b3553910e4))
(pad "3" smd rect locked (at 1 0) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "MHI-MISO") (pinfunction "D") (pintype "passive") (tstamp f3a6c3e3-cb76-465a-a886-d0d4647c76b4))
(model "${KISYS3DMOD}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-23" (layer "F.Cu")
(tedit 5A02FF57) (tstamp 00000000-0000-0000-0000-000061392b21)
(at 123 103.25)
(descr "SOT-23, Standard")
(tags "SOT-23")
(property "Sheetfile" "MHI ESP.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000613b20d2")
(attr smd)
(fp_text reference "Q3" (at 1.75 2) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d0a66afb-06aa-460b-b1e3-a97510372e27)
)
(fp_text value "BSS138" (at 0 2.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 78085b27-66c5-40ba-9eb4-96c1e35e26e1)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp af9ad823-d5a3-4357-9700-1ffd33efae63)
)
(fp_line (start 0.76 -1.58) (end -1.4 -1.58) (layer "F.SilkS") (width 0.12) (tstamp 482f57d6-3224-4790-a1e5-4c53a24f84da))
(fp_line (start 0.76 1.58) (end 0.76 0.65) (layer "F.SilkS") (width 0.12) (tstamp 4f0acb00-62bd-4f0c-b1ef-204c226c0d62))
(fp_line (start 0.76 -1.58) (end 0.76 -0.65) (layer "F.SilkS") (width 0.12) (tstamp 596f0d3e-881f-4f4c-bc11-5733ea870987))
(fp_line (start 0.76 1.58) (end -0.7 1.58) (layer "F.SilkS") (width 0.12) (tstamp 91c7fa36-d75a-41f9-be60-b408327baeb1))
(fp_line (start 1.7 1.75) (end -1.7 1.75) (layer "F.CrtYd") (width 0.05) (tstamp 002659c6-518e-4e03-8d90-dcc5b2e0f0ec))
(fp_line (start -1.7 -1.75) (end 1.7 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 3d8cf414-6613-4909-951b-2a7dd40e1f47))
(fp_line (start 1.7 -1.75) (end 1.7 1.75) (layer "F.CrtYd") (width 0.05) (tstamp 5ee5121e-0eaf-4c2c-8a71-fc726da622e4))
(fp_line (start -1.7 1.75) (end -1.7 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp d9beca1f-071d-47ef-b5b1-a92f7fbd153a))
(fp_line (start -0.7 -0.95) (end -0.7 1.5) (layer "F.Fab") (width 0.1) (tstamp 0c63bc67-9f75-4289-9aa4-898dfac4ba5a))
(fp_line (start -0.15 -1.52) (end 0.7 -1.52) (layer "F.Fab") (width 0.1) (tstamp 232abcbb-12dc-4b53-afbd-68f5c889d5f1))
(fp_line (start -0.7 1.52) (end 0.7 1.52) (layer "F.Fab") (width 0.1) (tstamp 3112e56b-184c-4c6c-a23c-49539958bc7c))
(fp_line (start -0.7 -0.95) (end -0.15 -1.52) (layer "F.Fab") (width 0.1) (tstamp 42d8eaea-727e-4afa-8ac1-a4a9510a0473))
(fp_line (start 0.7 -1.52) (end 0.7 1.52) (layer "F.Fab") (width 0.1) (tstamp c5802dcc-75a9-40f0-b6bf-7aebed2c5b5d))
(pad "1" smd rect locked (at -1 -0.95) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "+3V3") (pinfunction "G") (pintype "input") (tstamp 5118eca3-ffd0-4f21-bc7d-9d85f3d91280))
(pad "2" smd rect locked (at -1 0.95) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 10 "ESP-MOSI") (pinfunction "S") (pintype "passive") (tstamp 4d492803-6c4d-41b8-914d-ded5942ba626))
(pad "3" smd rect locked (at 1 0) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "MHI-MOSI") (pinfunction "D") (pintype "passive") (tstamp 63e0d97f-9fab-48a6-ae5d-a3776cd87076))
(model "${KISYS3DMOD}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric" (layer "F.Cu")
(tedit 5B36C52B) (tstamp 00000000-0000-0000-0000-000061392b32)
(at 119.5 93.25 -90)
(descr "Resistor 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 "resistor")
(property "Sheetfile" "MHI ESP.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00006139ad9c")
(attr smd)
(fp_text reference "R1" (at 0 1.5 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 72873960-c207-443e-b8ad-6d7a1bb3572f)
)
(fp_text value "10k" (at 0 1.65 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 355a4969-c696-4906-8c92-8f0daac74a52)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp e0063202-2143-461e-955e-ef9f18f51334)
)
(fp_line (start -0.258578 -0.71) (end 0.258578 -0.71) (layer "F.SilkS") (width 0.12) (tstamp 0d5f764c-260e-446b-a1c4-7556a07df6a2))
(fp_line (start -0.258578 0.71) (end 0.258578 0.71) (layer "F.SilkS") (width 0.12) (tstamp 12c5618d-7c55-414c-b40a-38b986d2c9a0))
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 45c61ac1-e981-480c-a08f-d2d8c5027843))
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 71ea53a9-3919-4564-b02f-a71354f69b31))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 7813a158-7d10-4b74-8c88-1eec80e50597))
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 8f0029b4-06bc-4708-b69f-c08cb0085e37))
(fp_line (start -1 0.6) (end -1 -0.6) (layer "F.Fab") (width 0.1) (tstamp 59665e5a-8054-4ebb-877b-ace770c59ccb))
(fp_line (start 1 -0.6) (end 1 0.6) (layer "F.Fab") (width 0.1) (tstamp 6f207cd6-173d-426a-b9c2-ad0beb44c618))
(fp_line (start -1 -0.6) (end 1 -0.6) (layer "F.Fab") (width 0.1) (tstamp 70faf60a-109e-42a0-bd76-67724634f719))
(fp_line (start 1 0.6) (end -1 0.6) (layer "F.Fab") (width 0.1) (tstamp ccc88402-995a-4585-a00f-8608ca6710ac))
(pad "1" smd roundrect locked (at -0.9375 0 270) (size 0.975 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "+3V3") (pintype "passive") (tstamp 7e8ad21c-9297-4b74-8c27-d274682ae8be))
(pad "2" smd roundrect locked (at 0.9375 0 270) (size 0.975 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "ESP-SCK") (pintype "passive") (tstamp 55377310-9b45-49ba-bfba-82e18d170530))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric" (layer "F.Cu")
(tedit 5B36C52B) (tstamp 00000000-0000-0000-0000-000061392b54)
(at 119.5 103.25 -90)
(descr "Resistor 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 "resistor")
(property "Sheetfile" "MHI ESP.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000613b20cc")
(attr smd)
(fp_text reference "R3" (at 0 1.5 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 520eef20-4c02-4e00-9618-96ecc6b92553)
)
(fp_text value "10k" (at 0 1.65 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6ff2a500-cba0-44a3-969b-4fcd6b73ad95)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 6f0cde27-e6e0-41f0-9f3d-e52d3012fae6)
)
(fp_line (start -0.258578 0.71) (end 0.258578 0.71) (layer "F.SilkS") (width 0.12) (tstamp 95a2ce21-b801-4f16-94bb-29afae5b07f6))
(fp_line (start -0.258578 -0.71) (end 0.258578 -0.71) (layer "F.SilkS") (width 0.12) (tstamp eda2a939-70d7-416b-9c37-dc117a95a34a))
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 0060fb6b-a96f-4ed3-8fcf-9f4101261085))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 869458c3-a945-44a5-a528-e63512c416c3))
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 8bd07fef-20d4-4a8d-bcef-a8a554e5352b))
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp b92c6325-babe-4a0e-b99c-35aee410357c))
(fp_line (start 1 0.6) (end -1 0.6) (layer "F.Fab") (width 0.1) (tstamp 0eeb2a03-c921-4368-8eeb-d27e2824bdcb))
(fp_line (start 1 -0.6) (end 1 0.6) (layer "F.Fab") (width 0.1) (tstamp 36d194b4-a315-4353-8f8b-2963572e7518))
(fp_line (start -1 0.6) (end -1 -0.6) (layer "F.Fab") (width 0.1) (tstamp 90ca75e5-21f5-4515-add1-b398b0a0efb9))
(fp_line (start -1 -0.6) (end 1 -0.6) (layer "F.Fab") (width 0.1) (tstamp 91597002-3263-4b35-b720-11f64bcc13f5))
(pad "1" smd roundrect locked (at -0.9375 0 270) (size 0.975 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "+3V3") (pintype "passive") (tstamp aaca4201-91cc-41c5-811b-321d1ff9d4bb))
(pad "2" smd roundrect locked (at 0.9375 0 270) (size 0.975 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "ESP-MOSI") (pintype "passive") (tstamp ec7f77a1-9c11-4a37-ad03-32b8ef59ff5a))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric" (layer "F.Cu")
(tedit 5B36C52B) (tstamp 00000000-0000-0000-0000-000061392b65)
(at 126.5 93.25 -90)
(descr "Resistor 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 "resistor")
(property "Sheetfile" "MHI ESP.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00006139ecdb")
(attr smd)
(fp_text reference "R4" (at 0 -1.65 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5b481d4b-7586-4306-8b9b-f34fc2008001)
)
(fp_text value "10k" (at 0 1.65 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 69b64d8d-13cf-4134-870d-cd21bfccb42b)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 38573dea-4632-4fbc-9ce5-8c1feff1411e)
)
(fp_line (start -0.258578 -0.71) (end 0.258578 -0.71) (layer "F.SilkS") (width 0.12) (tstamp 268ff087-1341-432e-a17c-090dda8f8fb1))
(fp_line (start -0.258578 0.71) (end 0.258578 0.71) (layer "F.SilkS") (width 0.12) (tstamp f76a7ee7-b4a6-4d5b-9d2b-4880069ec08f))
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 0b58e530-6fc1-40e6-9187-39625aa6043c))
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 2299d275-9f08-4212-bd0c-3d7ce601a775))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 6a577b6d-641c-4323-8281-727fbfa95d5d))
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 76930d6c-c868-4d4d-989d-322a384d5245))
(fp_line (start -1 0.6) (end -1 -0.6) (layer "F.Fab") (width 0.1) (tstamp 0e1ac3f1-2e15-4fb4-97df-8606e2604d8f))
(fp_line (start 1 -0.6) (end 1 0.6) (layer "F.Fab") (width 0.1) (tstamp 24731b35-c56f-406a-ae4e-56d853f6707d))
(fp_line (start -1 -0.6) (end 1 -0.6) (layer "F.Fab") (width 0.1) (tstamp 4ed45cb4-a123-4336-b3b9-ff5ba467604f))
(fp_line (start 1 0.6) (end -1 0.6) (layer "F.Fab") (width 0.1) (tstamp 51b1d9a0-d2ff-4e0b-a618-e22359ea8b1c))
(pad "1" smd roundrect locked (at -0.9375 0 270) (size 0.975 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "+5V") (pintype "passive") (tstamp 5eabada1-4358-4015-9736-5ccda0069014))
(pad "2" smd roundrect locked (at 0.9375 0 270) (size 0.975 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "MHI-SCK") (pintype "passive") (tstamp cff5863c-8f9b-4238-97a0-eee62a782c80))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Module:WEMOS_D1_mini_light" (layer "F.Cu")
(tedit 5BBFB1CE) (tstamp 00000000-0000-0000-0000-0000613940be)
(at 113.5 92.5)
(descr "16-pin module, column spacing 22.86 mm (900 mils), https://wiki.wemos.cc/products:d1:d1_mini, https://c1.staticflickr.com/1/734/31400410271_f278b087db_z.jpg")
(tags "ESP8266 WiFi microcontroller")
(property "Sheetfile" "MHI ESP.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005f307f81")
(attr through_hole)
(fp_text reference "U1" (at 22 27) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1589dd22-1136-4b17-96e4-b49bba0842d3)
)
(fp_text value "WeMos_D1_mini" (at 11.7 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp baab4a74-2b89-44df-abdd-0344092a886c)
)
(fp_text user "No copper" (at 11.43 -3.81) (layer "Cmts.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9f61de83-12cd-4c2f-84c8-9571040328a1)
)
(fp_text user "KEEP OUT" (at 11.43 -6.35) (layer "Cmts.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ff338c7f-cf91-49eb-b1e8-05867b4dd3da)
)
(fp_text user "${REFERENCE}" (at 11.43 10) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f9920da9-f829-4e03-af9b-1e61613ec6b0)
)
(fp_line (start 24.36 26.12) (end 24.36 -6.21) (layer "F.SilkS") (width 0.12) (tstamp 4393b652-3750-4460-8b19-f0f374473687))
(fp_line (start -1.5 19.22) (end -1.5 -6.21) (layer "F.SilkS") (width 0.12) (tstamp 53543d50-d0a8-4bd4-8665-78a498e3baa1))
(fp_line (start -1.5 19.22) (end 1.04 19.22) (layer "F.SilkS") (width 0.12) (tstamp 719f26de-5abb-4a78-95e8-054ae3e8a201))
(fp_line (start 1.04 19.22) (end 1.04 26.12) (layer "F.SilkS") (width 0.12) (tstamp a0a4d5af-323c-461f-89a5-9c8ac6297c03))
(fp_line (start 1.04 26.12) (end 24.36 26.12) (layer "F.SilkS") (width 0.12) (tstamp e5e088d0-5348-4ee7-a555-dfe7340e8b45))
(fp_line (start 22.24 -8.34) (end 0.63 -8.34) (layer "F.SilkS") (width 0.12) (tstamp ee0ebc8b-47a4-4832-af00-e6d6447cf6ad))
(fp_arc (start 22.23 -8.34) (mid 23.736137 -7.716137) (end 24.36 -6.21) (layer "F.SilkS") (width 0.12) (tstamp ebedc7f4-bbfa-4c3d-948f-ac4251204857))
(fp_arc (start -1.5 -6.21) (mid -0.876137 -7.716137) (end 0.63 -8.34) (layer "F.SilkS") (width 0.12) (tstamp fcb6780d-5a8b-4a48-ba60-6d83e2aa5c4a))
(fp_poly (pts
(xy -2.54 -0.635)
(xy -2.54 0.635)
(xy -1.905 0)
) (layer "F.SilkS") (width 0.15) (fill solid) (tstamp 968d109b-60d2-4775-8811-dc87d5bc592b))
(fp_line (start 20.65 -1.4) (end 24.25 -5) (layer "Dwgs.User") (width 0.1) (tstamp 0a6b98e7-2bb1-43c8-8fc2-0225b4ec4980))
(fp_line (start 18.65 -1.4) (end 24.25 -7) (layer "Dwgs.User") (width 0.1) (tstamp 0f680a72-2569-45d4-846e-f49a5ec8a4d7))
(fp_line (start 12.65 -1.4) (end 19.45 -8.2) (layer "Dwgs.User") (width 0.1) (tstamp 23082182-8b62-4d57-aaca-490a303deb32))
(fp_line (start 2.65 -1.4) (end 9.45 -8.2) (layer "Dwgs.User") (width 0.1) (tstamp 360b31ec-4b93-4c7b-a785-dfd020b75780))
(fp_line (start -1.3 -5.45) (end 1.45 -8.2) (layer "Dwgs.User") (width 0.1) (tstamp 36ccd9ed-11a6-4e0a-a05c-5353dbb2dffd))
(fp_line (start -1.35 -3.4) (end 3.45 -8.2) (layer "Dwgs.User") (width 0.1) (tstamp 47661da6-8f02-42db-866f-05d15d9e6470))
(fp_line (start 22.65 -1.4) (end 24.25 -3) (layer "Dwgs.User") (width 0.1) (tstamp 5ba027c4-c7db-4510-bc2d-7742fb2a2893))
(fp_line (start 6.65 -1.4) (end 13.45 -8.2) (layer "Dwgs.User") (width 0.1) (tstamp 62d8a753-9003-44ca-8835-05f7325bee1d))
(fp_line (start 14.65 -1.4) (end 21.45 -8.2) (layer "Dwgs.User") (width 0.1) (tstamp 63e189e6-09b6-40ea-a223-86804b63220d))
(fp_line (start 8.65 -1.4) (end 15.45 -8.2) (layer "Dwgs.User") (width 0.1) (tstamp 7535657b-de41-48b7-a23a-b841042d3d03))
(fp_line (start -1.35 -1.4) (end 5.45 -8.2) (layer "Dwgs.User") (width 0.1) (tstamp 8f8e3207-5239-48a8-940f-1cf5e5a9e108))
(fp_line (start 0.65 -1.4) (end 7.45 -8.2) (layer "Dwgs.User") (width 0.1) (tstamp 952a9b78-20db-4570-af96-53a3f053c0c3))
(fp_line (start 4.65 -1.4) (end 11.45 -8.2) (layer "Dwgs.User") (width 0.1) (tstamp aea929d4-f8d0-4a64-b038-08aa319ff0c8))
(fp_line (start 16.65 -1.4) (end 23.45 -8.2) (layer "Dwgs.User") (width 0.1) (tstamp b00d3fb2-e38f-4a58-beaa-e86c28c04536))
(fp_line (start 24.25 -8.2) (end -1.35 -8.2) (layer "Dwgs.User") (width 0.1) (tstamp b47a35ce-4eb4-49a3-99ad-ffc5786bd819))
(fp_line (start 10.65 -1.4) (end 17.45 -8.2) (layer "Dwgs.User") (width 0.1) (tstamp c68079e1-bc3c-4b2a-9142-3f2262a08b88))
(fp_line (start -1.35 -8.2) (end -1.35 -1.4) (layer "Dwgs.User") (width 0.1) (tstamp ca5f9a58-6f54-4c81-b1ac-dc4c4e0e003f))
(fp_line (start 24.25 -1.4) (end 24.25 -8.2) (layer "Dwgs.User") (width 0.1) (tstamp cc9df2a2-d066-4140-a873-2df9bdd80031))
(fp_line (start -1.35 -1.4) (end 24.25 -1.4) (layer "Dwgs.User") (width 0.1) (tstamp ce9a8654-bfe5-4f9d-a18b-e41f519f5972))
(fp_line (start -1.35 -7.4) (end -0.55 -8.2) (layer "Dwgs.User") (width 0.1) (tstamp e3f74e85-e4c4-49e5-80cc-4f1bfee09eed))
(fp_line (start 24.48 26.24) (end -1.62 26.24) (layer "F.CrtYd") (width 0.05) (tstamp 80ae4113-29c8-44e7-88c7-c4cca313a9f5))
(fp_line (start 24.48 -8.41) (end 24.48 26.24) (layer "F.CrtYd") (width 0.05) (tstamp 9c972ab9-d741-4d8f-85b5-79ed354dd42c))
(fp_line (start -1.62 -8.46) (end 24.48 -8.46) (layer "F.CrtYd") (width 0.05) (tstamp bdfd3626-ed13-4333-a006-9fab578dccfb))
(fp_line (start -1.62 26.24) (end -1.62 -8.46) (layer "F.CrtYd") (width 0.05) (tstamp fa5d116f-9563-49c8-aee8-3c1b001f3e14))
(fp_line (start -1.37 1) (end -1.37 19.09) (layer "F.Fab") (width 0.1) (tstamp 2a1ace67-f369-4ab2-a50e-dcd0d7b8d67d))
(fp_line (start -1.37 -6.21) (end -1.37 -1) (layer "F.Fab") (width 0.1) (tstamp 37664d8f-80d4-4904-868c-5184eb15a240))
(fp_line (start 1.17 19.09) (end 1.17 25.99) (layer "F.Fab") (width 0.1) (tstamp 8a452233-8942-4a47-a8f0-2df3583b7a54))
(fp_line (start 24.23 25.99) (end 24.23 -6.21) (layer "F.Fab") (width 0.1) (tstamp 8ea05eb1-3829-41b6-adcc-59e2c43c7180))
(fp_line (start -1.37 19.09) (end 1.17 19.09) (layer "F.Fab") (width 0.1) (tstamp b3102c7d-ad97-4ba0-824f-bbf2be0ad350))
(fp_line (start -0.37 0) (end -1.37 -1) (layer "F.Fab") (width 0.1) (tstamp b989cd84-1eb4-4190-80e5-e3654232fce8))
(fp_line (start 22.23 -8.21) (end 0.63 -8.21) (layer "F.Fab") (width 0.1) (tstamp c52c557c-9563-4980-b6f3-88db5db918d5))
(fp_line (start -1.37 1) (end -0.37 0) (layer "F.Fab") (width 0.1) (tstamp c9d88467-651d-4c2f-a696-386d649f3a12))
(fp_line (start 1.17 25.99) (end 24.23 25.99) (layer "F.Fab") (width 0.1) (tstamp dcd81e16-e860-4852-ba6a-f22dea211042))
(fp_arc (start -1.37 -6.21) (mid -0.784214 -7.624214) (end 0.63 -8.21) (layer "F.Fab") (width 0.1) (tstamp 87127156-cbaf-4f4f-9eeb-780a1682ce76))
(fp_arc (start 22.25 -8.21) (mid 23.658356 -7.610071) (end 24.23 -6.19) (layer "F.Fab") (width 0.1) (tstamp 8fb3fc64-5414-4967-9d3e-46e0a4277be1))
(pad "1" thru_hole rect locked (at 0 0) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 15 "unconnected-(U1-Pad1)") (pinfunction "~{RST}") (pintype "input+no_connect") (tstamp 018bbdb0-6b89-463b-b995-c6f380a52e39))
(pad "2" thru_hole oval locked (at 0 2.54) (size 2 1.6) (drill 1) (layers *.Cu *.Mask)
(net 16 "unconnected-(U1-Pad2)") (pinfunction "A0") (pintype "input+no_connect") (tstamp f0de0e46-e6db-4edf-9f6a-593353ed73fa))
(pad "3" thru_hole oval locked (at 0 5.08) (size 2 1.6) (drill 1) (layers *.Cu *.Mask)
(net 17 "unconnected-(U1-Pad3)") (pinfunction "D0") (pintype "bidirectional+no_connect") (tstamp b49a2c49-2a2b-4a3a-8e16-8f90671a7184))
(pad "4" thru_hole oval locked (at 0 7.62) (size 2 1.6) (drill 1) (layers *.Cu *.Mask)
(net 7 "ESP-SCK") (pinfunction "SCK/D5") (pintype "bidirectional") (tstamp ab535f3a-eaf4-4841-b9af-d90e9f1045cd))
(pad "5" thru_hole oval locked (at 0 10.16) (size 2 1.6) (drill 1) (layers *.Cu *.Mask)
(net 9 "ESP-MISO") (pinfunction "MISO/D6") (pintype "bidirectional") (tstamp d0681706-9ec7-4d55-8393-169aca7e21c2))
(pad "6" thru_hole oval locked (at 0 12.7) (size 2 1.6) (drill 1) (layers *.Cu *.Mask)
(net 10 "ESP-MOSI") (pinfunction "MOSI/D7") (pintype "bidirectional") (tstamp 63a9021b-8eb3-43f0-bb98-007d02e6a2cf))
(pad "7" thru_hole oval locked (at 0 15.24) (size 2 1.6) (drill 1) (layers *.Cu *.Mask)
(net 18 "unconnected-(U1-Pad7)") (pinfunction "CS/D8") (pintype "bidirectional+no_connect") (tstamp de7f1e92-2892-41db-b8ca-0f99c2db4116))
(pad "8" thru_hole oval locked (at 0 17.78) (size 2 1.6) (drill 1) (layers *.Cu *.Mask)
(net 8 "+3V3") (pinfunction "3V3") (pintype "power_out") (tstamp a870d402-eba3-45c4-befc-91f9c528c015))
(pad "9" thru_hole oval locked (at 22.86 17.78) (size 2 1.6) (drill 1) (layers *.Cu *.Mask)
(net 2 "+5V") (pinfunction "5V") (pintype "power_in") (tstamp 2646a867-9cd3-44fd-ae45-df4a38debf51))
(pad "10" thru_hole oval locked (at 22.86 15.24) (size 2 1.6) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 70fe6191-358a-478f-a29e-436ad13c037f))
(pad "11" thru_hole oval locked (at 22.86 12.7) (size 2 1.6) (drill 1) (layers *.Cu *.Mask)
(net 19 "unconnected-(U1-Pad11)") (pinfunction "D4") (pintype "bidirectional+no_connect") (tstamp 41929cbd-217c-4777-b406-da863bad1c9a))
(pad "12" thru_hole oval locked (at 22.86 10.16) (size 2 1.6) (drill 1) (layers *.Cu *.Mask)
(net 20 "unconnected-(U1-Pad12)") (pinfunction "D3") (pintype "bidirectional+no_connect") (tstamp d384b5fd-47c1-48d3-80ac-2816d6fcc8c5))
(pad "13" thru_hole oval locked (at 22.86 7.62) (size 2 1.6) (drill 1) (layers *.Cu *.Mask)
(net 14 "ESP-IRDOUT") (pinfunction "SDA/D2") (pintype "bidirectional") (tstamp b717ce3a-c5a0-4dbc-a1cb-7088da60b7e7))
(pad "14" thru_hole oval locked (at 22.86 5.08) (size 2 1.6) (drill 1) (layers *.Cu *.Mask)
(net 13 "ESP-IRDIN") (pinfunction "SCL/D1") (pintype "bidirectional") (tstamp d943594c-ad7c-434c-b2bc-0904732891b5))
(pad "15" thru_hole oval locked (at 22.86 2.54) (size 2 1.6) (drill 1) (layers *.Cu *.Mask)
(net 21 "unconnected-(U1-Pad15)") (pinfunction "RX") (pintype "input+no_connect") (tstamp e20402bc-4fb9-4905-a223-5b31e4b8865b))
(pad "16" thru_hole oval locked (at 22.86 0) (size 2 1.6) (drill 1) (layers *.Cu *.Mask)
(net 22 "unconnected-(U1-Pad16)") (pinfunction "TX") (pintype "output+no_connect") (tstamp f9410c33-1e28-4c40-9d6e-1f2e537bf56f))
(model "${KISYS3DMOD}/Module.3dshapes/WEMOS_D1_mini_light.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model "${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x08_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 9.5))
(scale (xyz 1 1 1))
(rotate (xyz 0 -180 0))
)
(model "${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x08_P2.54mm_Vertical.wrl"
(offset (xyz 22.86 0 9.5))
(scale (xyz 1 1 1))
(rotate (xyz 0 -180 0))
)
(model "${KISYS3DMOD}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_1x08_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model "${KISYS3DMOD}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_1x08_P2.54mm_Vertical.wrl"
(offset (xyz 22.86 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-223-3_TabPin2" (layer "F.Cu")
(tedit 5A02FF57) (tstamp 00000000-0000-0000-0000-00006139445b)
(at 120 87.5 180)
(descr "module CMS SOT223 4 pins")
(tags "CMS SOT")
(property "Sheetfile" "MHI ESP.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000061416d7c")
(attr smd)
(fp_text reference "U2" (at 3.25 -3) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5a2d4271-5819-4e5b-800e-0edf87ab0e36)
)
(fp_text value "LD1117S50TR" (at 0 4.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b737b331-e692-464a-87f3-679ba9ea01e8)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp df49388f-812b-4303-887b-bc249e18fe3b)
)
(fp_line (start -4.1 -3.41) (end 1.91 -3.41) (layer "F.SilkS") (width 0.12) (tstamp 2f2e0d03-b4ed-4c7c-a1ca-22bbfbce2595))
(fp_line (start 1.91 -3.41) (end 1.91 -2.15) (layer "F.SilkS") (width 0.12) (tstamp 377dd52d-f108-4b84-bca5-6dca9ff044c0))
(fp_line (start -1.85 3.41) (end 1.91 3.41) (layer "F.SilkS") (width 0.12) (tstamp 80c7915c-caec-40a9-8155-67aac6271240))
(fp_line (start 1.91 3.41) (end 1.91 2.15) (layer "F.SilkS") (width 0.12) (tstamp e1d67e87-2777-42a0-97d6-0e16fd9eeb23))
(fp_line (start 4.4 -3.6) (end -4.4 -3.6) (layer "F.CrtYd") (width 0.05) (tstamp 21560ebb-cb3e-4ffd-ac24-499fc92f348a))
(fp_line (start 4.4 3.6) (end 4.4 -3.6) (layer "F.CrtYd") (width 0.05) (tstamp 3f1e621c-488f-4cab-9e9b-28a213b4fb0b))
(fp_line (start -4.4 -3.6) (end -4.4 3.6) (layer "F.CrtYd") (width 0.05) (tstamp 6bcfe0e0-8ac0-46e6-9f16-eb768e74a1c9))
(fp_line (start -4.4 3.6) (end 4.4 3.6) (layer "F.CrtYd") (width 0.05) (tstamp 7e2964af-4014-4674-befa-ef754d315157))
(fp_line (start 1.85 -3.35) (end 1.85 3.35) (layer "F.Fab") (width 0.1) (tstamp 26b007a3-1127-4243-abc0-8cb26a918755))
(fp_line (start -1.85 -2.35) (end -1.85 3.35) (layer "F.Fab") (width 0.1) (tstamp 4a497bdd-d08d-4a1e-a8c4-7053e7f01eed))
(fp_line (start -1.85 3.35) (end 1.85 3.35) (layer "F.Fab") (width 0.1) (tstamp 74660b83-0563-4f0c-818f-ab2460390dff))
(fp_line (start -1.85 -2.35) (end -0.85 -3.35) (layer "F.Fab") (width 0.1) (tstamp 7b7cd8bb-9d0b-4fda-8c56-68b599c26f92))
(fp_line (start -0.85 -3.35) (end 1.85 -3.35) (layer "F.Fab") (width 0.1) (tstamp 9ccce4d3-b35d-4c33-88ac-fe64deb9cca5))
(pad "1" smd rect locked (at -3.15 -2.3 180) (size 2 1.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 9acf81dd-6aa9-437f-8ccf-b3078a73b6e7))
(pad "2" smd rect locked (at 3.15 0 180) (size 2 3.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "+5V") (pinfunction "VO") (pintype "power_out") (tstamp 31357077-e341-4b96-8244-da7af80ead69))
(pad "2" smd rect locked (at -3.15 0 180) (size 2 1.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "+5V") (pinfunction "VO") (pintype "power_out") (tstamp e6460fd6-bcd9-418b-95f8-211459b9d6ed))
(pad "3" smd rect locked (at -3.15 2.3 180) (size 2 1.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "+12V") (pinfunction "VI") (pintype "power_in") (tstamp e547d356-95f3-4fec-b791-16b63485a8ee))
(model "${KISYS3DMOD}/Package_TO_SOT_SMD.3dshapes/SOT-223.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric" (layer "F.Cu")
(tedit 5B36C52B) (tstamp 00000000-0000-0000-0000-0000613944f1)
(at 126.5 88.5 -90)
(descr "Capacitor 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 "capacitor")
(property "Sheetfile" "MHI ESP.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005f30dca2")
(attr smd)
(fp_text reference "C1" (at 0 -1.65 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a7ecabe8-ef66-4e9a-a91c-8a18a2941607)
)
(fp_text value "10uF, 0805" (at 0 1.65 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 86778be8-a5fc-4b0d-9413-707a4b299be4)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp bb91c11b-cc42-44c5-b8c7-1b40648271c4)
)
(fp_line (start -0.258578 -0.71) (end 0.258578 -0.71) (layer "F.SilkS") (width 0.12) (tstamp 27aaee20-2166-4a67-b487-3aeddd734e50))
(fp_line (start -0.258578 0.71) (end 0.258578 0.71) (layer "F.SilkS") (width 0.12) (tstamp e829099c-42de-4643-99e9-208a652c4ad7))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 4f6e4376-d098-4ef8-b935-209f478a1171))
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 64235a09-73f2-4ce1-a4fc-4b4319f2a8a1))
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 82f93389-bf36-4f38-a5f3-2bc2560cf7b5))
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp c9604b9f-a2a6-4090-ba67-2ac89adaf25f))
(fp_line (start -1 -0.6) (end 1 -0.6) (layer "F.Fab") (width 0.1) (tstamp 0129d19b-2b44-4cd7-a042-8b2cfd9a376a))
(fp_line (start 1 0.6) (end -1 0.6) (layer "F.Fab") (width 0.1) (tstamp a0d63444-8965-45f9-ae4f-8e25eb01d53b))
(fp_line (start 1 -0.6) (end 1 0.6) (layer "F.Fab") (width 0.1) (tstamp a8687047-a9bd-4601-9991-dc86745cee8c))
(fp_line (start -1 0.6) (end -1 -0.6) (layer "F.Fab") (width 0.1) (tstamp fcaf8e3d-a2bf-4262-b468-2b71cf89cedc))
(pad "1" smd roundrect locked (at -0.9375 0 270) (size 0.975 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "+5V") (pintype "passive") (tstamp 28d87f8c-933f-4d3a-9451-eabfc89c5d6f))
(pad "2" smd roundrect locked (at 0.9375 0 270) (size 0.975 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 89cc1e6f-1ff2-468e-bbfe-640d3568d456))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-23" (layer "F.Cu")
(tedit 5A02FF57) (tstamp 00000000-0000-0000-0000-000061394826)
(at 123 93.25)
(descr "SOT-23, Standard")
(tags "SOT-23")
(property "Sheetfile" "MHI ESP.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00006139b340")
(attr smd)
(fp_text reference "Q1" (at 1.75 2) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 393c28d3-9270-4cec-b019-abdbf8ea1bf8)
)
(fp_text value "BSS138" (at 0 2.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 54bf0b02-75ba-456c-9915-42355fd29644)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp 5e258776-926f-4bd7-b72c-54dd5ad511ab)
)
(fp_line (start 0.76 -1.58) (end 0.76 -0.65) (layer "F.SilkS") (width 0.12) (tstamp 9938d296-00d8-44e2-925b-7fd1bf9ee829))
(fp_line (start 0.76 1.58) (end 0.76 0.65) (layer "F.SilkS") (width 0.12) (tstamp 99446bd7-f764-4e26-a72b-3e84fcfca9d1))
(fp_line (start 0.76 -1.58) (end -1.4 -1.58) (layer "F.SilkS") (width 0.12) (tstamp b643e4af-b67d-4c4d-84fd-c97927e73d4c))
(fp_line (start 0.76 1.58) (end -0.7 1.58) (layer "F.SilkS") (width 0.12) (tstamp e724cb0f-da93-4aa0-957d-832f2a6c8393))
(fp_line (start 1.7 -1.75) (end 1.7 1.75) (layer "F.CrtYd") (width 0.05) (tstamp 1c1144ad-34ee-43d2-83bd-cc44d4c5c5a8))
(fp_line (start -1.7 -1.75) (end 1.7 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 866d48af-f464-4163-9190-06cfe099f362))
(fp_line (start -1.7 1.75) (end -1.7 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp ab5b9ca7-ffe2-4f21-b0be-7e74405a33ce))
(fp_line (start 1.7 1.75) (end -1.7 1.75) (layer "F.CrtYd") (width 0.05) (tstamp f998992c-383d-4399-af93-2e28d9db3c83))
(fp_line (start -0.7 -0.95) (end -0.15 -1.52) (layer "F.Fab") (width 0.1) (tstamp 252a17e1-3fe5-49c5-aae5-b4308095b74b))
(fp_line (start -0.7 -0.95) (end -0.7 1.5) (layer "F.Fab") (width 0.1) (tstamp 596721e4-fb1c-4eae-b98c-dcbe9eafab92))
(fp_line (start -0.7 1.52) (end 0.7 1.52) (layer "F.Fab") (width 0.1) (tstamp 80de2386-9c3a-4f2d-b2cf-badaed114200))
(fp_line (start 0.7 -1.52) (end 0.7 1.52) (layer "F.Fab") (width 0.1) (tstamp 8c259ddc-1e51-4f4a-85b7-f63f20561c97))
(fp_line (start -0.15 -1.52) (end 0.7 -1.52) (layer "F.Fab") (width 0.1) (tstamp fac405cb-c4a9-4cb1-a60a-7432ab7f1d2a))
(pad "1" smd rect locked (at -1 -0.95) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "+3V3") (pinfunction "G") (pintype "input") (tstamp e82b911b-2686-4f3e-bbd2-5a1b5e077743))
(pad "2" smd rect locked (at -1 0.95) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "ESP-SCK") (pinfunction "S") (pintype "passive") (tstamp fe743378-c4b9-42da-96a7-3b60d0438877))
(pad "3" smd rect locked (at 1 0) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "MHI-SCK") (pinfunction "D") (pintype "passive") (tstamp 91deb635-35b1-4315-9ac8-573bf7491e0a))
(model "${KISYS3DMOD}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric" (layer "F.Cu")
(tedit 5B36C52B) (tstamp 00000000-0000-0000-0000-000061394a65)
(at 126.5 98.25 -90)
(descr "Resistor 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 "resistor")
(property "Sheetfile" "MHI ESP.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000613ac887")
(attr smd)
(fp_text reference "R5" (at 0 -1.65 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e4cd27c3-5e8d-412f-9779-5778be6c90d2)
)
(fp_text value "10k" (at 0 1.65 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 17316902-d660-40e1-86b8-6af8860d865f)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 0f92f9e3-7680-4723-8983-27205d8788a6)
)
(fp_line (start -0.258578 -0.71) (end 0.258578 -0.71) (layer "F.SilkS") (width 0.12) (tstamp 6b3c17a3-8601-44bc-b0a2-daabb4637aac))
(fp_line (start -0.258578 0.71) (end 0.258578 0.71) (layer "F.SilkS") (width 0.12) (tstamp a167bbf5-23d1-4d4b-8db8-9a9eefe5cc35))
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 870ac432-3dc3-40de-9baa-b8cf420905d8))
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 8c70e63d-8f9d-4af1-ae55-cfce1f26785c))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 91593b10-e5bd-42f9-9356-458f7143802b))
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp f0aa5f86-d8fb-4e92-80a1-9c6110ea612e))
(fp_line (start 1 -0.6) (end 1 0.6) (layer "F.Fab") (width 0.1) (tstamp 09445c9e-32c3-41f2-9944-0d33f93583f7))
(fp_line (start 1 0.6) (end -1 0.6) (layer "F.Fab") (width 0.1) (tstamp 7c97ef24-fd67-4786-8086-0b8ec617d3da))
(fp_line (start -1 -0.6) (end 1 -0.6) (layer "F.Fab") (width 0.1) (tstamp acd6ee8e-2194-40bb-83a4-0921b40df69e))
(fp_line (start -1 0.6) (end -1 -0.6) (layer "F.Fab") (width 0.1) (tstamp d81c26dc-c8df-4db6-bfa0-55870f796dd4))
(pad "1" smd roundrect locked (at -0.9375 0 270) (size 0.975 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "+5V") (pintype "passive") (tstamp 7568404b-0154-4258-8d19-bb411fbbd481))
(pad "2" smd roundrect locked (at 0.9375 0 270) (size 0.975 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "MHI-MISO") (pintype "passive") (tstamp ccf5c941-c21c-4c70-8561-36e23b76ffce))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric" (layer "F.Cu")
(tedit 5B36C52B) (tstamp 00000000-0000-0000-0000-000061394b1d)
(at 119.5 98.25 -90)
(descr "Resistor 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 "resistor")
(property "Sheetfile" "MHI ESP.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000613ac87a")
(attr smd)
(fp_text reference "R2" (at 0 1.5 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 42d8a626-96cd-476a-a98a-f408e0c8b839)
)
(fp_text value "10k" (at 0 1.65 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d6a884c3-2e8b-49d9-888b-da5aef549017)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 2e185872-ad73-4cc3-aad9-ba2357edb1aa)
)
(fp_line (start -0.258578 0.71) (end 0.258578 0.71) (layer "F.SilkS") (width 0.12) (tstamp f0adb0d5-0d21-4a83-bd2e-c0278e958f80))
(fp_line (start -0.258578 -0.71) (end 0.258578 -0.71) (layer "F.SilkS") (width 0.12) (tstamp f8af78e3-9bf7-4d51-a1c3-5ffd9ecbb99b))
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 30a7ca7f-811e-452d-9b85-7a45c937bb9c))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 4f99730e-1914-4eb0-983c-435be0e5c9ca))
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 8bf7773f-8688-49b9-945f-e88f46ed4981))
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 981e18be-aa7b-4a72-b942-d5f26d129b13))
(fp_line (start 1 -0.6) (end 1 0.6) (layer "F.Fab") (width 0.1) (tstamp 06792d1a-ba1a-410f-af03-e8d71573b43e))
(fp_line (start -1 -0.6) (end 1 -0.6) (layer "F.Fab") (width 0.1) (tstamp 29498df4-43d3-4d54-8789-eb9d7ea981ff))
(fp_line (start 1 0.6) (end -1 0.6) (layer "F.Fab") (width 0.1) (tstamp c5893a21-a11e-44c7-92f5-3d3ed4f68b55))
(fp_line (start -1 0.6) (end -1 -0.6) (layer "F.Fab") (width 0.1) (tstamp d376de53-6fb3-4e46-8530-70e91188cd53))
(pad "1" smd roundrect locked (at -0.9375 0 270) (size 0.975 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "+3V3") (pintype "passive") (tstamp db4d987a-001d-4879-8b13-3da23a587574))
(pad "2" smd roundrect locked (at 0.9375 0 270) (size 0.975 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "ESP-MISO") (pintype "passive") (tstamp 5b9835ae-b507-410c-9159-42f579ed6d53))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric" (layer "F.Cu")
(tedit 5B36C52B) (tstamp 00000000-0000-0000-0000-000061394bd1)
(at 126.5 103.25 -90)
(descr "Resistor 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 "resistor")
(property "Sheetfile" "MHI ESP.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000613b20d9")
(attr smd)
(fp_text reference "R6" (at 0 -1.65 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp db56db40-9cbb-4f55-a404-e625146475bc)
)
(fp_text value "10k" (at 0 1.65 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cd281ea0-db13-403a-9be9-6d444b4c52e1)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 0755726e-9580-4e5e-9318-e7c78269fd80)
)
(fp_line (start -0.258578 0.71) (end 0.258578 0.71) (layer "F.SilkS") (width 0.12) (tstamp baac3352-a6a7-48a5-828d-f699c9a1338b))
(fp_line (start -0.258578 -0.71) (end 0.258578 -0.71) (layer "F.SilkS") (width 0.12) (tstamp c1fcbcaf-1a3f-4126-a32e-a0dfd75d3768))
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 481bd5ff-e3eb-49bf-bb9d-7410ebc80924))
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 5cdc8165-f5ba-4bd4-85a3-ecbd45112f2c))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 8907f3cf-fabf-4cbf-85fb-497e1f935a0f))
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp bea7f6b0-c39c-473f-b1a6-221796175826))
(fp_line (start 1 -0.6) (end 1 0.6) (layer "F.Fab") (width 0.1) (tstamp 45fabe8c-ba0c-457c-9298-0aa40ca340f2))
(fp_line (start -1 -0.6) (end 1 -0.6) (layer "F.Fab") (width 0.1) (tstamp 4d70a5e3-4623-4ace-97c5-a09567eabf99))
(fp_line (start -1 0.6) (end -1 -0.6) (layer "F.Fab") (width 0.1) (tstamp 5be56a8d-1479-4453-89ed-e1f5e3c7cbfe))
(fp_line (start 1 0.6) (end -1 0.6) (layer "F.Fab") (width 0.1) (tstamp ee0dd3a0-8c94-4401-a65f-6ad30477ae8d))
(pad "1" smd roundrect locked (at -0.9375 0 270) (size 0.975 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "+5V") (pintype "passive") (tstamp 130f9eff-44c0-4b4e-b237-f21c0a85e49d))
(pad "2" smd roundrect locked (at 0.9375 0 270) (size 0.975 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "MHI-MOSI") (pintype "passive") (tstamp 9e62ff69-67fe-485d-af78-ff5f08b1d7d4))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-23" (layer "F.Cu")
(tedit 5A02FF57) (tstamp 00000000-0000-0000-0000-000061411e23)
(at 123 108.25)
(descr "SOT-23, Standard")
(tags "SOT-23")
(property "Sheetfile" "MHI ESP.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00006144f15e")
(attr smd)
(fp_text reference "Q4" (at 1.75 2) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 66bd8049-ad54-41b9-8680-d4dc502336ce)
)
(fp_text value "BSS138" (at 0 2.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7b838a07-5c5b-46ed-9f16-47711e785a48)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp 474afb72-1f32-41a3-bd30-9c23ba749549)
)
(fp_line (start 0.76 -1.58) (end -1.4 -1.58) (layer "F.SilkS") (width 0.12) (tstamp 0246b40c-f31d-4ff6-b6cf-3f1b3d9a047e))
(fp_line (start 0.76 -1.58) (end 0.76 -0.65) (layer "F.SilkS") (width 0.12) (tstamp af244afa-96c6-4d1e-a34a-e7abb1635e55))
(fp_line (start 0.76 1.58) (end 0.76 0.65) (layer "F.SilkS") (width 0.12) (tstamp e5285666-b313-4d28-919b-6d7b625f6739))
(fp_line (start 0.76 1.58) (end -0.7 1.58) (layer "F.SilkS") (width 0.12) (tstamp f02f8592-0582-472c-819f-75732d3bb19c))
(fp_line (start 1.7 1.75) (end -1.7 1.75) (layer "F.CrtYd") (width 0.05) (tstamp 6e837a60-0bb8-4508-8524-ea9bd957d8c3))
(fp_line (start -1.7 1.75) (end -1.7 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 905c53f5-a474-4c77-86b9-9daad682ec33))
(fp_line (start 1.7 -1.75) (end 1.7 1.75) (layer "F.CrtYd") (width 0.05) (tstamp ad49f371-af0c-41e2-bb87-3c3dd2b3a50d))
(fp_line (start -1.7 -1.75) (end 1.7 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp b666ba82-fa50-449c-b161-a9687a8ee5b1))
(fp_line (start 0.7 -1.52) (end 0.7 1.52) (layer "F.Fab") (width 0.1) (tstamp 2c62382b-28aa-43d2-abb6-e81e3fbcdbf2))
(fp_line (start -0.7 1.52) (end 0.7 1.52) (layer "F.Fab") (width 0.1) (tstamp 3c839601-cb32-4398-942a-5c73d9f999bc))
(fp_line (start -0.7 -0.95) (end -0.15 -1.52) (layer "F.Fab") (width 0.1) (tstamp 4820844d-7fc0-42d7-b604-73a0cfd589d5))
(fp_line (start -0.7 -0.95) (end -0.7 1.5) (layer "F.Fab") (width 0.1) (tstamp cd68aa2c-19de-4813-991d-e4957339d8d1))
(fp_line (start -0.15 -1.52) (end 0.7 -1.52) (layer "F.Fab") (width 0.1) (tstamp db50d131-71f8-4191-b4c1-b2d67091113f))
(pad "1" smd rect locked (at -1 -0.95) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "+3V3") (pinfunction "G") (pintype "input") (tstamp 3c2e073d-05aa-4a9a-a929-be01e9ea90b1))
(pad "2" smd rect locked (at -1 0.95) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 13 "ESP-IRDIN") (pinfunction "S") (pintype "passive") (tstamp 7d45404b-ac0e-4d5b-9a0e-0bd0da85f077))
(pad "3" smd rect locked (at 1 0) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 11 "IRDIN") (pinfunction "D") (pintype "passive") (tstamp 1d9052e8-347f-442b-a2ce-844f3c9c1c71))
(model "${KISYS3DMOD}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-23" (layer "F.Cu")
(tedit 5A02FF57) (tstamp 00000000-0000-0000-0000-000061411e38)
(at 123 113.25)
(descr "SOT-23, Standard")
(tags "SOT-23")
(property "Sheetfile" "MHI ESP.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000614582d8")
(attr smd)
(fp_text reference "Q5" (at 1.75 2) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2021d920-26ab-49d1-9f82-4cc19e8e0629)
)
(fp_text value "BSS138" (at 0 2.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0034b116-daa2-41d8-8265-1f10df26a3dd)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp cc63df81-ef79-4bf6-9d7c-8a3ac5c5e975)
)
(fp_line (start 0.76 1.58) (end 0.76 0.65) (layer "F.SilkS") (width 0.12) (tstamp 12f51d8c-f25a-410e-a913-8c3cfb769c4a))
(fp_line (start 0.76 -1.58) (end 0.76 -0.65) (layer "F.SilkS") (width 0.12) (tstamp 876f9127-a72b-4a13-a2fd-019d19aefefa))
(fp_line (start 0.76 1.58) (end -0.7 1.58) (layer "F.SilkS") (width 0.12) (tstamp ad6432f6-3353-4de5-a6a2-c3c4cddcf5c4))
(fp_line (start 0.76 -1.58) (end -1.4 -1.58) (layer "F.SilkS") (width 0.12) (tstamp c482d782-eaf1-4896-9ddf-4deeb580236e))
(fp_line (start 1.7 -1.75) (end 1.7 1.75) (layer "F.CrtYd") (width 0.05) (tstamp 524367e7-9491-4c17-9681-db2b8cdf42a8))
(fp_line (start -1.7 1.75) (end -1.7 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 8c4408de-1eb7-437e-ac2b-e144480d5bcd))
(fp_line (start -1.7 -1.75) (end 1.7 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp ae2aef41-51ac-49bf-9c20-355a5970430a))
(fp_line (start 1.7 1.75) (end -1.7 1.75) (layer "F.CrtYd") (width 0.05) (tstamp e4a48ce6-d4f1-4ef1-a64f-40b8965e7a51))
(fp_line (start -0.7 1.52) (end 0.7 1.52) (layer "F.Fab") (width 0.1) (tstamp 34f8e1fc-ae8e-4632-ac42-ed0d283daf3f))
(fp_line (start -0.7 -0.95) (end -0.15 -1.52) (layer "F.Fab") (width 0.1) (tstamp 3f3d50f6-5586-4da5-87c6-1adf23c96246))
(fp_line (start -0.15 -1.52) (end 0.7 -1.52) (layer "F.Fab") (width 0.1) (tstamp 8b20f4fb-b026-4ac7-aa76-3d2442f585ed))
(fp_line (start -0.7 -0.95) (end -0.7 1.5) (layer "F.Fab") (width 0.1) (tstamp d2edc961-236b-4f82-bd89-16997bdad591))
(fp_line (start 0.7 -1.52) (end 0.7 1.52) (layer "F.Fab") (width 0.1) (tstamp f53b8004-f28c-4714-9570-d25dc8c161c8))
(pad "1" smd rect locked (at -1 -0.95) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "+3V3") (pinfunction "G") (pintype "input") (tstamp 50eb8258-3865-4e92-882b-176842839a5d))
(pad "2" smd rect locked (at -1 0.95) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 14 "ESP-IRDOUT") (pinfunction "S") (pintype "passive") (tstamp 7303079b-d55f-42c8-a016-f6398d8a9c99))
(pad "3" smd rect locked (at 1 0) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 12 "IRDOUT") (pinfunction "D") (pintype "passive") (tstamp fa70e665-aa11-4ca6-b25f-462a5a463901))
(model "${KISYS3DMOD}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric" (layer "F.Cu")
(tedit 5B36C52B) (tstamp 00000000-0000-0000-0000-000061411f09)
(at 119.5 108.25 -90)
(descr "Resistor 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 "resistor")
(property "Sheetfile" "MHI ESP.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00006144f158")
(attr smd)
(fp_text reference "R7" (at 0 1.5 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 00996f91-2a45-47ae-932f-a3616341d406)
)
(fp_text value "10k" (at 0 1.65 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2b6d0ded-835d-4e01-af37-7cebb1725bf7)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp d2fc9a88-e5fd-4381-99dd-2d67a4530170)
)
(fp_line (start -0.258578 0.71) (end 0.258578 0.71) (layer "F.SilkS") (width 0.12) (tstamp 1b82fbf9-bd45-47dc-858b-6e1a6609cfd4))
(fp_line (start -0.258578 -0.71) (end 0.258578 -0.71) (layer "F.SilkS") (width 0.12) (tstamp aa7594f0-7d36-48f1-b774-222e0d03632e))
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 03a48a26-e04d-4cfe-aff5-3fddb6b07ea2))
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 404c6d61-480b-4b2d-9f2c-ee04eef6dfdd))
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 620d1e2b-2573-46dd-bedb-54fe35213767))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp f00225d1-e9f3-4efe-ba3c-3129df067a0e))
(fp_line (start -1 -0.6) (end 1 -0.6) (layer "F.Fab") (width 0.1) (tstamp 2783fae2-09f3-4c9e-aeb5-4fa7762f9aea))
(fp_line (start -1 0.6) (end -1 -0.6) (layer "F.Fab") (width 0.1) (tstamp 697b59d1-09f4-445f-8802-f6d99fbf4f3a))
(fp_line (start 1 -0.6) (end 1 0.6) (layer "F.Fab") (width 0.1) (tstamp 6d037cc1-0069-4d57-91d1-5157e97799ef))
(fp_line (start 1 0.6) (end -1 0.6) (layer "F.Fab") (width 0.1) (tstamp 778fb18b-40f9-46e8-8875-5991321c092b))
(pad "1" smd roundrect locked (at -0.9375 0 270) (size 0.975 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "+3V3") (pintype "passive") (tstamp 187daed7-b3ab-4557-b2e4-cb08164fa973))
(pad "2" smd roundrect locked (at 0.9375 0 270) (size 0.975 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 13 "ESP-IRDIN") (pintype "passive") (tstamp 7365a85c-b840-4686-ae7f-8f25bd6705f1))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric" (layer "F.Cu")
(tedit 5B36C52B) (tstamp 00000000-0000-0000-0000-000061411f1a)
(at 119.5 113.25 -90)
(descr "Resistor 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 "resistor")
(property "Sheetfile" "MHI ESP.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000614582d2")
(attr smd)
(fp_text reference "R8" (at 0 1.5 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b04ec380-33db-4620-a08c-63a8e43f314a)
)
(fp_text value "10k" (at 0 1.65 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp de6f1b63-8171-4b2e-a015-ef8dc77eae74)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 9d0446c7-54a4-4c07-87f9-28d0259ffb55)
)
(fp_line (start -0.258578 0.71) (end 0.258578 0.71) (layer "F.SilkS") (width 0.12) (tstamp 8dce5762-bae1-4302-996d-a7927ca95ed6))
(fp_line (start -0.258578 -0.71) (end 0.258578 -0.71) (layer "F.SilkS") (width 0.12) (tstamp f3c74448-bef9-4c3c-838b-13293b27bfde))
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 6e591591-36a7-4f8e-a89e-9823b195fc5c))
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 800604f5-4865-410a-a406-f87900fd12f3))
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 8a5ba2b0-b069-4b7c-b8c6-84c592b8c500))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 9097579a-f46a-4add-bc2c-c41736a83c1c))
(fp_line (start 1 0.6) (end -1 0.6) (layer "F.Fab") (width 0.1) (tstamp 355eee3c-a7b6-497f-a843-f45e15776f48))
(fp_line (start -1 -0.6) (end 1 -0.6) (layer "F.Fab") (width 0.1) (tstamp 66a3cd3e-5532-4c42-8fc4-70243f755b8e))
(fp_line (start 1 -0.6) (end 1 0.6) (layer "F.Fab") (width 0.1) (tstamp 6c00ecd1-7fb4-4de6-a8de-5d8ae76e0b35))
(fp_line (start -1 0.6) (end -1 -0.6) (layer "F.Fab") (width 0.1) (tstamp 71c30112-6f7f-4c3e-9370-078ba1d16faf))
(pad "1" smd roundrect locked (at -0.9375 0 270) (size 0.975 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "+3V3") (pintype "passive") (tstamp 4ab1bba1-7097-4efc-a594-94880740c2a0))
(pad "2" smd roundrect locked (at 0.9375 0 270) (size 0.975 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 14 "ESP-IRDOUT") (pintype "passive") (tstamp d35ae543-c0f1-42ee-9c75-36906265d9f3))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric" (layer "F.Cu")
(tedit 5B36C52B) (tstamp 00000000-0000-0000-0000-000061411f2b)
(at 126.5 108.25 -90)
(descr "Resistor 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 "resistor")
(property "Sheetfile" "MHI ESP.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00006144f164")
(attr smd)
(fp_text reference "R9" (at 0 -1.65 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0124167b-22b3-4a6f-9ea6-35c4a4d85e77)
)
(fp_text value "10k" (at 0 1.65 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ca7a56f5-3701-49d5-bd82-84213ad5140a)
)
(fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 1f59e5a8-049d-42e9-b7d5-5ca85fbc18b5)
)
(fp_line (start -0.258578 0.71) (end 0.258578 0.71) (layer "F.SilkS") (width 0.12) (tstamp 72f93d0a-b6f8-4a4f-91ff-2c142d68f947))
(fp_line (start -0.258578 -0.71) (end 0.258578 -0.71) (layer "F.SilkS") (width 0.12) (tstamp c3554928-e9b0-45d0-9db0-73a5093225cc))
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 4173dc3b-e771-4aab-98f9-77fcaf712a79))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 6dd5ac84-a1f9-4419-8d6d-c8afd7df36d9))
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 807b8925-9c21-4df3-8d05-ee5b86ac8786))
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 85f1a8f3-a2ac-4693-8c95-3d7dfa4a47bc))
(fp_line (start -1 0.6) (end -1 -0.6) (layer "F.Fab") (width 0.1) (tstamp 497aa0b2-569d-48bf-ab37-920fa8c916e7))
(fp_line (start -1 -0.6) (end 1 -0.6) (layer "F.Fab") (width 0.1) (tstamp 5ce8a3dd-a4ed-4896-812a-7708de7f49d1))
(fp_line (start 1 -0.6) (end 1 0.6) (layer "F.Fab") (width 0.1) (tstamp b5b0f7d9-0081-4d11-bca3-bd2de2bcbebd))
(fp_line (start 1 0.6) (end -1 0.6) (layer "F.Fab") (width 0.1) (tstamp caca4ca1-4e6b-4536-a803-7d7c39b8b0d6))
(pad "1" smd roundrect locked (at -0.9375 0 270) (size 0.975 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "+5V") (pintype "passive") (tstamp 40354bd7-5dfa-4435-8ff9-167607e754d2))
(pad "2" smd roundrect locked (at 0.9375 0 270) (size 0.975 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "IRDIN") (pintype "passive") (tstamp bf823be8-2bc9-4f13-9b52-581c30f3bef4))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric" (layer "F.Cu")
(tedit 5B36C52B) (tstamp 00000000-0000-0000-0000-000061412e0f)
(at 126.5 113.25 -90)
(descr "Resistor 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 "resistor")
(property "Sheetfile" "MHI ESP.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000614582de")
(attr smd)
(fp_text reference "R10" (at 0 -1.65 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4a55f058-b791-4240-976e-947f173ddc90)
)
(fp_text value "10k" (at 0 1.65 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0071912d-38e1-4cec-8acd-e37a38ebc756)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp d348c5cf-0081-4d2e-ac4b-689a905a9913)
)
(fp_line (start -0.258578 -0.71) (end 0.258578 -0.71) (layer "F.SilkS") (width 0.12) (tstamp f2112e71-acb8-4c66-8d38-09e1fc79382d))
(fp_line (start -0.258578 0.71) (end 0.258578 0.71) (layer "F.SilkS") (width 0.12) (tstamp faea0d2a-8921-41e0-8f40-9efed6118a6c))
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 287cec91-53e3-49bb-8e4a-231de762edd8))
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 41cb4c2f-3fec-492f-a301-ac591e771102))
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp e9730a61-23e0-44bd-816f-935e0d222603))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp fc37af1b-7f3f-448e-806b-0941b26d6fef))
(fp_line (start -1 0.6) (end -1 -0.6) (layer "F.Fab") (width 0.1) (tstamp 23bfe061-5bf7-4337-8bec-0b3d4538dc13))
(fp_line (start 1 -0.6) (end 1 0.6) (layer "F.Fab") (width 0.1) (tstamp 8495dd99-47c5-4f9f-b374-790a1fd2a09a))
(fp_line (start 1 0.6) (end -1 0.6) (layer "F.Fab") (width 0.1) (tstamp b954d525-fd55-4cba-8a45-615ec91a684c))
(fp_line (start -1 -0.6) (end 1 -0.6) (layer "F.Fab") (width 0.1) (tstamp caa03fdc-c702-49dc-90a3-cbe564ffb3ef))
(pad "1" smd roundrect locked (at -0.9375 0 270) (size 0.975 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "+5V") (pintype "passive") (tstamp 03937883-f1a8-4ba5-83cd-312791d37acd))
(pad "2" smd roundrect locked (at 0.9375 0 270) (size 0.975 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "IRDOUT") (pintype "passive") (tstamp 9236a57b-2044-471b-b604-e44426f47d7d))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "wago:P-2060-451_998-404" (layer "F.Cu")
(tedit 63B6415C) (tstamp 5df81e03-89a4-437b-aac4-748fb9d4eb26)
(at 115 127 90)
(property "Sheetfile" "MHI ESP.kicad_sch")
(property "Sheetname" "")
(path "/0eb64a1f-1ace-425e-98b3-e48289a9af96")
(attr through_hole)
(fp_text reference "J2" (at -0.185 4 90) (layer "F.SilkS")
(effects (font (size 1.574803 1.574803) (thickness 0.15)))
(tstamp 6e0abc26-adb2-432a-8b9c-bd5cb195d50a)
)
(fp_text value "2060-451/998-404" (at 12.815 3.75 90) (layer "F.Fab") hide
(effects (font (size 1.574803 1.574803) (thickness 0.15)))
(tstamp b2fcfd91-b683-45a7-94ae-fb56f8a1ad3b)
)
(fp_text user "1" (at 11.575 0 90) (layer "F.SilkS")
(effects (font (size 1.574803 1.574803) (thickness 0.15)))
(tstamp b8c51254-6eac-4550-9f45-5c37e8fafc9e)
)
(fp_line (start 6.8004 -1.95) (end -5.575 -1.95) (layer "F.SilkS") (width 0.2) (tstamp 6a3a6351-ad4e-45e3-805b-16a0fd170376))
(fp_line (start -5.575 1.95) (end 6.8642 1.95) (layer "F.SilkS") (width 0.2) (tstamp 90df4975-20dd-4c4a-be5d-9f1fefb0a395))
(fp_line (start 6.815 -1.95) (end 6.835 -1.95) (layer "F.SilkS") (width 0.2) (tstamp fdad627d-ee37-45f4-ab7b-a86f05778d18))
(fp_line (start 0.9405 -1.95) (end 0.9405 -1.4633) (layer "F.Fab") (width 0.01) (tstamp 00f1c4b0-a3de-447d-8743-3e58102944ce))
(fp_line (start 0.7673 1.5) (end 0.7673 1.95) (layer "F.Fab") (width 0.01) (tstamp 04c5a698-d584-4a1d-8240-c8a37bd41a77))
(fp_line (start -3.599 1.1) (end -3.599 -1.1) (layer "F.Fab") (width 0.01) (tstamp 0558cdf4-4cf5-400f-bb15-bdc40836f9be))
(fp_line (start -0.873 -0.4701) (end -0.873 -1.1) (layer "F.Fab") (width 0.01) (tstamp 08d6191f-27d0-45c0-9638-167a0b61e3e9))