![](/media/cache/group/Renishaw_CMYK_logo_black_strap.jpg.50x50_q85.jpg)
An example program for driving an RGB LED
Dependencies: mbed
Fork of Renbed_RGB_Digital by
Revision 3:3411d8922bb1, committed 2016-04-20
- Comitter:
- MiskinPrj
- Date:
- Wed Apr 20 08:37:57 2016 +0000
- Parent:
- 2:c936f86e62fb
- Commit message:
- changed on and off variables to const type
Changed in this revision
main.cpp | Show annotated file Show diff for this revision Revisions of this file |
diff -r c936f86e62fb -r 3411d8922bb1 main.cpp --- a/main.cpp Wed Apr 20 07:28:00 2016 +0000 +++ b/main.cpp Wed Apr 20 08:37:57 2016 +0000 @@ -17,8 +17,8 @@ DigitalOut Blue(P0_19); /* Set the on and off states of the lights */ -int on = 0; -int off = 1; +const int on = 0; +const int off = 1; int main() {