-
Notifications
You must be signed in to change notification settings - Fork 212
Select a Config
GUIslice supports a very large number of displays, drivers and touch interfaces. After installing GUIslice, the user must specify which combination of drivers is desired -- this is done through the GUIslice_config.h
file.
Unlike many Arduino libraries that compile out-of-the-box, it is not possible to provide a default that works on every display and driver, so an error will be reported during compilation if no config has been specified.
#error No config selected in GUIslice_config.h. Please uncomment/select a config.
#error For details: https://github.com/ImpulseAdventure/GUIslice/wiki/Select-a-Config
#error No driver specified (DRV_DISP_*). Ensure a config is selected in GUIslice_config.h
SOLUTION: Please uncomment a suitable configuration line in /src/GUIslice_config.h
.
NOTE to Arduino IDE users: Unfortunately the IDE doesn't enable users to specify a configuration from within the user sketch. As a result, edits to the above file within the Arduino libraries folder is required.
For details, please refer to Configuring GUIslice