I'm trying to get a dotstar strip working and I'd like to use HSV because it will make shifting the hue to nearby colors and also the brightness easier than RGB. I'm having trouble though with the picking of the correct hue numbers for colors. I'm looking at the image under HSV here
https://learn.adafruit.com/adafruit-dotstar-leds/arduino-library-use and trying to put in the numbers that it would expect.
10922 gave me a yellow. 21845 did not give me green, and a number around 34000 did not give me a blue/teal color. I can't figure out what numbers I should use to get the correct colors.
This my color assignment line:
uint32_t colorWave = strip.ColorHSV(21845, 255, 255);
Anybody figured this out?