// Archivo sketch.ino
#include "LiquidCrystal595.h" // include the library
LiquidCrystal595 lcd(2, 3, 4); // datapin, latchpin, clockpin
void setup() {
lcd.init(2, 3, 4);
lcd.setLED2Pin(HIGH); // Backlight On
lcd.begin(16,2); // 16 characters, 2 rows
lcd.clear();
lcd.setCursor(0,0);
lcd.print("Hello World!");
lcd.setCursor(0,1);
lcd.print("Raspberry piPico");
}
void loop() {
// not used.
}