1
0
mirror of https://github.com/kidoman/embd synced 2024-06-07 03:27:48 +02:00
embd/samples/gpiodirect.go

35 lines
492 B
Go
Raw Normal View History

2014-03-02 08:06:34 +01:00
// +build ignore
package main
import (
"flag"
"time"
"github.com/cfreeman/embd"
_ "github.com/cfreeman/embd/host/all"
)
func main() {
flag.Parse()
2014-03-02 20:21:23 +01:00
if err := embd.InitGPIO(); err != nil {
panic(err)
}
2014-03-02 20:21:23 +01:00
defer embd.CloseGPIO()
2014-03-02 20:21:23 +01:00
if err := embd.SetDirection(10, embd.Out); err != nil {
panic(err)
}
2014-03-02 20:21:23 +01:00
if err := embd.DigitalWrite(10, embd.High); err != nil {
panic(err)
}
time.Sleep(1 * time.Second)
2014-03-02 20:21:23 +01:00
if err := embd.SetDirection(10, embd.In); err != nil {
panic(err)
}
}