Introduction: DFRobot's 2.8" TFT Touch Shield for Arduino

Wanna play with some graphic or make a touch interface? Use this DFRobot's Touch Shield for Arduino UNO!

INTRODUCTION

Add some flavor to your Arduino project with this large colorful touch screen by DFRobot. This TFT Touch screen is a fantastic shield with big (2.8" diagonal) and 240x320 pixels with individual pixel control which could apply to Arduino and mbed. It also comes with micro SD slot and 4 MB flash so you could add it easily to your projects with this 2.8" TFT Touch screen.

Step 1: THINGS USED IN THIS PROJECT

Hardware components:

  1. Arduino UNO & Genuino UNO × 1
  2. DFRobot's 2.8" TFT Touch Shield × 1

Software apps and online services:

  1. Arduino IDE
  2. DFRobot Image Converter

Hand tools and fabrication machines:

  1. Stylus (generic)

Step 2: The Specifications and Pinouts

  • Model: DM-TFT28-105
  • Display size: 2.8"
  • Operating voltage: 3.3V or 5V
  • Resolution ratio: 240x320
  • Communication Interface: SPIFlash memory: 4MB
  • Operating temperature: -10~70℃
  • Support micro-SD card
  • Support Arduino
  • Size: 55*70 (W*H)mm
  • Viewing area:43.2*57.6 (W*H)mm
  • Weight: 40g

Step 3: Bubble Display

  1. First download the DmTftLibrary from dmtftlibrary.
  2. Extract the content to your Arduino library folder. In Windows this is usually located in Arduino IDE folder\libraries. Check Arduino's official guide if you want more information on how to install the Arduino Library. The official guide of Arduino.
  3. Start Arduino IDE, open the sample code, click "File--> Examples-> DmTftLibraries", select the right board and COM port: DM-TFT28-105
  4. Open the Example and upload to your Arduino board.

Step 4: Graphic Display Example

In the sketch -

tft.drawString(5, 10, "Romantic cabin"); 

It sends command to print "Romantic Cabin" 5 px away on x-axis and 10 pxfrom y-axis. You can also print a only text on screen ( if you give proper distance of 20 px between each line.

tft.drawLine(x, y, x-80, y+30, YELLOW ); 

It gives command to draw line from x and y co-ordinate to x-80 and y+30co-ordinate. It also specifies that the color of line is yellow. (Remember to enter color in CAPS or HEX code only). Understanding it is easy but easier if you know basic 2D geometry and about Cartesian Plane.

tft.drawRectangle(x-40, y+50,x-20, y+70, 0x8418); 

It gives command to draw a rectangle where corner points and color of it's outline are given as the arguments.

tft.fillCircle(x+100, y-30, 20, RED ); 

This one fills color in the circle whose center and color to be filled are given as arguments.

Step 5: The Drawing Board

We can make a home made digital drawing board in just a few minutes. All we need are Arduino and this TFT shield.

How :

  1. Stack the shield on the Arduino.
  2. Connect the Arduino with the laptop and upload the sketch for drawing board.Wait for the screen to turn black.
  3. Now, swipe your finger on the screen and a line will be drawn. I didn't have but I would prefer you to use a stylus.

In the sketch -

dmTouch.readTouchData(x, y, touched); 

It reads the x and y co-ordinates of the point touched.

tft.fillCircle(x, y, 2, BLUE); 

It draws a point on the area where x and y co-ordinates belong to.

The syntax is : .

<object_name>.fillCircle(x, y, <point thickness>, <point color>);

Moreover, you can draw on it and to clear it, use the reset button on the screen to clear the graphics.

In the pic, it's "Techduino on Instructables" because techduino is my another name.See my projects on http://www.hackster.io/techduino

Step 6: Display a Pictures From a SD Card

It requires a special format for the displaying picture: 16bit RGBRGB bmp.

You could download the convert tool here: ImageConverter

Why 16 bit, not 24 bit?

There are 2 reasons for converting your images to 16-bit bmp with flipped row order:

  1. Size : The image is only 2/3 of the original size and because most embedded displays/drivers uses 16-bit color, the picture quality will be the same.
  2. Speed : Most embedded TFT uses the 16-bit 565 format and support the top-bottom write order.

a) The MCU does not need to convert the 24-bit to 16-bit 565, this is already done.

b) If the source format is already in correct order, a faster algorithm for reading the data can be used.

c) There is less data to read (because the image is only 2/3 of an original size)

Compared to raw picture data, there are several advantages:

  1. It has meta data about the format, size, how it is stored etc. With raw data, the program must already know this.
  2. It is a standard so it can be viewed directly in most viewer (although not all viewer )
  3. Can create and edit the images in advanced photo editing programs like photoshop.

Anyway, there is converted picture in the library folder (DmTftLibrary\examples\DM-TFT28-105). You could have a try with it first.

  1. Copy the converted picture to the SD.
  2. Plug SD card in the touch screen.
  3. Upload the sketch given in the attachments.

Note : Install the SPIFlash library before you compile the sketch. Click here to download it form the GitHub.

Buy the shield from DFRobot.com now. *****************************************************************************************************