Example showing comments.

Dependencies:   mbed

Fork of Lab1TestAdvanced3 by Matthew Shuman

Revision:
1:94789e770417
Parent:
0:fbca7accb93b
--- a/Blinker.h	Sat Aug 13 01:47:43 2016 +0000
+++ b/Blinker.h	Sat Aug 13 08:26:42 2016 +0000
@@ -23,7 +23,12 @@
 public:
     Blinker(void) {
     };
-// class method to blink and LED based on the PwmOut class
+
+/**
+     * @param outputLED selects the PwmOut that should be connected to the LED.
+     * @param frequency is the rate at which the LED blinks, in Hertz.
+     * @param brightness is the brightness of the LED, ranging between 0.00 and 1.00.
+     */
     void blink(PwmOut outputLED, float frequency, float brightness) {
         outputLED.period(.001f);
         outputLED = 1- brightness;