I have a simple python script which prints numbers from 2 to 10 and then 
from 10 down to 2 as well, then printing is delayed by timer.
The question is: is it possible to plot real time graph which can behave 
accordind to the numbers if they are increasing the graph should be 
increasing, if the numbers are decresing the graph should decrease as well. 
below is an example of the python script of which it should depend on

import time
values = [2, 4, 6, 8, 10, 8, 6, 4, 2, 0]
for v in values:
    print v
    time.sleep(2)

-- 
You received this message because you are subscribed to the Google Groups 
"pyqtgraph" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/pyqtgraph/8b901a5b-4f06-4f13-9d0f-4e94c0e2e2bd%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to