c45cff5f83
* Add support and example for USB HID Devices * Add support and example for USB Vendor
22 lines
465 B
C++
22 lines
465 B
C++
#include "USB.h"
|
|
#include "USBHIDGamepad.h"
|
|
USBHIDGamepad Gamepad;
|
|
|
|
const int buttonPin = 0;
|
|
int previousButtonState = HIGH;
|
|
|
|
void setup() {
|
|
pinMode(buttonPin, INPUT_PULLUP);
|
|
Gamepad.begin();
|
|
USB.begin();
|
|
}
|
|
|
|
void loop() {
|
|
int buttonState = digitalRead(buttonPin);
|
|
if ((buttonState != previousButtonState) && (buttonState == LOW)) {
|
|
Gamepad.pressButton(BUTTON_START);
|
|
Gamepad.releaseButton(BUTTON_START);
|
|
}
|
|
previousButtonState = buttonState;
|
|
}
|