Código para o menu no LCD

Dependencies:   mbed SDFileSystemSD TextLCD

Fork of TextLCD_HelloWorld2 by Wim Huiskamp

Revision:
30:614dcbd74cdc
Parent:
29:558eccdfc079
Child:
31:77eb51d4ee18
--- a/main.cpp	Mon May 21 19:45:56 2018 +0000
+++ b/main.cpp	Tue May 22 13:58:18 2018 +0000
@@ -88,6 +88,7 @@
             case 17: menu.salvarprog(); break;
             case 18: menu.ctzhome(); break;
             case 19: menu.origem(); break;
+            case 20: menu.nomeprog(); break;
             }
         } 
     }             
@@ -96,19 +97,19 @@
     void botenter_press(void){          
               penter = bot_enter;
               bot_enter = !bot_enter;
-              //printf("enter high\n\r");
+              printf("enter high\n\r");
               }
           
 //função interrupt botão cima          
     void botcima_press(void){
               pcima = bot_cima;
               bot_cima = !bot_cima;
-              //printf("cima high");
+              printf("cima high\n\r");
               }
 
 //função interrupt botão baixo          
     void botbaixo_press(void){
               pbaixo = bot_baixo;
               bot_baixo = !bot_baixo;
-              //printf("baixo high");
+              printf("baixo high\n\r");
               }   
\ No newline at end of file