You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I had to dig around in the .cpp file to figure out that a button is initialized via
"Button button = Button(3, BUTTON_PULLDOWN)"
rather than
"Button button = Button(3, PULLDOWN)"
as the documentation says.
I hate it when this happens, :( now I have to test every function in the library to make sure that it actually works as it should, due to not being able to trust the documentation.
The text was updated successfully, but these errors were encountered:
I had to dig around in the .cpp file to figure out that a button is initialized via
"Button button = Button(3, BUTTON_PULLDOWN)"
rather than
"Button button = Button(3, PULLDOWN)"
as the documentation says.
I hate it when this happens, :( now I have to test every function in the library to make sure that it actually works as it should, due to not being able to trust the documentation.
The text was updated successfully, but these errors were encountered: