I'm using the SparkFun 7-segment display with a lightblue bean.
The numbers display incorrectly.
It seems to be counting up, but it makes no sense.
Fritzing didn't have the breakout board that I'm using, so I just used something that looked similar in my diagram. The yellow wire connects digital pin 0 to RX.
This is a part of a larger project. I only have one free pin (the 0 digital pin) so I need to use UART. If I were connecting to an UNO it'd look like this:
I have the same setup. (I think) on the bean. I have used FTDI to check that the firmware on the display is at 9600 baud.
I'm just running the test program with the pin numbers changed. Like this:
// These are the Arduino pins required to create a software seiral
// instance. We'll actually only use the TX pin.
const int softwareTx = 0;
const int softwareRx = 1;
Pin 1 is going to also be used as a button would it be better to set it to a pin that doesn't exist, like pin 9?
But my biggest concern is getting this display to work.