From 04:00 PM CDT – 08:00 PM CDT (09:00 PM UTC – 01:00 AM UTC) Tuesday, April 16, ni.com will undergo system upgrades that may result in temporary service interruption.

We appreciate your patience as we improve our online experience.

LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

continuously generate and ecg signal

Solved!
Go to solution

Hello !

Does anybody know what can i generate an ecg signal continuously? I will attach a vi with the signal, without all signals collected to appear on the chart.How can i do that. i tought that a while loop will help, but it wasn't the expected result.

0 Kudos
Message 1 of 6
(1,047 Views)

You have a waveform graph which only shows what is written to it on each time it is called.

 

Change that to a waveform chart.  That maintains a history so it will append the new data to the end and maintain a history of old data.  That old data will eventually roll off as it maintains a fixed history length.

0 Kudos
Message 2 of 6
(1,031 Views)

thank you for your response. I have changed it, but the result is not the expected one

0 Kudos
Message 3 of 6
(1,017 Views)

I'm sorry, I didn't see in your original code that you were maintaining a shift register and appending more data to it.  All those backwards running wires and unnecessary bends hid that.

 

You say "the result is not the expected one".  But what are you expecting?

0 Kudos
Message 4 of 6
(1,013 Views)

On the waveform chart should run a  continuous signal, not all the signals collected

0 Kudos
Message 5 of 6
(1,003 Views)
Solution
Accepted by J.MATT1204.

Get rid of your build array and shift register.  Wire the data to a waveform chart.

 

Perhaps you are asking for the data to appear on the chart a sample at a time rather than having the data appear as the complete ECG cycle repeatedly?

 

If so, then you need to send data to the chart one point at a time rather than one waveform at a time.

 

You can also change the appearance of the way the data is swept across the screen.

 

See the attached modified VI.

Message 6 of 6
(990 Views)