The image of the waveform that you show in the last post is a graph made of voltages. I think that it was done in MATLAB. What you need to do to pass from voltage to waveform is, like I said before, is to do a graph. You can use MATLAB or even Excel. You need to copy the values to a text (plain text) document and save it in your pc, then open the document with Excel and insert a graph of X,Y values. For this is better change your loop() function:
If you cannot work out github, or how to build the compiler, you could leave a message for the author and see if you could get a working copy. It would be a nice feature to have in the IDE, but will probably need the backing of a few testers ( why I mentioned it ).
The problem with the examples of eHealth is there is a mistake in Serial.begin(115200); you must write Serial.begin(9600); and you have to use low delays for the ECG sensor (i used a delay of 100 ms and it solved my problem)
The problem with the examples of eHealth is there is a mistake in Serial.begin(115200); you must write Serial.begin(9600);
Why? There should be nothing wrong with a baud rate of 115200. Perhaps you are unaware that you can change the baud rate on the serial monitor itself to 115200, because the default is 9600.
Or is it just a bug with Matlab to where it only works at 9600 baud?