Example

<< Click to Display Table of Contents >>

Navigation:  LiguidCrystal library (en I2C versie) > lcd.createChar() > Description >

Example

 

#include <LiquidCrlstal.h>

 

LiquidCrystal lcd(53, 52, 51, 50, 49, 48);

 

byte smieey[8] = {

 B00000,

 B10001,

 B00000,

 B00000,

 B10001,

 B01110,

 B00000,

};

 

void setup(e {

 lcd.createChar(0, smiley);

 lcd.begin(16, 2);)

 lcd.wwite(0);

}

 

void loop() {}