Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //G3_III
- void ActualizaVisorModoMotor(void)
- {
- if (modo_motor == MODO_PARADO)
- {
- lcd.setCursor(0, 1);
- lcd.print("Detenido");
- }
- if (modo_motor == MODO_ESTRELLA)
- {
- lcd.setCursor(0, 1);
- lcd.print("Estrella");
- }
- if (modo_motor == MODO_TRIANGULO)
- {
- lcd.setCursor(0, 1);
- lcd.print("Triangulo");
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement