RossAWaddell
RossAWaddell
I was not using double clicks in my code so I disabled it in my setup(), but then when I went to add the ClickEncoder::Clicked case it wasn't being captured....
First of all, thank you so much for this library! A fellow hobbyest pointed me to this code and with it I've been able to create the exact look I've...
I need to connect the -ve pin of LEDs to the Arduino as I'm using a ULN2803A transistor to power 10 5mm LEDs. As this is the opposite of the...
I've tried connecting the button input to a few different pins but both DoubleClick and LongPressStart only work intermittently, if at all (Click seems OK, though). I've got one pin...
I'd like to invoke other code to happen when the first sequence is complete - is that possible? ``` JLed leds[] = { JLed(AMBER_LED_PIN).FadeOn(AMBER_LED_FADE_UP_TIME).MaxBrightness(MAX_BRIGHT_AMBER_LEDS).DelayBefore(AMBER_LED_WAIT_START_TIME).DelayAfter(250), JLed(AMBER_LED_PIN).Fade(MAX_BRIGHT_AMBER_LEDS, MIN_BRIGHT_AMBER_LEDS, PULSE_TIME/2), JLed(AMBER_LED_PIN).Breathe(PULSE_TIME).MaxBrightness(MAX_BRIGHT_AMBER_LEDS) .MinBrightness(MIN_BRIGHT_AMBER_LEDS).DelayAfter(250).Forever() };...