hybridgroup.gobot/platforms/keyboard
Benjamin Radovsky 04275a0992 fixed undefined method errors 2016-10-17 17:59:23 +11:00
..
LICENSE misc: update all LICENSE files for current year 2016-08-27 13:12:47 +02:00
README.md core: refactor/rename internal name of Master type 2016-10-15 20:02:54 +02:00
doc.go fixed undefined method errors 2016-10-17 17:59:23 +11:00
keyboard.go Re-enable echo when restoring 2015-07-09 13:52:08 -07:00
keyboard_driver.go core: Ensure that all drivers have default names 2016-10-03 19:06:37 +02:00
keyboard_driver_test.go core: Refactor Keyboard platform for new Driver creation signatures 2016-09-25 21:27:37 +02:00
keyboard_test.go tests: complete move of test interfaces into the test files where they belong 2016-08-27 11:56:01 +02:00

README.md

Keyboard

This module implements support for keyboard events, wrapping the stty utility.

How to Install

go get github.com/hybridgroup/gobot && go install github.com/hybridgroup/gobot/platforms/keyboard

How to Use

Example parsing key events

package main

import (
	"fmt"

	"github.com/hybridgroup/gobot"
	"github.com/hybridgroup/gobot/platforms/keyboard"
)

func main() {
	gbot := gobot.NewMaster()

	keys := keyboard.NewDriver("keyboard")

	work := func() {
		gobot.On(keys.Event("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,
	)

	gbot.AddRobot(robot)

	gbot.Start()
}