-
Notifications
You must be signed in to change notification settings - Fork 224
Open
Description
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(){
}
Metadata
Metadata
Assignees
Labels
No labels