Part One of my Project Course. Implementation of simple I/O and a custom defined protocol over UDP/IP.

Dependencies:   C12832 LM75B mbed EthernetInterface mbed-rtos

Revision:
2:6bfe732ba6bc
Parent:
1:b5c534165dfe
--- a/lcd.h	Wed Mar 14 07:59:21 2018 +0000
+++ b/lcd.h	Mon Mar 19 11:32:54 2018 +0000
@@ -6,8 +6,28 @@
     
     class LCD{
         public:
+            /*
+            * Constructor for LCD class.
+            *
+            @param The pins used to controll the LCD on the application board.
+            @return Nothing.
+            */
             LCD(PinName mosi=p5, PinName sck=p7, PinName reset=p6, PinName a0=p8, PinName ncs=p11);
+            
+            /*
+            * Method that displays chars on the LCD.
+            *
+            @param Char array containing the characters to display.
+            @return Nothing.
+            */
             void displayChars(char characters_to_display[]);
+            
+             /*
+            * Method that clears everything on the LCD.
+            *
+            @param Nothing.
+            @return Nothing.
+            */
             void clearLcd(void);
         
         private: