01-30-2013 03:30 AM
Hi,
I want to zero the offset of my signals with a simple substraction mechanism, but i only want to do it when the waveformchart updates a new page, i use update mode: sweep.
Is there any waveformchart property to get a boolean when it is on it's beginning of the chart?
Regards,
Thijs
Solved! Go to Solution.
01-30-2013 04:58 AM
HI buddy,
there is one property of property node called history data, Try to use that, by default it will have 1024 data. Read in while loop if it exceeds 1024 then perform your job..
Let me know if this help
01-30-2013 05:48 AM - edited 01-30-2013 05:48 AM
I was already building a shift register thing with a counter when it exceeds 1023 it will get an average of 4 samples uses that for the offset and waits another 1024 samples.
thanks!