-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathElectraWiFiBoard.kicad_pcb
1183 lines (1160 loc) · 78.9 KB
/
ElectraWiFiBoard.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20221018) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(title_block
(title "Electra WiFi Board")
(date "2023-09-16")
(company "Itay Shtainberg")
)
(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
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions true)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 4)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk true)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "Gerbers/")
)
)
(net 0 "")
(net 1 "unconnected-(J1-SHIELD__1-PadS2)")
(net 2 "unconnected-(J1-SHIELD__2-PadS3)")
(net 3 "+5V")
(net 4 "GND")
(net 5 "power_led")
(net 6 "IR_to_ac")
(net 7 "heat_led")
(net 8 "button")
(net 9 "cool_led")
(net 10 "beep")
(net 11 "timer_led")
(net 12 "Net-(Q1-B)")
(net 13 "Net-(Q1-C)")
(net 14 "IR_from_esp")
(net 15 "unconnected-(U1-~{RST}-Pad1)")
(net 16 "unconnected-(U1-A0-Pad2)")
(net 17 "unconnected-(U1-D0-Pad3)")
(net 18 "IR_receive")
(net 19 "unconnected-(U1-MISO{slash}D6-Pad5)")
(net 20 "unconnected-(U1-MOSI{slash}D7-Pad6)")
(net 21 "unconnected-(U1-CS{slash}D8-Pad7)")
(net 22 "+3.3V")
(net 23 "unconnected-(U1-D4-Pad11)")
(net 24 "unconnected-(U1-D3-Pad12)")
(net 25 "unconnected-(U1-RX-Pad15)")
(net 26 "unconnected-(U1-TX-Pad16)")
(net 27 "Net-(BZ1-+)")
(footprint "LED_THT:LED_D3.0mm" (layer "F.Cu")
(tstamp 10239808-8521-454c-9ec8-e7f699c05ed0)
(at 139.275 101.5 180)
(descr "LED, diameter 3.0mm, 2 pins")
(tags "LED diameter 3.0mm 2 pins")
(property "Sheetfile" "ElectraWifi.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Light emitting diode")
(property "ki_keywords" "LED diode")
(path "/bef6b86e-f2ef-4797-9e95-8c397bd390c9")
(attr through_hole)
(fp_text reference "D2" (at 1.27 -2.96) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0470919e-0f7b-4cbb-a39c-32878de4a79c)
)
(fp_text value "COOL" (at 4.525 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 310fdc73-21c1-4a4f-83dc-f6c057c1d0ab)
)
(fp_line (start -0.29 -1.236) (end -0.29 -1.08)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 77c616d5-7baa-4f66-85bc-c7e505aaa9d8))
(fp_line (start -0.29 1.08) (end -0.29 1.236)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 43459108-82ec-40a8-b087-41539df912aa))
(fp_arc (start -0.29 -1.235516) (mid 1.366487 -1.987659) (end 2.942335 -1.078608)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 874c7c1f-5fec-46da-82bd-05ecdda5a566))
(fp_arc (start 0.229039 -1.08) (mid 1.270117 -1.5) (end 2.31113 -1.079837)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a520d078-0b9a-4d4a-9a9a-8313c52bcad0))
(fp_arc (start 2.31113 1.079837) (mid 1.270117 1.5) (end 0.229039 1.08)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ae68a97d-fcd5-43b7-b18b-2f035fbd39c9))
(fp_arc (start 2.942335 1.078608) (mid 1.366487 1.987659) (end -0.29 1.235516)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cfe5c943-31bc-45d0-8b6e-66d7a609c41b))
(fp_line (start -1.15 -2.25) (end -1.15 2.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4b8fb8ef-dede-4875-93e8-53045c983d74))
(fp_line (start -1.15 2.25) (end 3.7 2.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a04f6d40-cb56-476f-8677-6937a627eff4))
(fp_line (start 3.7 -2.25) (end -1.15 -2.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 94244352-2ae9-4ae4-8c41-0c47af4a5154))
(fp_line (start 3.7 2.25) (end 3.7 -2.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2d8a577e-d15e-4dbf-8631-65ff2736dd87))
(fp_line (start -0.23 -1.16619) (end -0.23 1.16619)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 89063554-1bbc-4c46-b39e-d5e7490d1933))
(fp_arc (start -0.23 -1.16619) (mid 3.17 0.000452) (end -0.230555 1.165476)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 64a484c8-60b8-45c1-8789-028c95573b92))
(fp_circle (center 1.27 0) (end 2.77 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 0f7ba9ff-7682-4b7b-9ac0-c8829b68ec81))
(pad "1" thru_hole rect (at 0 0 180) (size 1.8 1.8) (drill 0.9) (layers "*.Cu" "*.Mask")
(net 9 "cool_led") (pinfunction "K") (pintype "passive") (tstamp 5c2dd53d-0005-4f1c-a071-1dc7e59a13ca))
(pad "2" thru_hole circle (at 2.54 0 180) (size 1.8 1.8) (drill 0.9) (layers "*.Cu" "*.Mask")
(net 3 "+5V") (pinfunction "A") (pintype "passive") (tstamp 892f5f0a-88e4-4bbf-a2dd-47e9d32a2ab7))
(model "${KICAD6_3DMODEL_DIR}/LED_THT.3dshapes/LED_D3.0mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_THT:TO-92_Inline" (layer "F.Cu")
(tstamp 5693b5d6-c879-4400-ac2d-2fd0c96b0c77)
(at 159.27 89.64 180)
(descr "TO-92 leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf)")
(tags "to-92 sc-43 sc-43a sot54 PA33 transistor")
(property "Sheetfile" "ElectraWifi.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "0.2A Ic, 40V Vce, Small Signal NPN Transistor, TO-92")
(property "ki_keywords" "NPN Transistor")
(path "/46bd2099-d09d-4919-abfd-692e417e343a")
(attr through_hole)
(fp_text reference "Q1" (at 1.77 -3.56) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 244e1746-30c3-47f1-90ed-c7d19a1b7598)
)
(fp_text value "2N3904" (at -0.23 2.79) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b9a2b180-2c45-4656-9f6b-45a57d0e5b39)
)
(fp_line (start -0.53 1.85) (end 3.07 1.85)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 93bad141-99a4-41d6-a095-207916eda746))
(fp_arc (start -0.568478 1.838478) (mid -1.132087 -0.994977) (end 1.27 -2.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a3e61d6b-99b1-4857-98af-507db50adae6))
(fp_arc (start 1.27 -2.6) (mid 3.672087 -0.994977) (end 3.108478 1.838478)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5b2b4fe8-8ad3-4e9f-a5b6-475122811500))
(fp_line (start -1.46 -2.73) (end -1.46 2.01)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5a8c84d9-664c-4346-82ff-e2061a7dae96))
(fp_line (start -1.46 -2.73) (end 4 -2.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 712bf8ec-ced4-48f4-93ec-0128ffc11ac3))
(fp_line (start 4 2.01) (end -1.46 2.01)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f5af8d74-5eef-40a9-8f31-98339c3ac673))
(fp_line (start 4 2.01) (end 4 -2.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 001c052f-df35-4d68-9036-822ca7a673a8))
(fp_line (start -0.5 1.75) (end 3 1.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ee83f098-17e7-476f-be9c-8000c28a70e3))
(fp_arc (start -0.483625 1.753625) (mid -1.021221 -0.949055) (end 1.27 -2.48)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp eecc6ae4-66e6-4ccf-90e4-77703a4a5fdd))
(fp_arc (start 1.27 -2.48) (mid 3.561221 -0.949055) (end 3.023625 1.753625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bc824b14-46ec-4fb9-912f-ee014da2557f))
(pad "1" thru_hole rect (at 0 0 180) (size 1.05 1.5) (drill 0.75) (layers "*.Cu" "*.Mask")
(net 4 "GND") (pinfunction "E") (pintype "passive") (tstamp a2f84b6a-14e3-4a94-b931-9504ab179526))
(pad "2" thru_hole oval (at 1.27 0 180) (size 1.05 1.5) (drill 0.75) (layers "*.Cu" "*.Mask")
(net 12 "Net-(Q1-B)") (pinfunction "B") (pintype "passive") (tstamp 2ffa8880-6ce1-48d2-9e9d-66844c7b0dbc))
(pad "3" thru_hole oval (at 2.54 0 180) (size 1.05 1.5) (drill 0.75) (layers "*.Cu" "*.Mask")
(net 13 "Net-(Q1-C)") (pinfunction "C") (pintype "passive") (tstamp d3db2717-ea4d-4e77-84c2-f161aa02b34d))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_THT.3dshapes/TO-92_Inline.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "OptoDevice:Vishay_MOLD-3Pin" (layer "F.Cu")
(tstamp 71708abb-ec0a-4f09-a0b3-f57fc988907a)
(at 143.337 81.14 90)
(descr "IR Receiver Vishay TSOP-xxxx, MOLD package, see https://www.vishay.com/docs/82669/tsop32s40f.pdf")
(tags "IR Receiver Vishay TSOP-xxxx MOLD")
(property "Sheetfile" "ElectraWifi.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "IR Receiver Modules for Remote Control Systems")
(property "ki_keywords" "opto IR receiver")
(path "/8b3045c8-70e3-48c3-ba0a-e8bae4f8fec1")
(attr through_hole)
(fp_text reference "U2" (at -1.86 -0.587 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d387d382-67e8-45e2-98e8-87f6d229716c)
)
(fp_text value "TSOP41xx" (at 2.5 5 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 962639f1-e839-4608-a898-d6eee5e466ac)
)
(fp_text user "${REFERENCE}" (at 2.675 1.316 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f9af6f13-a1c7-4712-a8cf-2045846dbcbe)
)
(fp_line (start 0.04 2.3) (end -0.18 2.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b58a0194-e420-41e3-96d5-7699901b13f2))
(fp_line (start 5.62 -1.36) (end 2.54 -1.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0e49df70-999a-424b-8aa2-5badcd073f03))
(fp_line (start 5.7 2.3) (end 5.24 2.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 118b0ccf-890c-471a-88bd-4640680657e7))
(fp_line (start 5.7 2.3) (end 5.7 1.1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d0937bf2-e2c0-4183-ab42-5253e74f1daf))
(fp_arc (start 5.24 2.3) (mid 2.64 4.023119) (end 0.04 2.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0e19a70d-e9bb-42ba-9abe-dd490de602f4))
(fp_line (start -1.15 -1.5) (end -1.15 4.13)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 099433a9-3db4-4791-bc20-a2ca8ff4b6f4))
(fp_line (start -1.15 -1.5) (end 6.23 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 195a7254-0042-4fcb-8dab-7b42d096e880))
(fp_line (start 6.23 4.13) (end -1.15 4.13)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7f000cc9-fbec-4e27-8742-d1aa4c4f64ab))
(fp_line (start 6.23 4.13) (end 6.23 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp aafd8d56-1e0f-4657-a4d5-7ba6ba9c9226))
(fp_line (start -0.2 2.2) (end -0.2 -0.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 779b34bc-eebb-4859-b9e1-eaae4348dddb))
(fp_line (start 0.55 -1.25) (end -0.2 -0.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 85e087df-80c3-4e7f-b7b6-cdcefad7193e))
(fp_line (start 0.55 -1.25) (end 5.6 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c44a95b7-e411-4632-8184-cef6159594cf))
(fp_line (start 5.6 -1.25) (end 5.6 2.2)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a1e35706-1913-43dd-8ce2-840793c90dcb))
(fp_line (start 5.6 2.2) (end -0.2 2.2)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 600f6b2f-c3b1-4b20-8968-428b694653b3))
(fp_arc (start 5.14 2.25) (mid 2.651941 3.881274) (end 0.149714 2.271818)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c6c8d9eb-d471-45f5-b4a5-c618013c0c4a))
(pad "1" thru_hole roundrect (at 0 0 90) (size 1.8 1.8) (drill 0.9) (layers "*.Cu" "*.Mask") (roundrect_rratio 0.138)
(net 18 "IR_receive") (pinfunction "OUT") (pintype "output") (tstamp 741e386a-14b9-48dc-83f6-7ca6315e0ecb))
(pad "2" thru_hole circle (at 2.54 0 90) (size 1.8 1.8) (drill 0.9) (layers "*.Cu" "*.Mask")
(net 4 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 99cfb8e8-278b-4387-a695-7cd4d9fad9fb))
(pad "3" thru_hole circle (at 5.08 0 90) (size 1.8 1.8) (drill 0.9) (layers "*.Cu" "*.Mask")
(net 22 "+3.3V") (pinfunction "Vs") (pintype "power_in") (tstamp b3f5420e-4d11-4224-895d-05b294f9b44d))
(model "${KICAD6_3DMODEL_DIR}/OptoDevice.3dshapes/Vishay_MOLD-3Pin.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")
(tstamp b14b74c0-efc9-47c9-b521-1d1512ea4acd)
(at 114.762 96.545 90)
(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" "ElectraWifi.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "32-bit microcontroller module with WiFi")
(property "ki_keywords" "ESP8266 WiFi microcontroller ESP8266EX")
(path "/8294fadb-0e55-4915-8b10-ef3744ad0a80")
(attr through_hole)
(fp_text reference "U1" (at 23.045 -9.262 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8b2626cf-9945-489d-b943-043fbca9bbdd)
)
(fp_text value "WeMos_D1_mini" (at 11.045 -9.762 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 70568178-1b3a-4fbd-8a10-b4bd121c5e87)
)
(fp_text user "KEEP OUT" (at 11.43 -6.35 90) (layer "Cmts.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2942866f-6341-4037-bde9-7a67e4e7caed)
)
(fp_text user "No copper" (at 11.43 -3.81 90) (layer "Cmts.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4c94c86c-45d9-4a9f-8c32-014aba9dc33e)
)
(fp_text user "${REFERENCE}" (at 11.43 10 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 993ea012-e600-48d6-8e3c-178a82b2470c)
)
(fp_line (start -1.5 19.22) (end -1.5 -6.21)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp be1337ff-cd05-47b6-b875-d68da19bb692))
(fp_line (start -1.5 19.22) (end 1.04 19.22)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 52bff65d-d803-467a-8cbd-80a1950e73e2))
(fp_line (start 1.04 19.22) (end 1.04 26.12)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5887fa47-9f50-4c9d-a013-e06302ab4263))
(fp_line (start 1.04 26.12) (end 24.36 26.12)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 52cfa7bf-bab0-456f-ac66-28d6e9f9309f))
(fp_line (start 22.24 -8.34) (end 0.63 -8.34)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 51c3c7cf-6de8-412f-8c4a-15595aa440fb))
(fp_line (start 24.36 26.12) (end 24.36 -6.21)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2384d2fc-ab89-4e97-a231-e8c4f3bc4608))
(fp_arc (start -1.5 -6.21) (mid -0.876137 -7.716137) (end 0.63 -8.34)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a16328f6-c585-478f-ab18-725b335225b6))
(fp_arc (start 22.23 -8.34) (mid 23.736137 -7.716137) (end 24.36 -6.21)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 61086cd1-3ecd-4a36-ac26-aa0b8ca2574a))
(fp_poly
(pts
(xy -2.54 -0.635)
(xy -2.54 0.635)
(xy -1.905 0)
)
(stroke (width 0.15) (type solid)) (fill solid) (layer "F.SilkS") (tstamp 461b8c6d-6635-42c8-bab1-11a6c3d7783b))
(fp_line (start -1.35 -8.2) (end -1.35 -1.4)
(stroke (width 0.1) (type solid)) (layer "Dwgs.User") (tstamp 0829f6e4-296e-41de-b688-190321dd798a))
(fp_line (start -1.35 -7.4) (end -0.55 -8.2)
(stroke (width 0.1) (type solid)) (layer "Dwgs.User") (tstamp 5d1ae739-6aae-4bc7-b915-629ea1baf491))
(fp_line (start -1.35 -3.4) (end 3.45 -8.2)
(stroke (width 0.1) (type solid)) (layer "Dwgs.User") (tstamp c8a75aec-4b07-4c2c-bf88-835aa1c2452e))
(fp_line (start -1.35 -1.4) (end 5.45 -8.2)
(stroke (width 0.1) (type solid)) (layer "Dwgs.User") (tstamp 0d8c9156-e5d0-47ee-bcef-7db25d1f8be9))
(fp_line (start -1.35 -1.4) (end 24.25 -1.4)
(stroke (width 0.1) (type solid)) (layer "Dwgs.User") (tstamp 6ac3889f-0beb-49d2-97e9-fbb422d76ff0))
(fp_line (start -1.3 -5.45) (end 1.45 -8.2)
(stroke (width 0.1) (type solid)) (layer "Dwgs.User") (tstamp 57758757-1735-4400-832e-db77ae33ec14))
(fp_line (start 0.65 -1.4) (end 7.45 -8.2)
(stroke (width 0.1) (type solid)) (layer "Dwgs.User") (tstamp 15a5fe6e-6a1f-46b9-93e5-f9144a4448be))
(fp_line (start 2.65 -1.4) (end 9.45 -8.2)
(stroke (width 0.1) (type solid)) (layer "Dwgs.User") (tstamp 272a50f5-5ae0-4d86-a57e-8806623e51d5))
(fp_line (start 4.65 -1.4) (end 11.45 -8.2)
(stroke (width 0.1) (type solid)) (layer "Dwgs.User") (tstamp 944123cd-cf64-4ed4-bd84-b9479f2ba483))
(fp_line (start 6.65 -1.4) (end 13.45 -8.2)
(stroke (width 0.1) (type solid)) (layer "Dwgs.User") (tstamp b1ea1930-514b-45be-accc-29e95802a528))
(fp_line (start 8.65 -1.4) (end 15.45 -8.2)
(stroke (width 0.1) (type solid)) (layer "Dwgs.User") (tstamp 5e7cf7e9-6144-437e-a847-75ccb5bede44))
(fp_line (start 10.65 -1.4) (end 17.45 -8.2)
(stroke (width 0.1) (type solid)) (layer "Dwgs.User") (tstamp 3d09f4d8-924a-4a37-94cb-7de51113d5b2))
(fp_line (start 12.65 -1.4) (end 19.45 -8.2)
(stroke (width 0.1) (type solid)) (layer "Dwgs.User") (tstamp 7e4714bf-8fdc-4a9d-9f81-a1672b4ac791))
(fp_line (start 14.65 -1.4) (end 21.45 -8.2)
(stroke (width 0.1) (type solid)) (layer "Dwgs.User") (tstamp f7fd6e28-1ac2-4732-a00a-ff175f03c250))
(fp_line (start 16.65 -1.4) (end 23.45 -8.2)
(stroke (width 0.1) (type solid)) (layer "Dwgs.User") (tstamp 3cc46446-80fc-4570-a21e-28ab7d4ee5f4))
(fp_line (start 18.65 -1.4) (end 24.25 -7)
(stroke (width 0.1) (type solid)) (layer "Dwgs.User") (tstamp ef5af6e6-fd4c-49ec-a350-e62b5a24c74d))
(fp_line (start 20.65 -1.4) (end 24.25 -5)
(stroke (width 0.1) (type solid)) (layer "Dwgs.User") (tstamp 3ee91985-cfd5-44af-9ffd-0b8b118395a4))
(fp_line (start 22.65 -1.4) (end 24.25 -3)
(stroke (width 0.1) (type solid)) (layer "Dwgs.User") (tstamp c3ed57bf-9cae-4452-a3cf-ef991a40639c))
(fp_line (start 24.25 -8.2) (end -1.35 -8.2)
(stroke (width 0.1) (type solid)) (layer "Dwgs.User") (tstamp 5af6bd49-d660-491a-a698-b769ecb8ac73))
(fp_line (start 24.25 -1.4) (end 24.25 -8.2)
(stroke (width 0.1) (type solid)) (layer "Dwgs.User") (tstamp 05c1109c-5f3f-433f-a718-acfc3cbb6b36))
(fp_line (start -1.62 -8.46) (end 24.48 -8.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 83845848-2f41-4ddf-a453-95a6fd49a339))
(fp_line (start -1.62 26.24) (end -1.62 -8.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b3eb6993-f775-41ff-8a0d-e03d71c98451))
(fp_line (start 24.48 -8.46) (end 24.48 26.24)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a451aba2-3bc1-4893-888a-e5370fc5fd8d))
(fp_line (start 24.48 26.24) (end -1.62 26.24)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4e14b291-668b-40a3-a919-7360b08c6570))
(fp_line (start -1.37 -6.21) (end -1.37 -1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0b2d1c07-78e9-4198-b66f-78ffe29faa40))
(fp_line (start -1.37 1) (end -1.37 19.09)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 11e79d4b-aa3a-4d17-ada9-c0e71a769b37))
(fp_line (start -1.37 1) (end -0.37 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 23215aab-edee-4641-903b-dda2c8c24de9))
(fp_line (start -1.37 19.09) (end 1.17 19.09)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c44d9d77-1e2c-4713-ba37-f85d1cfd2267))
(fp_line (start -0.37 0) (end -1.37 -1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp db4d12b9-d4de-4ad9-9683-9b608db6da51))
(fp_line (start 1.17 19.09) (end 1.17 25.99)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 59ab38e3-943f-4ad7-a220-64787ece9495))
(fp_line (start 1.17 25.99) (end 24.23 25.99)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cdececb7-5a56-42fc-bbbc-b77498c35ed5))
(fp_line (start 22.23 -8.21) (end 0.63 -8.21)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 84323f54-d90f-439b-ad66-72351e7764ba))
(fp_line (start 24.23 25.99) (end 24.23 -6.21)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 042fb94a-310d-4f2c-b4d8-f15119cfd943))
(fp_arc (start -1.37 -6.21) (mid -0.784214 -7.624214) (end 0.63 -8.21)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a518bd04-0942-4de7-926b-eae3b0281fcc))
(fp_arc (start 22.25 -8.21) (mid 23.658356 -7.610071) (end 24.23 -6.19)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6fb7d169-1462-478a-b7f6-0b33e5e53c5d))
(pad "1" thru_hole rect (at 0 0 90) (size 2 2) (drill 1) (layers "*.Cu" "*.Mask")
(net 15 "unconnected-(U1-~{RST}-Pad1)") (pinfunction "~{RST}") (pintype "input") (tstamp 6c110c87-d230-4a12-987c-fa74089509af))
(pad "2" thru_hole oval (at 0 2.54 90) (size 2 1.6) (drill 1) (layers "*.Cu" "*.Mask")
(net 16 "unconnected-(U1-A0-Pad2)") (pinfunction "A0") (pintype "input") (tstamp f3e811c4-7a8c-4a80-8322-b5e358dd0a97))
(pad "3" thru_hole oval (at 0 5.08 90) (size 2 1.6) (drill 1) (layers "*.Cu" "*.Mask")
(net 17 "unconnected-(U1-D0-Pad3)") (pinfunction "D0") (pintype "bidirectional") (tstamp 84e7446f-bf7e-42e2-b8d0-ecc76f81c64f))
(pad "4" thru_hole oval (at 0 7.62 90) (size 2 1.6) (drill 1) (layers "*.Cu" "*.Mask")
(net 18 "IR_receive") (pinfunction "SCK/D5") (pintype "bidirectional") (tstamp 12d312fe-6073-4798-bff6-78620323149d))
(pad "5" thru_hole oval (at 0 10.16 90) (size 2 1.6) (drill 1) (layers "*.Cu" "*.Mask")
(net 19 "unconnected-(U1-MISO{slash}D6-Pad5)") (pinfunction "MISO/D6") (pintype "bidirectional") (tstamp 97d6bfb2-c387-4e85-9ecf-e1a9c5dd3e19))
(pad "6" thru_hole oval (at 0 12.7 90) (size 2 1.6) (drill 1) (layers "*.Cu" "*.Mask")
(net 20 "unconnected-(U1-MOSI{slash}D7-Pad6)") (pinfunction "MOSI/D7") (pintype "bidirectional") (tstamp 25a3aa77-14e8-4b52-8dce-71ef8dbfaa69))
(pad "7" thru_hole oval (at 0 15.24 90) (size 2 1.6) (drill 1) (layers "*.Cu" "*.Mask")
(net 21 "unconnected-(U1-CS{slash}D8-Pad7)") (pinfunction "CS/D8") (pintype "bidirectional") (tstamp f56d10ad-370d-4724-8413-da58cc94fe99))
(pad "8" thru_hole oval (at 0 17.78 90) (size 2 1.6) (drill 1) (layers "*.Cu" "*.Mask")
(net 22 "+3.3V") (pinfunction "3V3") (pintype "power_out") (tstamp 5ba1497e-82ee-4c3c-9f26-49cb66d4da4b))
(pad "9" thru_hole oval (at 22.86 17.78 90) (size 2 1.6) (drill 1) (layers "*.Cu" "*.Mask")
(net 3 "+5V") (pinfunction "5V") (pintype "power_in") (tstamp 3a0b1dc1-ad4c-483c-b30e-92bd386cfac9))
(pad "10" thru_hole oval (at 22.86 15.24 90) (size 2 1.6) (drill 1) (layers "*.Cu" "*.Mask")
(net 4 "GND") (pinfunction "GND") (pintype "power_in") (tstamp f5e8cea0-4274-4fc5-a5b1-094b01fafca2))
(pad "11" thru_hole oval (at 22.86 12.7 90) (size 2 1.6) (drill 1) (layers "*.Cu" "*.Mask")
(net 23 "unconnected-(U1-D4-Pad11)") (pinfunction "D4") (pintype "bidirectional") (tstamp 150bd13d-721a-4a43-a9a1-89a6a90685cf))
(pad "12" thru_hole oval (at 22.86 10.16 90) (size 2 1.6) (drill 1) (layers "*.Cu" "*.Mask")
(net 24 "unconnected-(U1-D3-Pad12)") (pinfunction "D3") (pintype "bidirectional") (tstamp a963603a-33ec-4133-bf4b-fc6bce8cd83d))
(pad "13" thru_hole oval (at 22.86 7.62 90) (size 2 1.6) (drill 1) (layers "*.Cu" "*.Mask")
(net 14 "IR_from_esp") (pinfunction "SDA/D2") (pintype "bidirectional") (tstamp b37b4667-061f-4d43-bb45-0f1c1100506c))
(pad "14" thru_hole oval (at 22.86 5.08 90) (size 2 1.6) (drill 1) (layers "*.Cu" "*.Mask")
(net 5 "power_led") (pinfunction "SCL/D1") (pintype "bidirectional") (tstamp 7996dacb-fb0f-431e-987f-45870e3443b0))
(pad "15" thru_hole oval (at 22.86 2.54 90) (size 2 1.6) (drill 1) (layers "*.Cu" "*.Mask")
(net 25 "unconnected-(U1-RX-Pad15)") (pinfunction "RX") (pintype "input") (tstamp 7c771656-4ce8-4684-9505-3a589cdc366d))
(pad "16" thru_hole oval (at 22.86 0 90) (size 2 1.6) (drill 1) (layers "*.Cu" "*.Mask")
(net 26 "unconnected-(U1-TX-Pad16)") (pinfunction "TX") (pintype "output") (tstamp 71954e09-264e-409e-95d6-bbefbae66f30))
(model "${KICAD6_3DMODEL_DIR}/Module.3dshapes/WEMOS_D1_mini_light.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model "${KICAD6_3DMODEL_DIR}/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 "${KICAD6_3DMODEL_DIR}/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 "${KICAD6_3DMODEL_DIR}/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 "${KICAD6_3DMODEL_DIR}/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 "LED_THT:LED_D3.0mm" (layer "F.Cu")
(tstamp c3979e1f-2604-45f0-bbab-54230859c864)
(at 123.275 101.5 180)
(descr "LED, diameter 3.0mm, 2 pins")
(tags "LED diameter 3.0mm 2 pins")
(property "Sheetfile" "ElectraWifi.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Light emitting diode")
(property "ki_keywords" "LED diode")
(path "/ad0d9c7c-e9b2-4ca6-8250-6942ef775ac4")
(attr through_hole)
(fp_text reference "D3" (at 1.025 -3.25) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 93db53e5-71ca-4c76-b63c-fda47baddf8e)
)
(fp_text value "TIMER" (at -1.725 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2f143bfd-189e-4056-8fbd-b0afeab60c8c)
)
(fp_line (start -0.29 -1.236) (end -0.29 -1.08)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 94a204f7-83a7-4f42-8fa6-c6dd3f542824))
(fp_line (start -0.29 1.08) (end -0.29 1.236)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 320f9234-1134-4bff-b729-37c2de289a0e))
(fp_arc (start -0.29 -1.235516) (mid 1.366487 -1.987659) (end 2.942335 -1.078608)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 07821909-0510-49e4-a03b-98e3e54fdc7d))
(fp_arc (start 0.229039 -1.08) (mid 1.270117 -1.5) (end 2.31113 -1.079837)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6f0b1083-15b0-4259-89fd-b935cc585ed6))
(fp_arc (start 2.31113 1.079837) (mid 1.270117 1.5) (end 0.229039 1.08)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 209948a8-6d39-4603-8772-a7e59de6f044))
(fp_arc (start 2.942335 1.078608) (mid 1.366487 1.987659) (end -0.29 1.235516)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2746956f-c7fc-4ac8-bd6a-d2fa60a9446b))
(fp_line (start -1.15 -2.25) (end -1.15 2.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f18314f8-5451-47d9-9711-f99fbb48a75d))
(fp_line (start -1.15 2.25) (end 3.7 2.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ae3e8ba7-d87c-4a10-8322-001cdc2409bf))
(fp_line (start 3.7 -2.25) (end -1.15 -2.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5c5e74bd-ac13-493e-ae01-4475fcce00e4))
(fp_line (start 3.7 2.25) (end 3.7 -2.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 42e71dc2-60b5-4404-b3ce-c6b3738d7503))
(fp_line (start -0.23 -1.16619) (end -0.23 1.16619)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6494f018-49eb-4ba2-bac9-bb85c84f90aa))
(fp_arc (start -0.23 -1.16619) (mid 3.17 0.000452) (end -0.230555 1.165476)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d651a3a7-0131-4406-8a7b-2d92cc418e78))
(fp_circle (center 1.27 0) (end 2.77 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp dca38f4e-efec-4863-b177-9d459cc3a235))
(pad "1" thru_hole rect (at 0 0 180) (size 1.8 1.8) (drill 0.9) (layers "*.Cu" "*.Mask")
(net 11 "timer_led") (pinfunction "K") (pintype "passive") (tstamp 789c27db-23a4-4e49-bffe-b9da024f7c5a))
(pad "2" thru_hole circle (at 2.54 0 180) (size 1.8 1.8) (drill 0.9) (layers "*.Cu" "*.Mask")
(net 3 "+5V") (pinfunction "A") (pintype "passive") (tstamp 67389e41-a1a5-435d-a796-7b3cc14b6975))
(model "${KICAD6_3DMODEL_DIR}/LED_THT.3dshapes/LED_D3.0mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_THT:LED_D3.0mm" (layer "F.Cu")
(tstamp c4b1e87c-f614-428a-b4c2-a48dc120924a)
(at 147.275 101.5 180)
(descr "LED, diameter 3.0mm, 2 pins")
(tags "LED diameter 3.0mm 2 pins")
(property "Sheetfile" "ElectraWifi.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Light emitting diode")
(property "ki_keywords" "LED diode")
(path "/df5a2581-092b-491d-8d18-7c77a2925942")
(attr through_hole)
(fp_text reference "D1" (at 1.27 -2.96) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 90b2069b-9772-44d8-bd7e-1eaa2c1617b6)
)
(fp_text value "HEAT" (at 1.27 2.96 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0799de6c-fe02-433e-9019-afa469bfd07b)
)
(fp_line (start -0.29 -1.236) (end -0.29 -1.08)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1366ee96-d0c0-40a5-b317-54d24022e9bb))
(fp_line (start -0.29 1.08) (end -0.29 1.236)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5d8abb65-bc48-4c69-9a9a-4f7396866845))
(fp_arc (start -0.29 -1.235516) (mid 1.366487 -1.987659) (end 2.942335 -1.078608)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b1f36b30-7129-42ce-b1af-d190f77f0d35))
(fp_arc (start 0.229039 -1.08) (mid 1.270117 -1.5) (end 2.31113 -1.079837)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f6107b7d-6cf0-419e-a934-6f8e136c519b))
(fp_arc (start 2.31113 1.079837) (mid 1.270117 1.5) (end 0.229039 1.08)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f799d304-5dbe-451e-b83e-0ca9fdb60836))
(fp_arc (start 2.942335 1.078608) (mid 1.366487 1.987659) (end -0.29 1.235516)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 51e0046f-702c-48cc-b33e-3e5629f67a2b))
(fp_line (start -1.15 -2.25) (end -1.15 2.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6dcb3729-884c-49a0-98d9-ab12d56c6ede))
(fp_line (start -1.15 2.25) (end 3.7 2.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0928ea35-e97a-4d1d-a73a-6934c5f33261))
(fp_line (start 3.7 -2.25) (end -1.15 -2.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 208eef9d-e4c5-45ac-ba20-d85805d951fb))
(fp_line (start 3.7 2.25) (end 3.7 -2.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e7e52b2b-83df-43b6-bfc5-05b62aa05c1d))
(fp_line (start -0.23 -1.16619) (end -0.23 1.16619)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c43f48ec-4270-4afd-a930-48185b10c444))
(fp_arc (start -0.23 -1.16619) (mid 3.17 0.000452) (end -0.230555 1.165476)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f17ebcf0-bdde-4380-bbba-193e48b24d20))
(fp_circle (center 1.27 0) (end 2.77 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 434b12d8-f8d0-4f7e-9b53-0deafa528b2f))
(pad "1" thru_hole rect (at 0 0 180) (size 1.8 1.8) (drill 0.9) (layers "*.Cu" "*.Mask")
(net 7 "heat_led") (pinfunction "K") (pintype "passive") (tstamp 1ffae8e5-9e57-4331-ab08-8f83957833bb))
(pad "2" thru_hole circle (at 2.54 0 180) (size 1.8 1.8) (drill 0.9) (layers "*.Cu" "*.Mask")
(net 3 "+5V") (pinfunction "A") (pintype "passive") (tstamp a81ae544-7762-4272-88fc-5a5f9a2bb015))
(model "${KICAD6_3DMODEL_DIR}/LED_THT.3dshapes/LED_D3.0mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_THT:LED_D3.0mm" (layer "F.Cu")
(tstamp c81acc48-8c7c-44d3-9489-758353025a37)
(at 115.275 101.5 180)
(descr "LED, diameter 3.0mm, 2 pins")
(tags "LED diameter 3.0mm 2 pins")
(property "Sheetfile" "ElectraWifi.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Light emitting diode")
(property "ki_keywords" "LED diode")
(path "/07022ff6-3cfc-417a-9cf5-b19c7f0437fb")
(attr through_hole)
(fp_text reference "D4" (at 4.025 2) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b0d247b3-c74f-4f23-992e-c62c3b6c466c)
)
(fp_text value "POWER" (at -1.725 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 75fd72fd-95a7-49d7-8fdc-fb01081a1f3f)
)
(fp_line (start -0.29 -1.236) (end -0.29 -1.08)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 31ab7417-635f-4228-b7f9-5784ec212b4d))
(fp_line (start -0.29 1.08) (end -0.29 1.236)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 83513834-281a-41a8-95ca-e8f8de2de3fd))
(fp_arc (start -0.29 -1.235516) (mid 1.366487 -1.987659) (end 2.942335 -1.078608)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fec8336c-a41c-4700-a88a-bb0be6d812a3))
(fp_arc (start 0.229039 -1.08) (mid 1.270117 -1.5) (end 2.31113 -1.079837)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 306e15dd-0822-4b5c-ad28-2270bcc8734a))
(fp_arc (start 2.31113 1.079837) (mid 1.270117 1.5) (end 0.229039 1.08)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4ff4bb62-19ea-4cc0-9a25-807607fb10a8))
(fp_arc (start 2.942335 1.078608) (mid 1.366487 1.987659) (end -0.29 1.235516)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dca87e68-ec4d-48f6-bc2f-aa4329bbb24f))
(fp_line (start -1.15 -2.25) (end -1.15 2.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c8df58f9-bdc3-4845-93e8-9732ed8cf5ee))
(fp_line (start -1.15 2.25) (end 3.7 2.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 23fa6b7d-f482-4967-99a6-b5ae1c4ebbbc))
(fp_line (start 3.7 -2.25) (end -1.15 -2.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c7f8ce2b-3278-4c78-b79c-766489f31478))
(fp_line (start 3.7 2.25) (end 3.7 -2.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4056ab7d-63b7-415b-ab70-4916f43c94e1))
(fp_line (start -0.23 -1.16619) (end -0.23 1.16619)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e2f74428-07f4-4c2d-bab5-10ea1cab82ff))
(fp_arc (start -0.23 -1.16619) (mid 3.17 0.000452) (end -0.230555 1.165476)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1866d153-19c6-4eaa-b271-a49a9fbc1957))
(fp_circle (center 1.27 0) (end 2.77 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 172f9fa1-f44b-4a70-abda-43901c987504))
(pad "1" thru_hole rect (at 0 0 180) (size 1.8 1.8) (drill 0.9) (layers "*.Cu" "*.Mask")
(net 5 "power_led") (pinfunction "K") (pintype "passive") (tstamp b811038b-0f3d-4f0e-aa92-50c579d6d591))
(pad "2" thru_hole circle (at 2.54 0 180) (size 1.8 1.8) (drill 0.9) (layers "*.Cu" "*.Mask")
(net 3 "+5V") (pinfunction "A") (pintype "passive") (tstamp 0a9082cd-4ec8-465c-a8f5-603ea6d5967e))
(model "${KICAD6_3DMODEL_DIR}/LED_THT.3dshapes/LED_D3.0mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Buzzer_Beeper:Buzzer_12x9.5RM7.6" (layer "B.Cu")
(tstamp 4d223d73-9d01-473c-b6a7-e4f2ae2406b2)
(at 141.2 93.5)
(descr "Generic Buzzer, D12mm height 9.5mm with RM7.6mm")
(tags "buzzer")
(property "Sheetfile" "ElectraWifi.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Buzzer, polarized")
(property "ki_keywords" "quartz resonator ceramic")
(path "/599dc6f4-3af5-442a-a9cf-e977a468c8f8")
(attr through_hole)
(fp_text reference "BZ1" (at -2.95 4.25 -360) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 0fb2b56e-5836-4721-b6c4-7ad985c48f15)
)
(fp_text value "Buzzer" (at 3.8 -7.4) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 49dc8e64-e388-4365-a3d6-507c47b9f7e2)
)
(fp_text user "+" (at -0.01 2.54 -360) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 91cb91fb-6a0c-4185-816d-5e47314414d1)
)
(fp_text user "+" (at -0.01 2.54 -360) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 3857a61d-e2dd-46a0-9580-dabbefdbbfbc)
)
(fp_text user "${REFERENCE}" (at 3.8 4 -360) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 832f16a0-323e-4838-a2c4-cd7e435639cc)
)
(fp_circle (center 3.8 0) (end 9.9 0)
(stroke (width 0.12) (type solid)) (fill none) (layer "B.SilkS") (tstamp 5e4eb68b-40f2-4688-9ca4-ebdc6f04c13f))
(fp_circle (center 3.8 0) (end 10.05 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "B.CrtYd") (tstamp b8c76102-4f55-47a3-a13b-a9d00d9d34b8))
(fp_circle (center 3.8 0) (end 4.8 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "B.Fab") (tstamp 5401e953-8067-49ec-900f-e389fc7d57a2))
(fp_circle (center 3.8 0) (end 9.8 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "B.Fab") (tstamp 43cd1446-e1f4-4ca9-b262-dff29d325153))
(pad "1" thru_hole rect (at 0 0) (size 2 2) (drill 1) (layers "*.Cu" "*.Mask")
(net 3 "+5V") (pinfunction "-") (pintype "passive") (tstamp 0a56bcd8-81ac-4888-aefc-025e1a41c80f))
(pad "2" thru_hole circle (at 7.6 0) (size 2 2) (drill 1) (layers "*.Cu" "*.Mask")
(net 27 "Net-(BZ1-+)") (pinfunction "+") (pintype "passive") (tstamp 589dc2e6-3271-47eb-bb38-189b2d762892))
(model "${KICAD6_3DMODEL_DIR}/Buzzer_Beeper.3dshapes/Buzzer_12x9.5RM7.6.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal" (layer "B.Cu")
(tstamp 74989dad-451c-42a8-a68a-af91f9ebdbd4)
(at 136.81 92.5 180)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "ElectraWifi.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/90a03dba-fdcd-454d-8b0d-c9b89cbd8210")
(attr through_hole)
(fp_text reference "R4" (at 9.31 0.75) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp b64eb087-fa27-4c0b-ac84-712379b77fbd)
)
(fp_text value "100" (at 9.56 -1.5) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 68ce4369-d285-4503-8d15-97ae53d11220)
)
(fp_text user "${REFERENCE}" (at 3.81 0) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 3f4381f9-e4c6-4b17-b15d-802db20ddfa4)
)
(fp_line (start 0.54 -1.37) (end 7.08 -1.37)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp d0ce211e-3ebe-4725-9a87-3e9eccb39c87))
(fp_line (start 0.54 -1.04) (end 0.54 -1.37)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 7030c0a2-eb35-4766-bab1-a5654dbd926e))
(fp_line (start 0.54 1.04) (end 0.54 1.37)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp d0c9da35-e1cc-4ebb-9b82-f2f2b5b72a53))
(fp_line (start 0.54 1.37) (end 7.08 1.37)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 406a6e68-4f83-44d1-89f6-8e3f8f678ee6))
(fp_line (start 7.08 -1.37) (end 7.08 -1.04)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp b1cab3fb-e479-4622-bea5-983df91443dd))
(fp_line (start 7.08 1.37) (end 7.08 1.04)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp f325f989-371f-4866-aac6-9c43efe542e2))
(fp_line (start -1.05 -1.5) (end 8.67 -1.5)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp e2f66ed9-2eea-4417-a180-2b75dd1f4f98))
(fp_line (start -1.05 1.5) (end -1.05 -1.5)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp e8e84e84-555e-4320-a90c-6b5ed40aac53))
(fp_line (start 8.67 -1.5) (end 8.67 1.5)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp b0ca9d8b-b7b2-4e21-83b5-c1a7d79902b0))
(fp_line (start 8.67 1.5) (end -1.05 1.5)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 05c44d7d-df38-4648-adab-f474c742d4b0))
(fp_line (start 0 0) (end 0.66 0)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 18335230-5805-4e63-9b5a-fc40d87856d1))
(fp_line (start 0.66 -1.25) (end 6.96 -1.25)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp d73ddf70-6ea0-4299-bd7c-ee78a103cc5d))
(fp_line (start 0.66 1.25) (end 0.66 -1.25)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 1208fd6e-157b-47f9-9d32-d7d475cfbe27))
(fp_line (start 6.96 -1.25) (end 6.96 1.25)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 41866f98-24dc-4075-97ca-070033e2018d))
(fp_line (start 6.96 1.25) (end 0.66 1.25)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 187c832d-11d8-4338-b978-bd46f30def23))
(fp_line (start 7.62 0) (end 6.96 0)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 3fe1bb55-27d2-457f-9673-22d437387b32))
(pad "1" thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 10 "beep") (pintype "passive") (tstamp aa459a48-d137-4048-bb03-aaf661bef880))
(pad "2" thru_hole oval (at 7.62 0 180) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 27 "Net-(BZ1-+)") (pintype "passive") (tstamp 2686ad1c-c92f-462d-af9d-a990444461c5))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "footprints:CUI_MD-80SM" (layer "B.Cu")
(tstamp 81154f9d-5e96-4a2e-a43d-47a91d28a575)
(at 154.048 79.6 90)
(property "MANUFACTURER" "CUI")
(property "MAXIMUM_PACKAGE_HEIGHT" "12.8 mm")
(property "PARTREV" "02/18/2022")
(property "STANDARD" "Manufacturer Recommendations")
(property "Sheetfile" "ElectraWifi.kicad_sch")
(property "Sheetname" "")
(path "/b66809c9-5989-4407-b720-1d034e3f4622")
(attr through_hole)
(fp_text reference "J1" (at -4.15 9.202 90) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp a17a5532-c79b-4586-9ab8-7908f20f44e5)
)
(fp_text value "MD-80SM" (at 2.35 9.202 90) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp bc84b72b-bee9-4a1b-9192-fcf8e67ead37)
)
(fp_line (start -7 -4.7) (end -7 -0.915)
(stroke (width 0.127) (type solid)) (layer "B.SilkS") (tstamp 1da93735-b0be-425a-8cca-da6a25ea9b8d))
(fp_line (start -7 2.515) (end -7 8.3)
(stroke (width 0.127) (type solid)) (layer "B.SilkS") (tstamp 27b73ddf-1117-432c-9efc-32932845880e))
(fp_line (start -7 8.3) (end 7 8.3)
(stroke (width 0.127) (type solid)) (layer "B.SilkS") (tstamp 98365984-d97b-483e-8c3f-e4f77709caf9))
(fp_line (start 7 -4.7) (end -7 -4.7)
(stroke (width 0.127) (type solid)) (layer "B.SilkS") (tstamp 60d85c80-6ea1-4aad-b646-e3f042c5d168))
(fp_line (start 7 -4.7) (end 7 -0.915)
(stroke (width 0.127) (type solid)) (layer "B.SilkS") (tstamp 86210393-8994-4253-91ab-9335d60fadd0))
(fp_line (start 7 8.3) (end 7 2.515)
(stroke (width 0.127) (type solid)) (layer "B.SilkS") (tstamp c956f424-40b1-44ed-8922-72234951df97))
(fp_circle (center 1.257 -5.471) (end 1.357 -5.471)
(stroke (width 0.2) (type solid)) (fill none) (layer "B.SilkS") (tstamp f6250b54-4960-4ad5-9806-dda1032edca8))
(fp_line (start -7.715 -4.95) (end 7.715 -4.95)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 8c0286b2-fd08-4644-a13e-e88273261b66))
(fp_line (start -7.715 8.55) (end -7.715 -4.95)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp db816969-8826-47c0-b8cd-93d92ff5cee5))
(fp_line (start 7.715 -4.95) (end 7.715 8.55)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp e7161adc-0775-4bfc-91ee-c9c85ca48c30))
(fp_line (start 7.715 8.55) (end -7.715 8.55)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 9a8c9d9b-069d-419b-89e3-a6771aafa340))
(fp_line (start -7 -4.7) (end -7 8.3)
(stroke (width 0.127) (type solid)) (layer "B.Fab") (tstamp 9507aaa5-c86c-4bf3-bdda-111fbe57085d))
(fp_line (start -7 8.3) (end 7 8.3)
(stroke (width 0.127) (type solid)) (layer "B.Fab") (tstamp 4a02caac-a653-4899-9327-7c4bbb6fded2))
(fp_line (start 7 -4.7) (end -7 -4.7)
(stroke (width 0.127) (type solid)) (layer "B.Fab") (tstamp a5bbe709-ae9e-4d9a-b1d1-27534308998a))
(fp_line (start 7 8.3) (end 7 -4.7)
(stroke (width 0.127) (type solid)) (layer "B.Fab") (tstamp 33332448-d434-43d9-b2f9-2c2c20635bc6))
(fp_circle (center 1.257 -5.471) (end 1.357 -5.471)
(stroke (width 0.2) (type solid)) (fill none) (layer "B.Fab") (tstamp 361b31f7-1d24-4dee-996a-7ebf0c9dcc86))
(pad "1" thru_hole rect (at 1.3 3.8 90) (size 1.408 1.408) (drill 0.9) (layers "*.Cu" "*.Mask")
(net 7 "heat_led") (pinfunction "1") (pintype "passive") (tstamp 6ff48516-ac7c-4d63-9845-826da64bd482))
(pad "2" thru_hole circle (at -1.3 3.8 90) (size 1.408 1.408) (drill 0.9) (layers "*.Cu" "*.Mask")
(net 6 "IR_to_ac") (pinfunction "2") (pintype "passive") (tstamp 2af2a325-4f13-4cd2-91b9-8e6d0b5de352))
(pad "3" thru_hole circle (at 3.4 3.8 90) (size 1.408 1.408) (drill 0.9) (layers "*.Cu" "*.Mask")
(net 3 "+5V") (pinfunction "3") (pintype "passive") (tstamp 6e1cf40a-211e-44df-b547-08bb5738b2bc))
(pad "4" thru_hole circle (at 1.3 6.3 90) (size 1.408 1.408) (drill 0.9) (layers "*.Cu" "*.Mask")
(net 10 "beep") (pinfunction "4") (pintype "passive") (tstamp 065b83b6-fd14-4d10-a245-d9998cf9fcbc))
(pad "5" thru_hole circle (at -3.4 3.8 90) (size 1.408 1.408) (drill 0.9) (layers "*.Cu" "*.Mask")
(net 5 "power_led") (pinfunction "5") (pintype "passive") (tstamp b9e335ad-1435-42d3-924f-dbb1293e1c6d))
(pad "6" thru_hole circle (at 3.4 6.3 90) (size 1.408 1.408) (drill 0.9) (layers "*.Cu" "*.Mask")
(net 11 "timer_led") (pinfunction "6") (pintype "passive") (tstamp 81956306-2078-432d-b873-da80a5606742))
(pad "7" thru_hole circle (at -0.9 6.3 90) (size 1.408 1.408) (drill 0.9) (layers "*.Cu" "*.Mask")
(net 8 "button") (pinfunction "7") (pintype "passive") (tstamp 6657e08c-ad79-4349-85b7-4d97aa223bc0))
(pad "8" thru_hole circle (at -3.4 6.3 90) (size 1.408 1.408) (drill 0.9) (layers "*.Cu" "*.Mask")
(net 9 "cool_led") (pinfunction "8") (pintype "passive") (tstamp b2096dfb-568b-49b6-ab47-1f9e5c4fdc0c))
(pad "S1" thru_hole oval (at 0 0 90) (size 2.73 1.23) (drill oval 2.2 0.7) (layers "*.Cu" "*.Mask")
(net 4 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp f7d96063-3277-4fd6-a9be-d2b1bc8bb3b7))
(pad "S2" thru_hole oval (at -6.75 0.8 90) (size 1.23 2.73) (drill oval 0.7 2.2) (layers "*.Cu" "*.Mask")
(net 1 "unconnected-(J1-SHIELD__1-PadS2)") (pinfunction "SHIELD__1") (pintype "passive") (tstamp 1d82d403-acdc-4d18-a717-eb3126a733be))
(pad "S3" thru_hole oval (at 6.75 0.8 90) (size 1.23 2.73) (drill oval 0.7 2.2) (layers "*.Cu" "*.Mask")
(net 2 "unconnected-(J1-SHIELD__2-PadS3)") (pinfunction "SHIELD__2") (pintype "passive") (tstamp b83fbb20-7af4-42e9-b4b3-a7718dc56693))
(model "C:/Users/Itay/Documents/KiCad/7.0/3dmodels/CUI_DEVICES_MD-80SM.step"
(offset (xyz -7 -4.75 0))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal" (layer "B.Cu")
(tstamp b89c1354-0dc6-4f28-978d-f0fdc0284ae2)
(at 136.81 88.5 180)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "ElectraWifi.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/00e30fa7-0f21-4c6b-a155-d3c3f831927d")
(attr through_hole)
(fp_text reference "R2" (at 9.31 0.75) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 6d720a3c-254a-446f-8c8b-77b38eeb7cdc)
)
(fp_text value "1K" (at 9.31 -1.25) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp b3d24197-534c-47da-8108-d838ab4b6c3a)
)
(fp_text user "${REFERENCE}" (at 3.81 0) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 39a621ec-2528-4201-a047-1056f72b7a48)
)
(fp_line (start 0.54 -1.37) (end 7.08 -1.37)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp d219f144-8528-4b88-9dbd-94ea734f7aa0))
(fp_line (start 0.54 -1.04) (end 0.54 -1.37)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 96c0bf93-15a6-4066-957e-b0d6b90941f1))
(fp_line (start 0.54 1.04) (end 0.54 1.37)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp aada928b-8e4b-4d08-b436-b98f4480f7ab))
(fp_line (start 0.54 1.37) (end 7.08 1.37)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp aeb91927-e0fe-4063-80f6-25ece25f31f9))
(fp_line (start 7.08 -1.37) (end 7.08 -1.04)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 65ebf89b-e005-481a-b493-974cf685692c))
(fp_line (start 7.08 1.37) (end 7.08 1.04)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 3f864b20-3250-4636-a884-188d2bfdf853))
(fp_line (start -1.05 -1.5) (end 8.67 -1.5)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 0774a623-cd4c-4b54-8fea-28b55bd7f806))
(fp_line (start -1.05 1.5) (end -1.05 -1.5)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp bb54a949-86dc-4c44-901a-33e6adaaba59))
(fp_line (start 8.67 -1.5) (end 8.67 1.5)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 225e0d3b-2560-4199-a965-ac3f56327379))
(fp_line (start 8.67 1.5) (end -1.05 1.5)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 9b12c11c-512b-4c31-8e70-1aec77f81615))
(fp_line (start 0 0) (end 0.66 0)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 34cb8ffe-2d94-4396-859e-c5f2bbcf38dc))
(fp_line (start 0.66 -1.25) (end 6.96 -1.25)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 4af5e540-3444-46f9-953e-a14e1c09ef6c))
(fp_line (start 0.66 1.25) (end 0.66 -1.25)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 22781968-a5bd-4a67-a55b-67e17e407842))
(fp_line (start 6.96 -1.25) (end 6.96 1.25)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 3c29b017-07af-4853-af9d-a19518cabb8e))
(fp_line (start 6.96 1.25) (end 0.66 1.25)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 6dd5ce8b-ed87-4af7-b75f-ba8aa596ab09))
(fp_line (start 7.62 0) (end 6.96 0)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp a8126f5d-3232-4d4f-9130-b93231abce98))
(pad "1" thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 6 "IR_to_ac") (pintype "passive") (tstamp bb077dd1-1435-4ad8-bf90-0e6951fa5336))
(pad "2" thru_hole oval (at 7.62 0 180) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 13 "Net-(Q1-C)") (pintype "passive") (tstamp 968bb94f-f782-4953-bce5-436c7878a007))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal" (layer "B.Cu")
(tstamp b9172f89-af46-431a-927d-02c3351d15ab)
(at 124.31 88.5 180)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "ElectraWifi.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/3887d50e-8a2a-4d6c-b040-1830468227e7")
(attr through_hole)
(fp_text reference "R1" (at 9.31 1) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 3fbc04e7-2932-4a44-b834-e2500957d36c)
)
(fp_text value "1K" (at 9.31 -1.25) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp aaf6e7ca-3ddb-4eae-8c7a-6b057d3e137e)
)
(fp_text user "${REFERENCE}" (at 3.81 0) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 48ac29ad-58e5-4330-989c-ad1fc2a8e9e3)
)
(fp_line (start 0.54 -1.37) (end 7.08 -1.37)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 0678c4f2-700c-4f08-b933-830ba3d563df))
(fp_line (start 0.54 -1.04) (end 0.54 -1.37)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 343fcabf-7e19-4705-be8b-bb18a04ef566))
(fp_line (start 0.54 1.04) (end 0.54 1.37)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp f26e5873-02d6-4c42-9bcb-d1db9b25531b))
(fp_line (start 0.54 1.37) (end 7.08 1.37)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp b13f8f8a-046a-4dcc-8100-e3f1f0373df6))
(fp_line (start 7.08 -1.37) (end 7.08 -1.04)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp fdd3fc3e-0e6e-476a-bc4d-7e5e1cf6b219))
(fp_line (start 7.08 1.37) (end 7.08 1.04)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 4a968229-62f8-4872-9038-e0a361cb41bf))
(fp_line (start -1.05 -1.5) (end 8.67 -1.5)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp da1ba1ee-3f98-4584-b9d3-2e197179c9e4))
(fp_line (start -1.05 1.5) (end -1.05 -1.5)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 5df42dc7-b92a-4040-8ccb-3632514d1f8a))
(fp_line (start 8.67 -1.5) (end 8.67 1.5)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp abfd93b9-b139-422a-9114-4f4440e60d88))
(fp_line (start 8.67 1.5) (end -1.05 1.5)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp c8a08b20-1b18-4ff8-b41a-32570933fc83))
(fp_line (start 0 0) (end 0.66 0)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 7bd6ea3b-ae7e-4e6c-9cac-adc0095ad8cb))
(fp_line (start 0.66 -1.25) (end 6.96 -1.25)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp c7e2e3b2-d911-4e3b-ad3f-de51cbdc1999))
(fp_line (start 0.66 1.25) (end 0.66 -1.25)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp f89e9bae-2550-4172-aef5-2efc6e6431cf))
(fp_line (start 6.96 -1.25) (end 6.96 1.25)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp be091ece-add7-4a3f-8844-f21589bb0005))
(fp_line (start 6.96 1.25) (end 0.66 1.25)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 940ff8b9-9607-41df-8468-ff21fdcd76cd))
(fp_line (start 7.62 0) (end 6.96 0)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp b23adbdf-a53c-4fcf-add1-5b86bb914d99))
(pad "1" thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 12 "Net-(Q1-B)") (pintype "passive") (tstamp 46f44d87-4601-40a2-8139-7195809a95ba))
(pad "2" thru_hole oval (at 7.62 0 180) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 14 "IR_from_esp") (pintype "passive") (tstamp 610d56fc-fe38-4fbd-9ffb-c3a53bed2da8))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal" (layer "B.Cu")
(tstamp ca90235e-4e88-437d-a92f-9e1c5de8236d)
(at 124.31 92.5 180)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "ElectraWifi.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/463b50a5-10dd-4cd9-b8d3-71e071a64404")
(attr through_hole)
(fp_text reference "R3" (at 9.31 0.75) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 84224299-37b7-4e05-8c83-d59a69d9a28d)
)
(fp_text value "1K" (at 9.31 -1.25) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 6e81e1d8-63c4-4f2b-86fa-fdb94850768c)
)
(fp_text user "${REFERENCE}" (at 3.81 0) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 33484595-3c25-45f9-937f-8a9f9b45273f)
)
(fp_line (start 0.54 -1.37) (end 7.08 -1.37)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp cd328561-ab02-44e2-9a6b-0dc84eafb51c))
(fp_line (start 0.54 -1.04) (end 0.54 -1.37)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 817803ac-d6c2-4edb-8eec-2fba23c683cb))
(fp_line (start 0.54 1.04) (end 0.54 1.37)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp a6f33b23-4923-4bb6-ad91-1794d297ed09))
(fp_line (start 0.54 1.37) (end 7.08 1.37)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 46fcfe49-d099-4f2a-9916-a2f180b40dc4))
(fp_line (start 7.08 -1.37) (end 7.08 -1.04)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp af777532-0280-4be8-bd66-5ef9c5b3ad07))
(fp_line (start 7.08 1.37) (end 7.08 1.04)