How do I access LEDS.countFPS()? It used to be a serial output...

How do I access LEDS.countFPS()? It used to be a serial output…

Changed has it?

LEDS.getFPS() returns the number.

(We removed the dependence on Serial.)

oops, I was looking specifically in the cpp for it, shoulda checked the h :slight_smile:

For those following along:

LEDS.countFPS();
Serial.println(LEDS.getFPS());

Would that not be:

Serial.println(LEDS.getFPS());

Edit: I see he fixed it. :smiley: