1
0
mirror of https://github.com/kidoman/embd synced 2025-01-05 11:31:42 +01:00
embd/samples/keypad/matrix4x3.go

37 lines
557 B
Go
Raw Normal View History

2013-12-31 07:56:34 +05:30
package main
import (
"fmt"
"time"
2014-03-02 12:09:57 +05:30
"github.com/kidoman/embd/gpio"
2014-02-10 05:05:41 +05:30
"github.com/kidoman/embd/interface/keypad/matrix4x3"
2013-12-31 07:56:34 +05:30
)
func main() {
rowPins := []int{4, 17, 27, 22}
colPins := []int{23, 24, 25}
2014-03-02 12:09:57 +05:30
if err := gpio.Open(); err != nil {
panic(err)
}
defer gpio.Close()
2014-03-02 12:09:57 +05:30
keypad, err := matrix4x3.New(rowPins, colPins)
if err != nil {
panic(err)
}
2013-12-31 07:56:34 +05:30
for {
2014-03-02 12:09:57 +05:30
key, err := keypad.PressedKey()
if err != nil {
panic(err)
}
if key != matrix4x3.KNone {
2013-12-31 07:56:34 +05:30
fmt.Printf("Key Pressed = %v\n", key)
}
time.Sleep(500 * time.Millisecond)
}
}