> missing something simple. Any help would be appreciated. I would
> like my graph to update with every measurement I take (every 5
> seconds). Thanks!
The problem isn't specific to graphs. Data leaves a loop when the loop
completes, therefore your program states that you want to wait until the
loop completes, then send that data to the graph.
What you want is to place your graph terminal inside the loop. If you
just send an individual point to a graph, that doesn't make a very
interesting plot, so what you really want is to place the graph terminal
inside the loop and plot all the data accumulated thus far. To do this,
add a shift register to the loop and use an array builder to accumulate
the data, plotting it as you go. You probably also want
to popup up on
the left shift register and create a constant to start the loop out empty.
Greg McKaskle