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
The DoubleClick example, the setup() function is missing a call to the Button::setdoubleclickThreshold(time) member. Therefore double clicks are never detected.
void setup(){
Serial.begin(9600);
Serial.println("Started");
pinMode(ledPin,OUTPUT); //LED on pin 12
Button1.setdoubleclickThreshold(500) ; //---- missing this
}
The text was updated successfully, but these errors were encountered:
The DoubleClick example, the setup() function is missing a call to the Button::setdoubleclickThreshold(time) member. Therefore double clicks are never detected.
void setup(){
Serial.begin(9600);
Serial.println("Started");
pinMode(ledPin,OUTPUT); //LED on pin 12
Button1.setdoubleclickThreshold(500) ; //---- missing this
}
The text was updated successfully, but these errors were encountered: