-
Notifications
You must be signed in to change notification settings - Fork 0
/
esp12e_devboard.net
1515 lines (1515 loc) · 49.3 KB
/
esp12e_devboard.net
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
(export (version D)
(design
(source D:/Dropbox/EspIt/Schaltplan/esp12e_devboard.sch)
(date "14.11.2015 13:55:35")
(tool "Eeschema 4.0.0-rc1-stable")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title)
(company)
(rev)
(date)
(source esp12e_devboard.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref C1)
(value UWT1E101MCL1GS)
(footprint Custom:UWT1E101MCL1GS)
(libsource (lib device) (part CP1))
(sheetpath (names /) (tstamps /))
(tstamp 562B777C))
(comp (ref C2)
(value CL05A105JQ5NNNC)
(footprint Capacitors_SMD:C_0402)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 562B7937))
(comp (ref U1)
(value MP1470)
(footprint TO_SOT_Packages_SMD:SOT-23-6)
(libsource (lib esp12e) (part MP1470))
(sheetpath (names /) (tstamps /))
(tstamp 562B7CAC))
(comp (ref C5)
(value UWT1E101MCL1GS)
(footprint Custom:UWT1E101MCL1GS)
(libsource (lib device) (part CP1))
(sheetpath (names /) (tstamps /))
(tstamp 562B7E19))
(comp (ref R6)
(value 100k)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 562B7EDE))
(comp (ref C6)
(value CL05A105JQ5NNNC)
(footprint Capacitors_SMD:C_0402)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 562B832A))
(comp (ref L1)
(value NR6028T4R7M)
(footprint Custom:NR6028T4R7M)
(libsource (lib device) (part L_Small))
(sheetpath (names /) (tstamps /))
(tstamp 562B84FB))
(comp (ref R14)
(value 75k)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 562B8A4B))
(comp (ref R17)
(value 40.2k)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 562B8A9F))
(comp (ref R16)
(value 13k)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 562B8ADF))
(comp (ref C7)
(value UWT1E101MCL1GS)
(footprint Custom:UWT1E101MCL1GS)
(libsource (lib device) (part CP1))
(sheetpath (names /) (tstamps /))
(tstamp 562B9323))
(comp (ref IC3)
(value PL2303SA)
(footprint Custom:SOP8)
(libsource (lib esp12e) (part PL2303SA))
(sheetpath (names /) (tstamps /))
(tstamp 562BAF8C))
(comp (ref R34)
(value 1.5k)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 562BC107))
(comp (ref C9)
(value CL05A105JQ5NNNC)
(footprint Capacitors_SMD:C_0402)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 562BC434))
(comp (ref P2)
(value 10118192-0001LF)
(footprint Custom:MicroUSB)
(libsource (lib conn) (part USB_OTG))
(sheetpath (names /) (tstamps /))
(tstamp 562BDA25))
(comp (ref IC4)
(value USBLC6_2SC6)
(footprint Custom:SOT-666)
(libsource (lib esp12e) (part USBLC6_2SC6))
(sheetpath (names /) (tstamps /))
(tstamp 562BF024))
(comp (ref R31)
(value 27)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 562BFFD7))
(comp (ref R32)
(value 27)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 562C0B32))
(comp (ref C10)
(value UWT1E101MCL1GS)
(footprint Custom:UWT1E101MCL1GS)
(libsource (lib device) (part CP1))
(sheetpath (names /) (tstamps /))
(tstamp 562C1EFF))
(comp (ref SD1)
(value SD-MICRO)
(footprint Custom:475710001)
(libsource (lib esp12e) (part SD-MICRO))
(sheetpath (names /) (tstamps /))
(tstamp 562C663A))
(comp (ref JP15)
(value JUMPER)
(footprint Custom:Conn_2)
(libsource (lib device) (part JUMPER))
(sheetpath (names /) (tstamps /))
(tstamp 562D84E6))
(comp (ref R21)
(value 100k)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 562D853F))
(comp (ref R18)
(value 10k)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 562E67E7))
(comp (ref R19)
(value 10k)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 562E6B2E))
(comp (ref C8)
(value CL05A105JQ5NNNC)
(footprint Capacitors_SMD:C_0402)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 562E74FA))
(comp (ref SW4)
(value FSM4JSMA)
(footprint Custom:FSM2JSMA)
(libsource (lib device) (part SW_PUSH))
(sheetpath (names /) (tstamps /))
(tstamp 562E777D))
(comp (ref R20)
(value 1k)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 562E862F))
(comp (ref R12)
(value 400k)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 562E98EB))
(comp (ref R13)
(value 100k)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 562E9D2C))
(comp (ref JP7)
(value JUMPER)
(footprint Custom:Conn_2)
(libsource (lib device) (part JUMPER))
(sheetpath (names /) (tstamps /))
(tstamp 562EE457))
(comp (ref Q3)
(value RSR030N06TL)
(footprint Custom:TSMT3)
(libsource (lib device) (part Q_NMOS_GSD))
(sheetpath (names /) (tstamps /))
(tstamp 562EF63B))
(comp (ref Q2)
(value RSR030N06TL)
(footprint Custom:TSMT3)
(libsource (lib device) (part Q_NMOS_GSD))
(sheetpath (names /) (tstamps /))
(tstamp 562EF741))
(comp (ref R22)
(value 100k)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 562F0541))
(comp (ref R24)
(value 100k)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 562F05E4))
(comp (ref Q1)
(value RSR030N06TL)
(footprint Custom:TSMT3)
(libsource (lib device) (part Q_NMOS_GSD))
(sheetpath (names /) (tstamps /))
(tstamp 562F2D23))
(comp (ref R9)
(value 100k)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 562F41C8))
(comp (ref JP1)
(value JUMPER3)
(footprint Custom:Conn_3)
(libsource (lib device) (part JUMPER3))
(sheetpath (names /) (tstamps /))
(tstamp 562F5AEF))
(comp (ref R3)
(value 74)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 562F9E14))
(comp (ref C4)
(value FCA0805C104M-J2)
(footprint Capacitors_SMD:C_0805)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 562FAD3E))
(comp (ref P1)
(value SJ-3523-SMT-TR)
(footprint Custom:SJ-3523-SMT-TR)
(libsource (lib esp12e) (part 3.5mm_Klinke))
(sheetpath (names /) (tstamps /))
(tstamp 562FD9A7))
(comp (ref SW1)
(value FSM4JSMA)
(footprint Custom:FSM2JSMA)
(libsource (lib device) (part SW_PUSH))
(sheetpath (names /) (tstamps /))
(tstamp 5630639A))
(comp (ref R2)
(value 1k)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 56307884))
(comp (ref R4)
(value 100k)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5630AEDB))
(comp (ref JP2)
(value JUMPER3)
(footprint Custom:Conn_3)
(libsource (lib device) (part JUMPER3))
(sheetpath (names /) (tstamps /))
(tstamp 5630C6D4))
(comp (ref R7)
(value 100k)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5630D3A7))
(comp (ref SW2)
(value FSM4JSMA)
(footprint Custom:FSM2JSMA)
(libsource (lib device) (part SW_PUSH))
(sheetpath (names /) (tstamps /))
(tstamp 5630D916))
(comp (ref R5)
(value 1k)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5630DF16))
(comp (ref LED2)
(value LED_0603)
(footprint LEDs:LED-0603)
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 563100EC))
(comp (ref JP3)
(value JUMPER3)
(footprint Custom:Conn_3)
(libsource (lib device) (part JUMPER3))
(sheetpath (names /) (tstamps /))
(tstamp 56311D58))
(comp (ref SW3)
(value FSM4JSMA)
(footprint Custom:FSM2JSMA)
(libsource (lib device) (part SW_PUSH))
(sheetpath (names /) (tstamps /))
(tstamp 563121D7))
(comp (ref R10)
(value 1k)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 56312803))
(comp (ref R11)
(value 100k)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5631318B))
(comp (ref R8)
(value 1.6k)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 56315DB8))
(comp (ref D3)
(value SK34A-LTP)
(footprint Custom:DO-214AC)
(libsource (lib device) (part D_Schottky))
(sheetpath (names /) (tstamps /))
(tstamp 5631D869))
(comp (ref D1)
(value SK34A-LTP)
(footprint Custom:DO-214AC)
(libsource (lib device) (part D_Schottky))
(sheetpath (names /) (tstamps /))
(tstamp 5631E572))
(comp (ref S1)
(value MCP9700)
(footprint TO_SOT_Packages_SMD:SOT-23)
(libsource (lib esp12e) (part MCP9700))
(sheetpath (names /) (tstamps /))
(tstamp 563247B0))
(comp (ref R23)
(value 10k)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 562D7188))
(comp (ref Q4)
(value 2N7002P)
(footprint TO_SOT_Packages_SMD:SOT-23)
(libsource (lib device) (part Q_NMOS_GSD))
(sheetpath (names /) (tstamps /))
(tstamp 562E229E))
(comp (ref R26)
(value 10k)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 562F54DD))
(comp (ref R30)
(value 10k)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 562FD47D))
(comp (ref R27)
(value 100k)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5631436B))
(comp (ref JP14)
(value JUMPER)
(footprint Custom:Conn_2)
(libsource (lib device) (part JUMPER))
(sheetpath (names /) (tstamps /))
(tstamp 56317AE7))
(comp (ref R29)
(value 10k)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 56319C70))
(comp (ref R35)
(value 10k)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 56328335))
(comp (ref C3)
(value CL21F334ZBFNNNE)
(footprint Capacitors_SMD:C_0805)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 56338DC8))
(comp (ref IC2)
(value LM4906MM/NOPB)
(footprint Custom:VSSOP-8)
(libsource (lib esp12e) (part LM4890M_NOPB))
(sheetpath (names /) (tstamps /))
(tstamp 563394F0))
(comp (ref R1)
(value 100k)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5634184C))
(comp (ref JP9)
(value JUMPER)
(footprint Custom:Conn_2)
(libsource (lib device) (part JUMPER))
(sheetpath (names /) (tstamps /))
(tstamp 5634214B))
(comp (ref I2C1)
(value "IIC Serial 128X64")
(footprint Custom:Conn_4)
(libsource (lib conn) (part CONN_01X04))
(sheetpath (names /) (tstamps /))
(tstamp 5635F2C8))
(comp (ref JP10)
(value JUMPER)
(footprint Custom:Conn_2)
(libsource (lib device) (part JUMPER))
(sheetpath (names /) (tstamps /))
(tstamp 5636B9BE))
(comp (ref JP11)
(value JUMPER)
(footprint Custom:Conn_2)
(libsource (lib device) (part JUMPER))
(sheetpath (names /) (tstamps /))
(tstamp 563720F7))
(comp (ref JP19)
(value 0)
(footprint Resistors_SMD:R_0402)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 562D8C2D))
(comp (ref JP18)
(value 0)
(footprint Resistors_SMD:R_0402)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 562D8D96))
(comp (ref P6)
(value CONN_01X04)
(footprint Custom:Conn_4)
(libsource (lib conn) (part CONN_01X04))
(sheetpath (names /) (tstamps /))
(tstamp 562F0AD9))
(comp (ref P8)
(value CONN_01X04)
(footprint Custom:Conn_4)
(libsource (lib conn) (part CONN_01X04))
(sheetpath (names /) (tstamps /))
(tstamp 562F0E26))
(comp (ref P9)
(value CONN_01X04)
(footprint Custom:Conn_4)
(libsource (lib conn) (part CONN_01X04))
(sheetpath (names /) (tstamps /))
(tstamp 562F12B1))
(comp (ref P10)
(value CONN_01X04)
(footprint Custom:Conn_4)
(libsource (lib conn) (part CONN_01X04))
(sheetpath (names /) (tstamps /))
(tstamp 562F14A0))
(comp (ref VR2)
(value MLVA06V05C270)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part VR))
(sheetpath (names /) (tstamps /))
(tstamp 562FCFAD))
(comp (ref VR4)
(value MLVA06V05C270)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part VR))
(sheetpath (names /) (tstamps /))
(tstamp 562FFAA9))
(comp (ref VR1)
(value MLVA06V05C270)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part VR))
(sheetpath (names /) (tstamps /))
(tstamp 56303614))
(comp (ref P4)
(value CONN_01X03)
(footprint Custom:Conn_3)
(libsource (lib conn) (part CONN_01X03))
(sheetpath (names /) (tstamps /))
(tstamp 56311961))
(comp (ref P5)
(value CONN_01X03)
(footprint Custom:Conn_3)
(libsource (lib conn) (part CONN_01X03))
(sheetpath (names /) (tstamps /))
(tstamp 56311ADA))
(comp (ref P7)
(value CONN_01X03)
(footprint Custom:Conn_3)
(libsource (lib conn) (part CONN_01X03))
(sheetpath (names /) (tstamps /))
(tstamp 56311C17))
(comp (ref VR3)
(value MLVA06V05C270)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part VR))
(sheetpath (names /) (tstamps /))
(tstamp 563164BB))
(comp (ref VR5)
(value MLVA06V05C270)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part VR))
(sheetpath (names /) (tstamps /))
(tstamp 56316634))
(comp (ref VR6)
(value MLVA06V05C270)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part VR))
(sheetpath (names /) (tstamps /))
(tstamp 563167E8))
(comp (ref C11)
(value CL05A105JQ5NNNC)
(footprint Capacitors_SMD:C_0402)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 56324825))
(comp (ref VR7)
(value MLVA06V05C270)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part VR))
(sheetpath (names /) (tstamps /))
(tstamp 5632F07A))
(comp (ref IC5)
(value CD74HC4316PWR)
(footprint Housings_SSOP:TSSOP-16_4.4x5mm_Pitch0.65mm)
(libsource (lib esp12e) (part CD74HC4316PWR))
(sheetpath (names /) (tstamps /))
(tstamp 56303EB5))
(comp (ref D4)
(value UPS115UE3/TR7CT-ND)
(footprint Custom:UPS115UE3_TR7)
(libsource (lib device) (part D_Schottky))
(sheetpath (names /) (tstamps /))
(tstamp 5631CE9C))
(comp (ref U2)
(value AP7215-33YG-13)
(footprint Custom:SOT89-3L)
(libsource (lib esp12e) (part AP7215-33YG-13))
(sheetpath (names /) (tstamps /))
(tstamp 5632ABD5))
(comp (ref D2)
(value UPS115UE3/TR7CT-ND)
(footprint Custom:UPS115UE3_TR7)
(libsource (lib device) (part D_Schottky))
(sheetpath (names /) (tstamps /))
(tstamp 56333EBD))
(comp (ref P11)
(value "S2B-PH-SM4-TB(LF)(SN)")
(footprint Custom:PH_2)
(libsource (lib conn) (part CONN_01X02))
(sheetpath (names /) (tstamps /))
(tstamp 563462B0))
(comp (ref IC1)
(value ESP12E)
(footprint Custom:ESP12E)
(libsource (lib esp12e) (part ESP12E))
(sheetpath (names /) (tstamps /))
(tstamp 562B71A9))
(comp (ref JP8)
(value JUMPER3)
(footprint Custom:Conn_3)
(libsource (lib device) (part JUMPER3))
(sheetpath (names /) (tstamps /))
(tstamp 562FAB30))
(comp (ref JP17)
(value JUMPER)
(footprint Custom:Conn_2)
(libsource (lib device) (part JUMPER))
(sheetpath (names /) (tstamps /))
(tstamp 562F42FB))
(comp (ref IC6)
(value MAX1898EUB42)
(footprint Custom:µMax)
(libsource (lib esp12e) (part MAX1898EUB42))
(sheetpath (names /) (tstamps /))
(tstamp 5630D8AD))
(comp (ref C13)
(value 100n_0603)
(footprint Capacitors_SMD:C_0402)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 56316006))
(comp (ref C12)
(value 100n_0603)
(footprint Capacitors_SMD:C_0402)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 56318861))
(comp (ref LED5)
(value LED_0603)
(footprint LEDs:LED-0603)
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 563127D1))
(comp (ref JP16)
(value JUMPER)
(footprint Custom:Conn_2)
(libsource (lib device) (part JUMPER))
(sheetpath (names /) (tstamps /))
(tstamp 563161EE))
(comp (ref R28)
(value 3.5k)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5631936A))
(comp (ref R25)
(value 11k)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5631A02B))
(comp (ref Q5)
(value FCX717)
(footprint Custom:SOT-223)
(libsource (lib esp12e) (part FCX717))
(sheetpath (names /) (tstamps /))
(tstamp 5632806B))
(comp (ref D5)
(value SK34A-LTP)
(footprint Custom:DO-214AC)
(libsource (lib device) (part D_Schottky))
(sheetpath (names /) (tstamps /))
(tstamp 5632A0E7))
(comp (ref C14)
(value UWT1E101MCL1GS)
(footprint Custom:UWT1E101MCL1GS)
(libsource (lib device) (part CP1))
(sheetpath (names /) (tstamps /))
(tstamp 5632C7BB))
(comp (ref P3)
(value CONN_01X05)
(footprint Custom:Conn_5)
(libsource (lib conn) (part CONN_01X05))
(sheetpath (names /) (tstamps /))
(tstamp 5632F5E1))
(comp (ref JP5)
(value JUMPER)
(footprint Custom:Conn_2)
(libsource (lib device) (part JUMPER))
(sheetpath (names /) (tstamps /))
(tstamp 5633A9F0))
(comp (ref JP4)
(value JUMPER)
(footprint Custom:Conn_2)
(libsource (lib device) (part JUMPER))
(sheetpath (names /) (tstamps /))
(tstamp 5633B056))
(comp (ref JP6)
(value JUMPER)
(footprint Custom:Conn_2)
(libsource (lib device) (part JUMPER))
(sheetpath (names /) (tstamps /))
(tstamp 56340304))
(comp (ref JP12)
(value JUMPER)
(footprint Custom:Conn_2)
(libsource (lib device) (part JUMPER))
(sheetpath (names /) (tstamps /))
(tstamp 5637D436))
(comp (ref JP13)
(value JUMPER3)
(footprint Custom:Conn_3)
(libsource (lib device) (part JUMPER3))
(sheetpath (names /) (tstamps /))
(tstamp 5647C75B))
(comp (ref LED1)
(value LED_0603)
(footprint LEDs:LED-0603)
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 5648DD49))
(comp (ref R33)
(value 1.6k)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5648EA43))
(comp (ref LED3)
(value WS2812B)
(footprint Custom:5050)
(libsource (lib esp12e) (part WS2812B))
(sheetpath (names /) (tstamps /))
(tstamp 5646B226))
(comp (ref LED4)
(value WS2812B)
(footprint Custom:5050)
(libsource (lib esp12e) (part WS2812B))
(sheetpath (names /) (tstamps /))
(tstamp 5646BA65)))
(libparts
(libpart (lib device) (part JUMPER3)
(fields
(field (name Reference) JP)
(field (name Value) JUMPER3))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))
(pin (num 3) (name 3) (type passive))))
(libpart (lib device) (part JUMPER)
(fields
(field (name Reference) JP)
(field (name Value) JUMPER))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib device) (part LED)
(footprints
(fp LED-3MM)
(fp LED-5MM)
(fp LED-10MM)
(fp LED-0603)
(fp LED-0805)
(fp LED-1206)
(fp LEDV))
(fields
(field (name Reference) D)
(field (name Value) LED))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib device) (part L_Small)
(description Inductor)
(footprints
(fp CP*)
(fp SM*))
(fields
(field (name Reference) L)
(field (name Value) L_Small))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib device) (part D_Schottky)
(description "Diode schottky")
(footprints
(fp D-Pak_TO252AA)
(fp Diode_*)
(fp *SingleDiode)
(fp *SingleDiode*)
(fp *_Diode_*))
(fields
(field (name Reference) D)
(field (name Value) D_Schottky))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib esp12e) (part 3.5mm_Klinke)
(fields
(field (name Reference) P)
(field (name Value) 3.5mm_Klinke))
(pins
(pin (num 1) (name ~) (type input))
(pin (num 4) (name ~) (type input))
(pin (num 5) (name ~) (type input))))
(libpart (lib esp12e) (part AP7215-33YG-13)
(fields
(field (name Reference) U)
(field (name Value) AP7215-33YG-13))
(pins
(pin (num 1) (name Gnd) (type passive))
(pin (num 2) (name VIn) (type passive))
(pin (num 3) (name VOut) (type passive))))
(libpart (lib device) (part CP1)
(description "Polarised capacitor")
(footprints
(fp SMD*_Pol)
(fp c_elec*)
(fp C*elec)
(fp TantalC*)
(fp Elko*)
(fp CP*))
(fields
(field (name Reference) C)
(field (name Value) CP1))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib device) (part C)
(description "Unpolarized capacitor")
(footprints
(fp C?)
(fp C_????_*)
(fp C_????)
(fp SMD*_c)
(fp Capacitor*))
(fields
(field (name Reference) C)
(field (name Value) C))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib device) (part SW_PUSH)
(description Button)
(fields
(field (name Reference) SW)
(field (name Value) SW_PUSH))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib device) (part R)
(description Resistor)
(footprints
(fp R_*)
(fp Resistor_*))
(fields
(field (name Reference) R)
(field (name Value) R))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib device) (part Q_NMOS_GSD)
(description "Transistor N-MOSFET (general)")
(fields
(field (name Reference) Q)
(field (name Value) Q_NMOS_GSD))
(pins
(pin (num 1) (name G) (type input))
(pin (num 2) (name S) (type passive))
(pin (num 3) (name D) (type passive))))
(libpart (lib device) (part VR)
(description VARISTANCE)
(fields
(field (name Reference) VR)
(field (name Value) VR))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib esp12e) (part MP1470)
(fields
(field (name Reference) U)
(field (name Value) MP1470))
(pins
(pin (num 1) (name Gnd) (type passive))
(pin (num 2) (name Sw) (type passive))
(pin (num 3) (name In) (type passive))
(pin (num 4) (name Fb) (type input))
(pin (num 5) (name En) (type input))
(pin (num 6) (name Bst) (type output))))
(libpart (lib esp12e) (part USBLC6_2SC6)
(fields
(field (name Reference) IC)
(field (name Value) USBLC6_2SC6))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name GND) (type passive))
(pin (num 3) (name ~) (type passive))
(pin (num 4) (name ~) (type passive))
(pin (num 5) (name VBus) (type passive))
(pin (num 6) (name ~) (type passive))))
(libpart (lib esp12e) (part PL2303SA)
(fields
(field (name Reference) IC)
(field (name Value) PL2303SA))
(pins
(pin (num 1) (name GND) (type passive))
(pin (num 2) (name TxD) (type output))
(pin (num 3) (name VDD_Sig) (type passive))
(pin (num 4) (name RxD) (type input))
(pin (num 5) (name D+) (type BiDi))
(pin (num 6) (name D-) (type BiDi))
(pin (num 7) (name VDD_5V) (type passive))
(pin (num 8) (name VDD_3V3) (type passive))))
(libpart (lib esp12e) (part MAX1898EUB42)
(fields
(field (name Reference) IC)
(field (name Value) MAX1898EUB42))
(pins
(pin (num 1) (name VIn) (type passive))
(pin (num 2) (name Chg) (type output))
(pin (num 3) (name En/Ok) (type input))
(pin (num 4) (name ISet) (type input))
(pin (num 5) (name CT) (type input))
(pin (num 6) (name Rstrt) (type input))
(pin (num 7) (name VBatt) (type passive))
(pin (num 8) (name GND) (type passive))
(pin (num 9) (name Drv) (type output))
(pin (num 10) (name CS) (type output))))
(libpart (lib esp12e) (part CD74HC4316PWR)
(fields
(field (name Reference) IC)
(field (name Value) CD74HC4316PWR))
(pins
(pin (num 1) (name Z1) (type BiDi))
(pin (num 2) (name Y1) (type BiDi))
(pin (num 3) (name Y2) (type BiDi))
(pin (num 4) (name Z2) (type BiDi))
(pin (num 5) (name E2) (type input))
(pin (num 6) (name E3) (type input))
(pin (num 7) (name En) (type input))
(pin (num 8) (name Gnd) (type passive))
(pin (num 9) (name Vee) (type passive))
(pin (num 10) (name Z3) (type BiDi))
(pin (num 11) (name Y3) (type BiDi))
(pin (num 12) (name Y4) (type BiDi))
(pin (num 13) (name Y5) (type BiDi))
(pin (num 14) (name E4) (type input))
(pin (num 15) (name E1) (type input))
(pin (num 16) (name Vcc) (type passive))))
(libpart (lib esp12e) (part SD-MICRO)
(fields
(field (name Reference) SD)
(field (name Value) SD-MICRO))
(pins
(pin (num 1) (name DAT2) (type BiDi))
(pin (num 2) (name DAT3) (type BiDi))
(pin (num 3) (name CMD) (type BiDi))
(pin (num 4) (name VDD) (type BiDi))
(pin (num 5) (name CLK) (type BiDi))
(pin (num 6) (name VSS) (type BiDi))
(pin (num 7) (name DAT0) (type BiDi))
(pin (num 8) (name DAT1) (type BiDi))
(pin (num M1) (name GND) (type BiDi))
(pin (num M2) (name GND) (type BiDi))
(pin (num M3) (name GND) (type BiDi))
(pin (num M4) (name POL) (type BiDi))
(pin (num M5) (name DET) (type BiDi))))
(libpart (lib esp12e) (part MCP9700)
(fields
(field (name Reference) S)
(field (name Value) MCP9700))
(pins
(pin (num 1) (name Vcc) (type input))
(pin (num 2) (name ~) (type input))
(pin (num 3) (name Gnd) (type input))))
(libpart (lib esp12e) (part LM4890M_NOPB)
(fields
(field (name Reference) IC)
(field (name Value) LM4890M_NOPB))
(pins
(pin (num 1) (name En) (type input))
(pin (num 2) (name GND) (type passive))
(pin (num 3) (name Gain) (type input))
(pin (num 4) (name In-) (type input))
(pin (num 5) (name Vo1) (type output))
(pin (num 6) (name Vcc) (type passive))
(pin (num 7) (name GND) (type passive))
(pin (num 8) (name Vo2) (type output))))
(libpart (lib esp12e) (part WS2812B)
(fields
(field (name Reference) LED)
(field (name Value) WS2812B))
(pins
(pin (num 1) (name Vcc) (type passive))
(pin (num 2) (name DOut) (type output))
(pin (num 3) (name Gnd) (type passive))
(pin (num 4) (name DIn) (type input))))
(libpart (lib esp12e) (part ESP12E)
(fields
(field (name Reference) IC)
(field (name Value) ESP12E))
(pins
(pin (num 1) (name RST) (type input))
(pin (num 2) (name ADC/TOUT) (type BiDi))
(pin (num 3) (name EN) (type input))
(pin (num 4) (name GPIO16) (type BiDi))
(pin (num 5) (name GPIO14) (type BiDi))
(pin (num 6) (name GPIO12) (type BiDi))
(pin (num 7) (name GPIO13) (type BiDi))
(pin (num 8) (name VDD) (type passive))
(pin (num 9) (name SD_CMD) (type BiDi))
(pin (num 10) (name SD_D0) (type BiDi))
(pin (num 11) (name SD_D2) (type BiDi))
(pin (num 12) (name SD_D3) (type BiDi))
(pin (num 13) (name SD_D1) (type BiDi))
(pin (num 14) (name SD_CLK) (type BiDi))
(pin (num 15) (name GND) (type passive))
(pin (num 16) (name GPIO15/BOOTSEL0) (type BiDi))
(pin (num 17) (name GPIO2/BOOTSEL1) (type BiDi))
(pin (num 18) (name GPIO0/BOOTSEL2) (type BiDi))
(pin (num 19) (name GPIO4) (type BiDi))
(pin (num 20) (name GPIO5) (type BiDi))
(pin (num 21) (name RxD) (type input))
(pin (num 22) (name TxD) (type output))))
(libpart (lib esp12e) (part FCX717)
(description "45V Vce, 0.1A Ic, PNP Small Signal Transistor, TO-92")
(docs http://www.fairchildsemi.com/ds/BC/BC557.pdf)
(footprints