Toll-Free Customer Support 24/7

Graphical LCD Interfacing Board

LCD stands for Liquid Crystal Dispaly. It can be used to display anything. They are of many types. The ones we commonly use for embedded systems, robotics, etc are of two types – character LCD and graphical LCD. The 16x2 LCD Characters have their own limitations; they can only display characters of certain dimensions. The Graphical LCDs are thus used to display customized characters and images. The Graphical LCDs find use in many applications; they are used in video games, mobile phones, lifts etc. as display units.   

Order Code : RDL/LCD/14/001/V1.0

Availability: Out of stock

₹1,234.00
Frequently bought together

Customers who bought this product also commonly purchased the following combination of items.

Customers Who Bought This Item Also Bought

Questions:

Posted by Balasubramani, Friday, 18 November 2016 on product Graphical LCD Interfacing Board
  • 0
    vote
    A:

    Dear Sir,

    Kindly go through the details.
    Model Number: JHD12864E
    Dimension: 93X70 mm.
    Posted by Raghavendra Shetty on Friday, 18 November 2016
Posted by kevin, Thursday, 3 September 2015 on product Graphical LCD Interfacing Board
  • 0
    vote
    A:

    Dear Sir,

    Please find the ardiuno code below,

    /*
      GLCD Library - Hello World
     
     This sketch prints "Hello World!" to the LCD
     and shows the time in seconds since reset.
     
      The circuit:
      See the inlcuded documentation in glcd/doc directory for how to wire
      up the glcd module. glcd/doc/GLCDref.htm can be viewed in your browser
      by clicking on the file.
     
     */

    // include the library header
    #include <glcd.h>

    // include the Fonts
    #include <fonts/allFonts.h>

    void setup() {
      // Initialize the GLCD
      GLCD.Init();

     // Select the font for the default text area
      GLCD.SelectFont(System5x7);

      GLCD.print("hello, world!");
    }

    void loop() {
      // set the cursor to column 0, line 1
      // (note: line 1 is the second row, since counting begins with 0):
      GLCD.CursorTo(0, 1);

      // print the number of seconds since reset:
      GLCD.print(millis()/1000);
    }

    Posted by Rashmi P on Thursday, 3 September 2015

Ask Your Question

  • Reload captcha

* Required Fields

Back to top