├── Firmwares ├── MCU Board NCM105 v1.5 for Tubes board NCT2xx │ ├── Bin - Compiled │ │ └── NixieClock.ino.standard.hex │ ├── NixieClock_Japanese_Effects.zip │ └── Source Code │ │ └── NixieClock.ino ├── MCU Board NCM105 v1.6 for Tubes board NCT2xx │ ├── Bin - Compiled │ │ └── NixieClock.ino.standard.hex │ └── Source Code │ │ └── NixieClock.ino ├── MCU Board NCM107 v1.1 for Tubes board NCT3xx+NCT8xx │ ├── Bin - compiled │ │ └── NixieClockNCT818.ino.standard.hex │ └── Source code │ │ ├── NixieClockNCT818.ino │ │ ├── doIndication818.h │ │ └── doIndication818.ino ├── MCU Board NCM107 v1.1 for Tubes board NCT3xx │ ├── Bin - Compiled │ │ └── NixieClockNCT318.ino.standard.hex │ └── Source Code │ │ ├── NixieClockNCT318.ino │ │ ├── doIndication318.h │ │ └── doIndication318.ino ├── MCU Board NCM107 v1.1 for Tubes board NCT4xx │ ├── Bin - Compiled │ │ └── NixieClockMCU107.ino.standard.hex │ └── Source Code │ │ └── NixieClockMCU107.ino ├── MCU Board NCM109 v1.x for Tubes board NCT3xx (8 tubes) │ ├── Bin - Compiled │ │ └── NixieClock_NCM109_FOR_NCT3XX_8_Tubes.hex │ └── Source Code │ │ └── NixieClock_NCM109_FOR_NCT3XX_8_Tubes │ │ ├── NixieClock_NCM109_FOR_NCT3XX_8_Tubes.ino │ │ ├── doIndication818.h │ │ └── doIndication818.ino ├── MCU Board NCM109 v1.x for Tubes board NCT3xx (8 tubes)_1K │ ├── Bin - Compiled │ │ ├── CountDownTimerNCT818.ino.with_bootloader.standard.hex │ │ ├── NixieClock_NCM109_FOR_NCT8xx_1K.ino.with_bootloader.uno.hex │ │ └── NixieClock_NCM109_FOR_NCT8xx_1K_US_MOD.ino.with_bootloader.uno.hex │ └── Source Code │ │ ├── CountDownTimerNCT818 │ │ ├── CountDownTimerNCT818.ino │ │ └── Readme.txt │ │ ├── NixieClock_NCM109_FOR_NCT8xx_1K │ │ ├── NixieClock_NCM109_FOR_NCT8xx_1K.ino │ │ ├── doIndication818.h │ │ └── doIndication818.ino │ │ └── NixieClock_NCM109_FOR_NCT8xx_1K_US_MOD │ │ ├── NixieClock_NCM109_FOR_NCT8xx_1K_US_MOD.ino │ │ ├── doIndication818.h │ │ └── doIndication818.ino ├── MCU Board NCM109 v1.x for Tubes board NCT3xx │ ├── Bin - Compiled │ │ └── NixieClock_NCM109_FOR_NCT3xx_series.hex │ └── Source Code │ │ └── NixieClock_NCM109_FOR_NCT3XX_Series │ │ ├── NixieClock_NCM109_FOR_NCT3XX_Series.ino │ │ ├── doIndication318.h │ │ └── doIndication318.ino ├── MCU Board NCM109 v1.x for Tubes board NCT3xx_1K │ ├── Bin - Compiled │ │ ├── NixieClock_NCM109_FOR_NCT3xx_1K.ino.hex │ │ └── NixieClock_NCM109_FOR_NCT3xx_1K.ino.with_bootloader.hex │ └── Source Code │ │ └── NixieClock_NCM109_FOR_NCT3XX_1K │ │ ├── NixieClock_NCM109_FOR_NCT3XX_1K.ino │ │ ├── doIndication318_1K.h │ │ └── doIndication318_1K.ino └── MCU Board NCM109 v1.x for Tubes board NCT4xx │ ├── Bin - Compiled │ └── NixieClock_NCM109_FOR_NCT4xx_series.hex │ └── Source Code │ ├── NixieClock_NCM109 │ ├── NixieClock_NCM109.ino │ ├── doIndication109.h │ └── doIndication109.ino │ └── SimpleSample │ └── SimpleSample │ └── SimpleSample.ino ├── GRA & AFCH Compiled Firmware Flasher ├── GA_Flasher.exe ├── GA_Flasher_32.exe ├── GRA&AFCH_Flasher.rar ├── GRA&AFCH_Flasher.zip ├── Source │ ├── GA_Flasher.dpr │ ├── GA_Flasher.dproj │ ├── GA_Flasher.dproj.local │ ├── GA_Flasher.identcache │ ├── GA_Flasher.res │ ├── GA_Flasher.stat │ ├── GA_Flasher_Icon.ico │ ├── GA_Flasher_Icon1.ico │ ├── GA_Flasher_Icon2.ico │ ├── GA_Flasher_Icon3.ico │ ├── GA_Flasher_Icon4.ico │ ├── GA_Flasher_Icon5.ico │ ├── GRAandAFCH.res │ ├── Unit1.dfm │ ├── Unit1.pas │ ├── Unit1.vlb │ ├── Win32 │ │ └── Release │ │ │ ├── GA_Flasher32.exe │ │ │ ├── Unit1.dcu │ │ │ └── Unit4.dcu │ └── Win64 │ │ └── Release │ │ ├── GA_Flasher.exe │ │ ├── GA_Flasher_32.exe │ │ ├── GRA&AFCH_Flasher.rar │ │ ├── avrdude.conf │ │ ├── avrdude.exe │ │ ├── libusb0.dll │ │ └── run.cmd ├── avrdude.conf ├── avrdude.exe ├── libusb0.dll └── run.cmd ├── Libraries ├── ClickButton │ ├── ClickButton.cpp │ ├── ClickButton.h │ ├── Examples │ │ ├── LEDfader │ │ │ └── LEDfader.ino │ │ ├── MultiButtons │ │ │ └── MultiButtons.ino │ │ └── MultiClicks │ │ │ └── MultiClicks.ino │ └── keywords.txt ├── OneWire │ ├── OneWire.cpp │ ├── OneWire.h │ ├── examples │ │ ├── DS18x20_Temperature │ │ │ └── DS18x20_Temperature.pde │ │ ├── DS2408_Switch │ │ │ └── DS2408_Switch.pde │ │ └── DS250x_PROM │ │ │ └── DS250x_PROM.pde │ ├── keywords.txt │ ├── library.json │ └── library.properties ├── Time │ ├── DateStrings.cpp │ ├── Readme.txt │ ├── Time.cpp │ ├── Time.h │ ├── TimeLib.h │ ├── examples │ │ ├── Processing │ │ │ └── SyncArduinoClock │ │ │ │ ├── SyncArduinoClock.pde │ │ │ │ └── readme.txt │ │ ├── TimeArduinoDue │ │ │ └── TimeArduinoDue.ino │ │ ├── TimeGPS │ │ │ └── TimeGPS.ino │ │ ├── TimeNTP │ │ │ └── TimeNTP.ino │ │ ├── TimeNTP_ESP8266WiFi │ │ │ └── TimeNTP_ESP8266WiFi.ino │ │ ├── TimeRTC │ │ │ ├── TimeRTC.ino │ │ │ └── TimeRTC.pde │ │ ├── TimeRTCLog │ │ │ ├── TimeRTCLog.ino │ │ │ └── TimeRTCLog.pde │ │ ├── TimeRTCSet │ │ │ └── TimeRTCSet.ino │ │ ├── TimeSerial │ │ │ └── TimeSerial.ino │ │ ├── TimeSerialDateStrings │ │ │ └── TimeSerialDateStrings.ino │ │ └── TimeTeensy3 │ │ │ └── TimeTeensy3.ino │ ├── keywords.txt │ ├── library.json │ └── library.properties └── Tone │ ├── Tone.cpp │ ├── Tone.h │ ├── changelog.txt │ ├── examples │ ├── DTMFTest │ │ └── DTMFTest.pde │ ├── RTTTL │ │ └── RTTTL.pde │ └── ToneTest │ │ └── ToneTest.pde │ └── keywords.txt ├── README.md ├── Schemes ├── Previous Versions │ ├── Scheme Nixie Clock Main Board MCU - NCM105 v1.6.pdf │ ├── Scheme Nixie Clock Main Board MCU - NCM106 v1.1.pdf │ ├── Scheme Tubes Board - NCT208 v1.2.pdf │ ├── Scheme Tubes Board - NCT212 v1.2.pdf │ ├── Scheme Tubes Board - NCT214 v1.2.pdf │ ├── Scheme Tubes Board - NCT216 v1.0.pdf │ ├── Scheme Tubes Board - NCT218 v1.2.pdf │ ├── Scheme Tubes Board - NCT282 v1.0.pdf │ ├── Scheme Tubes Board - NCT318 v1.0.pdf │ ├── Scheme Tubes Board - NCT408 v1.0.pdf │ ├── Scheme Tubes Board - NCT414 v1.0.pdf │ ├── Scheme Tubes Board - NCT566 v1.3.pdf │ └── Scheme Tubes Board - NCT573 v1.0.pdf ├── Scheme Nixie Clock Main Board MCU - NCM107 v1.1.pdf ├── Scheme Tubes Board - NCT318 v1.1.pdf ├── Scheme Tubes Board - NCT3566 v1.0.pdf ├── Scheme Tubes Board - NCT412 v1.0.pdf ├── Scheme Tubes Board - NCT414 v1.1.pdf ├── Scheme Tubes Board - NCT416 v1.0.pdf ├── Scheme Tubes Board - NCT4573 v1.0.pdf ├── Scheme Tubes Board - NCT482 v1.0.pdf └── Scheme Tubes Board - NCT818 v1.0.pdf ├── USB drivers ├── Arduino (Atmel) │ ├── AdafruitCircuitPlayground.cat │ ├── AdafruitCircuitPlayground.inf │ ├── README.txt │ ├── amd64 │ │ ├── libusb0.dll │ │ └── libusb0.sys │ ├── arduino-org.cat │ ├── arduino-org.inf │ ├── arduino.cat │ ├── arduino.inf │ ├── arduino_gemma.cat │ ├── arduino_gemma.inf │ ├── dpinst-amd64.exe │ ├── dpinst-x86.exe │ ├── genuino.cat │ ├── genuino.inf │ ├── ia64 │ │ ├── libusb0.dll │ │ └── libusb0.sys │ ├── license │ │ └── libusb0 │ │ │ └── installer_license.txt │ ├── linino-boards_amd64.cat │ ├── linino-boards_x86.cat │ ├── linino.inf │ └── x86 │ │ ├── libusb0.sys │ │ └── libusb0_x86.dll ├── CH340_341 │ ├── CH341SER_MAC.ZIP │ └── ch340ser-windows.zip ├── CP210x_6.7.4 │ ├── slabvcp.cat │ ├── slabvcp.inf │ ├── x64 │ │ ├── WdfCoInstaller01009.dll │ │ └── silabser.sys │ └── x86 │ │ ├── WdfCoInstaller01009.dll │ │ └── silabser.sys ├── FTDI (FT232RL, FT230) │ └── CDM21218_Setup.exe └── README.md └── User Manual ├── Release 1.4 ├── User Manual Nixie Clock GRA & AFCH wo background_V1.4.docx ├── User Manual Nixie Clock GRA & AFCH_V1.4.docx ├── User Manual Nixie Clock GRA & AFCH_V1.4.pdf ├── User Manual Nixie Clock GRA & AFCH_V1.4_page_1.png ├── User Manual Nixie Clock GRA & AFCH_V1.4_page_2.png ├── User Manual Nixie Clock GRA & AFCH_V1.4_page_3.png └── User Manual Nixie Clock GRA & AFCH_V1.4_page_4.png ├── Release 1.5 ├── User Manual Nixie Clock GRA & AFCH wo background_V1.5.docx └── User Manual Nixie Clock GRA & AFCH wo background_V1.5.pdf ├── Release 1 ├── User_manual_page 2.png ├── User_manual_page 3.png ├── User_manual_page 4.png └── User_manual_page1.png ├── v1.57 ├── User Manual Nixie Clock GRA & AFCH wo background_1.5.docx └── User Manual Nixie Clock GRA & AFCH wo background_1.5.pdf └── v1.59 ├── User Manual Nixie Clock GRA & AFCH wo background_1.59.pdf └── User Manual Nixie Clock GRA & AFCH_1.59.pdf /Firmwares/MCU Board NCM105 v1.5 for Tubes board NCT2xx/Bin - Compiled/NixieClock.ino.standard.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Firmwares/MCU Board NCM105 v1.5 for Tubes board NCT2xx/Bin - Compiled/NixieClock.ino.standard.hex -------------------------------------------------------------------------------- /Firmwares/MCU Board NCM105 v1.5 for Tubes board NCT2xx/NixieClock_Japanese_Effects.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Firmwares/MCU Board NCM105 v1.5 for Tubes board NCT2xx/NixieClock_Japanese_Effects.zip -------------------------------------------------------------------------------- /Firmwares/MCU Board NCM105 v1.5 for Tubes board NCT2xx/Source Code/NixieClock.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Firmwares/MCU Board NCM105 v1.5 for Tubes board NCT2xx/Source Code/NixieClock.ino -------------------------------------------------------------------------------- /Firmwares/MCU Board NCM105 v1.6 for Tubes board NCT2xx/Bin - Compiled/NixieClock.ino.standard.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Firmwares/MCU Board NCM105 v1.6 for Tubes board NCT2xx/Bin - Compiled/NixieClock.ino.standard.hex -------------------------------------------------------------------------------- /Firmwares/MCU Board NCM105 v1.6 for Tubes board NCT2xx/Source Code/NixieClock.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Firmwares/MCU Board NCM105 v1.6 for Tubes board NCT2xx/Source Code/NixieClock.ino -------------------------------------------------------------------------------- /Firmwares/MCU Board NCM107 v1.1 for Tubes board NCT3xx+NCT8xx/Bin - compiled/NixieClockNCT818.ino.standard.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Firmwares/MCU Board NCM107 v1.1 for Tubes board NCT3xx+NCT8xx/Bin - compiled/NixieClockNCT818.ino.standard.hex -------------------------------------------------------------------------------- /Firmwares/MCU Board NCM107 v1.1 for Tubes board NCT3xx+NCT8xx/Source code/NixieClockNCT818.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Firmwares/MCU Board NCM107 v1.1 for Tubes board NCT3xx+NCT8xx/Source code/NixieClockNCT818.ino -------------------------------------------------------------------------------- /Firmwares/MCU Board NCM107 v1.1 for Tubes board NCT3xx+NCT8xx/Source code/doIndication818.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Firmwares/MCU Board NCM107 v1.1 for Tubes board NCT3xx+NCT8xx/Source code/doIndication818.h -------------------------------------------------------------------------------- /Firmwares/MCU Board NCM107 v1.1 for Tubes board NCT3xx+NCT8xx/Source code/doIndication818.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Firmwares/MCU Board NCM107 v1.1 for Tubes board NCT3xx+NCT8xx/Source code/doIndication818.ino -------------------------------------------------------------------------------- /Firmwares/MCU Board NCM107 v1.1 for Tubes board NCT3xx/Bin - Compiled/NixieClockNCT318.ino.standard.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Firmwares/MCU Board NCM107 v1.1 for Tubes board NCT3xx/Bin - Compiled/NixieClockNCT318.ino.standard.hex -------------------------------------------------------------------------------- /Firmwares/MCU Board NCM107 v1.1 for Tubes board NCT3xx/Source Code/NixieClockNCT318.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Firmwares/MCU Board NCM107 v1.1 for Tubes board NCT3xx/Source Code/NixieClockNCT318.ino -------------------------------------------------------------------------------- /Firmwares/MCU Board NCM107 v1.1 for Tubes board NCT3xx/Source Code/doIndication318.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Firmwares/MCU Board NCM107 v1.1 for Tubes board NCT3xx/Source Code/doIndication318.h -------------------------------------------------------------------------------- /Firmwares/MCU Board NCM107 v1.1 for Tubes board NCT3xx/Source Code/doIndication318.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Firmwares/MCU Board NCM107 v1.1 for Tubes board NCT3xx/Source Code/doIndication318.ino -------------------------------------------------------------------------------- /Firmwares/MCU Board NCM107 v1.1 for Tubes board NCT4xx/Bin - Compiled/NixieClockMCU107.ino.standard.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Firmwares/MCU Board NCM107 v1.1 for Tubes board NCT4xx/Bin - Compiled/NixieClockMCU107.ino.standard.hex -------------------------------------------------------------------------------- /Firmwares/MCU Board NCM107 v1.1 for Tubes board NCT4xx/Source Code/NixieClockMCU107.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Firmwares/MCU Board NCM107 v1.1 for Tubes board NCT4xx/Source Code/NixieClockMCU107.ino -------------------------------------------------------------------------------- /Firmwares/MCU Board NCM109 v1.x for Tubes board NCT3xx (8 tubes)/Bin - Compiled/NixieClock_NCM109_FOR_NCT3XX_8_Tubes.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Firmwares/MCU Board NCM109 v1.x for Tubes board NCT3xx (8 tubes)/Bin - Compiled/NixieClock_NCM109_FOR_NCT3XX_8_Tubes.hex -------------------------------------------------------------------------------- /Firmwares/MCU Board NCM109 v1.x for Tubes board NCT3xx (8 tubes)/Source Code/NixieClock_NCM109_FOR_NCT3XX_8_Tubes/NixieClock_NCM109_FOR_NCT3XX_8_Tubes.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Firmwares/MCU Board NCM109 v1.x for Tubes board NCT3xx (8 tubes)/Source Code/NixieClock_NCM109_FOR_NCT3XX_8_Tubes/NixieClock_NCM109_FOR_NCT3XX_8_Tubes.ino -------------------------------------------------------------------------------- /Firmwares/MCU Board NCM109 v1.x for Tubes board NCT3xx (8 tubes)/Source Code/NixieClock_NCM109_FOR_NCT3XX_8_Tubes/doIndication818.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Firmwares/MCU Board NCM109 v1.x for Tubes board NCT3xx (8 tubes)/Source Code/NixieClock_NCM109_FOR_NCT3XX_8_Tubes/doIndication818.h -------------------------------------------------------------------------------- /Firmwares/MCU Board NCM109 v1.x for Tubes board NCT3xx (8 tubes)/Source Code/NixieClock_NCM109_FOR_NCT3XX_8_Tubes/doIndication818.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Firmwares/MCU Board NCM109 v1.x for Tubes board NCT3xx (8 tubes)/Source Code/NixieClock_NCM109_FOR_NCT3XX_8_Tubes/doIndication818.ino -------------------------------------------------------------------------------- /Firmwares/MCU Board NCM109 v1.x for Tubes board NCT3xx (8 tubes)_1K/Bin - Compiled/CountDownTimerNCT818.ino.with_bootloader.standard.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Firmwares/MCU Board NCM109 v1.x for Tubes board NCT3xx (8 tubes)_1K/Bin - Compiled/CountDownTimerNCT818.ino.with_bootloader.standard.hex -------------------------------------------------------------------------------- /Firmwares/MCU Board NCM109 v1.x for Tubes board NCT3xx (8 tubes)_1K/Bin - Compiled/NixieClock_NCM109_FOR_NCT8xx_1K.ino.with_bootloader.uno.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Firmwares/MCU Board NCM109 v1.x for Tubes board NCT3xx (8 tubes)_1K/Bin - Compiled/NixieClock_NCM109_FOR_NCT8xx_1K.ino.with_bootloader.uno.hex -------------------------------------------------------------------------------- /Firmwares/MCU Board NCM109 v1.x for Tubes board NCT3xx (8 tubes)_1K/Bin - Compiled/NixieClock_NCM109_FOR_NCT8xx_1K_US_MOD.ino.with_bootloader.uno.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Firmwares/MCU Board NCM109 v1.x for Tubes board NCT3xx (8 tubes)_1K/Bin - Compiled/NixieClock_NCM109_FOR_NCT8xx_1K_US_MOD.ino.with_bootloader.uno.hex -------------------------------------------------------------------------------- /Firmwares/MCU Board NCM109 v1.x for Tubes board NCT3xx (8 tubes)_1K/Source Code/CountDownTimerNCT818/CountDownTimerNCT818.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Firmwares/MCU Board NCM109 v1.x for Tubes board NCT3xx (8 tubes)_1K/Source Code/CountDownTimerNCT818/CountDownTimerNCT818.ino -------------------------------------------------------------------------------- /Firmwares/MCU Board NCM109 v1.x for Tubes board NCT3xx (8 tubes)_1K/Source Code/CountDownTimerNCT818/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Firmwares/MCU Board NCM109 v1.x for Tubes board NCT3xx (8 tubes)_1K/Source Code/CountDownTimerNCT818/Readme.txt -------------------------------------------------------------------------------- /Firmwares/MCU Board NCM109 v1.x for Tubes board NCT3xx (8 tubes)_1K/Source Code/NixieClock_NCM109_FOR_NCT8xx_1K/NixieClock_NCM109_FOR_NCT8xx_1K.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Firmwares/MCU Board NCM109 v1.x for Tubes board NCT3xx (8 tubes)_1K/Source Code/NixieClock_NCM109_FOR_NCT8xx_1K/NixieClock_NCM109_FOR_NCT8xx_1K.ino -------------------------------------------------------------------------------- /Firmwares/MCU Board NCM109 v1.x for Tubes board NCT3xx (8 tubes)_1K/Source Code/NixieClock_NCM109_FOR_NCT8xx_1K/doIndication818.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Firmwares/MCU Board NCM109 v1.x for Tubes board NCT3xx (8 tubes)_1K/Source Code/NixieClock_NCM109_FOR_NCT8xx_1K/doIndication818.h -------------------------------------------------------------------------------- /Firmwares/MCU Board NCM109 v1.x for Tubes board NCT3xx (8 tubes)_1K/Source Code/NixieClock_NCM109_FOR_NCT8xx_1K/doIndication818.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Firmwares/MCU Board NCM109 v1.x for Tubes board NCT3xx (8 tubes)_1K/Source Code/NixieClock_NCM109_FOR_NCT8xx_1K/doIndication818.ino -------------------------------------------------------------------------------- /Firmwares/MCU Board NCM109 v1.x for Tubes board NCT3xx (8 tubes)_1K/Source Code/NixieClock_NCM109_FOR_NCT8xx_1K_US_MOD/NixieClock_NCM109_FOR_NCT8xx_1K_US_MOD.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Firmwares/MCU Board NCM109 v1.x for Tubes board NCT3xx (8 tubes)_1K/Source Code/NixieClock_NCM109_FOR_NCT8xx_1K_US_MOD/NixieClock_NCM109_FOR_NCT8xx_1K_US_MOD.ino -------------------------------------------------------------------------------- /Firmwares/MCU Board NCM109 v1.x for Tubes board NCT3xx (8 tubes)_1K/Source Code/NixieClock_NCM109_FOR_NCT8xx_1K_US_MOD/doIndication818.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Firmwares/MCU Board NCM109 v1.x for Tubes board NCT3xx (8 tubes)_1K/Source Code/NixieClock_NCM109_FOR_NCT8xx_1K_US_MOD/doIndication818.h -------------------------------------------------------------------------------- /Firmwares/MCU Board NCM109 v1.x for Tubes board NCT3xx (8 tubes)_1K/Source Code/NixieClock_NCM109_FOR_NCT8xx_1K_US_MOD/doIndication818.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Firmwares/MCU Board NCM109 v1.x for Tubes board NCT3xx (8 tubes)_1K/Source Code/NixieClock_NCM109_FOR_NCT8xx_1K_US_MOD/doIndication818.ino -------------------------------------------------------------------------------- /Firmwares/MCU Board NCM109 v1.x for Tubes board NCT3xx/Bin - Compiled/NixieClock_NCM109_FOR_NCT3xx_series.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Firmwares/MCU Board NCM109 v1.x for Tubes board NCT3xx/Bin - Compiled/NixieClock_NCM109_FOR_NCT3xx_series.hex -------------------------------------------------------------------------------- /Firmwares/MCU Board NCM109 v1.x for Tubes board NCT3xx/Source Code/NixieClock_NCM109_FOR_NCT3XX_Series/NixieClock_NCM109_FOR_NCT3XX_Series.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Firmwares/MCU Board NCM109 v1.x for Tubes board NCT3xx/Source Code/NixieClock_NCM109_FOR_NCT3XX_Series/NixieClock_NCM109_FOR_NCT3XX_Series.ino -------------------------------------------------------------------------------- /Firmwares/MCU Board NCM109 v1.x for Tubes board NCT3xx/Source Code/NixieClock_NCM109_FOR_NCT3XX_Series/doIndication318.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Firmwares/MCU Board NCM109 v1.x for Tubes board NCT3xx/Source Code/NixieClock_NCM109_FOR_NCT3XX_Series/doIndication318.h -------------------------------------------------------------------------------- /Firmwares/MCU Board NCM109 v1.x for Tubes board NCT3xx/Source Code/NixieClock_NCM109_FOR_NCT3XX_Series/doIndication318.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Firmwares/MCU Board NCM109 v1.x for Tubes board NCT3xx/Source Code/NixieClock_NCM109_FOR_NCT3XX_Series/doIndication318.ino -------------------------------------------------------------------------------- /Firmwares/MCU Board NCM109 v1.x for Tubes board NCT3xx_1K/Bin - Compiled/NixieClock_NCM109_FOR_NCT3xx_1K.ino.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Firmwares/MCU Board NCM109 v1.x for Tubes board NCT3xx_1K/Bin - Compiled/NixieClock_NCM109_FOR_NCT3xx_1K.ino.hex -------------------------------------------------------------------------------- /Firmwares/MCU Board NCM109 v1.x for Tubes board NCT3xx_1K/Bin - Compiled/NixieClock_NCM109_FOR_NCT3xx_1K.ino.with_bootloader.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Firmwares/MCU Board NCM109 v1.x for Tubes board NCT3xx_1K/Bin - Compiled/NixieClock_NCM109_FOR_NCT3xx_1K.ino.with_bootloader.hex -------------------------------------------------------------------------------- /Firmwares/MCU Board NCM109 v1.x for Tubes board NCT3xx_1K/Source Code/NixieClock_NCM109_FOR_NCT3XX_1K/NixieClock_NCM109_FOR_NCT3XX_1K.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Firmwares/MCU Board NCM109 v1.x for Tubes board NCT3xx_1K/Source Code/NixieClock_NCM109_FOR_NCT3XX_1K/NixieClock_NCM109_FOR_NCT3XX_1K.ino -------------------------------------------------------------------------------- /Firmwares/MCU Board NCM109 v1.x for Tubes board NCT3xx_1K/Source Code/NixieClock_NCM109_FOR_NCT3XX_1K/doIndication318_1K.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Firmwares/MCU Board NCM109 v1.x for Tubes board NCT3xx_1K/Source Code/NixieClock_NCM109_FOR_NCT3XX_1K/doIndication318_1K.h -------------------------------------------------------------------------------- /Firmwares/MCU Board NCM109 v1.x for Tubes board NCT3xx_1K/Source Code/NixieClock_NCM109_FOR_NCT3XX_1K/doIndication318_1K.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Firmwares/MCU Board NCM109 v1.x for Tubes board NCT3xx_1K/Source Code/NixieClock_NCM109_FOR_NCT3XX_1K/doIndication318_1K.ino -------------------------------------------------------------------------------- /Firmwares/MCU Board NCM109 v1.x for Tubes board NCT4xx/Bin - Compiled/NixieClock_NCM109_FOR_NCT4xx_series.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Firmwares/MCU Board NCM109 v1.x for Tubes board NCT4xx/Bin - Compiled/NixieClock_NCM109_FOR_NCT4xx_series.hex -------------------------------------------------------------------------------- /Firmwares/MCU Board NCM109 v1.x for Tubes board NCT4xx/Source Code/NixieClock_NCM109/NixieClock_NCM109.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Firmwares/MCU Board NCM109 v1.x for Tubes board NCT4xx/Source Code/NixieClock_NCM109/NixieClock_NCM109.ino -------------------------------------------------------------------------------- /Firmwares/MCU Board NCM109 v1.x for Tubes board NCT4xx/Source Code/NixieClock_NCM109/doIndication109.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Firmwares/MCU Board NCM109 v1.x for Tubes board NCT4xx/Source Code/NixieClock_NCM109/doIndication109.h -------------------------------------------------------------------------------- /Firmwares/MCU Board NCM109 v1.x for Tubes board NCT4xx/Source Code/NixieClock_NCM109/doIndication109.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Firmwares/MCU Board NCM109 v1.x for Tubes board NCT4xx/Source Code/NixieClock_NCM109/doIndication109.ino -------------------------------------------------------------------------------- /Firmwares/MCU Board NCM109 v1.x for Tubes board NCT4xx/Source Code/SimpleSample/SimpleSample/SimpleSample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Firmwares/MCU Board NCM109 v1.x for Tubes board NCT4xx/Source Code/SimpleSample/SimpleSample/SimpleSample.ino -------------------------------------------------------------------------------- /GRA & AFCH Compiled Firmware Flasher/GA_Flasher.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/GRA & AFCH Compiled Firmware Flasher/GA_Flasher.exe -------------------------------------------------------------------------------- /GRA & AFCH Compiled Firmware Flasher/GA_Flasher_32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/GRA & AFCH Compiled Firmware Flasher/GA_Flasher_32.exe -------------------------------------------------------------------------------- /GRA & AFCH Compiled Firmware Flasher/GRA&AFCH_Flasher.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/GRA & AFCH Compiled Firmware Flasher/GRA&AFCH_Flasher.rar -------------------------------------------------------------------------------- /GRA & AFCH Compiled Firmware Flasher/GRA&AFCH_Flasher.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/GRA & AFCH Compiled Firmware Flasher/GRA&AFCH_Flasher.zip -------------------------------------------------------------------------------- /GRA & AFCH Compiled Firmware Flasher/Source/GA_Flasher.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/GRA & AFCH Compiled Firmware Flasher/Source/GA_Flasher.dpr -------------------------------------------------------------------------------- /GRA & AFCH Compiled Firmware Flasher/Source/GA_Flasher.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/GRA & AFCH Compiled Firmware Flasher/Source/GA_Flasher.dproj -------------------------------------------------------------------------------- /GRA & AFCH Compiled Firmware Flasher/Source/GA_Flasher.dproj.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/GRA & AFCH Compiled Firmware Flasher/Source/GA_Flasher.dproj.local -------------------------------------------------------------------------------- /GRA & AFCH Compiled Firmware Flasher/Source/GA_Flasher.identcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/GRA & AFCH Compiled Firmware Flasher/Source/GA_Flasher.identcache -------------------------------------------------------------------------------- /GRA & AFCH Compiled Firmware Flasher/Source/GA_Flasher.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/GRA & AFCH Compiled Firmware Flasher/Source/GA_Flasher.res -------------------------------------------------------------------------------- /GRA & AFCH Compiled Firmware Flasher/Source/GA_Flasher.stat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/GRA & AFCH Compiled Firmware Flasher/Source/GA_Flasher.stat -------------------------------------------------------------------------------- /GRA & AFCH Compiled Firmware Flasher/Source/GA_Flasher_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/GRA & AFCH Compiled Firmware Flasher/Source/GA_Flasher_Icon.ico -------------------------------------------------------------------------------- /GRA & AFCH Compiled Firmware Flasher/Source/GA_Flasher_Icon1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/GRA & AFCH Compiled Firmware Flasher/Source/GA_Flasher_Icon1.ico -------------------------------------------------------------------------------- /GRA & AFCH Compiled Firmware Flasher/Source/GA_Flasher_Icon2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/GRA & AFCH Compiled Firmware Flasher/Source/GA_Flasher_Icon2.ico -------------------------------------------------------------------------------- /GRA & AFCH Compiled Firmware Flasher/Source/GA_Flasher_Icon3.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/GRA & AFCH Compiled Firmware Flasher/Source/GA_Flasher_Icon3.ico -------------------------------------------------------------------------------- /GRA & AFCH Compiled Firmware Flasher/Source/GA_Flasher_Icon4.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/GRA & AFCH Compiled Firmware Flasher/Source/GA_Flasher_Icon4.ico -------------------------------------------------------------------------------- /GRA & AFCH Compiled Firmware Flasher/Source/GA_Flasher_Icon5.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/GRA & AFCH Compiled Firmware Flasher/Source/GA_Flasher_Icon5.ico -------------------------------------------------------------------------------- /GRA & AFCH Compiled Firmware Flasher/Source/GRAandAFCH.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/GRA & AFCH Compiled Firmware Flasher/Source/GRAandAFCH.res -------------------------------------------------------------------------------- /GRA & AFCH Compiled Firmware Flasher/Source/Unit1.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/GRA & AFCH Compiled Firmware Flasher/Source/Unit1.dfm -------------------------------------------------------------------------------- /GRA & AFCH Compiled Firmware Flasher/Source/Unit1.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/GRA & AFCH Compiled Firmware Flasher/Source/Unit1.pas -------------------------------------------------------------------------------- /GRA & AFCH Compiled Firmware Flasher/Source/Unit1.vlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/GRA & AFCH Compiled Firmware Flasher/Source/Unit1.vlb -------------------------------------------------------------------------------- /GRA & AFCH Compiled Firmware Flasher/Source/Win32/Release/GA_Flasher32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/GRA & AFCH Compiled Firmware Flasher/Source/Win32/Release/GA_Flasher32.exe -------------------------------------------------------------------------------- /GRA & AFCH Compiled Firmware Flasher/Source/Win32/Release/Unit1.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/GRA & AFCH Compiled Firmware Flasher/Source/Win32/Release/Unit1.dcu -------------------------------------------------------------------------------- /GRA & AFCH Compiled Firmware Flasher/Source/Win32/Release/Unit4.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/GRA & AFCH Compiled Firmware Flasher/Source/Win32/Release/Unit4.dcu -------------------------------------------------------------------------------- /GRA & AFCH Compiled Firmware Flasher/Source/Win64/Release/GA_Flasher.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/GRA & AFCH Compiled Firmware Flasher/Source/Win64/Release/GA_Flasher.exe -------------------------------------------------------------------------------- /GRA & AFCH Compiled Firmware Flasher/Source/Win64/Release/GA_Flasher_32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/GRA & AFCH Compiled Firmware Flasher/Source/Win64/Release/GA_Flasher_32.exe -------------------------------------------------------------------------------- /GRA & AFCH Compiled Firmware Flasher/Source/Win64/Release/GRA&AFCH_Flasher.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/GRA & AFCH Compiled Firmware Flasher/Source/Win64/Release/GRA&AFCH_Flasher.rar -------------------------------------------------------------------------------- /GRA & AFCH Compiled Firmware Flasher/Source/Win64/Release/avrdude.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/GRA & AFCH Compiled Firmware Flasher/Source/Win64/Release/avrdude.conf -------------------------------------------------------------------------------- /GRA & AFCH Compiled Firmware Flasher/Source/Win64/Release/avrdude.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/GRA & AFCH Compiled Firmware Flasher/Source/Win64/Release/avrdude.exe -------------------------------------------------------------------------------- /GRA & AFCH Compiled Firmware Flasher/Source/Win64/Release/libusb0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/GRA & AFCH Compiled Firmware Flasher/Source/Win64/Release/libusb0.dll -------------------------------------------------------------------------------- /GRA & AFCH Compiled Firmware Flasher/Source/Win64/Release/run.cmd: -------------------------------------------------------------------------------- 1 | avrdude.exe %1 %2 %3 %4 %5 %6 %7 %8 %9 2 | @pause -------------------------------------------------------------------------------- /GRA & AFCH Compiled Firmware Flasher/avrdude.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/GRA & AFCH Compiled Firmware Flasher/avrdude.conf -------------------------------------------------------------------------------- /GRA & AFCH Compiled Firmware Flasher/avrdude.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/GRA & AFCH Compiled Firmware Flasher/avrdude.exe -------------------------------------------------------------------------------- /GRA & AFCH Compiled Firmware Flasher/libusb0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/GRA & AFCH Compiled Firmware Flasher/libusb0.dll -------------------------------------------------------------------------------- /GRA & AFCH Compiled Firmware Flasher/run.cmd: -------------------------------------------------------------------------------- 1 | avrdude.exe %1 %2 %3 %4 %5 %6 %7 %8 %9 2 | @pause -------------------------------------------------------------------------------- /Libraries/ClickButton/ClickButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Libraries/ClickButton/ClickButton.cpp -------------------------------------------------------------------------------- /Libraries/ClickButton/ClickButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Libraries/ClickButton/ClickButton.h -------------------------------------------------------------------------------- /Libraries/ClickButton/Examples/LEDfader/LEDfader.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Libraries/ClickButton/Examples/LEDfader/LEDfader.ino -------------------------------------------------------------------------------- /Libraries/ClickButton/Examples/MultiButtons/MultiButtons.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Libraries/ClickButton/Examples/MultiButtons/MultiButtons.ino -------------------------------------------------------------------------------- /Libraries/ClickButton/Examples/MultiClicks/MultiClicks.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Libraries/ClickButton/Examples/MultiClicks/MultiClicks.ino -------------------------------------------------------------------------------- /Libraries/ClickButton/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Libraries/ClickButton/keywords.txt -------------------------------------------------------------------------------- /Libraries/OneWire/OneWire.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Libraries/OneWire/OneWire.cpp -------------------------------------------------------------------------------- /Libraries/OneWire/OneWire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Libraries/OneWire/OneWire.h -------------------------------------------------------------------------------- /Libraries/OneWire/examples/DS18x20_Temperature/DS18x20_Temperature.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Libraries/OneWire/examples/DS18x20_Temperature/DS18x20_Temperature.pde -------------------------------------------------------------------------------- /Libraries/OneWire/examples/DS2408_Switch/DS2408_Switch.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Libraries/OneWire/examples/DS2408_Switch/DS2408_Switch.pde -------------------------------------------------------------------------------- /Libraries/OneWire/examples/DS250x_PROM/DS250x_PROM.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Libraries/OneWire/examples/DS250x_PROM/DS250x_PROM.pde -------------------------------------------------------------------------------- /Libraries/OneWire/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Libraries/OneWire/keywords.txt -------------------------------------------------------------------------------- /Libraries/OneWire/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Libraries/OneWire/library.json -------------------------------------------------------------------------------- /Libraries/OneWire/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Libraries/OneWire/library.properties -------------------------------------------------------------------------------- /Libraries/Time/DateStrings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Libraries/Time/DateStrings.cpp -------------------------------------------------------------------------------- /Libraries/Time/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Libraries/Time/Readme.txt -------------------------------------------------------------------------------- /Libraries/Time/Time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Libraries/Time/Time.cpp -------------------------------------------------------------------------------- /Libraries/Time/Time.h: -------------------------------------------------------------------------------- 1 | #include "TimeLib.h" 2 | -------------------------------------------------------------------------------- /Libraries/Time/TimeLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Libraries/Time/TimeLib.h -------------------------------------------------------------------------------- /Libraries/Time/examples/Processing/SyncArduinoClock/SyncArduinoClock.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Libraries/Time/examples/Processing/SyncArduinoClock/SyncArduinoClock.pde -------------------------------------------------------------------------------- /Libraries/Time/examples/Processing/SyncArduinoClock/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Libraries/Time/examples/Processing/SyncArduinoClock/readme.txt -------------------------------------------------------------------------------- /Libraries/Time/examples/TimeArduinoDue/TimeArduinoDue.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Libraries/Time/examples/TimeArduinoDue/TimeArduinoDue.ino -------------------------------------------------------------------------------- /Libraries/Time/examples/TimeGPS/TimeGPS.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Libraries/Time/examples/TimeGPS/TimeGPS.ino -------------------------------------------------------------------------------- /Libraries/Time/examples/TimeNTP/TimeNTP.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Libraries/Time/examples/TimeNTP/TimeNTP.ino -------------------------------------------------------------------------------- /Libraries/Time/examples/TimeNTP_ESP8266WiFi/TimeNTP_ESP8266WiFi.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Libraries/Time/examples/TimeNTP_ESP8266WiFi/TimeNTP_ESP8266WiFi.ino -------------------------------------------------------------------------------- /Libraries/Time/examples/TimeRTC/TimeRTC.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Libraries/Time/examples/TimeRTC/TimeRTC.ino -------------------------------------------------------------------------------- /Libraries/Time/examples/TimeRTC/TimeRTC.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Libraries/Time/examples/TimeRTC/TimeRTC.pde -------------------------------------------------------------------------------- /Libraries/Time/examples/TimeRTCLog/TimeRTCLog.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Libraries/Time/examples/TimeRTCLog/TimeRTCLog.ino -------------------------------------------------------------------------------- /Libraries/Time/examples/TimeRTCLog/TimeRTCLog.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Libraries/Time/examples/TimeRTCLog/TimeRTCLog.pde -------------------------------------------------------------------------------- /Libraries/Time/examples/TimeRTCSet/TimeRTCSet.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Libraries/Time/examples/TimeRTCSet/TimeRTCSet.ino -------------------------------------------------------------------------------- /Libraries/Time/examples/TimeSerial/TimeSerial.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Libraries/Time/examples/TimeSerial/TimeSerial.ino -------------------------------------------------------------------------------- /Libraries/Time/examples/TimeSerialDateStrings/TimeSerialDateStrings.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Libraries/Time/examples/TimeSerialDateStrings/TimeSerialDateStrings.ino -------------------------------------------------------------------------------- /Libraries/Time/examples/TimeTeensy3/TimeTeensy3.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Libraries/Time/examples/TimeTeensy3/TimeTeensy3.ino -------------------------------------------------------------------------------- /Libraries/Time/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Libraries/Time/keywords.txt -------------------------------------------------------------------------------- /Libraries/Time/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Libraries/Time/library.json -------------------------------------------------------------------------------- /Libraries/Time/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Libraries/Time/library.properties -------------------------------------------------------------------------------- /Libraries/Tone/Tone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Libraries/Tone/Tone.cpp -------------------------------------------------------------------------------- /Libraries/Tone/Tone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Libraries/Tone/Tone.h -------------------------------------------------------------------------------- /Libraries/Tone/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Libraries/Tone/changelog.txt -------------------------------------------------------------------------------- /Libraries/Tone/examples/DTMFTest/DTMFTest.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Libraries/Tone/examples/DTMFTest/DTMFTest.pde -------------------------------------------------------------------------------- /Libraries/Tone/examples/RTTTL/RTTTL.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Libraries/Tone/examples/RTTTL/RTTTL.pde -------------------------------------------------------------------------------- /Libraries/Tone/examples/ToneTest/ToneTest.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Libraries/Tone/examples/ToneTest/ToneTest.pde -------------------------------------------------------------------------------- /Libraries/Tone/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Libraries/Tone/keywords.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/README.md -------------------------------------------------------------------------------- /Schemes/Previous Versions/Scheme Nixie Clock Main Board MCU - NCM105 v1.6.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Schemes/Previous Versions/Scheme Nixie Clock Main Board MCU - NCM105 v1.6.pdf -------------------------------------------------------------------------------- /Schemes/Previous Versions/Scheme Nixie Clock Main Board MCU - NCM106 v1.1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Schemes/Previous Versions/Scheme Nixie Clock Main Board MCU - NCM106 v1.1.pdf -------------------------------------------------------------------------------- /Schemes/Previous Versions/Scheme Tubes Board - NCT208 v1.2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Schemes/Previous Versions/Scheme Tubes Board - NCT208 v1.2.pdf -------------------------------------------------------------------------------- /Schemes/Previous Versions/Scheme Tubes Board - NCT212 v1.2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Schemes/Previous Versions/Scheme Tubes Board - NCT212 v1.2.pdf -------------------------------------------------------------------------------- /Schemes/Previous Versions/Scheme Tubes Board - NCT214 v1.2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Schemes/Previous Versions/Scheme Tubes Board - NCT214 v1.2.pdf -------------------------------------------------------------------------------- /Schemes/Previous Versions/Scheme Tubes Board - NCT216 v1.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Schemes/Previous Versions/Scheme Tubes Board - NCT216 v1.0.pdf -------------------------------------------------------------------------------- /Schemes/Previous Versions/Scheme Tubes Board - NCT218 v1.2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Schemes/Previous Versions/Scheme Tubes Board - NCT218 v1.2.pdf -------------------------------------------------------------------------------- /Schemes/Previous Versions/Scheme Tubes Board - NCT282 v1.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Schemes/Previous Versions/Scheme Tubes Board - NCT282 v1.0.pdf -------------------------------------------------------------------------------- /Schemes/Previous Versions/Scheme Tubes Board - NCT318 v1.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Schemes/Previous Versions/Scheme Tubes Board - NCT318 v1.0.pdf -------------------------------------------------------------------------------- /Schemes/Previous Versions/Scheme Tubes Board - NCT408 v1.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Schemes/Previous Versions/Scheme Tubes Board - NCT408 v1.0.pdf -------------------------------------------------------------------------------- /Schemes/Previous Versions/Scheme Tubes Board - NCT414 v1.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Schemes/Previous Versions/Scheme Tubes Board - NCT414 v1.0.pdf -------------------------------------------------------------------------------- /Schemes/Previous Versions/Scheme Tubes Board - NCT566 v1.3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Schemes/Previous Versions/Scheme Tubes Board - NCT566 v1.3.pdf -------------------------------------------------------------------------------- /Schemes/Previous Versions/Scheme Tubes Board - NCT573 v1.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Schemes/Previous Versions/Scheme Tubes Board - NCT573 v1.0.pdf -------------------------------------------------------------------------------- /Schemes/Scheme Nixie Clock Main Board MCU - NCM107 v1.1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Schemes/Scheme Nixie Clock Main Board MCU - NCM107 v1.1.pdf -------------------------------------------------------------------------------- /Schemes/Scheme Tubes Board - NCT318 v1.1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Schemes/Scheme Tubes Board - NCT318 v1.1.pdf -------------------------------------------------------------------------------- /Schemes/Scheme Tubes Board - NCT3566 v1.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Schemes/Scheme Tubes Board - NCT3566 v1.0.pdf -------------------------------------------------------------------------------- /Schemes/Scheme Tubes Board - NCT412 v1.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Schemes/Scheme Tubes Board - NCT412 v1.0.pdf -------------------------------------------------------------------------------- /Schemes/Scheme Tubes Board - NCT414 v1.1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Schemes/Scheme Tubes Board - NCT414 v1.1.pdf -------------------------------------------------------------------------------- /Schemes/Scheme Tubes Board - NCT416 v1.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Schemes/Scheme Tubes Board - NCT416 v1.0.pdf -------------------------------------------------------------------------------- /Schemes/Scheme Tubes Board - NCT4573 v1.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Schemes/Scheme Tubes Board - NCT4573 v1.0.pdf -------------------------------------------------------------------------------- /Schemes/Scheme Tubes Board - NCT482 v1.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Schemes/Scheme Tubes Board - NCT482 v1.0.pdf -------------------------------------------------------------------------------- /Schemes/Scheme Tubes Board - NCT818 v1.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/Schemes/Scheme Tubes Board - NCT818 v1.0.pdf -------------------------------------------------------------------------------- /USB drivers/Arduino (Atmel)/AdafruitCircuitPlayground.cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/USB drivers/Arduino (Atmel)/AdafruitCircuitPlayground.cat -------------------------------------------------------------------------------- /USB drivers/Arduino (Atmel)/AdafruitCircuitPlayground.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/USB drivers/Arduino (Atmel)/AdafruitCircuitPlayground.inf -------------------------------------------------------------------------------- /USB drivers/Arduino (Atmel)/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/USB drivers/Arduino (Atmel)/README.txt -------------------------------------------------------------------------------- /USB drivers/Arduino (Atmel)/amd64/libusb0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/USB drivers/Arduino (Atmel)/amd64/libusb0.dll -------------------------------------------------------------------------------- /USB drivers/Arduino (Atmel)/amd64/libusb0.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/USB drivers/Arduino (Atmel)/amd64/libusb0.sys -------------------------------------------------------------------------------- /USB drivers/Arduino (Atmel)/arduino-org.cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/USB drivers/Arduino (Atmel)/arduino-org.cat -------------------------------------------------------------------------------- /USB drivers/Arduino (Atmel)/arduino-org.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/USB drivers/Arduino (Atmel)/arduino-org.inf -------------------------------------------------------------------------------- /USB drivers/Arduino (Atmel)/arduino.cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/USB drivers/Arduino (Atmel)/arduino.cat -------------------------------------------------------------------------------- /USB drivers/Arduino (Atmel)/arduino.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/USB drivers/Arduino (Atmel)/arduino.inf -------------------------------------------------------------------------------- /USB drivers/Arduino (Atmel)/arduino_gemma.cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/USB drivers/Arduino (Atmel)/arduino_gemma.cat -------------------------------------------------------------------------------- /USB drivers/Arduino (Atmel)/arduino_gemma.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/USB drivers/Arduino (Atmel)/arduino_gemma.inf -------------------------------------------------------------------------------- /USB drivers/Arduino (Atmel)/dpinst-amd64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/USB drivers/Arduino (Atmel)/dpinst-amd64.exe -------------------------------------------------------------------------------- /USB drivers/Arduino (Atmel)/dpinst-x86.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/USB drivers/Arduino (Atmel)/dpinst-x86.exe -------------------------------------------------------------------------------- /USB drivers/Arduino (Atmel)/genuino.cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/USB drivers/Arduino (Atmel)/genuino.cat -------------------------------------------------------------------------------- /USB drivers/Arduino (Atmel)/genuino.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/USB drivers/Arduino (Atmel)/genuino.inf -------------------------------------------------------------------------------- /USB drivers/Arduino (Atmel)/ia64/libusb0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/USB drivers/Arduino (Atmel)/ia64/libusb0.dll -------------------------------------------------------------------------------- /USB drivers/Arduino (Atmel)/ia64/libusb0.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/USB drivers/Arduino (Atmel)/ia64/libusb0.sys -------------------------------------------------------------------------------- /USB drivers/Arduino (Atmel)/license/libusb0/installer_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/USB drivers/Arduino (Atmel)/license/libusb0/installer_license.txt -------------------------------------------------------------------------------- /USB drivers/Arduino (Atmel)/linino-boards_amd64.cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/USB drivers/Arduino (Atmel)/linino-boards_amd64.cat -------------------------------------------------------------------------------- /USB drivers/Arduino (Atmel)/linino-boards_x86.cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/USB drivers/Arduino (Atmel)/linino-boards_x86.cat -------------------------------------------------------------------------------- /USB drivers/Arduino (Atmel)/linino.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/USB drivers/Arduino (Atmel)/linino.inf -------------------------------------------------------------------------------- /USB drivers/Arduino (Atmel)/x86/libusb0.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/USB drivers/Arduino (Atmel)/x86/libusb0.sys -------------------------------------------------------------------------------- /USB drivers/Arduino (Atmel)/x86/libusb0_x86.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/USB drivers/Arduino (Atmel)/x86/libusb0_x86.dll -------------------------------------------------------------------------------- /USB drivers/CH340_341/CH341SER_MAC.ZIP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/USB drivers/CH340_341/CH341SER_MAC.ZIP -------------------------------------------------------------------------------- /USB drivers/CH340_341/ch340ser-windows.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/USB drivers/CH340_341/ch340ser-windows.zip -------------------------------------------------------------------------------- /USB drivers/CP210x_6.7.4/slabvcp.cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/USB drivers/CP210x_6.7.4/slabvcp.cat -------------------------------------------------------------------------------- /USB drivers/CP210x_6.7.4/slabvcp.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/USB drivers/CP210x_6.7.4/slabvcp.inf -------------------------------------------------------------------------------- /USB drivers/CP210x_6.7.4/x64/WdfCoInstaller01009.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/USB drivers/CP210x_6.7.4/x64/WdfCoInstaller01009.dll -------------------------------------------------------------------------------- /USB drivers/CP210x_6.7.4/x64/silabser.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/USB drivers/CP210x_6.7.4/x64/silabser.sys -------------------------------------------------------------------------------- /USB drivers/CP210x_6.7.4/x86/WdfCoInstaller01009.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/USB drivers/CP210x_6.7.4/x86/WdfCoInstaller01009.dll -------------------------------------------------------------------------------- /USB drivers/CP210x_6.7.4/x86/silabser.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/USB drivers/CP210x_6.7.4/x86/silabser.sys -------------------------------------------------------------------------------- /USB drivers/FTDI (FT232RL, FT230)/CDM21218_Setup.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/USB drivers/FTDI (FT232RL, FT230)/CDM21218_Setup.exe -------------------------------------------------------------------------------- /USB drivers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/USB drivers/README.md -------------------------------------------------------------------------------- /User Manual/Release 1.4/User Manual Nixie Clock GRA & AFCH wo background_V1.4.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/User Manual/Release 1.4/User Manual Nixie Clock GRA & AFCH wo background_V1.4.docx -------------------------------------------------------------------------------- /User Manual/Release 1.4/User Manual Nixie Clock GRA & AFCH_V1.4.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/User Manual/Release 1.4/User Manual Nixie Clock GRA & AFCH_V1.4.docx -------------------------------------------------------------------------------- /User Manual/Release 1.4/User Manual Nixie Clock GRA & AFCH_V1.4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/User Manual/Release 1.4/User Manual Nixie Clock GRA & AFCH_V1.4.pdf -------------------------------------------------------------------------------- /User Manual/Release 1.4/User Manual Nixie Clock GRA & AFCH_V1.4_page_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/User Manual/Release 1.4/User Manual Nixie Clock GRA & AFCH_V1.4_page_1.png -------------------------------------------------------------------------------- /User Manual/Release 1.4/User Manual Nixie Clock GRA & AFCH_V1.4_page_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/User Manual/Release 1.4/User Manual Nixie Clock GRA & AFCH_V1.4_page_2.png -------------------------------------------------------------------------------- /User Manual/Release 1.4/User Manual Nixie Clock GRA & AFCH_V1.4_page_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/User Manual/Release 1.4/User Manual Nixie Clock GRA & AFCH_V1.4_page_3.png -------------------------------------------------------------------------------- /User Manual/Release 1.4/User Manual Nixie Clock GRA & AFCH_V1.4_page_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/User Manual/Release 1.4/User Manual Nixie Clock GRA & AFCH_V1.4_page_4.png -------------------------------------------------------------------------------- /User Manual/Release 1.5/User Manual Nixie Clock GRA & AFCH wo background_V1.5.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/User Manual/Release 1.5/User Manual Nixie Clock GRA & AFCH wo background_V1.5.docx -------------------------------------------------------------------------------- /User Manual/Release 1.5/User Manual Nixie Clock GRA & AFCH wo background_V1.5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/User Manual/Release 1.5/User Manual Nixie Clock GRA & AFCH wo background_V1.5.pdf -------------------------------------------------------------------------------- /User Manual/Release 1/User_manual_page 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/User Manual/Release 1/User_manual_page 2.png -------------------------------------------------------------------------------- /User Manual/Release 1/User_manual_page 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/User Manual/Release 1/User_manual_page 3.png -------------------------------------------------------------------------------- /User Manual/Release 1/User_manual_page 4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/User Manual/Release 1/User_manual_page 4.png -------------------------------------------------------------------------------- /User Manual/Release 1/User_manual_page1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/User Manual/Release 1/User_manual_page1.png -------------------------------------------------------------------------------- /User Manual/v1.57/User Manual Nixie Clock GRA & AFCH wo background_1.5.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/User Manual/v1.57/User Manual Nixie Clock GRA & AFCH wo background_1.5.docx -------------------------------------------------------------------------------- /User Manual/v1.57/User Manual Nixie Clock GRA & AFCH wo background_1.5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/User Manual/v1.57/User Manual Nixie Clock GRA & AFCH wo background_1.5.pdf -------------------------------------------------------------------------------- /User Manual/v1.59/User Manual Nixie Clock GRA & AFCH wo background_1.59.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/User Manual/v1.59/User Manual Nixie Clock GRA & AFCH wo background_1.59.pdf -------------------------------------------------------------------------------- /User Manual/v1.59/User Manual Nixie Clock GRA & AFCH_1.59.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afch/NixieClock/HEAD/User Manual/v1.59/User Manual Nixie Clock GRA & AFCH_1.59.pdf --------------------------------------------------------------------------------