2014-06-13 21:01:19 +01:00
|
|
|
/**
|
2016-09-22 19:30:56 +01:00
|
|
|
* Copyright (c) 2016 rxi
|
2014-06-13 21:01:19 +01:00
|
|
|
*
|
|
|
|
|
* This library is free software; you can redistribute it and/or modify it
|
|
|
|
|
* under the terms of the MIT license. See LICENSE for details.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef KEYBOARD_H
|
|
|
|
|
#define KEYBOARD_H
|
|
|
|
|
|
|
|
|
|
int keyboard_init(void);
|
|
|
|
|
void keyboard_deinit(void);
|
|
|
|
|
|
|
|
|
|
#endif
|