RGB, lux and color temperature #133
Description
I will be using sensor TCS34725 and from it's python library I can see it provides the user with:
- RGB color data (0-255 values);
- color temperature (in K);
- illuminance (in lux).
The sensor only reads RGBC data, the last two are calculated values, so nothing I can't do on my own from a published RGB-type message. However, I have found that the only really officially supported message regarding color sensor data is the illuminance message, as there is an RGBA color message but it seems to be more geared towards a different kind of usage (because of the alpha).
I have previously worked a bit with colors and know about the multitude of standards that exist, so that might be a reason why this hasn't been implemented yet. Regardless, if we stay within the robotics applications, an RGB/sRGB definition could be enough, and would set a standard way to talk about RGB/sRGB colors.
Is this worth talking about as a standard or should I use my own message for my own use case?