Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of EMG by
Diff: main.cpp
- Revision:
- 5:4dacb7b72109
- Parent:
- 4:8b298dfada81
- Child:
- 6:80c13d99aa55
--- a/main.cpp Wed Oct 02 09:40:41 2013 +0000 +++ b/main.cpp Wed Oct 02 09:45:01 2013 +0000 @@ -25,8 +25,11 @@ float emg_value; /*put raw emg value both in red and in emg_value*/ red = emg_value = emg0.read(); - /*send value to PC. use 6 digits precision*/ + /*send value to PC. use 6 digits after decimal sign*/ pc.printf("%.6f\n",emg_value); + /**When not using the LED, the above could also have been done this way: + * pc.printf("%.6\n", emg0.read()); + */ } int main()