Hoi,
Als newbie op het gebied van Arduino ben ik aan het experimenteren met een LCD Display (details zie op onderstaande links).
https://iprototype.nl/products/components/led-lcd/lcd16x2-I2C-BLZoals aangegeven op deze link heb ik de LCD aangesloten op analoog 4 en 5.
Helaas krijg ik enkel witte blokjes op het scherm en niet de gehoopte "Hello World".
Weet iemand raad?
Heb al adres 20 en 27 geprobeerd maar zonder resultaat.
greetz,
Bart
Hieronder mijn code:
//DFRobot.com
//Compatible with the Arduino IDE 1.0
//Library version:1.1
#include <Wire.h>
#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x27,16,2); // set the LCD address to 0x27 for a 16 chars and 2 line display
void setup()
{
Serial.begin(9600);
lcd.init(); // initialize the lcd
// Print a message to the LCD.
lcd.backlight();
lcd.println("Hello, world!");
Serial.println("Hello World!");
}
void loop()
{
}