-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMHI ESP.kicad_sch
2084 lines (2033 loc) · 81.5 KB
/
MHI ESP.kicad_sch
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_sch (version 20211123) (generator eeschema)
(uuid 205ee8ca-bf2c-449e-8c68-4b670c5cdcf0)
(paper "A4")
(lib_symbols
(symbol "Connector:Conn_01x05_Male" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (id 0) (at 0 7.62 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x05_Male" (id 1) (at 0 -7.62 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "connector" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connector, single row, 01x05, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_01x05_Male_1_1"
(polyline
(pts
(xy 1.27 -5.08)
(xy 0.8636 -5.08)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 -2.54)
(xy 0.8636 -2.54)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 0)
(xy 0.8636 0)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 2.54)
(xy 0.8636 2.54)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 5.08)
(xy 0.8636 5.08)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 0.8636 -4.953) (end 0 -5.207)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type outline))
)
(rectangle (start 0.8636 -2.413) (end 0 -2.667)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type outline))
)
(rectangle (start 0.8636 0.127) (end 0 -0.127)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type outline))
)
(rectangle (start 0.8636 2.667) (end 0 2.413)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type outline))
)
(rectangle (start 0.8636 5.207) (end 0 4.953)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type outline))
)
(pin passive line (at 5.08 5.08 180) (length 3.81)
(name "Pin_1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 2.54 180) (length 3.81)
(name "Pin_2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 0 180) (length 3.81)
(name "Pin_3" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 -2.54 180) (length 3.81)
(name "Pin_4" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 -5.08 180) (length 3.81)
(name "Pin_5" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:C_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "C" (id 0) (at 0.254 1.778 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C_Small" (id 1) (at 0.254 -2.032 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "capacitor cap" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor, small symbol" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_Small_0_1"
(polyline
(pts
(xy -1.524 -0.508)
(xy 1.524 -0.508)
)
(stroke (width 0.3302) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.524 0.508)
(xy 1.524 0.508)
)
(stroke (width 0.3048) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "C_Small_1_1"
(pin passive line (at 0 2.54 270) (length 2.032)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -2.54 90) (length 2.032)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "R" (id 0) (at 2.032 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R" (id 1) (at 0 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at -1.778 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "R res resistor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_0_1"
(rectangle (start -1.016 -2.54) (end 1.016 2.54)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "R_1_1"
(pin passive line (at 0 3.81 270) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "MCU_Module:WeMos_D1_mini" (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at 3.81 19.05 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "WeMos_D1_mini" (id 1) (at 1.27 -19.05 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Module:WEMOS_D1_mini_light" (id 2) (at 0 -29.21 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "https://wiki.wemos.cc/products:d1:d1_mini#documentation" (id 3) (at -46.99 -29.21 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "ESP8266 WiFi microcontroller ESP8266EX" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "32-bit microcontroller module with WiFi" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "WEMOS*D1*mini*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "WeMos_D1_mini_1_1"
(rectangle (start -7.62 17.78) (end 7.62 -17.78)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(pin input line (at -10.16 10.16 0) (length 2.54)
(name "~{RST}" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -20.32 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 10.16 0 180) (length 2.54)
(name "D4" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 10.16 2.54 180) (length 2.54)
(name "D3" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 10.16 5.08 180) (length 2.54)
(name "SDA/D2" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 10.16 7.62 180) (length 2.54)
(name "SCL/D1" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 2.54 0) (length 2.54)
(name "RX" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin output line (at -10.16 0 0) (length 2.54)
(name "TX" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin input line (at 10.16 12.7 180) (length 2.54)
(name "A0" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 10.16 10.16 180) (length 2.54)
(name "D0" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 10.16 -2.54 180) (length 2.54)
(name "SCK/D5" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 10.16 -5.08 180) (length 2.54)
(name "MISO/D6" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 10.16 -7.62 180) (length 2.54)
(name "MOSI/D7" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 10.16 -10.16 180) (length 2.54)
(name "CS/D8" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin power_out line (at 2.54 20.32 270) (length 2.54)
(name "3V3" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -2.54 20.32 270) (length 2.54)
(name "5V" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Regulator_Linear:LD1117S50TR_SOT223" (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at -3.81 3.175 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "LD1117S50TR_SOT223" (id 1) (at 0 3.175 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Package_TO_SOT_SMD:SOT-223-3_TabPin2" (id 2) (at 0 5.08 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://www.st.com/st-web-ui/static/active/en/resource/technical/document/datasheet/CD00000544.pdf" (id 3) (at 2.54 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "REGULATOR LDO 5.0V" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "800mA Fixed Low Drop Positive Voltage Regulator, Fixed Output 5.0V, SOT-223" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "SOT?223*TabPin2*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "LD1117S50TR_SOT223_0_1"
(rectangle (start -5.08 -5.08) (end 5.08 1.905)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
)
(symbol "LD1117S50TR_SOT223_1_1"
(pin power_in line (at 0 -7.62 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin power_out line (at 7.62 0 180) (length 2.54)
(name "VO" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -7.62 0 0) (length 2.54)
(name "VI" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Transistor_FET:BSS138" (pin_names hide) (in_bom yes) (on_board yes)
(property "Reference" "Q" (id 0) (at 5.08 1.905 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "BSS138" (id 1) (at 5.08 0 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Package_TO_SOT_SMD:SOT-23" (id 2) (at 5.08 -1.905 0)
(effects (font (size 1.27 1.27) italic) (justify left) hide)
)
(property "Datasheet" "https://www.onsemi.com/pub/Collateral/BSS138-D.PDF" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "ki_keywords" "N-Channel MOSFET" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "50V Vds, 0.22A Id, N-Channel MOSFET, SOT-23" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "SOT?23*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "BSS138_0_1"
(polyline
(pts
(xy 0.254 0)
(xy -2.54 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0.254 1.905)
(xy 0.254 -1.905)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0.762 -1.27)
(xy 0.762 -2.286)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0.762 0.508)
(xy 0.762 -0.508)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0.762 2.286)
(xy 0.762 1.27)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 2.54 2.54)
(xy 2.54 1.778)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 2.54 -2.54)
(xy 2.54 0)
(xy 0.762 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0.762 -1.778)
(xy 3.302 -1.778)
(xy 3.302 1.778)
(xy 0.762 1.778)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.016 0)
(xy 2.032 0.381)
(xy 2.032 -0.381)
(xy 1.016 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
(polyline
(pts
(xy 2.794 0.508)
(xy 2.921 0.381)
(xy 3.683 0.381)
(xy 3.81 0.254)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 3.302 0.381)
(xy 2.921 -0.254)
(xy 3.683 -0.254)
(xy 3.302 0.381)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(circle (center 1.651 0) (radius 2.794)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(circle (center 2.54 -1.778) (radius 0.254)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
(circle (center 2.54 1.778) (radius 0.254)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
)
(symbol "BSS138_1_1"
(pin input line (at -5.08 0 0) (length 2.54)
(name "G" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 2.54 -5.08 90) (length 2.54)
(name "S" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 2.54 5.08 270) (length 2.54)
(name "D" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:+12V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+12V" (id 1) (at 0 3.556 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "global power" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"+12V\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+12V_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "+12V_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+12V" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:+3V3" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3V3" (id 1) (at 0 3.556 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "global power" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"+3V3\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+3V3_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "+3V3_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+3V3" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:+5V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+5V" (id 1) (at 0 3.556 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "global power" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"+5V\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+5V_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "+5V_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+5V" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "global power" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "GND_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 -1.27)
(xy 1.27 -1.27)
(xy 0 -2.54)
(xy -1.27 -1.27)
(xy 0 -1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "GND_1_1"
(pin power_in line (at 0 0 270) (length 0) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "wago1:2060-451{slash}998-404" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "X" (id 0) (at -10.16 6.35 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "Value" "2060-451{slash}998-404" (id 1) (at -10.16 -8.89 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "Footprint" "P-2060-451/998-404" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "2060-451{slash}998-404_0_0"
(rectangle (start -10.16 -3.81) (end 10.16 3.81)
(stroke (width 0.2) (type default) (color 0 0 0 0))
(fill (type background))
)
(pin bidirectional inverted (at 2.54 0 0) (length 2.54)
(name "~" (effects (font (size 1.016 1.016))))
(number "L1.1" (effects (font (size 1.016 1.016))))
)
(pin bidirectional inverted (at -5.08 0 0) (length 2.54)
(name "~" (effects (font (size 1.016 1.016))))
(number "L1.2" (effects (font (size 1.016 1.016))))
)
)
)
)
(junction (at 134.62 44.45) (diameter 0) (color 0 0 0 0)
(uuid 10b244f1-ac1f-4eab-bbcb-1ec10f7b0702)
)
(junction (at 154.94 140.97) (diameter 0) (color 0 0 0 0)
(uuid 39cb2ce3-b8cf-4bd8-93c3-fe5c726bd8d2)
)
(junction (at 154.94 54.61) (diameter 0) (color 0 0 0 0)
(uuid 3e862778-948f-4d87-a878-c6cacbbf0d9f)
)
(junction (at 134.62 87.63) (diameter 0) (color 0 0 0 0)
(uuid 4be228d2-ba86-435b-a246-53a5681dbfe0)
)
(junction (at 97.79 55.88) (diameter 0) (color 0 0 0 0)
(uuid 5ad92b77-739f-4006-b41b-495ace2d236f)
)
(junction (at 154.94 66.04) (diameter 0) (color 0 0 0 0)
(uuid 65cc0a8b-2d1c-443e-b1fe-8e38707d3f75)
)
(junction (at 134.62 119.38) (diameter 0) (color 0 0 0 0)
(uuid 68ea8c4b-83d6-4c90-b56d-6e72f38143fe)
)
(junction (at 154.94 97.79) (diameter 0) (color 0 0 0 0)
(uuid 85191650-d742-4c21-8930-11d07f26b318)
)
(junction (at 134.62 130.81) (diameter 0) (color 0 0 0 0)
(uuid 96a661c5-d4c1-4546-bbc9-7175823602e1)
)
(junction (at 215.9 91.44) (diameter 0) (color 0 0 0 0)
(uuid 9a9bcddc-ced2-4ca9-ae94-f9ae90656f71)
)
(junction (at 134.62 76.2) (diameter 0) (color 0 0 0 0)
(uuid 9dfe42d3-32d7-4473-a881-0561a9f535c5)
)
(junction (at 134.62 54.61) (diameter 0) (color 0 0 0 0)
(uuid a9dbb8b1-a0e5-4d6d-8543-f51156954275)
)
(junction (at 154.94 119.38) (diameter 0) (color 0 0 0 0)
(uuid b469cba6-97f0-4437-ac57-319f039b4e3a)
)
(junction (at 154.94 76.2) (diameter 0) (color 0 0 0 0)
(uuid be8f3979-2e42-41b6-812c-f60c2782830b)
)
(junction (at 134.62 109.22) (diameter 0) (color 0 0 0 0)
(uuid c9fe197d-5ee3-4aa4-8329-4ef5eb5ff459)
)
(junction (at 134.62 66.04) (diameter 0) (color 0 0 0 0)
(uuid cafc558c-b5a1-404b-8e37-e45d9c3c9dc0)
)
(junction (at 134.62 97.79) (diameter 0) (color 0 0 0 0)
(uuid d1b07a6e-98d0-4a83-9bee-04b43a680d0c)
)
(junction (at 215.9 106.68) (diameter 0) (color 0 0 0 0)
(uuid d984d3bb-1c2f-437e-8856-4aefbc857429)
)
(junction (at 134.62 140.97) (diameter 0) (color 0 0 0 0)
(uuid f24a1124-bb66-4acb-8773-15da19493b81)
)
(no_connect (at 92.71 104.14) (uuid 1cf09a1a-c673-4925-9bc6-638d6569d896))
(no_connect (at 72.39 104.14) (uuid 2ec2369d-9ec7-4dfd-999f-f77aed4b53b0))
(no_connect (at 92.71 91.44) (uuid 34e75f37-7625-4f22-b0f5-6e8b7e21fcb6))
(no_connect (at 92.71 114.3) (uuid 938d84c3-2b05-470c-bb1a-fe1ad740d386))
(no_connect (at 92.71 93.98) (uuid a0e01e86-4280-4c3d-b786-bda4674fbf2d))
(no_connect (at 72.39 101.6) (uuid bb1ef09b-4a4c-400a-b77d-384491cfa55a))
(no_connect (at 92.71 101.6) (uuid dc3175db-0f64-46b5-a6d8-5c2c2b1a159f))
(no_connect (at 72.39 93.98) (uuid f094eaf1-3485-411c-a95b-7ee5268ad4c4))
(wire (pts (xy 95.25 106.68) (xy 92.71 106.68))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 03dede55-b2d6-43bc-9203-4189dc295e42)
)
(wire (pts (xy 134.62 109.22) (xy 134.62 110.49))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 04e29409-4373-4180-9eb0-bbcc2b755c20)
)
(wire (pts (xy 139.7 140.97) (xy 134.62 140.97))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 05e69ebe-c4b8-4254-8951-a85cc3ef6a5a)
)
(wire (pts (xy 134.62 119.38) (xy 129.54 119.38))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0c5890c8-7b9d-483b-b3ba-112378aa30b3)
)
(wire (pts (xy 134.62 140.97) (xy 134.62 139.7))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0cd470c2-fbd6-415f-8539-21c0aeb5a001)
)
(wire (pts (xy 144.78 111.76) (xy 144.78 109.22))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0d3b07bd-8e72-4223-bf9a-0bba4fccc6fe)
)
(wire (pts (xy 214.63 59.69) (xy 203.2 59.69))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0e38edee-f4f5-484c-8cb0-beaa05557e5f)
)
(wire (pts (xy 134.62 130.81) (xy 134.62 132.08))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 12b5fa9f-bb85-437e-bcd7-1e711c23b6e5)
)
(wire (pts (xy 67.31 52.07) (xy 67.31 55.88))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 14f2f53f-2b94-4bd1-bbd4-998b0a1f2c9c)
)
(wire (pts (xy 95.25 111.76) (xy 92.71 111.76))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1a6be8ee-20dc-47d0-bd85-561ec4c1b52a)
)
(wire (pts (xy 154.94 54.61) (xy 154.94 53.34))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1aa04f51-ede7-4640-8350-8606145ba349)
)
(wire (pts (xy 82.55 127) (xy 82.55 124.46))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1e064388-5e19-499f-a163-547285d858cf)
)
(wire (pts (xy 134.62 54.61) (xy 129.54 54.61))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 201562e8-7dd8-4a7c-bb46-eed791f8a11e)
)
(wire (pts (xy 134.62 44.45) (xy 134.62 45.72))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2113b382-5f32-4d72-a8ad-e5f6513a21a1)
)
(wire (pts (xy 149.86 97.79) (xy 154.94 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 22921c76-ba7e-4925-a414-2277c3d01426)
)
(wire (pts (xy 139.7 97.79) (xy 134.62 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 229267db-c959-4e31-88f5-8afc5a6a5bee)
)
(wire (pts (xy 95.25 99.06) (xy 92.71 99.06))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2e0b74a2-899a-4e25-b383-f257b86f5ebc)
)
(wire (pts (xy 215.9 91.44) (xy 223.52 91.44))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 31db6229-dffd-4c95-ac54-b82ac5d7f8a7)
)
(wire (pts (xy 82.55 64.77) (xy 82.55 63.5))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 390d8b82-b2fe-4087-93a2-a250f9bdd311)
)
(wire (pts (xy 90.17 55.88) (xy 97.79 55.88))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3f2d153e-1ac7-4aec-bf25-dfaf52bd48f0)
)
(wire (pts (xy 97.79 60.96) (xy 97.79 64.77))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 41a6186f-60ee-4007-bccd-be23ca77c5c3)
)
(wire (pts (xy 134.62 54.61) (xy 134.62 53.34))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4b0f5432-8a1f-44c6-9b09-3c148983467e)
)
(wire (pts (xy 134.62 76.2) (xy 134.62 74.93))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5c8f9c96-4187-4d30-b82a-8818be52cb67)
)
(wire (pts (xy 214.63 64.77) (xy 212.09 64.77))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6114bec6-3254-4c36-8dc7-5ef698ad2c20)
)
(wire (pts (xy 144.78 90.17) (xy 144.78 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 628c160c-283b-4448-b61c-80e40e6084d5)
)
(wire (pts (xy 139.7 76.2) (xy 134.62 76.2))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6674702b-5776-4b43-a8be-4f32b08bf7c1)
)
(wire (pts (xy 92.71 96.52) (xy 99.06 96.52))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6ab8ce42-ec1e-44df-a2ec-2167aeb73926)
)
(wire (pts (xy 154.94 97.79) (xy 160.02 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6be634fa-86b2-4547-828e-faffef622f46)
)
(wire (pts (xy 215.9 106.68) (xy 223.52 106.68))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6bec054d-f4b9-4b4f-a2d8-db4a1c37bbcd)
)
(wire (pts (xy 144.78 44.45) (xy 134.62 44.45))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7b7ad9d0-3421-4d36-862c-40275c98cf1e)
)
(wire (pts (xy 144.78 66.04) (xy 134.62 66.04))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 82875c85-c590-4014-8b92-b7ff0c3a145e)
)
(wire (pts (xy 208.28 62.23) (xy 214.63 62.23))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 856ef62e-fc69-4cdd-b9bd-a01b1c590361)
)
(wire (pts (xy 199.39 106.68) (xy 215.9 106.68))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 86889a80-3efc-4c81-9e71-c8e1861b748d)
)
(wire (pts (xy 154.94 88.9) (xy 154.94 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 874ffb8a-2542-435b-8e0c-b2d45c983125)
)
(wire (pts (xy 149.86 54.61) (xy 154.94 54.61))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 88519468-ad19-49ce-8ec5-63b0feaf3b34)
)
(wire (pts (xy 154.94 45.72) (xy 154.94 44.45))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8db24aa8-98f0-4286-84e5-3812135247c9)
)
(wire (pts (xy 144.78 130.81) (xy 134.62 130.81))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 93dbb451-ea97-4bf2-b0ba-6729fbf9b264)
)
(wire (pts (xy 154.94 119.38) (xy 160.02 119.38))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 94e30a52-1432-4062-9a05-b3446c7feefc)
)
(wire (pts (xy 144.78 133.35) (xy 144.78 130.81))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9659226a-772e-4c4d-80da-696fe0d93f82)
)
(wire (pts (xy 80.01 83.82) (xy 80.01 81.28))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9c875247-7871-4459-816c-88ee51decac2)
)
(wire (pts (xy 154.94 97.79) (xy 154.94 96.52))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a0c25e64-505c-4d9d-a0c5-67a4c9deea36)
)
(wire (pts (xy 139.7 119.38) (xy 134.62 119.38))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a1d97c83-8ae8-4a92-9160-90b4e1869545)
)
(wire (pts (xy 212.09 64.77) (xy 212.09 67.31))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a9195b29-439c-4187-a210-ca1b8811b29d)
)
(wire (pts (xy 67.31 55.88) (xy 74.93 55.88))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid af7d8195-a1d8-423d-a500-e2564074684b)
)
(wire (pts (xy 134.62 76.2) (xy 129.54 76.2))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid afe528a5-0a85-43db-b00e-efba639285a4)
)
(wire (pts (xy 149.86 119.38) (xy 154.94 119.38))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b9e20fbe-307c-4d65-be22-d69e1936f143)
)
(wire (pts (xy 149.86 140.97) (xy 154.94 140.97))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid baf299d6-a93e-47fb-8594-0afc3aa98939)
)
(wire (pts (xy 214.63 54.61) (xy 212.09 54.61))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bed17120-42bd-46a5-a1a6-8271baab4e03)
)
(wire (pts (xy 212.09 54.61) (xy 212.09 52.07))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c025d755-ae83-418e-a387-7796762dc6db)
)
(wire (pts (xy 134.62 140.97) (xy 129.54 140.97))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c1ac701e-73cb-4565-a9a0-dc8a88b99933)
)
(wire (pts (xy 200.66 91.44) (xy 215.9 91.44))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c25ed816-c461-4e28-84ae-8edec01e82a5)
)
(wire (pts (xy 134.62 97.79) (xy 134.62 96.52))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c754e8e8-d352-4704-afbf-652e84e0002a)
)
(wire (pts (xy 208.28 57.15) (xy 214.63 57.15))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c9630433-2309-43de-91d4-c636a59b7c41)
)
(wire (pts (xy 134.62 97.79) (xy 129.54 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ca54741c-888f-4627-8808-ee18fffcc647)
)
(wire (pts (xy 144.78 46.99) (xy 144.78 44.45))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cc3cbe9f-0914-4d69-a655-bafe459467ff)
)
(wire (pts (xy 97.79 55.88) (xy 97.79 52.07))