Advertisement
RuiViana

V

Dec 9th, 2017
233
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.29 KB | None | 0 0
  1. unsigned long delay3 = 0;
  2. int pos = 0;
  3.  
  4.     if ((millis() - delay3) >= 500)
  5.     {
  6.       pos++;
  7.       delay3 = millis();
  8.     }
  9.     if (pos > 19)       pos = 0;
  10.     lcd.setCursor(pos, 2);
  11.     lcd.print("  Analise & Desenv.");
  12.     lcd.setCursor((pos), 3);
  13.     lcd.print("       De Sistemas");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement