-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathdoc.go
50 lines (37 loc) · 1005 Bytes
/
doc.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/*
Package keyboard contains the Gobot drivers for keyboard support.
Installing:
Then you can install the package with:
Please refer to the main [README.md](https://github.com/hybridgroup/gobot/blob/release/README.md)
Example:
package main
import (
"fmt"
"gobot.io/x/gobot/v2"
"gobot.io/x/gobot/v2/platforms/keyboard"
)
func main() {
keys := keyboard.NewDriver()
work := func() {
_ = keys.On(keyboard.Key, func(data interface{}) {
key := data.(keyboard.KeyEvent)
if key.Key == keyboard.A {
fmt.Println("A pressed!")
} else {
fmt.Println("keyboard event!", key, key.Char)
}
})
}
robot := gobot.NewRobot("keyboardbot",
[]gobot.Connection{},
[]gobot.Device{keys},
work,
)
if err := robot.Start(); err != nil {
panic(err)
}
}
For further information refer to keyboard README:
https://github.com/hybridgroup/gobot/blob/release/platforms/keyboard/README.md
*/
package keyboard // import "gobot.io/x/gobot/v2/platforms/keyboard"