Bladeren bron

Add include guard to vibration.h

old_master
Kai Ryu 9 jaren geleden
bovenliggende
commit
a271d560b1
1 gewijzigde bestanden met toevoegingen van 5 en 0 verwijderingen
  1. 5
    0
      keyboard/tentapad/vibration.h

+ 5
- 0
keyboard/tentapad/vibration.h Bestand weergeven

along with this program. If not, see <http://www.gnu.org/licenses/>. along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */


#ifndef VIBRATION_H
#define VIBRATION_H

#include <stdint.h> #include <stdint.h>


void vibration_init(void); void vibration_init(void);
void vibration_enable(void); void vibration_enable(void);
void vibration_disable(void); void vibration_disable(void);
void vibration(uint16_t duration); void vibration(uint16_t duration);

#endif