adafruit / RGB-matrix-Panel

Arduino library and example code for the 16x32 RGB matrix panels in the shop
http://www.adafruit.com/products/420
303 stars 145 forks source link

Define gamma independent color conversions static #25

Open SaschaZorn opened 8 years ago

SaschaZorn commented 8 years ago

Define gamma independent color conversions static and make use of C++11 constexpr to support constructs like: class Colors { static const uint16_t RED = RGBmatrixPanel::Color333(7,0,0); static const uint16_t GREEN = RGBmatrixPanel::Color333(0,6,0); static const uint16_t WHITE = RGBmatrixPanel::Color333(7, 7, 7); }