FAQ

I have placed the shield (LCD screen) onto the Arduino DUE.I downloaded the correct Libraries and got the Sketch from the WIKI page.Nothing is happening to the LCD (looks like no p...

userHead JaneYu 2017-06-02 01:56:13 10 Views7 Replies

I have placed the shield (LCD screen) onto the Arduino DUE.
I downloaded the correct Libraries and got the Sketch from the WIKI page.
Nothing is happening to the LCD (looks like no power) ... please help
I also connected the Arduino DUE to a power supply of 10V and 1 AMP ... but the screen still doesn't light up.

2020-04-25 06:04:19

The "lcd.println();" doesn't work as intended in my code. Each line is printed on top of each other.
Could it have something to do with these warnings that appear when I compile the code:

warning: '__progmem__' attribute ignored [-Wattributes]

virtual void draw(const PROGMEM byte* buffer, uint16_t width, uint16_t height) {}

Thanks!

userHeadPic JaneYu
2019-01-12 05:37:00

the display is not functioning , I charge the examples of software on the wiki and with the command println only appears the first character of the string of characters.
I am using DFRobot_TELEMATICS_3.5-_TFT_Touch_LCD_Shield- with the Arduino Mega 2560

My code is as follows:

#include <arduino.h>
#include <spi.h>
#include <multilcd.h>

LCD_R61581 lcd;

void setup(){
lcd.begin();
lcd.setFontSize(FONT_SIZE_MEDIUM); //set font size
lcd.setColor(RGB16_YELLOW); //set strings color
lcd.setCursor(0, 0);
lcd.print("SAMPLE");
}

void loop(){

}

userHeadPic JaneYu
2018-07-20 15:54:26

You need to change the PWM on D8, not just the voltage.

userHeadPic JaneYu
2018-01-16 03:40:01

I need to run this display by I2C. I am looking for the libraries.

userHeadPic JaneYu
JaneYu wrote:

There is an I2C library in the related library file https://github.com/Arduinol...

2018-01-16 16:00:28
1 Replies
2017-06-05 12:18:44

Did you switch the power switch to 3.3V? The working voltage of DUE is 3.3V

userHeadPic JaneYu
JaneYu wrote:

Thank s for the response.
So the power going to the screen must be 3.3v? Also the switch on the screen must be set to 3.3v?

2017-06-05 12:46:45
1 Replies