Hi y'all,
i've been playing with the uVGA module today, nice tool must say a bit buggy though...
well i start with writing a php script that converts an image to 80x25 and then returns the color codes in an array.
so i could easily use it with my Arduino and uVGA. this works quite nicely! :-)
this wouldn't work, i guessed i used to much memory, and then i read about PROGMEM, that's where i thought i'd better ask here before i continue wasting
the rest of the night...
what i want to do is to show a simple ascii image 80x25 with only the ascii 219 block character
so some pseudo code just to get an idea:
int pixels_color_codes[] = {0,0,1,2,1,2,2,2,1,1,1,2 ..... etc etc};
for (i = 0; i < 2000; i++){
textcolor(pixels_color_codes[i]);
_putch(219);
}
so how should i continue with this? or is this a bridge to far?