mirror of
https://github.com/kidoman/embd
synced 2024-11-13 21:18:55 +01:00
779096e668
this will allow people to use glog options (like -v=3) to increase verbosity of the log output
33 lines
451 B
Go
33 lines
451 B
Go
// +build ignore
|
|
|
|
package main
|
|
|
|
import (
|
|
"flag"
|
|
"time"
|
|
|
|
"github.com/kidoman/embd"
|
|
)
|
|
|
|
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)
|
|
}
|
|
}
|