You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
265 B
17 lines
265 B
#ifndef _KEYBOARD_H
|
|
#define _KEYBOARD_H
|
|
|
|
#include "Arduino.h"
|
|
|
|
static bool touchDetected[10];
|
|
static uint8_t threshold[10];
|
|
|
|
class Keyboard {
|
|
public:
|
|
Keyboard();
|
|
void init();
|
|
bool getTouchDetected(uint8_t pad);
|
|
private:
|
|
};
|
|
|
|
#endif /* _KEYBOARD_H */
|
|
|