Skip to content

Commit 3e2d517

Browse files
author
TimeWaster
authored
Update README.md
1 parent 5d0be1f commit 3e2d517

File tree

1 file changed

+35
-1
lines changed

1 file changed

+35
-1
lines changed

README.md

Lines changed: 35 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,36 @@
11
# Slave-Nixie-Clock
2-
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+
!["GRA & AFCH" NCM107 + NCT412](https://github.com/SebiTimeWaster/Slave-Nixie-Clock/blob/master/NixieClock.jpg)
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)
33+
34+
## Changelog
35+
Changelog v0.1:
36+
* Initial checkin

0 commit comments

Comments
 (0)