1
0
mirror of https://github.com/kidoman/embd synced 2024-06-04 10:07:49 +02:00
embd/samples/gpiodirect.go
2014-03-03 00:51:23 +05:30

30 lines
428 B
Go

// +build ignore
package main
import (
"time"
"github.com/kidoman/embd"
)
func main() {
if err := embd.InitGPIO(); err != nil {
panic(err)
}
defer embd.CloseGPIO()
if err := embd.SetDirection(10, embd.Out); err != nil {
panic(err)
}
if err := embd.DigitalWrite(10, embd.High); err != nil {
panic(err)
}
time.Sleep(1 * time.Second)
if err := embd.SetDirection(10, embd.In); err != nil {
panic(err)
}
}