├── .DS_Store ├── .gitignore ├── 3D ├── VFD_Display v1.iges ├── VFD_Display v1.step └── VFD_Display v2.stl ├── Code ├── .DS_Store ├── .gitignore ├── .travis.yml ├── Python │ ├── VFD_Watch.py │ ├── i2c_test.py │ └── mcp.py ├── include │ └── README ├── lib │ └── README ├── platformio.ini └── src │ ├── Animations.h │ ├── ManualTimeSet.h │ ├── Password_example.h │ ├── Vfd_Display.cpp │ ├── Vfd_Display.h │ └── main.cpp ├── ESP32-kiCAD-Footprints ├── .DS_Store ├── Datasheet │ ├── esp32_datasheet_en_0.pdf │ └── esp_wroom_32_datasheet_en.pdf ├── ESP32-Footprints │ ├── .DS_Store │ ├── ESP32-Footprints.kicad_pcb │ ├── ESP32-Footprints.pro │ ├── ESP32-Footprints.sch │ ├── ESP32-footprints-Lib.pretty │ │ ├── ESP-32S.kicad_mod │ │ ├── ESP32-WROOM.kicad_mod │ │ ├── ESP32.kicad_mod │ │ └── ESP3212.kicad_mod │ ├── ESP32-footprints-Shem-Lib.bak │ ├── ESP32-footprints-Shem-Lib.bck │ ├── ESP32-footprints-Shem-Lib.dcm │ ├── ESP32-footprints-Shem-Lib.lib │ ├── espressif-xess.csv │ ├── espressif-xess.dcm │ └── espressif-xess.lib ├── ESP3212_kiCAD.png ├── ESP32_QUAD.png ├── ESP32_WROOM.png ├── ESP32_kiCAD.png ├── ESP_32S_KiCAD.png └── README.md ├── Gerber ├── .DS_Store ├── VFD_Watch-B_Cu.gbr ├── VFD_Watch-B_Mask.gbr ├── VFD_Watch-B_SilkS.gbr ├── VFD_Watch-Dwgs_User.gbr ├── VFD_Watch-Edge_Cuts.gbr ├── VFD_Watch-F_Cu.gbr ├── VFD_Watch-F_Mask.gbr ├── VFD_Watch-F_SilkS.gbr ├── VFD_Watch-NPTH.drl ├── VFD_Watch-PTH.drl ├── VFD_Watch-V1.1-RS-274x.zip └── VFD_Watch-V1.1.zip ├── Graphics ├── Schematic_24V_supply.png ├── Schematic_3V3_supply.png ├── VFD_Function.ai ├── VFD_Function │ ├── VFD_Function-01.png │ ├── VFD_Function-02.png │ └── VFD_Function_animated.gif ├── VFD_Watch-B_Cu.pdf ├── VFD_Watch-B_SilkS.pdf ├── VFD_Watch-Edge_Cuts.pdf ├── VFD_Watch-F_Cu.pdf └── VFD_Watch-F_SilkS.pdf ├── IO_Switches.bak ├── IO_Switches.sch ├── README.md ├── VFD_Components.dcm ├── VFD_Components.lib ├── VFD_IO.bak ├── VFD_IO.sch ├── VFD_Watch-cache.lib ├── VFD_Watch-rescue.dcm ├── VFD_Watch-rescue.lib ├── VFD_Watch.bak ├── VFD_Watch.csv ├── VFD_Watch.kicad_pcb ├── VFD_Watch.kicad_pcb-bak ├── VFD_Watch.net ├── VFD_Watch.pdf ├── VFD_Watch.pretty ├── BK-92.kicad_mod ├── ILV2-5_7.kicad_mod ├── L_Metric_5040.kicad_mod ├── Strap_Holes.kicad_mod └── Wire_Holes.kicad_mod ├── VFD_Watch.pro ├── VFD_Watch.sch ├── _saved_IO_Switches.sch ├── fp-info-cache ├── fp-lib-table └── sym-lib-table /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/.gitignore -------------------------------------------------------------------------------- /3D/VFD_Display v1.iges: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/3D/VFD_Display v1.iges -------------------------------------------------------------------------------- /3D/VFD_Display v1.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/3D/VFD_Display v1.step -------------------------------------------------------------------------------- /3D/VFD_Display v2.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/3D/VFD_Display v2.stl -------------------------------------------------------------------------------- /Code/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/Code/.DS_Store -------------------------------------------------------------------------------- /Code/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/Code/.gitignore -------------------------------------------------------------------------------- /Code/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/Code/.travis.yml -------------------------------------------------------------------------------- /Code/Python/VFD_Watch.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Code/Python/i2c_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/Code/Python/i2c_test.py -------------------------------------------------------------------------------- /Code/Python/mcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/Code/Python/mcp.py -------------------------------------------------------------------------------- /Code/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/Code/include/README -------------------------------------------------------------------------------- /Code/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/Code/lib/README -------------------------------------------------------------------------------- /Code/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/Code/platformio.ini -------------------------------------------------------------------------------- /Code/src/Animations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/Code/src/Animations.h -------------------------------------------------------------------------------- /Code/src/ManualTimeSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/Code/src/ManualTimeSet.h -------------------------------------------------------------------------------- /Code/src/Password_example.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/Code/src/Password_example.h -------------------------------------------------------------------------------- /Code/src/Vfd_Display.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/Code/src/Vfd_Display.cpp -------------------------------------------------------------------------------- /Code/src/Vfd_Display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/Code/src/Vfd_Display.h -------------------------------------------------------------------------------- /Code/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/Code/src/main.cpp -------------------------------------------------------------------------------- /ESP32-kiCAD-Footprints/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/ESP32-kiCAD-Footprints/.DS_Store -------------------------------------------------------------------------------- /ESP32-kiCAD-Footprints/Datasheet/esp32_datasheet_en_0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/ESP32-kiCAD-Footprints/Datasheet/esp32_datasheet_en_0.pdf -------------------------------------------------------------------------------- /ESP32-kiCAD-Footprints/Datasheet/esp_wroom_32_datasheet_en.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/ESP32-kiCAD-Footprints/Datasheet/esp_wroom_32_datasheet_en.pdf -------------------------------------------------------------------------------- /ESP32-kiCAD-Footprints/ESP32-Footprints/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/ESP32-kiCAD-Footprints/ESP32-Footprints/.DS_Store -------------------------------------------------------------------------------- /ESP32-kiCAD-Footprints/ESP32-Footprints/ESP32-Footprints.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/ESP32-kiCAD-Footprints/ESP32-Footprints/ESP32-Footprints.kicad_pcb -------------------------------------------------------------------------------- /ESP32-kiCAD-Footprints/ESP32-Footprints/ESP32-Footprints.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/ESP32-kiCAD-Footprints/ESP32-Footprints/ESP32-Footprints.pro -------------------------------------------------------------------------------- /ESP32-kiCAD-Footprints/ESP32-Footprints/ESP32-Footprints.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/ESP32-kiCAD-Footprints/ESP32-Footprints/ESP32-Footprints.sch -------------------------------------------------------------------------------- /ESP32-kiCAD-Footprints/ESP32-Footprints/ESP32-footprints-Lib.pretty/ESP-32S.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/ESP32-kiCAD-Footprints/ESP32-Footprints/ESP32-footprints-Lib.pretty/ESP-32S.kicad_mod -------------------------------------------------------------------------------- /ESP32-kiCAD-Footprints/ESP32-Footprints/ESP32-footprints-Lib.pretty/ESP32-WROOM.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/ESP32-kiCAD-Footprints/ESP32-Footprints/ESP32-footprints-Lib.pretty/ESP32-WROOM.kicad_mod -------------------------------------------------------------------------------- /ESP32-kiCAD-Footprints/ESP32-Footprints/ESP32-footprints-Lib.pretty/ESP32.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/ESP32-kiCAD-Footprints/ESP32-Footprints/ESP32-footprints-Lib.pretty/ESP32.kicad_mod -------------------------------------------------------------------------------- /ESP32-kiCAD-Footprints/ESP32-Footprints/ESP32-footprints-Lib.pretty/ESP3212.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/ESP32-kiCAD-Footprints/ESP32-Footprints/ESP32-footprints-Lib.pretty/ESP3212.kicad_mod -------------------------------------------------------------------------------- /ESP32-kiCAD-Footprints/ESP32-Footprints/ESP32-footprints-Shem-Lib.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/ESP32-kiCAD-Footprints/ESP32-Footprints/ESP32-footprints-Shem-Lib.bak -------------------------------------------------------------------------------- /ESP32-kiCAD-Footprints/ESP32-Footprints/ESP32-footprints-Shem-Lib.bck: -------------------------------------------------------------------------------- 1 | EESchema-DOCLIB Version 2.0 2 | # 3 | #End Doc Library 4 | -------------------------------------------------------------------------------- /ESP32-kiCAD-Footprints/ESP32-Footprints/ESP32-footprints-Shem-Lib.dcm: -------------------------------------------------------------------------------- 1 | EESchema-DOCLIB Version 2.0 2 | # 3 | #End Doc Library 4 | -------------------------------------------------------------------------------- /ESP32-kiCAD-Footprints/ESP32-Footprints/ESP32-footprints-Shem-Lib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/ESP32-kiCAD-Footprints/ESP32-Footprints/ESP32-footprints-Shem-Lib.lib -------------------------------------------------------------------------------- /ESP32-kiCAD-Footprints/ESP32-Footprints/espressif-xess.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/ESP32-kiCAD-Footprints/ESP32-Footprints/espressif-xess.csv -------------------------------------------------------------------------------- /ESP32-kiCAD-Footprints/ESP32-Footprints/espressif-xess.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/ESP32-kiCAD-Footprints/ESP32-Footprints/espressif-xess.dcm -------------------------------------------------------------------------------- /ESP32-kiCAD-Footprints/ESP32-Footprints/espressif-xess.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/ESP32-kiCAD-Footprints/ESP32-Footprints/espressif-xess.lib -------------------------------------------------------------------------------- /ESP32-kiCAD-Footprints/ESP3212_kiCAD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/ESP32-kiCAD-Footprints/ESP3212_kiCAD.png -------------------------------------------------------------------------------- /ESP32-kiCAD-Footprints/ESP32_QUAD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/ESP32-kiCAD-Footprints/ESP32_QUAD.png -------------------------------------------------------------------------------- /ESP32-kiCAD-Footprints/ESP32_WROOM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/ESP32-kiCAD-Footprints/ESP32_WROOM.png -------------------------------------------------------------------------------- /ESP32-kiCAD-Footprints/ESP32_kiCAD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/ESP32-kiCAD-Footprints/ESP32_kiCAD.png -------------------------------------------------------------------------------- /ESP32-kiCAD-Footprints/ESP_32S_KiCAD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/ESP32-kiCAD-Footprints/ESP_32S_KiCAD.png -------------------------------------------------------------------------------- /ESP32-kiCAD-Footprints/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/ESP32-kiCAD-Footprints/README.md -------------------------------------------------------------------------------- /Gerber/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/Gerber/.DS_Store -------------------------------------------------------------------------------- /Gerber/VFD_Watch-B_Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/Gerber/VFD_Watch-B_Cu.gbr -------------------------------------------------------------------------------- /Gerber/VFD_Watch-B_Mask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/Gerber/VFD_Watch-B_Mask.gbr -------------------------------------------------------------------------------- /Gerber/VFD_Watch-B_SilkS.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/Gerber/VFD_Watch-B_SilkS.gbr -------------------------------------------------------------------------------- /Gerber/VFD_Watch-Dwgs_User.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/Gerber/VFD_Watch-Dwgs_User.gbr -------------------------------------------------------------------------------- /Gerber/VFD_Watch-Edge_Cuts.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/Gerber/VFD_Watch-Edge_Cuts.gbr -------------------------------------------------------------------------------- /Gerber/VFD_Watch-F_Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/Gerber/VFD_Watch-F_Cu.gbr -------------------------------------------------------------------------------- /Gerber/VFD_Watch-F_Mask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/Gerber/VFD_Watch-F_Mask.gbr -------------------------------------------------------------------------------- /Gerber/VFD_Watch-F_SilkS.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/Gerber/VFD_Watch-F_SilkS.gbr -------------------------------------------------------------------------------- /Gerber/VFD_Watch-NPTH.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/Gerber/VFD_Watch-NPTH.drl -------------------------------------------------------------------------------- /Gerber/VFD_Watch-PTH.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/Gerber/VFD_Watch-PTH.drl -------------------------------------------------------------------------------- /Gerber/VFD_Watch-V1.1-RS-274x.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/Gerber/VFD_Watch-V1.1-RS-274x.zip -------------------------------------------------------------------------------- /Gerber/VFD_Watch-V1.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/Gerber/VFD_Watch-V1.1.zip -------------------------------------------------------------------------------- /Graphics/Schematic_24V_supply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/Graphics/Schematic_24V_supply.png -------------------------------------------------------------------------------- /Graphics/Schematic_3V3_supply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/Graphics/Schematic_3V3_supply.png -------------------------------------------------------------------------------- /Graphics/VFD_Function.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/Graphics/VFD_Function.ai -------------------------------------------------------------------------------- /Graphics/VFD_Function/VFD_Function-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/Graphics/VFD_Function/VFD_Function-01.png -------------------------------------------------------------------------------- /Graphics/VFD_Function/VFD_Function-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/Graphics/VFD_Function/VFD_Function-02.png -------------------------------------------------------------------------------- /Graphics/VFD_Function/VFD_Function_animated.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/Graphics/VFD_Function/VFD_Function_animated.gif -------------------------------------------------------------------------------- /Graphics/VFD_Watch-B_Cu.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/Graphics/VFD_Watch-B_Cu.pdf -------------------------------------------------------------------------------- /Graphics/VFD_Watch-B_SilkS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/Graphics/VFD_Watch-B_SilkS.pdf -------------------------------------------------------------------------------- /Graphics/VFD_Watch-Edge_Cuts.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/Graphics/VFD_Watch-Edge_Cuts.pdf -------------------------------------------------------------------------------- /Graphics/VFD_Watch-F_Cu.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/Graphics/VFD_Watch-F_Cu.pdf -------------------------------------------------------------------------------- /Graphics/VFD_Watch-F_SilkS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/Graphics/VFD_Watch-F_SilkS.pdf -------------------------------------------------------------------------------- /IO_Switches.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/IO_Switches.bak -------------------------------------------------------------------------------- /IO_Switches.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/IO_Switches.sch -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/README.md -------------------------------------------------------------------------------- /VFD_Components.dcm: -------------------------------------------------------------------------------- 1 | EESchema-DOCLIB Version 2.0 2 | # 3 | #End Doc Library 4 | -------------------------------------------------------------------------------- /VFD_Components.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/VFD_Components.lib -------------------------------------------------------------------------------- /VFD_IO.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/VFD_IO.bak -------------------------------------------------------------------------------- /VFD_IO.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/VFD_IO.sch -------------------------------------------------------------------------------- /VFD_Watch-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/VFD_Watch-cache.lib -------------------------------------------------------------------------------- /VFD_Watch-rescue.dcm: -------------------------------------------------------------------------------- 1 | EESchema-DOCLIB Version 2.0 2 | # 3 | #End Doc Library 4 | -------------------------------------------------------------------------------- /VFD_Watch-rescue.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/VFD_Watch-rescue.lib -------------------------------------------------------------------------------- /VFD_Watch.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/VFD_Watch.bak -------------------------------------------------------------------------------- /VFD_Watch.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/VFD_Watch.csv -------------------------------------------------------------------------------- /VFD_Watch.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/VFD_Watch.kicad_pcb -------------------------------------------------------------------------------- /VFD_Watch.kicad_pcb-bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/VFD_Watch.kicad_pcb-bak -------------------------------------------------------------------------------- /VFD_Watch.net: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/VFD_Watch.net -------------------------------------------------------------------------------- /VFD_Watch.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/VFD_Watch.pdf -------------------------------------------------------------------------------- /VFD_Watch.pretty/BK-92.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/VFD_Watch.pretty/BK-92.kicad_mod -------------------------------------------------------------------------------- /VFD_Watch.pretty/ILV2-5_7.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/VFD_Watch.pretty/ILV2-5_7.kicad_mod -------------------------------------------------------------------------------- /VFD_Watch.pretty/L_Metric_5040.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/VFD_Watch.pretty/L_Metric_5040.kicad_mod -------------------------------------------------------------------------------- /VFD_Watch.pretty/Strap_Holes.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/VFD_Watch.pretty/Strap_Holes.kicad_mod -------------------------------------------------------------------------------- /VFD_Watch.pretty/Wire_Holes.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/VFD_Watch.pretty/Wire_Holes.kicad_mod -------------------------------------------------------------------------------- /VFD_Watch.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/VFD_Watch.pro -------------------------------------------------------------------------------- /VFD_Watch.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/VFD_Watch.sch -------------------------------------------------------------------------------- /_saved_IO_Switches.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/_saved_IO_Switches.sch -------------------------------------------------------------------------------- /fp-info-cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/fp-info-cache -------------------------------------------------------------------------------- /fp-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/fp-lib-table -------------------------------------------------------------------------------- /sym-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakue95/VFD_Watch/HEAD/sym-lib-table --------------------------------------------------------------------------------