pdf-icon

Arduino Quick Start

2. Devices & Examples

6. Applications

Unit C6L Display

APIs and example programs related to the Unit C6L Display.

Example Program

Compilation Requirements

  • M5Stack Board Manager version >= 3.2.3
  • Board option = M5UnitC6L
  • M5Unified library version >= 0.2.10
  • M5GFX library version >= 0.2.15
cpp
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
#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:

API

The Unit C6L Display uses the M5GFX library as its driver. For more related APIs, please refer to the following documentation:

On This Page