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 lightsense_kl46z_states by
Revision 0:e23fffd4b9a7, committed 2014-08-14
- Comitter:
- scohennm
- Date:
- Thu Aug 14 21:18:38 2014 +0000
- Child:
- 1:51f8c2b04ce2
- Commit message:
- Shows a little more logic and defines off and on for the led's which are false and true respectively. Also, time for blink is a 2-element array.
Changed in this revision
main.cpp | Show annotated file Show diff for this revision Revisions of this file |
mbed.bld | Show annotated file Show diff for this revision Revisions of this file |
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/main.cpp Thu Aug 14 21:18:38 2014 +0000 @@ -0,0 +1,19 @@ +#include "mbed.h" +#define LEDON false +#define LEDOFF true + +// slightly more interesting blinky 140814 sc + +float blinks[]={0.200, 0.700}; +int ledState = LEDON; +DigitalOut greenColor(LED_GREEN); +DigitalOut redColor(LED_RED); + +int main() { + while(true) { + ledState = !ledState; // Flip the general state + redColor = ledState; + greenColor = !ledState;// flip state but don't store it. + wait(blinks[ledState]); + } +} \ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mbed.bld Thu Aug 14 21:18:38 2014 +0000 @@ -0,0 +1,1 @@ +http://mbed.org/users/mbed_official/code/mbed/builds/04dd9b1680ae \ No newline at end of file