VirtualKey()
From Microduino Wiki
VirtualKey()
Description VirtualKey is used to create an instance of the object VirtualKey ti identify the short press and long press of buttons virtualized by variable bool and the name of the object will be used in the code.
Parameters None Sample
#include <Microduino_Key.h>
VirtualKey keyVirtual; //Create a virtual switch named keyVirtual
void setup() {
}
void loop() {
}
Others |