It works if add
#include<M5Stack.h>
void setup(){
M5.begin();
M5.Lcd.fillScreen(BLUE)
M5.Lcd.invertDisplay(true)
}
void loop(){
}
It works if add
#include<M5Stack.h>
void setup(){
M5.begin();
M5.Lcd.fillScreen(BLUE)
M5.Lcd.invertDisplay(true)
}
void loop(){
}
The code is simple
#include <M5Stack.h>
void setup() {
M5.begin();
// Lcd should display blue
M5.Lcd.fillScreen(BLUE);
}
void loop(){
}
In this case the screen is something between yellow and green.
Hi everybody. Please advise. I got two cores basic ones. I use Arduino IDE. If I load following code M5.Lcd.fillScreen(WHITE) I get black screen. I have similar issues with all of the other colors. I have this problem on both devices. There were no such issue on old core. Could someone suggest what to do in such case. Thanks.
in addition I tested different hex codes of colors. Again 0x000000 gives me white screen and 0xeeeeee gives black. Is it possible to fix?