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

The order of components should be bgr, not rgb.

Signed-off-by: Gergely Nagy <algernon@keyboard.io>
pull/781/head
Gergely Nagy 5 years ago
parent eaca2f19fe
commit 47c1e23fed
No known key found for this signature in database
GPG Key ID: AC1E90BAC433F68F

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

Loading…
Cancel
Save