绘制一个像素点

支持芯片: SHMICTRL系列芯片 ESP32-S3系列

void ps(int x,int y,int color);
//(x,y):需要绘制像素的坐标
//color:像素点的颜色号0~63

示例

ps(100,100,2);

注意