// Package servo allows control of servos using a PWM controller. package servo import ( "log" "github.com/kid0m4n/go-rpi/util" ) // A PWM interface implements access to a pwm controller. type PWM interface { SetMicroseconds(channel int, us int) error } type Servo struct { PWM PWM Channel int Minus, Maxus int Debug bool } // New creates a new Servo interface. func New(pwm PWM, channel int, minus, maxus int) *Servo { return &Servo{ PWM: pwm, Channel: channel, Minus: minus, Maxus: maxus, } } // SetAngle sets the servo angle. func (s *Servo) SetAngle(angle int) error { us := util.Map(int64(angle), 0, 180, int64(s.Minus), int64(s.Maxus)) if s.Debug { log.Printf("servo: given angle %v calculated %v us", angle, us) } return s.PWM.SetMicroseconds(s.Channel, int(us)) }