Advertisement
hidromotic

G08_V

Apr 11th, 2019
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. //G08_V
  2. void ActualizaVisorTpoTransicion(void)
  3. {
  4. static long tpo_arranque_ms_anterior = 0;
  5. char cadena[5];
  6.  
  7. if (tpo_arranque_ms == tpo_arranque_ms_anterior)return;
  8. tpo_arranque_ms_anterior = tpo_arranque_ms;
  9.  
  10. lcd.setCursor(12, 1);
  11. sprintf(cadena, "%d", tpo_arranque_ms_anterior / 1000);
  12. lcd.print(cadena);
  13. Serial.print(cadena);
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement