robocar-pca9685/actuator/throttle.go

55 lines
1.2 KiB
Go
Raw Normal View History

2019-12-27 17:23:08 +00:00
package actuator
import (
"github.com/cyrilix/robocar-pca9685/util"
2020-01-01 19:54:38 +00:00
log "github.com/sirupsen/logrus"
"periph.io/x/conn/v3/gpio"
"periph.io/x/devices/v3/pca9685"
2019-12-27 17:23:08 +00:00
)
const (
MinThrottle = -1
MaxThrottle = 1
)
type Throttle struct {
channel int
zeroPulse, minPulse, maxPulse int
dev *pca9685.Dev
}
func (t *Throttle) SetPulse(pulse int) {
err := t.dev.SetPwm(t.channel, 0, gpio.Duty(pulse))
if err != nil {
2020-01-01 19:54:38 +00:00
log.Infof("unable to set throttle pwm value: %v", err)
2019-12-27 17:23:08 +00:00
}
}
// Set percent value throttle
2020-01-01 19:54:38 +00:00
func (t *Throttle) SetPercentValue(p float32) {
2019-12-27 17:23:08 +00:00
var pulse int
if p > 0 {
2020-01-01 19:54:38 +00:00
pulse = util.MapRange(float64(p), 0, MaxThrottle, float64(t.zeroPulse), float64(t.maxPulse))
2019-12-27 17:23:08 +00:00
} else {
2020-01-01 19:54:38 +00:00
pulse = util.MapRange(float64(p), MinThrottle, 0, float64(t.minPulse), float64(t.zeroPulse))
2019-12-27 17:23:08 +00:00
}
2020-02-03 18:15:51 +00:00
log.Debugf("set throttle to %v-> %v (%v, %v, %v, %v, %v)", p, pulse, LeftAngle, RightAngle, t.minPulse, t.maxPulse, t.zeroPulse)
2019-12-27 17:23:08 +00:00
t.SetPulse(pulse)
}
func NewThrottle(channel, zeroPulse, minPulse, maxPulse int) *Throttle {
t := Throttle{
channel: channel,
dev: device,
zeroPulse: zeroPulse,
minPulse: minPulse,
maxPulse: maxPulse,
}
2020-02-03 18:15:51 +00:00
log.Infof("send zero pulse to calibrate ESC")
2020-02-03 18:16:07 +00:00
t.SetPercentValue(0)
2019-12-27 17:23:08 +00:00
return &t
}