Device Control

Arduino_GigaDisplay

Examples for GIGA Display Shield

Go to repository

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

To use this library:

1#include <Arduino_GigaDisplay.h>

Minimal example:

1#include <Arduino_GigaDisplay.h>
2
3GigaDisplayRGB rgb;
4
5void setup() {
6 rgb.begin();
7}
8
9void loop() {
10 rgb.on(255, 0, 0);
11 delay(100);
12 rgb.off();
13 delay(100);
14}


GigaDisplayRGB