summaryrefslogtreecommitdiff
path: root/servo/servo_highlevel.go
blob: 66ec261194de6a56366a439a7b0af2395b11ac75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
package servo

// High-level interface. (Most of this should be removed, or moved to a separate
// type which embeds or interacts with the servo type.)

func (s *Servo) posToAngle(p int) float64 {
	return (positionToAngle * float64(p))
}

func (s *Servo) angleToPos(angle float64) int {
	return int((angle) * angleToPosition)
}

/*
// Returns the current position of the servo, relative to the zero angle.
func (s *Servo) Angle() (float64, error) {
	p, err := s.Position()

	if err != nil {
		return 0, err
	}

	return s.posToAngle(p), nil
}

// MoveTo sets the goal position of the servo by angle (in degrees), where zero
// is the midpoint, 150 deg is max left (clockwise), and -150 deg is max right
// (counter-clockwise). This is generally preferable to calling SetGoalPosition,
// which uses the internal uint16 representation.
func (s *Servo) MoveTo(angle float64) error {
	p := s.angleToPos(normalizeAngle(angle))
	return s.SetGoalPosition(p)
}

// Voltage returns the current voltage supplied. Unlike the underlying register,
// this is the actual voltage, not multiplied by ten.
func (s *Servo) Voltage() (float64, error) {
	val, err := s.PresentVoltage()
	if err != nil {
		return 0.0, err
	}

	// Convert the return value into actual volts.
	return (float64(val) / 10), nil
}
*/
//
func normalizeAngle(d float64) float64 {
	if d > 180 {
		return normalizeAngle(d - 360)

	} else if d < -180 {
		return normalizeAngle(d + 360)

	} else {
		return d
	}
}