ian rau / Mbed 2 deprecated ProjectVLC

Dependencies:   EthernetInterface mbed-rto mbed

Fork of ProjectVLC by Klaas Govaerts

Files at this revision

API Documentation at this revision

Comitter:
KlaasGovaerts
Date:
Tue May 15 22:31:05 2018 +0000
Parent:
76:c0c7c3f37be2
Child:
78:8efde3e9e3fb
Commit message:
Nog extra commentaar.

Changed in this revision

Interpreter.h Show annotated file Show diff for this revision Revisions of this file
LEDDriver.h Show annotated file Show diff for this revision Revisions of this file
--- a/Interpreter.h	Tue May 15 22:17:52 2018 +0000
+++ b/Interpreter.h	Tue May 15 22:31:05 2018 +0000
@@ -20,7 +20,7 @@
         public:
             
             /**
-            * @param queue A pointer to the queue where the commands will be written.
+            * @param queue A pointer to the queue where the results will be written.
             */
             Interpreter(Queue<int,8>* queue);
             
--- a/LEDDriver.h	Tue May 15 22:17:52 2018 +0000
+++ b/LEDDriver.h	Tue May 15 22:31:05 2018 +0000
@@ -24,6 +24,10 @@
      */ 
     void poll(int numberOfLeds);
    
+    /**
+    * Stel alle LEDS in voor een gegeven positie in het signaal. Voor juiste werking dien je de positie telkens te incrementeren vanaf 0 t.e.m. 24.
+    *@param j De positie in het signaal (kan gaan van 0 tot 24).
+    */
     void setLEDS(int j);
     
      public:
@@ -44,8 +48,14 @@
      */
     ~LEDDriver();
     
+    /**
+    * Functie die 8 leds aanstuurt.
+    */
     void drive8leds();
-
+    
+    /**
+    * Stelt de members in op hun default waarde.
+    */
     void initArrays();
 };