Rahul Khanna
Published © GPL3+

Tamil Library for 16x2 LCD - தமிழ் எழுத்துக்கள்

I made a Custom Library for the Tamil Language

IntermediateFull instructions provided4,027
Tamil Library for 16x2 LCD - தமிழ் எழுத்துக்கள்

Things used in this project

Hardware components

Arduino UNO
Arduino UNO
×1
RGB Backlight LCD - 16x2
Adafruit RGB Backlight LCD - 16x2
×1
Jumper wires (generic)
Jumper wires (generic)
approximately 10
×10
Breadboard (generic)
Breadboard (generic)
×1

Hand tools and fabrication machines

Soldering iron (generic)
Soldering iron (generic)
Wire cutter

Story

Read more

Schematics

arduino-lcd_r8oBPIVnuV.png

Code

Example Sketch

Arduino
#include <LiquidCrystal.h>

// Initialize LCD with following connections
LiquidCrystal lcd(10, 9, 8, 7, 6, 5);

void setup() {
  // Setup LCD Size : Columns, Rows
  lcd.begin(16, 2);
  // Display a message on the LCD.
lcd.print("hello, world!");
}

void loop() {
  // Set position of the cursor to column 0, line 1
  // Note : Counting starts from 0
  lcd.setCursor(0, 1);
  // Displays the number of seconds since reset
  lcd.print(millis()/1000);
}

Credits

Rahul Khanna
48 projects • 227 followers
Research Enthusiast - Computer Vision, Machine Intelligence | Embedded System | Robotics | IoT | Intel® Edge AI Scholar
Contact

Comments

Please log in or sign up to comment.