Sure Electronics 3216 RG - Running the Sample


following wiring shown in link:

http://scuola.arduino.cc/lesson/d37dc9b/interfacing_arduino_uno_with_sure_electronics_led_dot_matrix

with library imported:

https://github.com/gauravmm/ht1632-for-arduino

i'm trying run simple example library , can't board light or anything, wondering if has example or tutorial somewhere me started

   
code: [select]

#include <ht1632.h>
#include <images.h>

void setup () {
    ht1632.begin(9, 10, 11);
    // pincs1, pinwr , pindata numbers of output pins
    // connected appropriate pins on ht1632.
}

void loop () {
    ht1632.drawimage(img_heart, img_heart_width,  img_heart_height, (out_size - img_heart_width)/2, 0);
    // definitions img_heart , width , height available in images.h.
    // step performs drawing in internal memory.
    ht1632.render();
    // updates display on screen.

    delay(1000);

    ht1632.clear();
    // zeroes out internal memory.
    ht1632.render();
    // updates screen display.

    delay(1000);
}


thanks!

bump. still checking if can me out here or point me documentation works this. wiring , program arduino site has component doesn't work, , i'm hoping has working example it.

i'm pretty sure correct component, name isn't given in kit came did find part on store - http://store.arduino.cc/product/e000013


Arduino Forum > Using Arduino > Displays > Sure Electronics 3216 RG - Running the Sample


arduino

Comments

Popular posts from this blog

invalid use of void expresion in FlexiTimer2 library

error: a function-definition is not allowed here before '{' token

LED Strip Code