You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Software to control a "GRA & AFCH" NCM107 Nixie clock via a serial connection
2
+
Software to control a "GRA & AFCH" NCM107 + NCT412 Nixie clock via a serial connection
3
+
4
+

5
+
6
+
## What it does
7
+
This is an Arduino sketch to control a "GRA & AFCH" NCM107 + NCT412 Nixie clock via serial protocol, basically turning it into a computer display (While ignoring the RTC functionality).
8
+
9
+
#### One can send two different strings via serial connection to the clock:
10
+
11
+
##### A 14 byte long display string terminated with a newline:
12
+
13
+
* char 0-5: What to display on the nixies, anything else than a number (isDigit()) shows nothing.
14
+
* char 6: "1" to light the upper dots
15
+
* char 7: "1" to light the lower dots
16
+
* char 8-9: A hex value from 00 to FF representing the brightness of the red led's
17
+
* char 10-11: A hex value from 00 to FF representing the brightness of the green led's
18
+
* char 12-13: A hex value from 00 to FF representing the brightness of the blue led's
19
+
20
+
##### And a 2 byte long color cycling string terminated with a newline:
21
+
22
+
* char 0-1: A hex value from 00 to FF representing the speed of a LED color cycling animation between 133 and 0.52 seconds long
23
+
24
+
The color cycling animation overwrites the led color set by the display string.
25
+
26
+
## Installation
27
+
Download a release or clone this project with git.
28
+
29
+
## Usage
30
+
Open "Slave_Nixie_Clock/Slave_Nixie_Clock.ino" in your Arduino IDE of choice and upload it to your clock.
31
+
32
+
For more information see: [afch/NixieClock](https://github.com/afch/NixieClock)
0 commit comments