Skip to content

Does not display row 1 on R4 Wifi Matrix #38

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

Closed
npuckett opened this issue Feb 15, 2024 · 5 comments
Closed

Does not display row 1 on R4 Wifi Matrix #38

npuckett opened this issue Feb 15, 2024 · 5 comments
Labels
conclusion: off topic Off topic for this repository conclusion: resolved Issue was resolved topic: code Related to content of the project itself type: imperfection Perceived defect in any part of project

Comments

@npuckett
Copy link

There is an issue using the library with the new led matrix built in to the Uno R4 Wifi. For some reason when using any of the drawing primitives, it doesn't display the top row. It returns the correct screen width and height, but the top row doesn't show.

@aentinger
Copy link
Contributor

This has been fixed over here arduino/ArduinoCore-renesas#260 😉

@npuckett
Copy link
Author

npuckett commented Feb 15, 2024

Not sure that is correct. I saw the library update and hoped that was what is was about. However, I get the same behavior unless I'm missing something. For instance the following code displays nothing on the screen, but if I change it to
ledScreen.point(0,1);, I see it. Same with all other primitives. Unless I'm missing something else in that thread. Thanks!

#include <ArduinoGraphics.h>
#include <Arduino_LED_Matrix.h>

ArduinoLEDMatrix ledScreen;

void setup() 
{
  ledScreen.begin();

  ledScreen.beginDraw();
  ledScreen.stroke(0xFFFFFFFF);
  ledScreen.point(0,0);
  ledScreen.endDraw();
}

void loop() {}

@npuckett
Copy link
Author

Just looked through that thread again and can't find an answer. Is it because the primitives are treated differently than text?

@aentinger
Copy link
Contributor

You've misunderstood - you need to update ArduinoCore-renesas, the issue was located within there (see https://github.com/arduino/ArduinoCore-renesas/pull/260/files - it should be crystal clear).

@npuckett
Copy link
Author

Ah - thanks for following up. Was having one of those weeks, sorry to bring you into it, but I appreciate you taking the time. Great library

@per1234 per1234 added type: imperfection Perceived defect in any part of project conclusion: resolved Issue was resolved conclusion: off topic Off topic for this repository topic: code Related to content of the project itself labels Feb 19, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
conclusion: off topic Off topic for this repository conclusion: resolved Issue was resolved topic: code Related to content of the project itself type: imperfection Perceived defect in any part of project
Projects
None yet
Development

No branches or pull requests

3 participants