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

Strange color change #8

Open
Tinkerpete opened this issue Jan 31, 2019 · 2 comments
Open

Strange color change #8

Tinkerpete opened this issue Jan 31, 2019 · 2 comments

Comments

@Tinkerpete
Copy link

I have written a small program which displays the values of an acceleration sensor as graphs. If the program runs for a moment, the colors suddenly change and pixels seem to be missing.

I was able to reduce the problem to the following small program. At least it shows the error that the color green suddenly turns red and pixels are missing.

#include <odroid_go.h>

void setup(void) {
GO.begin ();
/*
for (int x = 100; x < 220; x++) {
GO.lcd.drawLine(x, 80, 100, 159, TFT_GREEN);
}
*/
for (int x = 100; x < 220; x++) {
GO.lcd.drawLine(x, 60, 100, 179, TFT_GREEN);
}
}

void loop() {
}

@Tinkerpete
Copy link
Author

The problem occurs only in connection with inserted microSd card!

@leeseungcheol
Copy link
Collaborator

Thank you for the issue. I will test with a microSD card.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants