Advertisement
hidromotic

G3_III

Apr 11th, 2019
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. //G3_III
  2. void ActualizaVisorModoMotor(void)
  3. {
  4. if (modo_motor == MODO_PARADO)
  5. {
  6. lcd.setCursor(0, 1);
  7. lcd.print("Detenido");
  8. }
  9. if (modo_motor == MODO_ESTRELLA)
  10. {
  11. lcd.setCursor(0, 1);
  12. lcd.print("Estrella");
  13. }
  14. if (modo_motor == MODO_TRIANGULO)
  15. {
  16. lcd.setCursor(0, 1);
  17. lcd.print("Triangulo");
  18. }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement