Following the wiring shown in this link:
http://scuola.arduino.cc/lesson/d37dc9b/Interfacing_Arduino_UNO_with_SURE_electronics_LED_Dot_Matrix
with this library imported:
I'm trying to run a simple example from this library and I can't even get the board to light up or do anything, so I was wondering if anyone has an example or tutorial somewhere that could help me get started
#include <HT1632.h>
#include <Images.h>
void setup () {
HT1632.begin(9, 10, 11);
// Where pinCS1, pinWR and pinDATA are the numbers of the output pins
// that are connected to the appropriate pins on the HT1632.
}
void loop () {
HT1632.drawImage(IMG_HEART, IMG_HEART_WIDTH, IMG_HEART_HEIGHT, (OUT_SIZE - IMG_HEART_WIDTH)/2, 0);
// The definitions for IMG_HEART and its width and height are available in images.h.
// This step only performs the drawing in internal memory.
HT1632.render();
// This updates the display on the screen.
delay(1000);
HT1632.clear();
// This zeroes out the internal memory.
HT1632.render();
// This updates the screen display.
delay(1000);
}
Thanks!