Skip to content

Instantly share code, notes, and snippets.

@colesnicov
Created October 10, 2017 14:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save colesnicov/3d9ac74fed7c86186e45c55bbaf4171d to your computer and use it in GitHub Desktop.
Save colesnicov/3d9ac74fed7c86186e45c55bbaf4171d to your computer and use it in GitHub Desktop.
Convert grb color to adafruit_gfx
short ConvertRGB(byte R, byte G, byte B) {
return (((R & 0xF8) << 8) | ((G & 0xFC) << 3) | (B >> 3));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment