Mohamed Meera Hussien Jawhar Sathik
Published © GPL3+

i2C Converter 8x2 LCD

A custom i2C board for 8x2 LCD

IntermediateShowcase (no instructions)3 hours164
i2C Converter 8x2 LCD

Things used in this project

Hardware components

lcd 8x2
×1
Cytron Technologies maker feather aiot s3
×1

Software apps and online services

JLCPCB EasyEDA

Story

Read more

Schematics

The Breakout Board Schematic

Code

LCD Test

C/C++
This is the sample code to test the LCD
//YWROBOT
//Compatible with the Arduino IDE 1.0
//Library version:1.1
#include <Wire.h> 
#include <LiquidCrystal_I2C.h>

LiquidCrystal_I2C lcd(0x27,8,2);  // set the LCD address to 0x27 for a 16 chars and 2 line display

void setup()
{
  lcd.init();                      // initialize the lcd 
  lcd.init();
  lcd.noBacklight();
  // Print a message to the LCD.
  lcd.backlight();
  lcd.setCursor(0,0);
  lcd.print("Hello");
  lcd.setCursor(0,1);
  lcd.print("World");
}


void loop()
{
}

Credits

Mohamed Meera Hussien Jawhar Sathik
3 projects • 5 followers
I am curious about the world microcontroller. Initially i start up with PIC then work on Arduino and then to Raspberry Pi.

Comments