R
R
Razario7772013-10-04 14:55:35
Arduino
Razario777, 2013-10-04 14:55:35

How to Connect Display to Arduino

Gentlemen, tell me how to connect this miracle to Arduino, do I need a display board (or some other similar device), if so, which one, this is my first display, so I ask for advice. The ebay seller doesn't know anything.
Link to device
Link to documentation (about 10 Mb)

Answer the question

In order to leave comments, you need to log in

2 answer(s)
U
Urvin, 2013-10-04
@Urvin

Nothing extra is needed, but look at the voltage
. Here, in your example you have the following code:

void setCS(byte value)
{
    digitalWrite(2, value ? HIGH : LOW);
}

void setSCL(byte value)
{
    digitalWrite(3, value ? HIGH : LOW);
}

void setSDA(byte value)
{
    digitalWrite(4, value ? HIGH : LOW);
}

void setRS(byte value)
{
    digitalWrite(5, value ? HIGH : LOW);
}

void setRESET(byte value)
{
    digitalWrite(6, value ? HIGH : LOW);
}

    pinMode(2, OUTPUT);
    pinMode(3, OUTPUT);
    pinMode(4, OUTPUT);
    pinMode(5, OUTPUT);
    pinMode(6, OUTPUT);

In the corresponding outputs of the controller, connect the display
. Examples, search for the keyword ILI9225B - this is the name of the screen controller.

A
Atxmega, 2013-10-05
@Atxmega

vrtp.ru - Displays from cellphones, How to attach them to your project
And here

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question