Show minor edits - Show changes to markup
\\
(:source lang=arduino tabwidth=4:) void setup(){
pinMode(2,INPUT); //initiate the Mouse library Mouse.begin();
}
void loop(){
//if the button is pressed, send a Right mouse click
//then end the Mouse emulation
if(digitalRead(2) == HIGH){
Mouse.click();
Mouse.end();
}
}
(:sourceend:)
Stops emulating the mouse connected to a computer. To start control, use Mouse.begin().
Stops emulating the mouse connected to a computer. To start control, use Mouse.begin().
Stops emulating the mouse connected to a computer. To start control, use Mouse.begin().
Mouse.end()
none
nothing
\\