sumotoy / RA8875

A library for RAiO RA8875 display driver for Teensy3.x or LC/Arduino's/Energia/Spark
GNU General Public License v3.0
79 stars 55 forks source link

Default Color Depth #85

Closed kulikowskidesigns closed 8 years ago

kulikowskidesigns commented 8 years ago

The header in the "begin" class says the default is 16bpp, however based on the logic I think it is perhaps 8?

_color_bpp = 16;
_colorIndex = 0;

if (colors != 16) {
    _color_bpp = 8;
    _colorIndex = 3;
}