Revert "device/Raise: Fix the color component order in raise::Hand's cRGB"

This reverts commit 47c1e23fed, because changing
the order in the struct just made things worse. Looks like they _do_ need to be
RGB, but the CRGB macro still puts them in BGR order. This is consistent with
the Raise factory firmware, so lets stick with that.

Signed-off-by: Gergely Nagy <algernon@keyboard.io>
pull/506/head
Gergely Nagy 5 years ago
parent 3534af872b
commit 53993860f0
No known key found for this signature in database
GPG Key ID: AC1E90BAC433F68F

@ -24,9 +24,9 @@
#include "TWI.h"
struct cRGB {
uint8_t b;
uint8_t g;
uint8_t r;
uint8_t g;
uint8_t b;
};
namespace kaleidoscope {

Loading…
Cancel
Save