Answer the question
In order to leave comments, you need to log in
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
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);
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question