Hi there! I'm very new to arduino as well as to LED Matrix. I'm a student at the University of West Florida. For my Interactive Design final, I am building a thermometer on an LED matrix using the 16 x 32 matrix I bought from adafruit as well as the temp sensors.
Alright, so, here's what I have. I have my LED matrix completely wired to an arduino Uno. I also have the temp sensor wired in as well. I've run both sets of code and both work. I was then able to combine two codes into one and they both still work.
The codes I have include the RGB Matrix library from adafruit and then a temp code I found as well as a processor code to display the temp in a graph.
I've gone over this with my teacher and we were trying to figure out how to get the scrolling text to display the temperature readout from tempC.
We've gotten it down to this line:
const char str[] PROGMEM = "Adafruit 16x32 RGB LED Matrix";
..as this is what shows the text in the animation. I've researched progMem but I'm not understanding it. He said somehow we need to get progMem or a different variable to read out tempC..but whenever I change any of that code I get errors. I'm still doing research, but I'm still very much confused about this. Is there another code I need to add in?
To summarize, I need the scrolling text to read the temperature data from tempC .
If necessary I can attach a copy of the combined code. Also, I'm not sure if it matters or not..but the combined code works well. I tested it out and the LED matrix will turn on and the Procssing program will read and display the temperature graph.