1
0
mirror of https://github.com/kidoman/embd synced 2024-05-29 07:08:04 +02:00
embd/samples/pwm.go

34 lines
442 B
Go
Raw Normal View History

2014-03-28 03:54:42 +01:00
// +build ignore
// PWM example, works OOTB on a BBB.
package main
import (
"flag"
2014-03-28 03:54:42 +01:00
"time"
"github.com/kidoman/embd"
)
func main() {
flag.Parse()
2014-03-28 03:54:42 +01:00
if err := embd.InitGPIO(); err != nil {
panic(err)
}
defer embd.CloseGPIO()
pwm, err := embd.NewPWMPin("P9_14")
if err != nil {
panic(err)
}
defer pwm.Close()
if err := pwm.SetDuty(embd.BBBPWMDefaultPeriod / 2); err != nil {
panic(err)
}
time.Sleep(1 * time.Second)
}