Hi,
I'm experimenting with an Arduino board (talking to PD via Pduino). It's sending data in quite large steps (I guess this is due to analogue value -> digital sampling rate which I'm increased to maximum).
Is there a way to smooth value changes? So that if it jumps in four steps: 100 - 121 - 210 - 300, the values would be smoothed to 100, 101, 102, 103, 104 ... 298, 299, 300? Is that possible? I tried using "average", but it seems to introduce a LOT of latency. I understand that there will be a slight latency, but have you got any tips how to implement this for a realtime controller?
Thanks!