Skip to content

Instantly share code, notes, and snippets.

@ncot-tech
Created March 25, 2021 22:46
Show Gist options
  • Save ncot-tech/35c2263a7978edb48d03e7b640ab58b0 to your computer and use it in GitHub Desktop.
Save ncot-tech/35c2263a7978edb48d03e7b640ab58b0 to your computer and use it in GitHub Desktop.
8 bit per pixel RGB C Macro
//R3G3B2
#define RGB2COLOUR(r,g,b) \
(unsigned char)( \
( \
(r & 0x7) << 5 \
) | \
( \
(g & 0x7) << 2 \
) | \
(b & 0x3) \
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment