Interface IContinuousRotationServo
Continuous rotation servo abstraction
Assembly: ServoCore.dll
View Source
public interface IContinuousRotationServo : IServo
Properties
CurrentDirection
Current direction
View Source
RotationDirection CurrentDirection { get; }
CurrentSpeed
Current servo speed
View Source
float CurrentSpeed { get; }
Methods
Rotate(RotationDirection, float)
Rotate to a direction
View Source
void Rotate(RotationDirection direction, float speed)
Parameters
Type | Name | Description |
---|---|---|
Meadow.Foundation.Servos.RotationDirection | direction | The direction |
System.Single | speed | The rotation speed |
Stop()
Stop movement
View Source
void Stop()