You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#include<M5GFX.h>
M5GFX gfx;
voidsetup() {
gfx.begin();
int x = 32;
int y = 32;
int w = 128;
int h = 128;
int r = 20;
uint32_t color = 0xFFEE33;
gfx.fillRoundRect(x, y, w, h, r, color);
}
voidloop() {}
how can I use fillRoundRect (x,x,x,x,x) (like in tft_espi, in M5GFX ?
if I write, no error on compile, but also no result in display drawing
The text was updated successfully, but these errors were encountered: