Internet button: read LED color possible?

Team,

With the internet button I can turn LED's on/off or change their color.
Some relevant code:

#include "InternetButton/InternetButton.h"
InternetButton b = InternetButton();
b.begin();
b.ledOn(1, 0, 255, 0);

Question: can I read the status of an LED, where it returns the current color?

No you can’t.

But since your code has set the colors in the first place you can try to remember :wink:

1 Like

Thank you!