Arduino_GigaDisplay

Device Control

Examples for GIGA Display Shield

Go to repository

Compatibility

This library is compatible with the mbed_giga architecture so you should be able to use it on the following Arduino boards:

Compatibility Note

Note: while the library is supposed to compile correctly on these architectures, it might require specific hardware features that may be available only on some boards.

Releases

To use this library, open the Library Manager in the Arduino IDE and install it from there.

Usage

Minimal library for controlling the built-in RGB on the GIGA Display Shield via the IS31FL3197 driver (I2C).

To use this library:

#include <Arduino_GigaDisplay.h>

Minimal example:

#include <Arduino_GigaDisplay.h>

GigaDisplayRGB rgb;

void setup() {
  rgb.begin();
}

void loop() {
  rgb.on(255, 0, 0);
  delay(100);
  rgb.off();
  delay(100);
}

Classes

Methods