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