change color property to use scaled color_raw values #31
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Solves #18
Tested with: https://www.adafruit.com/product/1356
If I understand the docs in
color_raw
correctly the values should range from (0-65535). At first I tried scaling down from there to 0-255 for this but I was only getting VERY low colors or black.I set up script to print the
color_raw
values and1024
was the maximum value I observed for any color or clear channel. Most easily achieved by putting white paper in front of the sensor very close.After adjusting the scaling to use the
1024
maximum I am seeing a good range of colors when various objects are placed in front of the sensor.In comparison with
color_rgb_bytes
the colors this version returns tend to be similar but a bit brighter.