forked from hatlabs/SH-ESP32-hardware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
power-input.kicad_sch
1875 lines (1824 loc) · 68.6 KB
/
power-input.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 cab40ddc-7a21-41bd-ad39-336e20634e9d)
(paper "A4")
(title_block
(title "Sailor Hat with ESP32")
(date "2022-10-26")
(rev "2.0.2")
(company "Hat Labs Ltd")
(comment 1 "https://creativecommons.org/licenses/by-sa/4.0")
(comment 2 "To view a copy of this license, visit ")
(comment 3 "SH-ESP32 is licensed under CC BY-SA 4.0.")
)
(lib_symbols
(symbol "Connector_Generic:Conn_01x02" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (id 0) (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x02" (id 1) (at 0 -5.08 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, 01x02, 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_01x02_1_1"
(rectangle (start -1.27 -2.413) (end 0 -2.667)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 0.127) (end 0 -0.127)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 1.27) (end 1.27 -3.81)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(pin passive line (at -5.08 0 0) (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 0) (length 3.81)
(name "Pin_2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "C" (id 0) (at 0.635 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C" (id 1) (at 0.635 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 0.9652 -3.81 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" "cap capacitor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor" (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_0_1"
(polyline
(pts
(xy -2.032 -0.762)
(xy 2.032 -0.762)
)
(stroke (width 0.508) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -2.032 0.762)
(xy 2.032 0.762)
)
(stroke (width 0.508) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "C_1_1"
(pin passive line (at 0 3.81 270) (length 2.794)
(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 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (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:D_Schottky" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "D" (id 0) (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "D_Schottky" (id 1) (at 0 -2.54 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" "diode Schottky" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Schottky diode" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "D_Schottky_0_1"
(polyline
(pts
(xy 1.27 0)
(xy -1.27 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 1.27)
(xy 1.27 -1.27)
(xy -1.27 0)
(xy 1.27 1.27)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.905 0.635)
(xy -1.905 1.27)
(xy -1.27 1.27)
(xy -1.27 -1.27)
(xy -0.635 -1.27)
(xy -0.635 -0.635)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "D_Schottky_1_1"
(pin passive line (at -3.81 0 0) (length 2.54)
(name "K" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 3.81 0 180) (length 2.54)
(name "A" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:D_TVS" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "D" (id 0) (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "D_TVS" (id 1) (at 0 -2.54 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" "diode TVS thyrector" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Bidirectional transient-voltage-suppression diode" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "D_TVS_0_1"
(polyline
(pts
(xy 1.27 0)
(xy -1.27 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0.508 1.27)
(xy 0 1.27)
(xy 0 -1.27)
(xy -0.508 -1.27)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -2.54 1.27)
(xy -2.54 -1.27)
(xy 2.54 1.27)
(xy 2.54 -1.27)
(xy -2.54 1.27)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "D_TVS_1_1"
(pin passive line (at -3.81 0 0) (length 2.54)
(name "A1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 3.81 0 180) (length 2.54)
(name "A2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:FerriteBead" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "FB" (id 0) (at -3.81 0.635 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "FerriteBead" (id 1) (at 3.81 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" "L ferrite bead inductor filter" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Ferrite bead" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Inductor_* L_* *Ferrite*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "FerriteBead_0_1"
(polyline
(pts
(xy 0 -1.27)
(xy 0 -1.2192)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 1.27)
(xy 0 1.2954)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -2.7686 0.4064)
(xy -1.7018 2.2606)
(xy 2.7686 -0.3048)
(xy 1.6764 -2.159)
(xy -2.7686 0.4064)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "FerriteBead_1_1"
(pin passive line (at 0 3.81 270) (length 2.54)
(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 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:L" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "L" (id 0) (at -1.27 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "L" (id 1) (at 1.905 0 90)
(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" "inductor choke coil reactor magnetic" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Inductor" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Choke_* *Coil* Inductor_* L_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "L_0_1"
(arc (start 0 -2.54) (mid 0.635 -1.905) (end 0 -1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0 -1.27) (mid 0.635 -0.635) (end 0 0)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0 0) (mid 0.635 0.635) (end 0 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0 1.27) (mid 0.635 1.905) (end 0 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "L_1_1"
(pin passive line (at 0 3.81 270) (length 1.27)
(name "1" (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 "2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:Polyfuse" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "F" (id 0) (at -2.54 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Polyfuse" (id 1) (at 2.54 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 1.27 -5.08 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "resettable fuse PTC PPTC polyfuse polyswitch" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resettable fuse, polymeric positive temperature coefficient" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "*polyfuse* *PTC*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Polyfuse_0_1"
(rectangle (start -0.762 2.54) (end 0.762 -2.54)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0 -2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.524 2.54)
(xy -1.524 1.524)
(xy 1.524 -1.524)
(xy 1.524 -2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "Polyfuse_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 "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 "Device:R_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "R" (id 0) (at 0.762 0.508 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "R_Small" (id 1) (at 0.762 -1.016 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" "R resistor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor, small symbol" (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_Small_0_1"
(rectangle (start -0.762 1.778) (end 0.762 -1.778)
(stroke (width 0.2032) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "R_Small_1_1"
(pin passive line (at 0 2.54 270) (length 0.762)
(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 0.762)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "SH-ESP32:XL1509-ADJE1" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at 1.27 10.795 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "XL1509-ADJE1" (id 1) (at 7.62 8.89 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at -3.81 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at -3.81 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "XL1509-ADJE1_0_1"
(rectangle (start -6.35 6.985) (end 6.35 -6.35)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type background))
)
)
(symbol "XL1509-ADJE1_1_1"
(pin power_in line (at -8.89 5.08 0) (length 2.54)
(name "IN" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin power_out line (at 8.89 5.08 180) (length 2.54)
(name "SW" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at 8.89 0 180) (length 2.54)
(name "FB" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin input line (at -8.89 0 0) (length 2.54)
(name "~{EN}" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -3.81 -8.89 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -1.27 -8.89 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 1.27 -8.89 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 3.81 -8.89 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:+3.3V" (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" "+3.3V" (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" "power-flag" (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 \"+3.3V\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+3.3V_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 "+3.3V_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: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" "power-flag" (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 "power:PWR_FLAG" (power) (pin_numbers hide) (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "#FLG" (id 0) (at 0 1.905 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "PWR_FLAG" (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" "power-flag" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Special symbol for telling ERC where power comes from" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "PWR_FLAG_0_0"
(pin power_out line (at 0 0 90) (length 0)
(name "pwr" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
(symbol "PWR_FLAG_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 1.27)
(xy -1.016 1.905)
(xy 0 2.54)
(xy 1.016 1.905)
(xy 0 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
)
)
(junction (at 261.62 107.95) (diameter 0) (color 0 0 0 0)
(uuid 1b7e982a-2932-4f80-8152-ce96144c266c)
)
(junction (at 165.1 121.92) (diameter 0) (color 0 0 0 0)
(uuid 2799a54b-ec27-456e-ae92-1a842ad9843c)
)
(junction (at 241.3 127) (diameter 0) (color 0 0 0 0)
(uuid 3336b1d1-c8aa-49d6-a5f1-ac1467510503)
)
(junction (at 158.75 121.92) (diameter 0) (color 0 0 0 0)
(uuid 354b8a5b-138c-4f2f-8300-726321cf9060)
)
(junction (at 90.17 121.92) (diameter 0) (color 0 0 0 0)
(uuid 52ddc23e-bf38-4225-99d2-f6c4bb5622a5)
)
(junction (at 241.3 107.95) (diameter 0) (color 0 0 0 0)
(uuid 5652246c-55bd-49e7-8846-b13c512e72f9)
)
(junction (at 142.24 121.92) (diameter 0) (color 0 0 0 0)
(uuid 723f76e1-96e9-4a07-982a-223398a7132e)
)
(junction (at 133.35 121.92) (diameter 0) (color 0 0 0 0)
(uuid 7f77cc31-d203-4bad-91b0-80059377e8d6)
)
(junction (at 179.07 135.89) (diameter 0) (color 0 0 0 0)
(uuid 8200947d-b6e3-4ecc-9a57-237f043c6d2f)
)
(junction (at 207.01 107.95) (diameter 0) (color 0 0 0 0)
(uuid 8541f415-d857-46af-8297-da10a5f2c05b)
)
(junction (at 181.61 135.89) (diameter 0) (color 0 0 0 0)
(uuid 985a3801-784d-4b5a-84ec-4832e066ab9b)
)
(junction (at 165.1 53.34) (diameter 0) (color 0 0 0 0)
(uuid 9fbd624f-8ecd-4047-bbce-fcc7c2f25a13)
)
(junction (at 267.97 107.95) (diameter 0) (color 0 0 0 0)
(uuid a4198779-2784-4e36-9bd6-3b4b1e88fab2)
)
(junction (at 229.87 107.95) (diameter 0) (color 0 0 0 0)
(uuid bad69009-4ff9-4de9-9200-a607ba97cf37)
)
(junction (at 121.92 53.34) (diameter 0) (color 0 0 0 0)
(uuid bfd5e012-b77f-49da-9ad8-c64a8c538c8c)
)
(junction (at 184.15 135.89) (diameter 0) (color 0 0 0 0)
(uuid c4e743ae-4e8d-4fe1-9011-80fd71d5796f)
)
(junction (at 96.52 121.92) (diameter 0) (color 0 0 0 0)
(uuid d99cb68a-9f0d-4273-b640-6eabc861dcd9)
)
(junction (at 111.76 121.92) (diameter 0) (color 0 0 0 0)
(uuid f8b41a7c-9c97-47da-98a1-f3ccc0f10002)
)
(junction (at 137.16 53.34) (diameter 0) (color 0 0 0 0)
(uuid f9cf9d25-94ca-4169-b7de-07c1cc4231f2)
)
(junction (at 229.87 127) (diameter 0) (color 0 0 0 0)
(uuid fb969eac-6be0-42e3-ba19-b3e7256aa941)
)
(junction (at 146.05 53.34) (diameter 0) (color 0 0 0 0)
(uuid fcd7d42c-9267-48f9-94c2-acd214af56f9)
)
(wire (pts (xy 165.1 116.84) (xy 165.1 121.92))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 083fe946-e982-48e1-ad71-6cbbb6edfd5a)
)
(wire (pts (xy 40.64 35.56) (xy 165.1 35.56))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0aa54775-a7c7-4189-b56f-2abb14b4df0b)
)
(wire (pts (xy 121.92 53.34) (xy 137.16 53.34))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 12976ac1-311e-4b65-8ebc-06091e04731b)
)
(wire (pts (xy 181.61 135.89) (xy 179.07 135.89))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 17e8c067-290d-4cee-9625-906383d7553a)
)
(wire (pts (xy 90.17 104.14) (xy 90.17 121.92))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1b2df7f2-7b7c-4165-9a0d-79be278b12a3)
)
(wire (pts (xy 52.07 50.8) (xy 49.53 50.8))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 25ad484c-63e1-46a8-bf2c-d6e5e6e55924)
)
(wire (pts (xy 171.45 127) (xy 173.99 127))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 26fed872-6e3c-4162-8391-6547de806a72)
)
(wire (pts (xy 90.17 121.92) (xy 96.52 121.92))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2a1f0390-355b-40e3-a7b6-e7d6d23e01ad)
)
(polyline (pts (xy 151.13 113.03) (xy 151.13 151.13))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2bfbce2b-2cf6-413e-809b-b69cf8de8e9a)
)
(polyline (pts (xy 151.13 151.13) (xy 104.14 151.13))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2ffa18b0-c4a8-43e6-bcec-bf16677fe239)
)
(wire (pts (xy 116.84 53.34) (xy 121.92 53.34))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 31be5e75-7e21-46e4-9d13-78f336d6162e)
)
(wire (pts (xy 179.07 138.43) (xy 179.07 135.89))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 332b0c50-c1de-4e1b-845c-48531fdd7dcf)
)
(wire (pts (xy 146.05 53.34) (xy 151.13 53.34))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 336441ba-c2e4-4674-a4ba-a15e70b0b283)
)
(wire (pts (xy 142.24 121.92) (xy 158.75 121.92))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3ba35ce6-b95f-4e70-80b3-2e56d00ce980)
)
(wire (pts (xy 96.52 121.92) (xy 111.76 121.92))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3bc33de3-365c-45bb-a185-39f60742879e)
)
(wire (pts (xy 229.87 120.65) (xy 229.87 127))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3bfaacd4-a421-4933-8ffe-cc44df2a1abe)
)
(wire (pts (xy 165.1 35.56) (xy 165.1 53.34))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 441433d8-a61a-4ef4-bdf2-66851c5ef928)
)
(wire (pts (xy 142.24 132.08) (xy 142.24 129.54))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4b2c8a02-cc1e-4d42-a604-6615b2421e1e)
)
(wire (pts (xy 241.3 132.08) (xy 241.3 127))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4d90120f-e732-4029-9d9f-f6edfa1934d5)
)
(wire (pts (xy 137.16 53.34) (xy 146.05 53.34))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4e0c045d-0e14-433c-9da2-cdb96596083e)
)
(wire (pts (xy 207.01 107.95) (xy 201.93 107.95))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4e369f56-4caf-4dde-9d82-7f50a5c4373c)
)
(wire (pts (xy 241.3 107.95) (xy 261.62 107.95))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5154d132-753f-4247-b8a4-5d8b3748a196)
)
(wire (pts (xy 165.1 53.34) (xy 185.42 53.34))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 55840512-6be9-4c71-a361-816be3426ba0)
)
(wire (pts (xy 133.35 133.35) (xy 133.35 129.54))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 57578062-ebf7-4e4f-9365-d328a0893ed3)
)
(wire (pts (xy 201.93 107.95) (xy 201.93 121.92))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5ac42122-bbcc-4bd5-997b-8794c7e18234)
)
(wire (pts (xy 49.53 53.34) (xy 93.98 53.34))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6568ca43-427c-4d24-8dac-d5a461647335)
)
(wire (pts (xy 125.73 121.92) (xy 133.35 121.92))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6bab59a1-f860-43cd-8e19-fe2a27566640)
)
(wire (pts (xy 158.75 121.92) (xy 165.1 121.92))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 71777638-6015-46ca-b332-71712a9354ab)
)
(wire (pts (xy 137.16 57.15) (xy 137.16 53.34))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 76943715-ad93-4abd-8092-bf8490e6213d)
)
(wire (pts (xy 201.93 121.92) (xy 191.77 121.92))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 789d3f5b-3534-4e8a-89c9-ca398e75eeeb)
)
(wire (pts (xy 186.69 135.89) (xy 184.15 135.89))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 78fdcd05-3d58-4071-a3c6-79299fe43086)
)
(wire (pts (xy 142.24 142.24) (xy 142.24 139.7))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7d5f02ea-2f49-443d-b09a-2840b1a5f7fd)
)
(wire (pts (xy 111.76 121.92) (xy 118.11 121.92))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7fbd8474-bfca-4c18-b80b-91ca06661cb1)
)
(wire (pts (xy 241.3 127) (xy 229.87 127))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 80eeb2f6-bfa7-454a-81e6-486d97b61209)
)
(wire (pts (xy 229.87 115.57) (xy 229.87 107.95))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8b7564a2-0f77-4d7a-9dcf-b285521d1809)
)
(wire (pts (xy 267.97 107.95) (xy 276.86 107.95))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 920b2694-781a-45e4-a6c1-7a59cc399023)
)
(wire (pts (xy 173.99 121.92) (xy 165.1 121.92))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 94c88e58-2105-497d-b543-283f49aea620)
)
(wire (pts (xy 158.75 53.34) (xy 165.1 53.34))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9794808f-537c-446b-9d03-a56ce60b80e5)
)
(wire (pts (xy 241.3 120.65) (xy 241.3 127))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9ab07a22-d00d-4631-a7d6-67b4ba457948)
)
(wire (pts (xy 44.45 38.1) (xy 44.45 39.37))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9b282d6d-6bbb-4727-b85c-7b00ccc25fbe)
)
(polyline (pts (xy 104.14 151.13) (xy 104.14 113.03))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a2046139-f264-470d-9ce0-97971b99b57b)
)
(wire (pts (xy 220.98 107.95) (xy 229.87 107.95))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a36f2a6a-fa63-4233-aecd-370bee3ef4ed)
)
(wire (pts (xy 48.26 121.92) (xy 90.17 121.92))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a5340ed1-fbdf-4a23-a6c8-175c9066306c)
)
(wire (pts (xy 184.15 135.89) (xy 181.61 135.89))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ae79d9a0-18ee-433a-b349-5a09b9aaf19b)
)
(wire (pts (xy 121.92 57.15) (xy 121.92 53.34))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b009b0eb-0f85-4729-91e1-917243f7809b)
)
(wire (pts (xy 241.3 107.95) (xy 241.3 115.57))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b60c5a86-ff42-4e07-986a-6288e10d35ae)
)
(wire (pts (xy 207.01 107.95) (xy 213.36 107.95))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b9f3d18a-648d-44c2-9d24-728518eb6bc8)
)
(wire (pts (xy 48.26 104.14) (xy 67.31 104.14))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ba1f99ae-7b2d-4e29-8470-b22021a3b10e)
)
(wire (pts (xy 229.87 127) (xy 191.77 127))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bab8c17d-eabc-413a-9816-cac626549f84)
)
(wire (pts (xy 40.64 38.1) (xy 44.45 38.1))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c02a61ed-8e06-4647-9080-c66dcac3f98a)
)
(wire (pts (xy 241.3 140.97) (xy 241.3 137.16))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c1646c5a-d394-416d-a036-046904fc1a3c)
)
(wire (pts (xy 171.45 138.43) (xy 171.45 127))