mirror of
https://github.com/kidoman/embd
synced 2024-12-22 21:00:05 +01:00
28 lines
436 B
Go
28 lines
436 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"time"
|
|
|
|
"github.com/kid0m4n/go-rpi/interface/keypad/matrix4x3"
|
|
"github.com/stianeikeland/go-rpio"
|
|
)
|
|
|
|
func main() {
|
|
rowPins := []int{4, 17, 27, 22}
|
|
colPins := []int{23, 24, 25}
|
|
|
|
rpio.Open()
|
|
defer rpio.Close()
|
|
|
|
keypad := matrix4x3.New(rowPins, colPins)
|
|
|
|
for {
|
|
if key, err := keypad.PressedKey(); err == nil {
|
|
fmt.Printf("Key Pressed = %v\n", key)
|
|
}
|
|
|
|
time.Sleep(500 * time.Millisecond)
|
|
}
|
|
}
|