#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 */