Added skeleton for GetKeyNumsFromOutput

This commit is contained in:
2016-03-25 19:08:21 +03:00
parent 035d17e795
commit 764af9545e

View File

@@ -14,6 +14,12 @@ const (
KEYBOARD_BUFER_SIZE = 10000
)
// Extract pressed keys from bufer buf
// It retruns slice with key numbers in the same order
func GetKeyNumsFromOutput(buf []byte) []uint8 {
return make([]uint8, 0)
}
func main() {
keyboard_id := 14