Hey guys, a quick power management question for you:  In what cases should one

Hey guys, a quick power management question for you:
In what cases should one use delay_at_max_brightness_for_power(delay) if I’m already using show_at_max_brightness_for_power()?

I looked at the source and they look almost identical, so I’m not sure I need to call both like:
void loop() {
[…]
delay_at_max_brightness_for_power(delay);
show_at_max_brightness_for_power();
}

Thank you so much for your help!

Calling show will guarantee that the LEDs are updated at least once.

Calling delay will possibly do additional updates if there’s time, to affect higher quality dithering.

That help at all?

Yep- you are correct. Delay may (and often does!) call show().

Brilliant. Thanks for walking me through this Mark!

Can’t wait to see what you make with it!

Coming along nicely… Mostly inspired by your code and outstanding library.
sneak peek: https://instagram.com/p/16XSRDHMJk/?taken-by=raphaelouzan
code: https://github.com/raphaelouzan/PowerLEDSuit/

Next steps: improving the audio analysis with FHT or similar to separate high from lows and hopefully find BPM to sync the animations to!