Table of Contents

IsegClear()

IsegClear() clears the FND display.

IsegClear command operation flow

bool IsegClear(uint8_t device = 0)

Commands

Command Arguments Return Value Operation
IsegClear(device) uint8_t device = 0 — FND device number 0~6, defaults to 0 bool Clears the FND display.

Example

void setup() {
  IsegBegin(14, 15);       // MPAINO: TXD(D14), RXD(D15)
  IsegBrightness(7);  // Set display brightness and on/off state.
  IsegClear();  // Clear the FND display.
}
 
void loop() {
  IsegDecimal((millis() / 1000UL) % 10000UL, true);  // Display an integer in decimal format.
  delay(200);
}

Precautions

Built-in Commands in the Same Category

← Built-in Command List