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@19:6c0245063b96, 2015-10-13 (annotated)
- Committer:
- Bartvaart
- Date:
- Tue Oct 13 12:28:32 2015 +0000
- Revision:
- 19:6c0245063b96
- Parent:
- 18:eec0880fcded
- Child:
- 27:f62e450bb411
met extra filter voor trilling kabels;
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 | |
Bartvaart | 18:eec0880fcded | 3 | double mode; |
Bartvaart | 18:eec0880fcded | 4 | |
Bartvaart | 18:eec0880fcded | 5 | int Mode(double y, double ymax, double thresholdlow, double thresholdmid, double thresholdhigh) |
Bartvaart | 18:eec0880fcded | 6 | { |
Bartvaart | 18:eec0880fcded | 7 | |
Bartvaart | 18:eec0880fcded | 8 | if ( y <= thresholdlow){ |
Bartvaart | 18:eec0880fcded | 9 | mode = 1; |
Bartvaart | 18:eec0880fcded | 10 | } |
Bartvaart | 19:6c0245063b96 | 11 | if (y > thresholdhigh){ |
Bartvaart | 19:6c0245063b96 | 12 | mode = 3; |
Bartvaart | 19:6c0245063b96 | 13 | } |
Bartvaart | 18:eec0880fcded | 14 | if (y > thresholdmid && mode == 1){ |
Bartvaart | 18:eec0880fcded | 15 | mode = 2; |
Bartvaart | 18:eec0880fcded | 16 | } |
Bartvaart | 18:eec0880fcded | 17 | |
Bartvaart | 18:eec0880fcded | 18 | return mode; |
Bartvaart | 18:eec0880fcded | 19 | } |