mirror of
https://github.com/kidoman/embd
synced 2024-10-31 23:38:44 +01:00
30 lines
428 B
Go
30 lines
428 B
Go
// +build ignore
|
|
|
|
package main
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/kidoman/embd"
|
|
)
|
|
|
|
func main() {
|
|
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)
|
|
}
|
|
}
|