00001 #include "../cli/cli_func.h" 00002 00003 00004 /* 00005 * @brief Escreve dados no lcd 00006 */ 00007 void http_set_lcd(char *c) 00008 { 00009 DEBUG_HTTP(c); 00010 writeDataLcd(c,0,0); 00011 } 00012 00016 void http_set_hour(char *c){ 00017 DEBUG_HTTP(c); 00018 RTC_HOUR = atoi(c); 00019 } 00020 00024 void http_set_min(char *c){ 00025 RTC_MIN = atoi(c); 00026 } 00027 00031 void http_set_sec(char *c){ 00032 DEBUG_HTTP(c); 00033 RTC_SEC = atoi(c); 00034 }