ADAPTER
ADAPTER

Reputation: 1

VB.NET How to plot ECG real time from serial port?

I want to read the incomming data from a dsPIC-Device and plot the data to a graph.

What I want is eitherway to:

Any ideas on how to do that?

Upvotes: 0

Views: 796

Answers (1)

Sonorpearl
Sonorpearl

Reputation: 57

Stackoverflow isn´t here for asking how something can be done, without even googling.

But... Here is a fairly easy Example for a SerialPort-Handler: https://msdn.microsoft.com/en-us/library/system.io.ports.serialport.datareceived%28v=vs.110%29.aspx

How to process the data, e.g. to plot the graph, depends on the data you get.

Upvotes: 1

Related Questions