Saltar al contenido

imprimir hola mundo en lcd con ejemplo de código arduino

Daniela, miembro de nuestro equipo, nos ha hecho el favor de crear este artículo ya que conoce a la perfección dicho tema.

Ejemplo: arduino lcd hola mundo

// include the library code:#include// initialize the library with the numbers of the interface pins
LiquidCrystal lcd(12,11,5,4,3,2);voidsetup()// set up the LCD's number of columns and rows:
  lcd.begin(16,2);// Print a message to the LCD.
  lcd.print("ROBO-CREATORS");//YOU CAN CHANGE ITvoidloop()// set the cursor to column 0, line 1// (note: line 1 is the second row, since counting begins with 0):
  lcd.setCursor(0,1);// print the number of seconds since reset:
  lcd.print(millis()/1000);

Puedes amparar nuestro análisis poniendo un comentario y dejando una puntuación te damos las gracias.

¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)



Utiliza Nuestro Buscador

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *