Interface IDCMotor
Interface describing DC motors.
Assembly: Meadow.Contracts.dll
View Source
public interface IDCMotor
Properties
Speed
The speed of the motor from -1 to 1.
Deprecated, please use Power
.
View Source
[Obsolete]
float Speed { get; set; }
Power
The power applied to the motor, as a percentage between
-1.0
and 1.0
.
View Source
float Power { get; set; }
IsNeutral
When true, the wheels spin "freely"
View Source
bool IsNeutral { get; set; }