Has anyone used the Taylor Electronics Smart Nixie modules with an Arduino
or bare AVR? I've been trying to get a simple single tube test to work and
have been banging my head against the wall... I just want a test routine,
for now that lets me write a digit over I2C.
Basically, I've connected the smart socket to SCL, SDA (with 2.2k pullups
to +5V), GND and +5V on the Arduino board, am using a TES1364 wired to
+170V. Occassionally, I'll get a '0' or '1' display, but with zero
consistency. Yes, I've set all the DIP switches to 'OFF' which should
correspond with and address of 0x10.
My code:
#include <Wire.h>
void setup()
{
Wire.begin(); // join i2c bus (address optional for master)
Serial.begin(9600);
}
void loop()
{
for(byte i = 0; i < 10; i++)
{
Wire.beginTransmission(0x10); // transmit to tube address
Wire.write(0x00);
Wire.write(i); //number
Wire.endTransmission(); // stop transmitting
Serial.println(i);
delay(500);
}
}
--
You received this message because you are subscribed to the Google Groups
"neonixie-l" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send an email to [email protected].
To view this discussion on the web, visit
https://groups.google.com/d/msgid/neonixie-l/964657d9-36dd-4698-9b23-703f4eea9c21%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.