arduino-libraries / Arduino_GigaDisplay

Library for controlling the RGB on the GIGA Display Shield. It contains, also, a set of examples to use the display.
9 stars 3 forks source link

Library includes in the RGB examples are wrong #8

Closed Antrilas closed 1 year ago

Antrilas commented 1 year ago

The two examples in "Examples->Arduino_GigaDisplay->Blink->*" have the following includes:

#include <Arduino_GigaDisplayRGB.h>

Compiling leads to: Compilation error: Arduino_GigaDisplayRGB.h: No such file or directory

To fix this change the include to:

#include <Arduino_GigaDisplay.h>

karlsoderby commented 1 year ago

Hi @Antrilas , thanks for highlighting this issue. It has been addressed in this PR: https://github.com/arduino-libraries/Arduino_GigaDisplay/pull/10