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.
Dependencies: HIDScope MODSERIAL QEI TextLCD mbed
Fork of TotalControlEmg2 by
Mode.cpp@47:959ef2792024, 2015-10-23 (annotated)
- Committer:
- RemcoDas
- Date:
- Fri Oct 23 13:37:26 2015 +0000
- Revision:
- 47:959ef2792024
- Parent:
- 27:f62e450bb411
- Child:
- 50:16314b798754
Final count down
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
Bartvaart | 18:eec0880fcded | 1 | #include "Mode.h" |
Bartvaart | 18:eec0880fcded | 2 | |
RemcoDas | 47:959ef2792024 | 3 | int Mode(int mode, double y, double thresholdlow, double thresholdmid, double thresholdhigh){ |
Bartvaart | 18:eec0880fcded | 4 | if ( y <= thresholdlow){ |
Bartvaart | 18:eec0880fcded | 5 | mode = 1; |
Bartvaart | 18:eec0880fcded | 6 | } |
RemcoDas | 47:959ef2792024 | 7 | else if (y > thresholdhigh){ |
Bartvaart | 19:6c0245063b96 | 8 | mode = 3; |
Bartvaart | 19:6c0245063b96 | 9 | } |
Bartvaart | 18:eec0880fcded | 10 | if (y > thresholdmid && mode == 1){ |
Bartvaart | 18:eec0880fcded | 11 | mode = 2; |
Bartvaart | 18:eec0880fcded | 12 | } |
Bartvaart | 18:eec0880fcded | 13 | return mode; |
Bartvaart | 18:eec0880fcded | 14 | } |