-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathNixie-Tube-Driver-V2-Example-3.ino
109 lines (92 loc) · 3.07 KB
/
Nixie-Tube-Driver-V2-Example-3.ino
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
// Nixie Tube Driver V2 by Marcin Saj https://nixietester.com
// https://github.com/marcinsaj/Nixie-Tube-Driver-V2
//
// Driving Nixie Tubes Example #3
//
// This example demonstrates how to control 4 nixie tubes.
// The control is carried out using 2 Nixie Tube Driver V2.
// How to connect nixie tubes: http://bit.ly/How2Drive4NixieTubes
#define DIN_PIN 5 // Nixie driver (shift register) serial data input pin
#define CLK_PIN 6 // Nixie driver clock input pin
#define EN_PIN 7 // Nixie driver enable input pin
// Bit array:
// 22 bits - first driver - nixie tubes
// 2 not connected outputs
// 2 bits for gaps
// 22 bits - second driver - nixie tubes
// 2 not connected outputs
// 2 bits for gaps
boolean nixieDisplayArray[48];
// Cathodes assignment to the position in the 48 bit array
// Each cathode of nixie tubes is connected to the corresponding output of the shift registers
// Bit numbers
byte nixie1[]={
// 0 1 2 3 4 5 6 7 8 9
0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
byte nixie2[]={
// 0 1 2 3 4 5 6 7 8 9
10, 11, 12, 13, 14, 15, 16, 17, 18, 19 };
byte nixie3[]={
// 0 1 2 3 4 5 6 7 8 9
24, 25, 26, 27, 28, 29, 30, 31, 32, 33 };
byte nixie4[]={
// 0 1 2 3 4 5 6 7 8 9
34, 35, 36, 37, 38, 39, 40, 41, 42, 43 };
void setup()
{
pinMode(DIN_PIN, OUTPUT);
digitalWrite(DIN_PIN, LOW);
pinMode(CLK_PIN, OUTPUT);
digitalWrite(CLK_PIN, LOW);
pinMode(EN_PIN, OUTPUT);
digitalWrite(EN_PIN, LOW);
}
void loop ()
{
// NixieDisplay(digit1, digit2, digit3, digit4);
NixieDisplay(1, 2, 3, 4);
delay(1000);
}
void NixieDisplay(byte digit1, byte digit2, byte digit3, byte digit4)
{
// Convert the desired numbers to the bit numbers for the nixieDisplayArray[]
digit1 = nixie1[digit1];
digit2 = nixie2[digit2];
digit3 = nixie3[digit3];
digit4 = nixie4[digit4];
// Clear bit array
for (int i = 47; i >= 0; i--)
{
nixieDisplayArray[i] = 0;
}
// Set the bits corresponding to the nixie tubes cathodes
nixieDisplayArray[digit1] = 1;
nixieDisplayArray[digit2] = 1;
nixieDisplayArray[digit3] = 1;
nixieDisplayArray[digit4] = 1;
ShiftOutData();
}
void ShiftOutData()
{
// Ground EN pin and hold low for as long as you are transmitting
digitalWrite(EN_PIN, 0);
// Clear everything out just in case to
// prepare shift register for bit shifting
digitalWrite(DIN_PIN, 0);
digitalWrite(CLK_PIN, 0);
// Send data to the nixie drivers
for (int i = 47; i >= 0; i--)
{
// Set high only the bit that corresponds to the current nixie digit
digitalWrite(DIN_PIN, nixieDisplayArray[i]);
// Register shifts bits on upstroke of CLK pin
digitalWrite(CLK_PIN, 1);
// Set low the data pin after shift to prevent bleed through
digitalWrite(CLK_PIN, 0);
}
// Return the EN pin high to signal chip that it
// no longer needs to listen for data
digitalWrite(EN_PIN, 1);
// Stop shifting
digitalWrite(CLK_PIN, 0);
}