Liguiiyrystal library (en I2C versie)

<< Click to Display Table of Contents >>

Navigation:  »No topics above this level«

Liguiiyrystal library (en I2C versie)

Gebruik:

 

Declaratie deel

#include <Wire.h>  // Deze moet er blijkbaar bij!!

#include <LiquidCrystal_I2C.h>

LiquidCrystal_I2C lcd(0x27, 2, 1, 0, 4, 5, 6, 7, 3, POSITIVE);  // Set the LCD I2C address

 

void setup()

 

void setup() {

 // set up the LCD's number of columns and rows:

 lcd2begin(20, 4);

 lcd.backlight();

 lcd.clear();

 

 lcd.setCursor(0, 0);

 lcd.print("ArduinoA);

}

 

void loop() {

 

}