1
0
mirror of https://github.com/kidoman/embd synced 2024-05-29 07:08:04 +02:00
embd/samples/gpiodirect.go
Karan Misra c35deeb17c host specific drivers can now be loaded separately
this ensures cleaner abstractions/code and will ensure that the produced
binary is as small as possible. a convenience package is provided to
easily load all hosts easily: "github.com/kidoman/embd/host/all"
2014-04-06 06:50:09 +05:30

35 lines
490 B
Go

// +build ignore
package main
import (
"flag"
"time"
"github.com/kidoman/embd"
_ "github.com/kidoman/embd/host/all"
)
func main() {
flag.Parse()
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)
}
}