createChar in i2c protocol.

so recently i got this lcd here, and after checking the code for this here i was wondering how to make a custom char like the normal creatChar() command.

this is my code ill be glad if youill help me.

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

#define I2C_ADDR    0x27 // <<----- Add your address here.  Find it from I2C Scanner
#define BACKLIGHT_PIN     3
#define En_pin  2
#define Rw_pin  1
#define Rs_pin  0
#define D4_pin  4
#define D5_pin  5
#define D6_pin  6
#define D7_pin  7

int n = 1;

byte smiley[8] = {
  B00000,
  B10001,
  B00000,
  B00000,
  B10001,
  B01110,
  B00000,
};

LiquidCrystal_I2C	lcd(I2C_ADDR,En_pin,Rw_pin,Rs_pin,D4_pin,D5_pin,D6_pin,D7_pin);

void setup()
{
 lcd.begin (16,2); //  <<----- My LCD was 16x2

 
// Switch on the backlight
lcd.setBacklightPin(BACKLIGHT_PIN,POSITIVE);
lcd.setBacklight(HIGH);
lcd.setCursor(0,1);
  lcd.createChar(0, smiley);
  lcd.print(byte(0));
 
}

void loop()
{
}

First things first. Are you able to display ordinary text on your display?

... and after checking the code for this here ...

That's a three page thread with 37 replies. To what part are you referring?

Don

floresta:
First things first. Are you able to display ordinary text on your display?

That's a three page thread with 37 replies. To what part are you referring?

Don

yes i was able to run other code.
and i reffered to the last code of the writer of the post (sorry for my english)