1
0
mirror of https://github.com/kidoman/embd synced 2024-12-22 21:00:05 +01:00
embd/samples/gpiodirect.go

35 lines
490 B
Go
Raw Normal View History

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