
Arduino Quick Start
APIs and example programs related to the Unit C6L Display.
#include <M5Unified.h>
void setup() {
  M5.begin();
  M5.Display.setTextSize(1);
  M5.Display.clear();
}
void loop() {
  M5.Display.setCursor(0, 0);
  M5.Display.print("This is \nUnit C6L");
  delay(1000);
  M5.Display.clear();
  M5.Display.drawRect(0, 0, 64, 48, 0xFFFF);  // x, y, w, h, color
  delay(500);
  M5.Display.drawCircle(10, 10, 8, 0xFFFF);  // x, y, r, color
  delay(500);
  M5.Display.fillArc(26, 32, 8, 12, 100, 330, 0xFFFF);  // x, y, r0, r1, angle0, angle1, color
  delay(500);
  M5.Display.fillRect(24, 7, 15, 7, 0xFFFF);  // x, y, w, h, color
  delay(500);
  M5.Display.fillTriangle(45, 7, 40, 30, 55, 42, 0xFFFF);  // x0, y0, x1, y1, x2, y2, color
  delay(500);
  M5.Display.drawLine(55, 0, 64, 48, 0xFFFF);  // x0, y0, x1, y1, color
  delay(1000);
  M5.Display.clear();
}Execution Result:
 
 The Unit C6L Display uses the M5GFX library as its driver. For more related APIs, please refer to the following documentation: