Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SimpleBacklight.ino example does not change backlight intensity #30

Open
aliphys opened this issue Jun 3, 2024 · 2 comments · May be fixed by #32
Open

SimpleBacklight.ino example does not change backlight intensity #30

aliphys opened this issue Jun 3, 2024 · 2 comments · May be fixed by #32
Labels
topic: documentation Related to documentation for the project type: imperfection Perceived defect in any part of project

Comments

@aliphys
Copy link
Contributor

aliphys commented Jun 3, 2024

The SimpleBacklight.ino example does not change the intensity of the screen. Other examples in the basic folder run, suggesting that this is not a specific hardware issue. Tested on two different shields and GIGA R1 WiFi boards

@per1234 per1234 added type: imperfection Perceived defect in any part of project topic: documentation Related to documentation for the project labels Jun 5, 2024
@aliphys
Copy link
Contributor Author

aliphys commented Jun 7, 2024

Since the LCD screen of the GIGA Display Shield is such high quality, the bleeding is very faint. This makes it seem as if the backlight intensity does not changes. Furthermore, the example increments the backlight by 1% every 100 milliseconds, which makes it difficult to see the changes with a naked eye.

int i = 0;
void loop() {
backlight.set(i++ % 100);
delay(100);
}

Given that Users have also reported this issue (e.g. https://arduino.zendesk.com/agent/tickets/294569) we should modify the example so that the change in backlight is visible. This can be done by having the backlight Blink between on and off. Custom values can be left as an exercise to the User.

@aliphys
Copy link
Contributor Author

aliphys commented Jun 7, 2024

Notice that in all set backlight values, the backlight visually looks very similar although the current draw is drastically different.

Backlight (%) Current (mA) Picture
0% 110mA image
50% 142mA image
100% 274mA image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
topic: documentation Related to documentation for the project type: imperfection Perceived defect in any part of project
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants