LCD implementation of our project.

Dependencies:   mbed mbed-rtos MLX90614

Revision:
7:11675c1dce4f
Parent:
4:024e6a9c2ebf
--- a/Menu.cpp	Sat May 30 14:58:44 2015 +0000
+++ b/Menu.cpp	Wed Jun 03 12:22:46 2015 +0000
@@ -18,14 +18,14 @@
             selected++;
             //display items from the next selected item
             current_line = FIRST_ITEM_LINE; //current selected line will be top of screen
-            printf("got down, selected is: %d; current line is: %d\n", selected, current_line);
+            //printf("got down, selected is: %d; current line is: %d\n", selected, current_line);
         }
         //it is not last on the screen
         else{
             //clear the screen
             current_line++;
             selected++;
-            printf("selected is: %d; current line is: %d\n", selected, current_line);
+            //printf("selected is: %d; current line is: %d\n", selected, current_line);
         }
         st7565->clear();
         display_items(selected/ITEMS_PER_SCREEN * ITEMS_PER_SCREEN);