Hello everybody.
I am pretty new to vvvv
I am using ESP8266, and trying to sample values coming from my arduino.
The arduino is giving me every second some amount of data, that I am trying to use.
Every time there is a new value coming, I want to create a new slice in a spread, hold the value, and then go to the next one
in one second, I would then have something like approx 1000 values in slices.
arduino>value 1>create slice 1>hold value 1 in slice 1
arduino>value 2>create slice 2>hold value 2 in slice 2
arduino>value 3>create slice 3>hold value 3 in slice 3
…
Otherwise, I prepare a spread with 1000 slices, and want every incoming value to be hold in each slice going from slice index 0 to 1000
arduino>value 1>hold value 1 in slice 1
arduino>value 2>hold value 2 in slice 2
arduino>value 3>hold value 3 in slice 3
… etc
feeling a bit lost, after trying that the entire day… any suggestion would be appreciated!!
thank you a lot