A small program demonstrating use of the Flasher class

Dependencies:   mbed Flasher

Revision:
0:cc4359728915
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Sat Feb 19 14:37:29 2011 +0000
@@ -0,0 +1,24 @@
+ // Switches LED1 through the different modes
+ #include "mbed.h"
+ #include "Flasher.h"
+ 
+ Flasher myFlasher(LED1, OFF); //Defines myFlasher on LED1 starting off
+ 
+ int main() {
+      while(1){   
+          wait(5);
+          myFlasher.updateFlash(ON);
+          wait(5);
+          myFlasher.updateFlash(SLOW);
+          wait(5);
+          myFlasher.updateFlash(MEDIUM);
+          wait(5);
+          myFlasher.updateFlash(QUICK);
+          wait(5);
+          myFlasher.onFor(3,ON,MEDIUM);
+          wait(5);
+          myFlasher.pauseFor(2);
+          wait(5);
+          myFlasher.updateFlash(OFF);
+      }
+  }