Quote
Well, saying you're "a little stuck" isn't much of a clue as to how much you understand programming in general. Have you done the usual tutorials, such as Blink and AnalogInput?
Yes, i have done a few of them like the blink and the "Knight Rider" loop
Quote
]Do you know how to hook up multiple LEDs to multiple outputs?
Yes i believe so....i designed this schematic based on the RBB and "Knight Rider" to work as a stand alone POV (but it may well be very floored)
Quote
Do you do any programming on non-Arduino devices or computers?
only HTML
Quote
Do you understand how numbers are encoded into binary bits?
is this BCD? as in: 0=0000
1=0001
2=0010
3=0011
4=0100
5=0101
if so I am aware of the theory, but have have 0 experience with application.
Quote
]Have you seen the non-Arduino POV kits, such as those that LadyAda sells, so you're familiar with the concepts?
Yes im familiar with the concept and electronics, its just the issue of the code im totally out of my depth with. For POV, the general idea is to store your "image" into a sequence of columns, and each column should be stored in such a way as to efficiently send them to a column of LEDs all at once. Finally, the main loop of your program should just start pushing out your image, one column at a time, through the whole pattern.
Code:
........ B00000000 0x00
.****... B01111000 0x78
...*.*.. B00010100 0x14
...*..*. -> B00010010 0x12
...*.*.. B00010100 0x14
.****... B01111000 0x78
........ B00000000 0x00
.****... B01111000 0x78
...*.*.. B00010100 0x14
...*..*. -> B00010010 0x12
...*.*.. B00010100 0x14
.****... B01111000 0x78
........ B00000000 0x00
Quote
Can you see the "A"? Do you see the "A" in the binary bits also?
yes i see the A
........so B would be . . . . . . . . B00000000
******** B11111111
*. . . *. . * B10001001
*. . . *. . * B10001001
*. . . *. . * B10001001
. *** . **. B01110110
. . . . . . . . B00000000
but what are the 0x00, 0x78, 0x14 ect. and how would the above code for A or B fit into the sketch, and is it possible to code a full alphabet onto the sketch, but have a command line that you can just quickly adjust to tell it what word to spell?
thank you

