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

Display Text Wrap not works #129

Open
pptsk opened this issue Dec 24, 2020 · 0 comments
Open

Display Text Wrap not works #129

pptsk opened this issue Dec 24, 2020 · 0 comments

Comments

@pptsk
Copy link

pptsk commented Dec 24, 2020

Hi,
I want to disable text wrap function but M5.display.setTextWrap( false ) does not works and large text is wrapped over display.
What I am doing wrong?
Thank You
Here is example

#include <M5StickC.h>

void setup() {
  M5.begin();
  M5.Lcd.setRotation(3);
  M5.Lcd.setTextWrap(false);
  M5.Lcd.fillScreen(BLACK);
  M5.Lcd.setCursor(0, 0);
  M5.Lcd.setTextColor(WHITE);
  M5.Lcd.setTextSize( 2 );
  M5.Lcd.print("Display test, text wrap not works...");
}

void loop(){
}
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

1 participant