I downloaded a library from GitHub - gauravmm/HT1632-for-Arduino: A powerful library that allows an Arduino to interface with the popular Holtek HT1632C LED driver.
For my Sure Electronic 3208 LED display.
I copied the example code from the website
#include <HT1632.h> // Include this before <images.h> or any font.
#include <images.h>
void setup () {
HT1632.begin(pinCS1, pinWR, pinDATA);
// Where pinCS1, pinWR and pinDATA are the numbers of the output pins
// that are connected to the appropriate pins on the HT1632.
}
void loop () {
// 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.drawImage(IMG_HEART, IMG_HEART_WIDTH, IMG_HEART_HEIGHT, (OUT_SIZE - IMG_HEART_WIDTH)/2, 0);
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);
}
When I try to verify it. I got this error
fatal error: HT1632.h: No such file or directory
When i changed to Arduino.h, the error disappeared. ( Is this the right way to do it?)
But the next problem is this:
fatal error: images.h: No such file or directory
Can someone please help me out with this? =/