arduino sainsmart 3.2 tft lcd example price

SainSmart 3.2" TFT LCD Displayis a LCD touch screen module. It has 40pins interface and SD card and Flash reader design. It is a powerful and mutilfunctional module for your project.The Screen include a controller SSD1289, it"s a support 8/16bit data interface , easy to drive by many MCU like STM32 ,AVR and 8051. It is designed with a touch controller in it . The touch IC is ADS7843 , and touch interface is included in the 40 pins breakout. It is the version of product only with touch screen and touch controller.

arduino sainsmart 3.2 tft lcd example price

Reason: The hooks on the backight of ER-TFT032-3.1 is always complained by most customers for inconvenient assembly. So we cancel the hooks in the new version of ER-TFT032-3.2.That"s the only difference for these two versions.

ER-TFT032-3.2 is 240x320 dots 3.2" color tft lcd module display with ILI9341 controller and optional 4-wire resistive touch panel and 3.2 inch capactive touch panel with controller FT6236,superior display quality,super wide viewing angle and easily controlled by MCU such as 8051, PIC, AVR, ARDUINO ARM and Raspberry PI.It can be used in any embedded systems,industrial device,security and hand-held equipment which requires display in high quality and colorful image.It supports 8080 8/16-bit parallel,3/4-wire serial interface. FPC with zif connector is easily to assemble or remove.Lanscape mode is also available.

Of course, we wouldn"t just leave you with a datasheet and a "good luck!".Here is the link for 3.2"TFT Touch Shield with Libraries, Examples.Schematic Diagram for Arduino Due,Mega 2560 and Uno . For 8051 microcontroller user,we prepared the detailed tutorial such as interfacing, demo code and development kit at the bottom of this page.

arduino sainsmart 3.2 tft lcd example price

Spice up your Arduino project with a beautiful large touchscreen display shield with built in microSD card connection. This TFT display is big (3.2" diagonal) bright (5 white-LED backlight) and colorful (18-bit 262,000 different shades)! 240x320 pixels with individual pixel control. As a bonus, this display has a optional resistive touch panel with controller XPT2046 attached by default and a optional capacitive touch panel with controller FT6206 attached by default, so you can detect finger presses anywhere on the screen and doesn"t require pressing down on the screen with a stylus and has nice glossy glass cover.

The shield is fully assembled, tested and ready to go. No wiring, no soldering! Simply plug it in and load up our library - you"ll have it running in under 10 minutes! Works best with any classic Arduino (UNO/Due/Mega 2560).

Of course, we wouldn"t just leave you with a datasheet and a "good luck!" - we"ve written a full open source graphics library at the bottom of this page that can draw pixels, lines, rectangles, circles and text. We also have a touch screen library that detects x,y and z (pressure) and example code to demonstrate all of it. The code is written for Arduino but can be easily ported to your favorite microcontroller!

If you"ve had a lot of Arduino DUEs go through your hands (or if you are just unlucky), chances are you’ve come across at least one that does not start-up properly.The symptom is simple: you power up the Arduino but it doesn’t appear to “boot”. Your code simply doesn"t start running.You might have noticed that resetting the board (by pressing the reset button) causes the board to start-up normally.The fix is simple,here is the solution.

arduino sainsmart 3.2 tft lcd example price

In this Arduino touch screen tutorial we will learn how to use TFT LCD Touch Screen with Arduino. You can watch the following video or read the written tutorial below.

For this tutorial I composed three examples. The first example is distance measurement using ultrasonic sensor. The output from the sensor, or the distance is printed on the screen and using the touch screen we can select the units, either centimeters or inches.

The next example is controlling an RGB LED using these three RGB sliders. For example if we start to slide the blue slider, the LED will light up in blue and increase the light as we would go to the maximum value. So the sliders can move from 0 to 255 and with their combination we can set any color to the RGB LED,  but just keep in mind that the LED cannot represent the colors that much accurate.

The third example is a game. Actually it’s a replica of the popular Flappy Bird game for smartphones. We can play the game using the push button or even using the touch screen itself.

As an example I am using a 3.2” TFT Touch Screen in a combination with a TFT LCD Arduino Mega Shield. We need a shield because the TFT Touch screen works at 3.3V and the Arduino Mega outputs are 5 V. For the first example I have the HC-SR04 ultrasonic sensor, then for the second example an RGB LED with three resistors and a push button for the game example. Also I had to make a custom made pin header like this, by soldering pin headers and bend on of them so I could insert them in between the Arduino Board and the TFT Shield.

Here’s the circuit schematic. We will use the GND pin, the digital pins from 8 to 13, as well as the pin number 14. As the 5V pins are already used by the TFT Screen I will use the pin number 13 as VCC, by setting it right away high in the setup section of code.

I will use the UTFT and URTouch libraries made by Henning Karlsen. Here I would like to say thanks to him for the incredible work he has done. The libraries enable really easy use of the TFT Screens, and they work with many different TFT screens sizes, shields and controllers. You can download these libraries from his website, RinkyDinkElectronics.com and also find a lot of demo examples and detailed documentation of how to use them.

After we include the libraries we need to create UTFT and URTouch objects. The parameters of these objects depends on the model of the TFT Screen and Shield and these details can be also found in the documentation of the libraries.

So now I will explain how we can make the home screen of the program. With the setBackColor() function we need to set the background color of the text, black one in our case. Then we need to set the color to white, set the big font and using the print() function, we will print the string “Arduino TFT Tutorial” at the center of the screen and 10 pixels  down the Y – Axis of the screen. Next we will set the color to red and draw the red line below the text. After that we need to set the color back to white, and print the two other strings, “by HowToMechatronics.com” using the small font and “Select Example” using the big font.

Now we need to make the buttons functional so that when we press them they would send us to the appropriate example. In the setup section we set the character ‘0’ to the currentPage variable, which will indicate that we are at the home screen. So if that’s true, and if we press on the screen this if statement would become true and using these lines here we will get the X and Y coordinates where the screen has been pressed. If that’s the area that covers the first button we will call the drawDistanceSensor() custom function which will activate the distance sensor example. Also we will set the character ‘1’ to the variable currentPage which will indicate that we are at the first example. The drawFrame() custom function is used for highlighting the button when it’s pressed. The same procedure goes for the two other buttons.

drawDistanceSensor(); // It is called only once, because in the next iteration of the loop, this above if statement will be false so this funtion won"t be called. This function will draw the graphics of the first example.

getDistance(); // Gets distance from the sensor and this function is repeatedly called while we are at the first example in order to print the lasest results from the distance sensor

So the drawDistanceSensor() custom function needs to be called only once when the button is pressed in order to draw all the graphics of this example in similar way as we described for the home screen. However, the getDistance() custom function needs to be called repeatedly in order to print the latest results of the distance measured by the sensor.

Ok next is the RGB LED Control example. If we press the second button, the drawLedControl() custom function will be called only once for drawing the graphic of that example and the setLedColor() custom function will be repeatedly called. In this function we use the touch screen to set the values of the 3 sliders from 0 to 255. With the if statements we confine the area of each slider and get the X value of the slider. So the values of the X coordinate of each slider are from 38 to 310 pixels and we need to map these values into values from 0 to 255 which will be used as a PWM signal for lighting up the LED. If you need more details how the RGB LED works you can check my particular tutorialfor that. The rest of the code in this custom function is for drawing the sliders. Back in the loop section we only have the back button which also turns off the LED when pressed.

In order the code to work and compile you will have to include an addition “.c” file in the same directory with the Arduino sketch. This file is for the third game example and it’s a bitmap of the bird. For more details how this part of the code work  you can check my particular tutorial. Here you can download that file:

drawDistanceSensor(); // It is called only once, because in the next iteration of the loop, this above if statement will be false so this funtion won"t be called. This function will draw the graphics of the first example.

getDistance(); // Gets distance from the sensor and this function is repeatedly called while we are at the first example in order to print the lasest results from the distance sensor

arduino sainsmart 3.2 tft lcd example price

LCD Display Modules└ LEDs, LCDs & Display Modules└ Electronic Components & Semiconductors└ Electrical Equipment & Supplies└ Business & IndustrialAll CategoriesAntiquesArtBabyBooks & MagazinesBusiness & IndustrialCameras & PhotoCell Phones & AccessoriesClothing, Shoes & AccessoriesCoins & Paper MoneyCollectiblesComputers/Tablets & NetworkingConsumer ElectronicsCraftsDolls & BearsMovies & TVEntertainment MemorabiliaGift Cards & CouponsHealth & BeautyHome & GardenJewelry & WatchesMusicMusical Instruments & GearPet SuppliesPottery & GlassReal EstateSpecialty ServicesSporting GoodsSports Mem, Cards & Fan ShopStampsTickets & ExperiencesToys & HobbiesTravelVideo Games & ConsolesEverything Else

arduino sainsmart 3.2 tft lcd example price

Arduino mega + 3.2" tft case. there are 2 different case bottoms, 1 without a hole and 1 with. both cases have a cutout for powering the Mega from a USB.

ER-TFTM032-3 is 240x320 pixels 3.2"tft lcd module display with ili9341 controller,adaptor board,optional touch panel,memory chip or card,font chip.Souce from EastRising/buydisplay.com

This is an update to the FreeTouchDeck case by Dustin Watts that holds a 3.2" TFT display since I bought a different size than Dustin used. I modified the Top_for_TFT_with_Headers.stl file. I"ve also uploaded the Fusion 360 file.... I use hot glue to...

Simplified model of a 3.5 inch LCD for Raspberry Pi. ...I used the usb connectors from this model: Raspberry Pi 3 Model B Reference Design Solidworks CAD Raspberry-Pi Raspberrypi Rpi

I needed an accurate model of the 2.8" TFT shield for the Arduino. ...It was a bit of a challenge as these are not manufactured to the tightest tolerances so I added some standard deviation to the model so that it should fit most use cases.- Pinheader...

Models from MSP2202 (2.2") and MSP3218 (3.2") TFT display modules (or similar), which might be handy for a placeholder in designs, for example enclosures. Please compare MSP2202 and MSP3218 datasheets with your displays to confirm that there are no...

adjustable angle mount for Sainsmart 12864 LCD case on 20x20 profile You can use the Display as a remote device.http://www.thingiverse.com/thing:327209 is perfect for using. Thanks. ...

After my first attempt to mount the 3.2" MKS TFT display instead of the Creality display in the original Creality CR10 electronics box (https://www.thingiverse.com/thing:3440802), I found the option "BABYSTEPS" could not be selected using the TFT...

Here you will find a simple frame for the 3.2 "TFT touch screen ILI9341. This frame is designed for gluing on a plastic box. Details of the display can be seen in the attached pictures. ... The display holds four M3x6 screws on the frame.

A small mountable holder for a fasttech LCD module. Mounting pins are a little tight but can be snapped off if not needed. Mount holes are designed for assorted leg or spacer designs. Holes are 5mm dia, 34mm apart and hole centre 5.5mm from edge if...

"lcd hinge" is for behind the lcd. "base hinge" fits into the duo case pins and takes the lcd hinge shaft My hinge snapped when I tried to jam the shaft into it, blue pvc pipe glue visible on assembled photos.. ...does the job.

Case for the ESP32 D1 mini and a TFT 3.2 inch (ILI9341). I designed this to connect a ham radio transceiver FT-817 or FT-818 to the display. The USB port of the ESP32 will later only be used for programming, while the cable on the back is connected...

ER-TFTM043A2-3 is 4.3" tft lcd module display with capacitive touch panel,serial and parallel interface,RA8875 controller,microsd card slot,font ic,flash chip.Souce from EastRising/buydisplay.com

ER-TFTM043-3 is 4.3" tft lcd module display with serial,spi,i2c and parallel interface,RA8875 controller,microsd card slot,font ic,flash chip.Souce from EastRising/buydisplay.com

ER-TFTM043-4 is 4.3" lcd touch screen module display tft with ssd1963 controller board, mcu 6800,8080 parallel interface,micro sd card slot,font,flash chip.Souce from EastRising/buydisplay.com

ER-TFTM043A2-7R is 4.3"800x480 tft lcd display with RA8875 controller board, optional touch panel,serial/parallel interface,micro sd card slot,font,flash chip.Souce from EastRising/buydisplay.com

ER-TFTM040-1 is 4"(3.97") tft lcd display with NT35510 controller,breadkout board,optional resisitive touch panel,memory chip or card,font chip.Souce from EastRising/buydisplay.com

ER-TFTM024-3 is 2.4"tft lcd touch shield qvga 320x240 dots,ili9341 controller,available for touch panel controller,sd card slot,font chip,flash,serial+parallel.Souce from EastRising/buydisplay.com

arduino sainsmart 3.2 tft lcd example price

3.2"inch TFT LCD Module Display Power than SainSmart w/Resistive Touch,Tutorial. 3.2"TFT LCD Display with Breakout Board andwith Resistive Touch Panel. 3.2"TFT LCD Display with Breakout Boardand with Capacitive Touch Panel. I t supports 8080 8-bit /9-bit/16-bit /18-bit parallel ,3-wire,4-wire serial spi interface.Built-in optional microSD card slot, optional. Description E R-TFTM032-3 is 240x320 dots 3.2" color tft lcd module display with ILI9341 controller board,superior display quality,super wide viewing angle and easily controlled by MCU such as 8051, PIC, AVR, ARDUINO,ARM and Raspberry PI.It can be used in any embedded systems,industrial device,security and hand-held equipment which requires display in high quality and colorful image. I t supports 8080 8-bit /9-bit/16-bit /18-bit parallel ,3-wire,4-wire serial spi interface.Built-in optional microSD card slot, optional 3.2 inch 4-wire resistive touch panel with controller XPT2046 an d 3.2 inch capacitive touch panel with controller FT6236 . It"s optional for font chip, flash chip and microsd card. W e offer two types connection,one is pin header and the another is ZIF connector with flat cable mounting on board by default and suggested. Lanscape mode is also available. O f course, we wouldn"t just leave you with a datasheet and a "good luck!".Here is the link for 3.2"TFT Touch Shield with Libraries, EXxamples.Schematic Diagram for Arduino Due,Mega 2560 and Uno . For 8051 microcontroller user,we prepared the detailed tutorial such as interfacing, demo code and Development Kit at the bottom of this page.3D drawing is available. 3.2 inch Series TFT Display L ist ↓ Display Part Number Description ER-TFT032-2(RTP) 3.2" TFT LCD 240x320 Pixels Display with Controller ic ILI9320 and Resistive Touch Panel ER-TFT032-3.1(RTP) 3.2" TFT LCD 240x320 Pixels Display with Controller ic ILI9341 and Resistive Touch Panel ER-TFT032-3.1(CTP) 3.2" TFT LCD 240x320 Pixels Display with Controller ic ILI9341 and Capacitive Touch Panel ER-TFT032A3-3(RTP) 3.2" TFT LCD 240x320 Pixels Display with Controller ic ST7789V and Resistive Touch Panel ER-TFT032A3-3(CTP) 3.2" TFT LCD 240x320 Pixels Display with Controller ic ST7789V and Capacitive Touch Panel ER-TFTM032-3(RTP) 3.2"TFT LCD Display with Breakout Board and with Resistive Touch Panel ER-TFTM032-3CTP) 3.2"TFT LCD Display with Breakout Board and with Capacitive Touch Panel W hat"s inc luded in the package ↓ Num Accessory Name Qty 1 3.2 inch TFT Display with Breakout Board 1 2 3.2" Resistive Touch Panel with controller XPT2046 1 * The touch panel is attached on the display by default. * We default pin header connection , 5V power supply and 4-wire serial interface .Please send message if you want FFC connection , 3.3V power supply and other interface , or buy from our own store [link removed by eBay] . O ptional Accessory List (Click the part number to buy accessories) ↓ Category Part Number Description Flash Chip W25Q128FVSG WINBOND (P/N:25Q128FVSG) 128M Bit Flash Chip MicroSD Card ER3297 New Original MicroSD (TF) 1GB Memory Card Font 1 ER3300-1 15X16 dots fonts chip,it supports Chinese,Japanese(compatible with Unicode) and 150 countries character Font 2 ER3301-1 11X12,15X16 dots fonts chip, it supports Chinese,ASCII and 150 countries character Font 3 ER3303-1 11X12 , 15X16 , 24X24 dots Chinese font, It supports GB2312,GB12345 and ASCII character, also compatible with Unicode Font 4 ER3304-1 12x12,16x16,24x24,32x32 dot matrix Chinese font, supporting GB2312 Simplified Chinese and ASCII * If choose the above accessories,we"ll mount on display by default except the flash chip. Ebay doesn"t allow listings to contain external links,so the documents link may be invalid. Please copy the below entire link to your browser for checking our documents(at the bottom of the page) or for bulk order. https://www.buydisplay.com/default/3-2-inch-capacitive-touchscreen-240x320-tft-lcd-module-display D atasheet - TFT LCD Display,Controller,Connector ↓ Format Documents Name (Downloadable) Version Language Update Date Size 3.2 inch 240x320 Dots Display with Adaptor Board Datasheet 2.0 English Jan-09-2016 709K Controller ILI9341 Datasheet 1.0 English Jul-02-2013 3.2M 40 Pins 1.00mm Pitch ZIF Connector Drawing 1.0 English Apr-19-2013 268K Datasheet - Touch Panel with its Controller IC,Connector ↓ Format Documents Name (Downloadable) Version Language Update Date Size 3.2 inch 4-Wire Resistive Touch Panel Drawing 1.0 English Jun-06-2016 302K Resistive Touch Panel Controller XPT2046 Datasheet 1.0 English May-08-2007 579K 3.2 inch Capacitive Touch Panel Outline Drawing 1.0 English Dec-02-2015 254K Capacitive Touch Panel Controller FT6236 Datasheet 1.0 English Jul-24-2014 674K Datasheet for Flash Memory,MicroSD Card Slot ↓ Format Documents Name (Downloadable) Version Language Update Date Size 128M-BIT Flash W25Q128FV Datasheet 1.0 English Oct-01-2012 1.0M MicoSD Card Slot Drawing 1.0 English Dec-12-2013 1.2M Datasheet for Font Chip ↓ Format Documents Name (Downloadable) Version Language Update Date Size Summary for Font Chip 1.0 English Aug-07-2013 133K ER3300-1 Datasheet 1.0 English May-08-2010 621K ER3301-1 Datasheet 1.0 English Mar-27-2014 2.0M ER3303-1 Datasheet 1.0 English Oct-01-2013 688K ER3304-1 Datasheet 1.0 English Apr-12-2013 935K T utorial - 8051 Microcontroller Demo Code,Interfacing,Development Board&Kit ↓ Format Documents Name (Downloadable) Version Language Update Date Size 3-Wire SPI,Touch Panel,Font Chip,Flash,MicroSD Demo Code 1.0 English Nov-28-2014 180K 4-Wire SPI,Touch Panel,Font Chip,Flash,MicroSD Demo Code 1.0 English Nov-28-2014 180K 8080 8-Bit,Touch Panel,Font Chip,Flash,MicroSD Demo Code 1.0 English Nov-28-2014 179K 8080 16-Bit,Touch Panel,Font Chip,Flash,MicroSD Demo Code 1.0 English Nov-28-2014 179K ER-TFTM032-3 Interfacing Document 1.0 English Aug-2014-23 176K 8051 Microcontroller Development Board & Kit for ER-TFTM032-3 N/A N/A N/A N/A Specification Gross Weight (kg)0.0760 ManufacturerEastRising Continuity SupplyWe promise the long term continuity supply for this product no less than 10 years since 2015. Part NumberER-TFTM032-3 Display Format240x320 Dots Interface8080 8-bit Parallel , 8080 16-bit Parallel , 3-Wire Serial SPI, 4-Wire Serial SPI IC or EquivalentILI9341 AppearanceRGB on Black Diagonal Size3.2” ConnectionPin Header, FFC-Connector Outline Dimension64.9W)x89.4(H)mm Visual Area48.60x64.80mm Active Area48.60(W)x64.80(H)mm Character SizeNo Dot (Pixel) SizeNo Dot (Pixel) Pitch0.2025x0.2025 IC PackageSMT Display TypeTFT-LCD Color Touch Panel OptionalYes Sunlight ReadableNo Response Time(Typ)25ms Contrast Ratio(Typ)500:1 Colors65K/262K Viewing Direction12:00 Viewing Angle RangeLeft:60.0 , Right:60.0 , Up:50.0 , Down:50.0 degree Brightness(Typ)280cd/m2 Backlight ColorWhite Color Backlight Current (Typ)120mA Power Supply(Typ)3.3V, 5V Supply Current for LCM(Max)130mA (Vdd=3.3V) 150mA (Vdd=5V) Operating Temperature-20℃~70℃ Storage Temperature-30℃~80℃ Series NumberER-TFT032-3 About Us We"re China-based global display manufacturer named EastRising Technology Co.,Ltd. that has a worldwide business in design, produce and sell various displays for small to large companies since 2003. Our web site is [link removed by eBay] . Link for video and image of our production line and equipment. RoHS reports for all material we used on display module. Long Term Continuity Supply Warranty We promise the long terms continuity supply and would never end.Some controller IC may stop the production,we"ll try our efforts to find the completely compatible ones.If the equivalent is unavailable, we¡¯ll make the new tooling and use the most similar IC as replacement.So you don"t have to worry even your research time is very long. Shipping Policy All products will be checked carefully and packed in good condition before shipping.We e-mail all customers with tracking information immediately after the shipment for status tracking. Item will be shipped within 1 business day after the payment has been received. Customs fees and import duties for exports are buyer"s responsibility. Warranty All products are covered under our limited warranty, which provides all products are free of functional defects for a period of one year from the date of receipt and all products are free of visual defects and missing parts for a period of 30 days from the date of receipt.If a product was damaged during shipping or the order is incorrect,you must notify us within 2 days of receipt. How to return a product First request an RMA number from our sales with the information:part number,reason for return,order number. Our sales will then either issue an RMA number, ask you for more information, or offer to help you resolve a technical problem so that the product does not need to be returned. Products must arrive here in the same condition as when you received them. You are responsible for return shipping and insurance.Please make sure your RMA number is on the shipping label and on any documents you include with the product. After we receive the product, we inspect it to determine the cause of any defect, then update by email with our findings. This process usually takes five business days.

arduino sainsmart 3.2 tft lcd example price

SainSmart 3.2" TFT LCD Display is a LCD touch screen module. It has 40pins interface and SD card and Flash reader design. It is a powerful and mutilfunctional module for your project.The Screen include a controller SSD1289, it"s a support 8/16bit data interface , easy to drive by many MCU like STM32 ,AVR and 8051. It is designed with a touch controller in it . The touch IC is ADS7843 , and touch interface is included in the 40 pins breakout. It is the version of product only with touch screen and touch controller.

3.2"" TFT LCD module with 40 IO, it is more than a LCD module and colleagues also includes an SD card slot, whether with touch function. (Here we are with touch screen function module)

arduino sainsmart 3.2 tft lcd example price

The answer of course depends on the exact model of the TFT that we have on hand. The below instructions apply to a generic 3.2″ TFT with wide aspect ratio and resolution of 240 x 400 that I got off of Ebay.

For example, pin 2 (the second pin on the flex cable looking at it from the left) corresponds to the DB0 signal which should be connected to the D37 pin on the Arduino MEGA (or Due). Note that the connections are made according to UTFT’s documentation and are applicable specifically to UTFT.

So we have to connect signals D0 through to D15 to the necessary digital pins. Then we also have to connect pins RS, WR, CS and REST to whichever pins we like (we must declare these pins in our sketch, see UTFT documentation). Pin 11 is RD and it must be pulled high, which means connecting it to +3.3V.  Pin 37 is the backlight illumination which means it must also be connected to +3.3V. This leaves pin 1 which must be connected to ground and pin 3 which must be connected to Vcc which in our case is 5V.

Note that I have not really gotten around to using the touchscreen capabilities or the SD reader, so I have not connected them to my Arduinos. It shouldn’t be difficult though.

Now, there is one more thing that I should point out and it is very important. The Arduino MEGA is using 5V logic while the TFT is expecting 3.3V logic. This means that if you connect the D0-D15 and RS, WR, CS, REST lines directly to the MEGA you will most likely damage the TFT. You need to connect a 10K resistor in series with each and every one of the lines. That will bring the voltage down to acceptable levels. Do not forget to do this!

arduino sainsmart 3.2 tft lcd example price

Buying is a Type of Hunting Game. TFT LCD Display For Arduino Buying Guide is an Important Article as No Where There is Any Practical Guide. Practically we will use it as a base either as receiver or the central machinery for some stuffs around Internet of Things. Just for getting started with DIY electronics, we published some articles which possibly will help who are not exactly related to hardware but has more to do with software. Those articles mostly can be found by using the search option on this website, searching with Arduino will help to sort out.

We are avoiding the basic electronic displays like LED display, basic LCD display as we are NOT really related to so basic works of electronics. This website was never for so basic guides. There are hundreds of those basic websites for those guides. Hardware are time consuming to write, most importantly, testing the useless hardware hugely waste our space. It might dishearten our some readers, but basically we need a rapid shift towards our main niche. Ultimately we have to connect with the servers.

We have three options – TFT LCD Display, TFT LCD Touch Display and OLED display. You can check various places, monochrome OLEDs are the choice right now for manufacturing electronic units. OLEDs are hugely power saving but are far better than monochrome LCDs. There is not HUGE options in OLEDs for Arduino. Usage is very lesser in most situations where we will need a display. TFT LCD Touch Display doubles up as an input too. Without a computer, we can do the desired works in the way, suppose we did with the old color mobile phones. Smartphones are mostly a full OS driven, hence can not be compared. Most works which other displays can perform a TFT LCD Touch Display is able to perform.

There are several things to consider. First, it is basically meaningless to buy a bigger display at higher cost. Second, we do not need Mac like beautiful display. Third, connecting the display with various types of Arduino is not exactly very easy. Forth, even the official TFT LCD Touch Display library of Arduino is not fully complete, Adafruit has Open Source contribution. Fifth, there is a firmware of the whole thing, it is kind of “self dependent”. If a cheaper stuff’s library or firm is not compatible, no body’s father reverse engineer it.

We found two company’s name for 2.4″ TFT LCD Touch Displays – one is LuckSender, whose product sold around $4.99 in Ebay, but has a serious detailed pathetic, scary review by an Amazon customer. It probably has problem with compatibility.

Second company we found is named SainSmart. SainSmart is not exactly a small company, it has a modern website (we saw Affiliate link option in footer too – we are never interested to push anyone’s product to our readers), We noticed that, this company’s website has written :

But also we noticed that, SainSmart 3.2″ TFT LCD Display total unit for Arduino sells at Ebay at LESSER price than official website with free shipping. You can probably use the SainSmart’s forum for support. This display stuffs is probably less explored market.

For those who have lesser idea, this total stuff includes a board (shield) and a SD card slot too. $13.00 is not bad pricing for a TFT LCD Touch Display, although (as always) we think, the right price should be $1.30! We are kids, playing, we can not make money out of these, they should “sponsor” us. The market of Arduino is not exactly great right now unlike before, their monopoly is only in boards; Adafruit also not going great. Except display, the market is of China. Do not hurry, watch auctions and it is not improbable to get that brand’s at less than $10.00.