Sitemap / Advertise

Introduction

Create an LCD character easily to add it to your Arduino or Raspberry Pi project which includes an LCD Screen as a component using HTML.


Tags



Share

LCD Character Creator

Advertisement:


read_later

Read Later



read_later

Read Later

Introduction

Create an LCD character easily to add it to your Arduino or Raspberry Pi project which includes an LCD Screen as a component using HTML.


Tags



Share





Advertisement

Advertisement





Description

tool-img
Figure - 1.1

Every time I wanted to use an LCD character for my projects, I had to do it in my mind, therefore, the outcome of my work could be seen on an LCD Screen after the code of the LCD character run on whichever micro-controller I use.

So that I created a tool which is capable of creating an LCD character and showing the outcome of it at the same time.

Combinations that occur the characters can be adjusted by toggling onto the canvas and the code of them is displayed as an Arduino code file. In addition to, the code is adaptable to the other micro-controllers easily.

Canvas

// Arduino Example Code

#include <LiquidCrystal.h>

LiquidCrystal lcd(rs, en, d4, d5, d6, d7);

byte example[8] = {

0b00000,

0b00000,

0b00000,

0b00000,

0b00000,

0b00000,

0b00000,

0b00000

};

void setup() {

lcd.createChar(1, example);

lcd.begin(16, 2);

lcd.write(1); }

How it works

When you want to create some unique LCD characters to get your project to the next level, you have to do it with bytes combinations.

There are eight rows and five columns which can be used to design a character is controlled by the array of the bytes.

The easiest way to design a character without waiting to see the result is to use this tool because you can observe the outcome of your design and the array of the bytes at the same time.

Example Code

Arduino boards are compatible with LCD screens and the LiquidCrystal Library is included the core of it also most of the projects with LCD screens are created with an Arduino board so I share the example code as an Arduino code.

On the other hand, you can use the array of the bytes with another micro-controller or a Raspberry Pi as well as an Arduino.

Schematics

Arduino

Download


Downloads

Example Code

Download