06-05-2017 05:00 PM
Thank you very much for your replies. However, I don't want T second delay after each element is being shown. I want once the elements are shown , then pattern repeatsT times. Sorry for the confusions
so
if array is 2,3,4,6 and if T ( I should have said n) = 3
I want this:
2,3,4,6. 2,3,4,6.2,3,4,6
i used a for loop based on array size but didnt work hence i assumed time delay might work ..which didn't
06-05-2017 05:32 PM
So you want each element of an array displayed n times? How long of a delay do you want for each number to be shown?
Does this help at all?
06-05-2017 05:56 PM
This is basically what I did. The problem is when I set repeat=3, it shows the array elements with index 1, 4,6 ( so step=3) indefinitely!! instead of showing all elements 3 times
06-06-2017 06:59 AM
your shift registers hold wrong values, therefor you get the strange output
might this be a solution?