TinkerKit Tutorial: LCD: 03 – LCD Serial

Posted by Jack L on

LCD Lessons:
  1. Windows Installation Guide
  2. Introduction to LCD
  3. LCD Serial
  4. LCD Local (No Arduino)
  5. Arduino & 2 Wires
  6. TWI

    In this tutorial we use the TKLCD module from the Serial port of the TinkerKit! shield.

    First of all let’s get all the tools we need: the TKLCD library and a four-connectors wire or 4-pin jumper wire.

    To connect the LCD to the shield, we need a four-connectors wire or 4-pin jumper wire; in fact it has four holes like the serial port, one more than the regular TinkerKit! connectors.

    The TKLCD library is available here; if you don’t remember how to install a library, here’s a brief summary:

    • unzip the downloaded file
    • move the TKLCD folder inside the “libraries” folder, usually located in Documents\Arduino\libraries (if it’s not there, just create it)
    • close the Arduino software, if it’s open, then relaunch it
    • to verify the installation, open the software and from the top menu click on sketch->import library. You should be able to see the TKLCD element in the list

    with this library we can generally work with the module, both as independent or connected to the TinkerKit! shield through the serial port. We want to use it with the serial, so we have to do one more step: upload the firmware.

    The firmware is nothing more than a particular Arduino sketch and it’s inside the examples of the TKLCD library. You can open it from File->Examples->TKLCD->SerialFirmware Mind that this firmware must be uploaded on the LCD module, and not on the Arduino Board. Connect the module using the USB cable, (the Arduino software recognizes it as an Arduino Leonardo) then load the firmware. You don’t have to upload the firmware every time, just remember to reload it if you upload something else on the module, and then you want to use it again from the serial.

    Now, connect the LCD module to the TinkerKit! shield’s SERIAL port and let’s see what we can do with this module.

    First of all we have to include all the libraries required by the LCD module: TKLCD, LiquidCrystal and Wire. The last two don’t need to be downloaded, they’re included in the Arduino software and are selectable just like the other libraries from Sketch->Import Library. Now create a LCD object in the globals, like every other module.

    TKLCD_Serial lcd = TKLCD_Serial();
    Then we have to initialize it in the setup:
    lcd.begin();
    Let’s start by writing something on our LCD screen: inside the setup() write
    lcd.print("Hello World!");

    and load it into the Arduino, you should see this on the LCD:

    Every time that we want to print something new on the screen, we have to “refresh” it with the clear() function. To write “Hello World!” but with the two words alternating every second on the screen, we have to type:

    lcd.clear();
    lcd.print("Hello");
    delay(1000);
    
    lcd.clear();
    lcd.print("World!");
    delay(1000);

    Now let’s use it to read the value of an input. Connect a light sensor to the TinkerKit! shield, then we’ll use the LCD screen to read its values. Don’t forget to include the normal TinkerKit! Library if you’re using modules other than the LCD.

    Our loop function is now:

    //read the light sensor
    int val = ldr.read();
     
    //print the values on the lcd
    lcd.clear();
    lcd.print("Light: ")
    lcd.print(val);
    delay(20);
    Now take a look at all the examples included in the library to discover more functions.

    Share this post



    ← Older Post Newer Post →


    Leave a comment

    Please note, comments must be approved before they are published.