Reputation: 499
Have a requirement that is to render ECG when a medical device is connected to a android device. Now there is a lot of info about this on SO and it has left me confused.. :-|....What I would want to know is that is it possible in Android device running version 2.2? How do I go about it. Any help or ideas to point me in the right direction?
Upvotes: 0
Views: 1684
Reputation: 3984
The quick answer is yes, it's entirely possible on Android 2.2+ (e.g. see Frequensee).
There are several approaches to drawing real-time graphs but you are more than likely going to end up having to use OpenGLES to get the best performance/quality. OpenGLES 1.0 is sufficient for an ECG type graph if you don't feel like wading through OpenGLES 2.0 shading language and/or also want to support devices which don't support OpenGLES 2.0
Upvotes: 1
Reputation: 3578
You can draw graphs usin aFreeChart library for more details/Code/Jar file/Apk chk this site
http://code.google.com/p/afreechart/
Upvotes: 0