Hi all,
I want to know what it means as "32-bit merged color value" when i use getPixelColor() from NeoPixel library. Can i change it, increment or decrement it? What kind of a data type is this?
Thanks.
What is 32-bit merged color value in Neopixel Library?
Re: What is 32-bit merged color value in Neopixel Library?
Re: What is 32-bit merged color value in Neopixel Library?
(red * 65536) + (green * 256) + blue
(red << 16) + (green << 8) + blue
Re: What is 32-bit merged color value in Neopixel Library?
Re: What is 32-bit merged color value in Neopixel Library?