arduino stuffs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef BUTTONS_H
#define BUTTONS_H

namespace Controller {
// #define MODE_STEERING_WHEEL
#define MODE_GAMEPAD
#define GAMEPAD_USE_TRIGGERS
// #define GAMEPAD_USE_BUTTONS

/// @brief sets up the pins
void begin();

/// @brief reads the pins, and sends it to the computer
void send();
}; // namespace Controller
#endif