You are reading a single comment by @Gordon and its replies. Click here to read the full conversation.
  • No, I'm afraid there is nothing built-in for this. The colour is RGB565 so you can decode it like this though:

    r = (col>>11)&0x1F;
    g = (col>>5)&0x3F;
    b = col&0x1F;
    
About

Avatar for Gordon @Gordon started