forked from Pakue95/VFD_Watch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVFD_Watch.net
1229 lines (1229 loc) · 44.8 KB
/
VFD_Watch.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 /Users/pakue/Dropbox/Projekte/VFD_Watch/VFD_Watch.sch)
(date "2018 November 23, Friday 18:17:26")
(tool "Eeschema (6.0.0-rc1-dev-853-g5bbc2d74a)")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title)
(company)
(rev)
(date)
(source VFD_Watch.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 2) (name "/VFD IO/") (tstamps /5C6CC728/)
(title_block
(title)
(company)
(rev)
(date)
(source VFD_IO.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref U5)
(value MCP1663)
(footprint Package_TO_SOT_SMD:TSOT-23-5)
(libsource (lib VFD_Components) (part MCP1663) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5BE4B39A))
(comp (ref D1)
(value "D_Schottky 40V 1A")
(footprint Diode_SMD:D_SOD-323)
(datasheet ~)
(libsource (lib Device) (part D_Schottky) (description "Schottky diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5BE4D815))
(comp (ref L2)
(value 10uH)
(footprint Inductor_SMD:L_Taiyo-Yuden_MD-5050)
(datasheet ~)
(libsource (lib Device) (part L) (description Inductor))
(sheetpath (names /) (tstamps /))
(tstamp 5BE53313))
(comp (ref R10)
(value 1.05M)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5BE5B4DC))
(comp (ref R11)
(value 56k)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5BE5C9B1))
(comp (ref C16)
(value 4.7uF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5BE65D7C))
(comp (ref C17)
(value 4.7uF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5BE67F13))
(comp (ref C12)
(value 4.7uF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5BE75CDC))
(comp (ref C11)
(value 4.7uF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5BE77FA3))
(comp (ref U3)
(value MP3120)
(footprint Package_TO_SOT_SMD:TSOT-23-6)
(libsource (lib VFD_Components) (part MP3120) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5BE9A0C2))
(comp (ref C5)
(value 4.7uF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5BEB8560))
(comp (ref C2)
(value 4.7uF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5BEBA6B9))
(comp (ref R7)
(value 1M)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5BEC803F))
(comp (ref R8)
(value 640k)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5BECCF27))
(comp (ref C14)
(value 4.7uF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5BEE5143))
(comp (ref C15)
(value 4.7uF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5BEE8D6E))
(comp (ref U6)
(value ESP32-WROOM)
(footprint ESP32-footprints-Lib:ESP32-WROOM)
(libsource (lib ESP32-footprints-Shem-Lib) (part ESP32-WROOM) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5BF01497))
(comp (ref U4)
(value FT231XS)
(footprint Package_SO:SSOP-20_3.9x8.7mm_P0.635mm)
(datasheet http://www.ftdichip.com/Products/ICs/FT231X.html)
(libsource (lib Interface_USB) (part FT231XS) (description "Full Speed USB to Full Handshake UART, SSOP-20"))
(sheetpath (names /) (tstamps /))
(tstamp 5BE511C0))
(comp (ref C13)
(value 1uF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5BE81708))
(comp (ref L1)
(value 10uH)
(footprint Inductor_SMD:L_Taiyo-Yuden_MD-5050)
(datasheet ~)
(libsource (lib Device) (part L) (description Inductor))
(sheetpath (names /) (tstamps /))
(tstamp 5BE8DB9C))
(comp (ref J1)
(value USB_B_Micro)
(footprint Connector_USB:USB_Micro-B_Molex_47346-0001)
(datasheet ~)
(libsource (lib Connector) (part USB_B_Micro) (description "USB Micro Type B connector"))
(sheetpath (names /) (tstamps /))
(tstamp 5BE988CD))
(comp (ref R3)
(value 27)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5BEA9F82))
(comp (ref R4)
(value 27)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5BEB1CC4))
(comp (ref C10)
(value 100nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5BED1A7F))
(comp (ref C4)
(value 47pF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5BEEEE27))
(comp (ref C3)
(value 47pF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5BEF03B6))
(comp (ref C9)
(value 100nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5BF261CF))
(comp (ref C8)
(value 4.7uF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5BF4E391))
(comp (ref Q1)
(value MBT3904DW1)
(footprint Package_TO_SOT_SMD:SOT-363_SC-70-6)
(datasheet http://www.onsemi.com/pub_link/Collateral/MBT3904DW1T1-D.PDF)
(libsource (lib Transistor_BJT) (part MBT3904DW1) (description "200mA IC, 40V Vce, Dual NPN/NPN Transistors, SOT-363"))
(sheetpath (names /) (tstamps /))
(tstamp 5BF9DDE8))
(comp (ref R13)
(value 10k)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C03220C))
(comp (ref R12)
(value 10k)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C035817))
(comp (ref R16)
(value 10k)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C093024))
(comp (ref SW3)
(value B_RES)
(footprint Button_Switch_SMD:SW_SPST_EVQP7A)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5C0A6DC7))
(comp (ref C18)
(value 100nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5C1880C2))
(comp (ref R17)
(value 10k)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C1C0D8C))
(comp (ref SW4)
(value B_0)
(footprint Button_Switch_SMD:SW_SPST_EVQP7A)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5C1EE015))
(comp (ref C1)
(value 4.7uF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5C2932A9))
(comp (ref C6)
(value 4.7uF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5C2A73BE))
(comp (ref C7)
(value 470pF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5C2BCDFC))
(comp (ref BT1)
(value "AA BK-92")
(footprint VFD_Watch:BK-92)
(datasheet ~)
(libsource (lib Device) (part Battery_Cell) (description "Single-cell battery"))
(sheetpath (names /) (tstamps /))
(tstamp 5BE75EDD))
(comp (ref R9)
(value 10k)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C344671))
(comp (ref U2)
(value DRV8837C)
(footprint Package_SON:WSON-8-1EP_2x2mm_P0.5mm_EP0.9x1.6mm)
(libsource (lib VFD_Components) (part DRV8837C) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C36A492))
(comp (ref R1)
(value 0R)
(footprint Resistor_SMD:R_1206_3216Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C3DA8D9))
(comp (ref R2)
(value 0R)
(footprint Resistor_SMD:R_1206_3216Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C3DFCF8))
(comp (ref R6)
(value 10k)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C60F79B))
(comp (ref SW1)
(value B1)
(footprint Button_Switch_SMD:SW_SPST_EVQP7A)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5C633EDA))
(comp (ref SW2)
(value B2)
(footprint Button_Switch_SMD:SW_SPST_EVQP7A)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5C635779))
(comp (ref R14)
(value 10k)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C63F7B0))
(comp (ref R15)
(value 10k)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C647568))
(comp (ref U1)
(value MIC5219-3.3YM5)
(footprint Package_TO_SOT_SMD:SOT-23-5)
(datasheet http://ww1.microchip.com/downloads/en/DeviceDoc/MIC5219-500mA-Peak-Output-LDO-Regulator-DS20006021A.pdf)
(libsource (lib Regulator_Linear) (part MIC5219-3.3YM5) (description "500mA low dropout linear regulator, fixed 3.3V output, SOT-23-5"))
(sheetpath (names /) (tstamps /))
(tstamp 5C55C268))
(comp (ref J2)
(value I2C_Con)
(footprint Connector_PinHeader_1.27mm:PinHeader_1x04_P1.27mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x04_Male) (description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5C97D242))
(comp (ref C19)
(value 10uF)
(footprint Capacitor_SMD:C_1206_3216Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5BF2EDC6))
(comp (ref U10)
(value IVL2-7_5)
(footprint VFD_Watch:ILV2-5_7)
(libsource (lib VFD_Components) (part IVL2-7_5) (description ""))
(sheetpath (names "/VFD IO/") (tstamps /5C6CC728/))
(tstamp 5C6E3FA4))
(comp (ref U8)
(value TBD62783A)
(footprint Package_SO:SOP-18_7.0x12.5mm_P1.27mm)
(datasheet http://toshiba.semicon-storage.com/info/docget.jsp?did=30523&prodName=TBD62783APG)
(libsource (lib Transistor_Array) (part TBD62783A) (description "8-Channel Source Type Transistor Array, TTL and CMOS compatible, 500mA, 50V, DIP-18/SOP-18/SSOP-18/SOIC-18W"))
(sheetpath (names "/VFD IO/") (tstamps /5C6CC728/))
(tstamp 5C6E3FC4))
(comp (ref U9)
(value TBD62783A)
(footprint Package_SO:SOP-18_7.0x12.5mm_P1.27mm)
(datasheet http://toshiba.semicon-storage.com/info/docget.jsp?did=30523&prodName=TBD62783APG)
(libsource (lib Transistor_Array) (part TBD62783A) (description "8-Channel Source Type Transistor Array, TTL and CMOS compatible, 500mA, 50V, DIP-18/SOP-18/SSOP-18/SOIC-18W"))
(sheetpath (names "/VFD IO/") (tstamps /5C6CC728/))
(tstamp 5C6E3FCA))
(comp (ref U7)
(value MCP23017_SS)
(footprint Package_SO:SSOP-28_5.3x10.2mm_P0.65mm)
(datasheet http://ww1.microchip.com/downloads/en/DeviceDoc/20001952C.pdf)
(libsource (lib Interface_Expansion) (part MCP23017_SS) (description "16-bit I/O expander, I2C, interrupts, w pull-ups, SSOP-28"))
(sheetpath (names "/VFD IO/") (tstamps /5C6CC728/))
(tstamp 5C6E7275))
(comp (ref R5)
(value 10k)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/VFD IO/") (tstamps /5C6CC728/))
(tstamp 5C7558D6)))
(libparts
(libpart (lib Connector) (part Conn_01x04_Male)
(description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x04_Male))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))
(pin (num 4) (name Pin_4) (type passive))))
(libpart (lib Connector) (part USB_B_Micro)
(aliases
(alias USB_B_Mini))
(description "USB Micro Type B connector")
(docs ~)
(footprints
(fp USB*))
(fields
(field (name Reference) J)
(field (name Value) USB_B_Micro))
(pins
(pin (num 1) (name VBUS) (type power_out))
(pin (num 2) (name D-) (type passive))
(pin (num 3) (name D+) (type passive))
(pin (num 4) (name ID) (type passive))
(pin (num 5) (name GND) (type power_out))
(pin (num 6) (name Shield) (type passive))))
(libpart (lib Device) (part Battery_Cell)
(description "Single-cell battery")
(docs ~)
(fields
(field (name Reference) BT)
(field (name Value) Battery_Cell))
(pins
(pin (num 1) (name +) (type passive))
(pin (num 2) (name -) (type passive))))
(libpart (lib Device) (part C)
(description "Unpolarized capacitor")
(docs ~)
(footprints
(fp C_*))
(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 D_Schottky)
(description "Schottky diode")
(docs ~)
(footprints
(fp TO-???*)
(fp *_Diode_*)
(fp *SingleDiode*)
(fp D_*))
(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 Device) (part L)
(description Inductor)
(docs ~)
(footprints
(fp Choke_*)
(fp *Coil*)
(fp Inductor_*)
(fp L_*))
(fields
(field (name Reference) L)
(field (name Value) L))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib Device) (part R)
(description Resistor)
(docs ~)
(footprints
(fp R_*))
(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 R_Small)
(description "Resistor, small symbol")
(docs ~)
(footprints
(fp R_*))
(fields
(field (name Reference) R)
(field (name Value) R_Small))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib ESP32-footprints-Shem-Lib) (part ESP32-WROOM)
(fields
(field (name Reference) U)
(field (name Value) ESP32-WROOM)
(field (name Footprint) ESP32-footprints-Lib:ESP32-WROOM))
(pins
(pin (num 1) (name GND) (type power_out))
(pin (num 2) (name 3V3) (type power_in))
(pin (num 3) (name EN) (type input))
(pin (num 4) (name SENSOR_VP) (type input))
(pin (num 5) (name SENSOR_VN) (type input))
(pin (num 6) (name IO34) (type BiDi))
(pin (num 7) (name IO35) (type BiDi))
(pin (num 8) (name IO32) (type BiDi))
(pin (num 9) (name IO33) (type BiDi))
(pin (num 10) (name IO25) (type BiDi))
(pin (num 11) (name IO26) (type BiDi))
(pin (num 12) (name IO27) (type BiDi))
(pin (num 13) (name IO14) (type BiDi))
(pin (num 14) (name IO12) (type BiDi))
(pin (num 15) (name GND) (type power_in))
(pin (num 16) (name IO13) (type BiDi))
(pin (num 17) (name SD2) (type BiDi))
(pin (num 18) (name SD3) (type BiDi))
(pin (num 19) (name CMD) (type BiDi))
(pin (num 20) (name CLK) (type input))
(pin (num 21) (name SDO) (type BiDi))
(pin (num 22) (name SD1) (type BiDi))
(pin (num 23) (name IO15) (type BiDi))
(pin (num 24) (name IO2) (type BiDi))
(pin (num 25) (name IO0) (type BiDi))
(pin (num 26) (name IO4) (type input))
(pin (num 27) (name IO16) (type BiDi))
(pin (num 28) (name IO17) (type BiDi))
(pin (num 29) (name IO5) (type BiDi))
(pin (num 30) (name IO18) (type input))
(pin (num 31) (name IO19) (type BiDi))
(pin (num 32) (name NC) (type NotConnected))
(pin (num 33) (name IO21) (type BiDi))
(pin (num 34) (name RXD0) (type BiDi))
(pin (num 35) (name TXD0) (type BiDi))
(pin (num 36) (name IO22) (type BiDi))
(pin (num 37) (name IO23) (type BiDi))
(pin (num 38) (name GND) (type power_in))
(pin (num 39) (name GND-PAD) (type power_in))))
(libpart (lib Interface_Expansion) (part MCP23017_SS)
(description "16-bit I/O expander, I2C, interrupts, w pull-ups, SSOP-28")
(docs http://ww1.microchip.com/downloads/en/DeviceDoc/20001952C.pdf)
(footprints
(fp SSOP*5.3x10.2mm*P0.65mm*))
(fields
(field (name Reference) U)
(field (name Value) MCP23017_SS)
(field (name Footprint) Package_SO:SSOP-28_5.3x10.2mm_P0.65mm))
(pins
(pin (num 1) (name GPB0) (type BiDi))
(pin (num 2) (name GPB1) (type BiDi))
(pin (num 3) (name GPB2) (type BiDi))
(pin (num 4) (name GPB3) (type BiDi))
(pin (num 5) (name GPB4) (type BiDi))
(pin (num 6) (name GPB5) (type BiDi))
(pin (num 7) (name GPB6) (type BiDi))
(pin (num 8) (name GPB7) (type BiDi))
(pin (num 9) (name VDD) (type power_in))
(pin (num 10) (name VSS) (type power_in))
(pin (num 11) (name NC) (type NotConnected))
(pin (num 12) (name SCK) (type input))
(pin (num 13) (name SDA) (type BiDi))
(pin (num 14) (name NC) (type NotConnected))
(pin (num 15) (name A0) (type input))
(pin (num 16) (name A1) (type input))
(pin (num 17) (name A2) (type input))
(pin (num 18) (name ~RESET~) (type input))
(pin (num 19) (name INTB) (type 3state))
(pin (num 20) (name INTA) (type 3state))
(pin (num 21) (name GPA0) (type BiDi))
(pin (num 22) (name GPA1) (type BiDi))
(pin (num 23) (name GPA2) (type BiDi))
(pin (num 24) (name GPA3) (type BiDi))
(pin (num 25) (name GPA4) (type BiDi))
(pin (num 26) (name GPA5) (type BiDi))
(pin (num 27) (name GPA6) (type BiDi))
(pin (num 28) (name GPA7) (type BiDi))))
(libpart (lib Interface_USB) (part FT231XS)
(description "Full Speed USB to Full Handshake UART, SSOP-20")
(docs http://www.ftdichip.com/Products/ICs/FT231X.html)
(footprints
(fp *SSOP*3.9x8.7mm*P0.635mm*))
(fields
(field (name Reference) U)
(field (name Value) FT231XS)
(field (name Footprint) Package_SO:SSOP-20_3.9x8.7mm_P0.635mm))
(pins
(pin (num 1) (name ~DTR) (type output))
(pin (num 2) (name ~RTS) (type input))
(pin (num 3) (name VCCIO) (type power_in))
(pin (num 4) (name RXD) (type input))
(pin (num 5) (name ~RI) (type input))
(pin (num 6) (name GND) (type power_in))
(pin (num 7) (name ~DSR) (type output))
(pin (num 8) (name ~DCD) (type input))
(pin (num 9) (name ~CTS) (type input))
(pin (num 10) (name CBUS2) (type BiDi))
(pin (num 11) (name USBDP) (type BiDi))
(pin (num 12) (name USBDM) (type BiDi))
(pin (num 13) (name 3V3OUT) (type power_out))
(pin (num 14) (name ~RESET) (type input))
(pin (num 15) (name VCC) (type power_in))
(pin (num 16) (name GND) (type power_in))
(pin (num 17) (name CBUS1) (type BiDi))
(pin (num 18) (name CBUS0) (type BiDi))
(pin (num 19) (name CBUS3) (type BiDi))
(pin (num 20) (name TXD) (type output))))
(libpart (lib Regulator_Linear) (part AP131-15)
(aliases
(alias AP131-18)
(alias AP131-20)
(alias AP131-25)
(alias AP131-28)
(alias AP131-29)
(alias AP131-30)
(alias AP131-33)
(alias AP131-35)
(alias MIC5205-2.5YM5)
(alias MIC5205-2.7YM5)
(alias MIC5205-2.8YM5)
(alias MIC5205-2.85YM5)
(alias MIC5205-2.9YM5)
(alias MIC5205-3.0YM5)
(alias MIC5205-3.1YM5)
(alias MIC5205-3.2YM5)
(alias MIC5205-3.3YM5)
(alias MIC5205-3.6YM5)
(alias MIC5205-3.8YM5)
(alias MIC5205-4.0YM5)
(alias MIC5205-5.0YM5)
(alias MIC5219-2.5YM5)
(alias MIC5219-2.6YM5)
(alias MIC5219-2.7YM5)
(alias MIC5219-2.8YM5)
(alias MIC5219-2.85YM5)
(alias MIC5219-2.9YM5)
(alias MIC5219-3.0YM5)
(alias MIC5219-3.1YM5)
(alias MIC5219-3.3YM5)
(alias MIC5219-3.6YM5)
(alias MIC5219-5.0YM5)
(alias SPX3819M5-L-1-2)
(alias SPX3819M5-L-1-5)
(alias SPX3819M5-L-1-8)
(alias SPX3819M5-L-2-5)
(alias SPX3819M5-L-3-0)
(alias SPX3819M5-L-3-3)
(alias SPX3819M5-L-5-0))
(description "300mA low dropout linear regulator, shutdown pin, 1.5V fixed positive output, SOT-23-5 package")
(docs http://www.diodes.com/_files/datasheets/AP131.pdf)
(footprints
(fp SOT?23*))
(fields
(field (name Reference) U)
(field (name Value) AP131-15)
(field (name Footprint) Package_TO_SOT_SMD:SOT-23-5))
(pins
(pin (num 1) (name IN) (type power_in))
(pin (num 2) (name GND) (type power_in))
(pin (num 3) (name EN) (type input))
(pin (num 4) (name BP) (type input))
(pin (num 5) (name OUT) (type power_out))))
(libpart (lib Switch) (part SW_Push)
(description "Push button switch, generic, two pins")
(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 Transistor_Array) (part TBD62783A)
(description "8-Channel Source Type Transistor Array, TTL and CMOS compatible, 500mA, 50V, DIP-18/SOP-18/SSOP-18/SOIC-18W")
(docs http://toshiba.semicon-storage.com/info/docget.jsp?did=30523&prodName=TBD62783APG)
(footprints
(fp DIP*W7.62mm*)
(fp SOP*7.0x12.5mm*P1.27mm*)
(fp SSOP*4.4x6.5mm*P0.65mm*)
(fp SOIC*7.5x11.6mm*P1.27mm*))
(fields
(field (name Reference) U)
(field (name Value) TBD62783A))
(pins
(pin (num 1) (name I1) (type input))
(pin (num 2) (name I2) (type input))
(pin (num 3) (name I3) (type input))
(pin (num 4) (name I4) (type input))
(pin (num 5) (name I5) (type input))
(pin (num 6) (name I6) (type input))
(pin (num 7) (name I7) (type input))
(pin (num 8) (name I8) (type input))
(pin (num 9) (name VCC) (type power_in))
(pin (num 10) (name GND) (type power_in))
(pin (num 11) (name O8) (type openEm))
(pin (num 12) (name O7) (type openEm))
(pin (num 13) (name O6) (type openEm))
(pin (num 14) (name O5) (type openEm))
(pin (num 15) (name O4) (type openEm))
(pin (num 16) (name O3) (type openEm))
(pin (num 17) (name O2) (type openEm))
(pin (num 18) (name O1) (type openEm))))
(libpart (lib Transistor_BJT) (part BC846BS)
(aliases
(alias BC846BDW1)
(alias BC847BS)
(alias BC847BDW1)
(alias PMBT2222AYS)
(alias MMDT2222A)
(alias MBT2222ADW1T1)
(alias FFB2222A)
(alias PMBT3904YS)
(alias MMDT3904)
(alias MBT3904DW1)
(alias FFB3904)
(alias MMDT5551)
(alias FFB5551))
(description "100mA IC, 65V Vce, Dual NPN/NPN Transistors, SOT-363")
(docs http://www.nxp.com/documents/data_sheet/BC846BS.pdf)
(footprints
(fp SC?70*)
(fp SC?88*)
(fp SOT?363*))
(fields
(field (name Reference) Q)
(field (name Value) BC846BS)
(field (name Footprint) Package_TO_SOT_SMD:SOT-363_SC-70-6))
(pins
(pin (num 1) (name E1) (type passive))
(pin (num 2) (name B1) (type input))
(pin (num 3) (name C2) (type passive))
(pin (num 4) (name E2) (type passive))
(pin (num 5) (name B2) (type input))
(pin (num 6) (name C1) (type passive))))
(libpart (lib VFD_Components) (part DRV8837C)
(fields
(field (name Reference) U)
(field (name Value) DRV8837C))
(pins
(pin (num 1) (name VM) (type input))
(pin (num 2) (name OUT1) (type input))
(pin (num 3) (name OUT2) (type input))
(pin (num 4) (name GND) (type input))
(pin (num 5) (name INT2) (type input))
(pin (num 6) (name INT1) (type input))
(pin (num 7) (name nSleep) (type input))
(pin (num 8) (name VCC) (type input))
(pin (num 9) (name GND) (type input))))
(libpart (lib VFD_Components) (part IVL2-7_5)
(fields
(field (name Reference) U)
(field (name Value) IVL2-7_5))
(pins
(pin (num 1) (name HEAT1) (type input))
(pin (num 2) (name C1a) (type input))
(pin (num 3) (name DP1) (type input))
(pin (num 4) (name g) (type input))
(pin (num 5) (name e) (type input))
(pin (num 6) (name C2a) (type input))
(pin (num 7) (name c) (type input))
(pin (num 8) (name C3a) (type input))
(pin (num 9) (name DP2) (type input))
(pin (num 10) (name d) (type input))
(pin (num 11) (name C4a) (type input))
(pin (num 12) (name b) (type input))
(pin (num 13) (name f) (type input))
(pin (num 14) (name a) (type input))
(pin (num 15) (name C5a) (type input))
(pin (num 16) (name HEAT2) (type input))
(pin (num 17) (name HEAT2) (type input))
(pin (num 18) (name C5b) (type input))
(pin (num 19) (name C4b) (type input))
(pin (num 20) (name C3b) (type input))
(pin (num 21) (name C2b) (type input))
(pin (num 22) (name C1b) (type input))
(pin (num 23) (name HEAT1) (type input))))
(libpart (lib VFD_Components) (part MCP1663)
(fields
(field (name Reference) U)
(field (name Value) MCP1663))
(pins
(pin (num 1) (name SW) (type openCol))
(pin (num 2) (name GND) (type passive))
(pin (num 3) (name V_FB) (type input))
(pin (num 4) (name EN) (type input))
(pin (num 5) (name Vin) (type power_in))))
(libpart (lib VFD_Components) (part MP3120)
(fields
(field (name Reference) U)
(field (name Value) MP3120))
(pins
(pin (num 1) (name SW) (type unspc))
(pin (num 2) (name GND) (type power_out))
(pin (num 3) (name FB) (type input))
(pin (num 4) (name EN) (type input))
(pin (num 5) (name OUT) (type power_out))
(pin (num 6) (name Vin) (type power_in)))))
(libraries
(library (logical Connector)
(uri "/Library/Application Support/kicad/library/Connector.lib"))
(library (logical Device)
(uri "/Library/Application Support/kicad/library/Device.lib"))
(library (logical ESP32-footprints-Shem-Lib)
(uri /Users/pakue/Dropbox/Projekte/VFD_Watch/ESP32-kiCAD-Footprints/ESP32-Footprints/ESP32-footprints-Shem-Lib.lib))
(library (logical Interface_Expansion)
(uri "/Library/Application Support/kicad/library/Interface_Expansion.lib"))
(library (logical Interface_USB)
(uri "/Library/Application Support/kicad/library/Interface_USB.lib"))
(library (logical Regulator_Linear)
(uri "/Library/Application Support/kicad/library/Regulator_Linear.lib"))
(library (logical Switch)
(uri "/Library/Application Support/kicad/library/Switch.lib"))
(library (logical Transistor_Array)
(uri "/Library/Application Support/kicad/library/Transistor_Array.lib"))
(library (logical Transistor_BJT)
(uri "/Library/Application Support/kicad/library/Transistor_BJT.lib"))
(library (logical VFD_Components)
(uri /Users/pakue/Dropbox/Projekte/VFD_Watch/VFD_Components.lib)))
(nets
(net (code 1) (name "Net-(R9-Pad2)")
(node (ref R9) (pin 2))
(node (ref U5) (pin 4)))
(net (code 2) (name "Net-(D1-Pad2)")
(node (ref U5) (pin 1))
(node (ref L2) (pin 1))
(node (ref D1) (pin 2)))
(net (code 3) (name "Net-(R10-Pad2)")
(node (ref R11) (pin 1))
(node (ref R10) (pin 2))
(node (ref U5) (pin 3)))
(net (code 4) (name +24V)
(node (ref U9) (pin 9))
(node (ref U8) (pin 9))
(node (ref R10) (pin 1))
(node (ref D1) (pin 1))
(node (ref C16) (pin 1))
(node (ref C17) (pin 1)))
(net (code 5) (name +3V3)
(node (ref R5) (pin 1))
(node (ref U7) (pin 9))
(node (ref L2) (pin 2))
(node (ref C12) (pin 1))
(node (ref C11) (pin 1))
(node (ref C19) (pin 1))
(node (ref J2) (pin 4))
(node (ref U1) (pin 5))
(node (ref U3) (pin 5))
(node (ref R15) (pin 1))
(node (ref R14) (pin 1))
(node (ref U2) (pin 8))
(node (ref U2) (pin 1))
(node (ref U5) (pin 5))
(node (ref C6) (pin 1))
(node (ref R17) (pin 1))
(node (ref R7) (pin 1))
(node (ref R16) (pin 1))
(node (ref C13) (pin 1))
(node (ref U6) (pin 2))
(node (ref C14) (pin 1))
(node (ref C15) (pin 1)))
(net (code 6) (name GND)
(node (ref C15) (pin 2))
(node (ref C14) (pin 2))
(node (ref U6) (pin 1))
(node (ref U5) (pin 2))
(node (ref R11) (pin 2))
(node (ref C16) (pin 2))
(node (ref C17) (pin 2))
(node (ref U6) (pin 15))
(node (ref U7) (pin 17))
(node (ref U7) (pin 16))
(node (ref U7) (pin 15))
(node (ref U7) (pin 10))
(node (ref U6) (pin 38))
(node (ref U6) (pin 39))
(node (ref U9) (pin 10))
(node (ref U8) (pin 10))
(node (ref U4) (pin 16))
(node (ref C12) (pin 2))
(node (ref C11) (pin 2))
(node (ref C19) (pin 2))
(node (ref U4) (pin 6))
(node (ref J2) (pin 1))
(node (ref C13) (pin 2))
(node (ref U3) (pin 2))
(node (ref U1) (pin 2))
(node (ref J1) (pin 5))
(node (ref J1) (pin 6))
(node (ref SW2) (pin 1))
(node (ref SW1) (pin 1))
(node (ref C5) (pin 2))
(node (ref U2) (pin 9))
(node (ref U2) (pin 4))
(node (ref C2) (pin 2))
(node (ref BT1) (pin 2))
(node (ref C10) (pin 2))
(node (ref C4) (pin 2))
(node (ref C3) (pin 2))
(node (ref C7) (pin 2))
(node (ref C6) (pin 2))
(node (ref C9) (pin 2))
(node (ref C1) (pin 2))
(node (ref C8) (pin 2))
(node (ref SW4) (pin 1))
(node (ref C18) (pin 2))
(node (ref SW3) (pin 1))
(node (ref R8) (pin 2)))
(net (code 7) (name "Net-(L1-Pad1)")
(node (ref L1) (pin 1))
(node (ref U3) (pin 1)))
(net (code 8) (name "Net-(R7-Pad2)")
(node (ref R7) (pin 2))
(node (ref U3) (pin 3))
(node (ref R8) (pin 1)))
(net (code 9) (name "Net-(U6-Pad4)")
(node (ref U6) (pin 4)))
(net (code 10) (name "Net-(U6-Pad5)")
(node (ref U6) (pin 5)))
(net (code 11) (name "Net-(U6-Pad8)")
(node (ref U6) (pin 8)))
(net (code 12) (name "Net-(U6-Pad9)")
(node (ref U6) (pin 9)))
(net (code 13) (name "Net-(U6-Pad10)")
(node (ref U6) (pin 10)))
(net (code 14) (name "Net-(U6-Pad20)")
(node (ref U6) (pin 20)))
(net (code 15) (name "Net-(U6-Pad21)")
(node (ref U6) (pin 21)))
(net (code 16) (name "Net-(U6-Pad31)")
(node (ref U6) (pin 31)))
(net (code 17) (name "Net-(U6-Pad12)")
(node (ref U6) (pin 12)))
(net (code 18) (name "Net-(U6-Pad22)")
(node (ref U6) (pin 22)))
(net (code 19) (name "Net-(U6-Pad32)")
(node (ref U6) (pin 32)))
(net (code 20) (name "Net-(U6-Pad13)")
(node (ref U6) (pin 13)))
(net (code 21) (name "Net-(U6-Pad23)")
(node (ref U6) (pin 23)))
(net (code 22) (name "Net-(U6-Pad14)")
(node (ref U6) (pin 14)))
(net (code 23) (name RXD0)
(node (ref U6) (pin 34))
(node (ref U4) (pin 20)))
(net (code 24) (name TXD0)
(node (ref U6) (pin 35))
(node (ref U4) (pin 4)))
(net (code 25) (name "Net-(U6-Pad16)")
(node (ref U6) (pin 16)))
(net (code 26) (name "Net-(U6-Pad26)")
(node (ref U6) (pin 26)))
(net (code 27) (name "Net-(U6-Pad17)")
(node (ref U6) (pin 17)))
(net (code 28) (name "Net-(U6-Pad27)")
(node (ref U6) (pin 27)))
(net (code 29) (name "Net-(U6-Pad18)")
(node (ref U6) (pin 18)))
(net (code 30) (name "Net-(U6-Pad19)")
(node (ref U6) (pin 19)))
(net (code 31) (name DTR)
(node (ref U4) (pin 1))
(node (ref R13) (pin 2))
(node (ref Q1) (pin 4)))
(net (code 32) (name "Net-(U4-Pad10)")
(node (ref U4) (pin 10)))
(net (code 33) (name "Net-(U4-Pad17)")
(node (ref U4) (pin 17)))
(net (code 34) (name "Net-(U4-Pad18)")
(node (ref U4) (pin 18)))
(net (code 35) (name "Net-(U4-Pad19)")
(node (ref U4) (pin 19)))
(net (code 36) (name RTS)
(node (ref U4) (pin 2))
(node (ref Q1) (pin 1))
(node (ref R12) (pin 1)))
(net (code 37) (name "Net-(U4-Pad5)")