I'm new to arduino.
I want to indicate the pressure in a tube by the colors on a ledring.
But I don't know how to say that multiple leds need to be green by example.
Can someone help?
Right now I've got this:
pixels.clear();
pixels.setBrightness(5);
if(pressure_hPa<1020){
pixels.setPixelColor(0, pixels.Color(0, 255, 0));
pixels.show();
pixels.clear();
}