This provides a template for how to use a .h file to help organize a larger program into classes.

Dependencies:   mbed

Revision:
1:a0232594b518
Parent:
0:dff21578688b
--- a/Blinker.h	Sat Aug 13 01:25:25 2016 +0000
+++ b/Blinker.h	Sat Aug 13 01:46:41 2016 +0000
@@ -4,7 +4,6 @@
 {
 public:
     Blinker(void) {
-// _pin(pin) means pass pin to the Blinker Constructor
     };
 // class method to blink and LED based on the PwmOut class
     void blink(PwmOut outputLED, float frequency, float brightness) {