08-25-2017 07:47 AM
This is my goal:
I have 4 numbers
lets say : 3,4.3, 6,1
I start from level 2 let's say
I want to first
3 - 2 ( starting level) = 1
Then for integer numbers send 1 x 20 digital signal ( so 10 true)
then wait 5 second then read the next number so
4.3- 3 ( previous number) = 1.3 ( so 1 integer part, .3 float part)
send 1 x 20 ( integer part x 20) + 3 ( float part) x 2 = 26 times ( 13 true)
and wait 5 second
08-29-2017 02:30 AM
Disregard the loop and array, can you send 1 number out with this flip flop/toggle system? That's where you should start. How fast should it toggle? If you just put it in a loop it'll have done all 26 in ~1ms.
/Y
08-30-2017 12:15 PM
But don't we need loop and shift registers to read array values?!?