finished conversion table

This commit is contained in:
htmk 2019-02-12 21:42:24 -02:00
parent a466e0bad6
commit 133a4afc02

View File

@ -68,6 +68,14 @@ type Event struct {
Direction uint8 `json:"direction"`
}
func RawcodetoKeychar(r uint16) string {
return raw2key[r]
}
func KeychartoRawcode(kc string) uint16 {
return keytoraw[kc]
}
var (
ev = make(chan Event, 1024)
asyncon = false