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: mbed
Fork of frdm_rgbled by
main.cpp@0:cf8a48b1fb23, 2012-10-11 (annotated)
- Committer:
- chris
- Date:
- Thu Oct 11 14:08:32 2012 +0000
- Revision:
- 0:cf8a48b1fb23
- Child:
- 1:eabc6f5b51d6
First revision
Who changed what in which revision?
| User | Revision | Line number | New contents of line | 
|---|---|---|---|
| chris | 0:cf8a48b1fb23 | 1 | #include "mbed.h" | 
| chris | 0:cf8a48b1fb23 | 2 | |
| chris | 0:cf8a48b1fb23 | 3 | BusOut rgb(LED_RED,LED_GREEN,LED_BLUE); | 
| chris | 0:cf8a48b1fb23 | 4 | |
| chris | 0:cf8a48b1fb23 | 5 | int main() { | 
| chris | 0:cf8a48b1fb23 | 6 | int i=0; | 
| chris | 0:cf8a48b1fb23 | 7 | while(1) { | 
| chris | 0:cf8a48b1fb23 | 8 | rgb=i; | 
| chris | 0:cf8a48b1fb23 | 9 | wait (0.25); | 
| chris | 0:cf8a48b1fb23 | 10 | i++; | 
| chris | 0:cf8a48b1fb23 | 11 | } | 
| chris | 0:cf8a48b1fb23 | 12 | } | 
