79787481

Date: 2025-10-10 15:14:56
Score: 0.5
Natty:
Report link

Solved the Issue, apperently it wasn't a programming related issue but a voltage issue I had in my system.
This code worked using the Pico2W and the LiquidCrystalI2C lib.

#include <Arduino.h>
#include <Wire.h>
#include <LiquidCrystal_I2C.h>

LiquidCrystal_I2C lcd(0x27, 20, 4);

void setup()
{
  lcd.init();                      // initialize the lcd 
  lcd.backlight();
  Serial.begin(9600);
}

void loop()
{
  Serial.println("Testing LCD");
  lcd.clear();
  lcd.setCursor(0, 0);
  lcd.print("Testing LCD");
  delay(2000);
  lcd.clear();
  lcd.setCursor(0, 1);
  lcd.print("Abrakadabra");
  delay(2000);
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Marius Blees