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

30 lines
428 B
Go
Raw Normal View History

2014-03-02 12:36:34 +05:30
// +build ignore
package main
import (
"time"
2014-03-03 00:51:23 +05:30
"github.com/kidoman/embd"
)
func main() {
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)
}
}