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
Mode.cpp
00001 #include "Mode.h" 00002 00003 double mode; 00004 00005 int Mode(double y, double thresholdlow, double thresholdmid, double thresholdhigh){ 00006 if ( y <= thresholdlow){ 00007 mode = 1; 00008 } 00009 if (y > thresholdhigh){ 00010 mode = 3; 00011 } 00012 if (y > thresholdmid && mode == 1){ 00013 mode = 2; 00014 } 00015 return mode; 00016 }
Generated on Fri Aug 5 2022 02:26:40 by
1.7.2