ardupilot/Configurator/Configurator.Net/PresentationModels/MotorCommandsVm.cs
mandrolic 3f9a077dbd Configurator.Net: Initial import
git-svn-id: https://arducopter.googlecode.com/svn/trunk@1153 f9c3cf11-9bcb-44bc-f272-b75c42450872
2010-12-18 22:23:09 +00:00

44 lines
898 B
C#

namespace ArducopterConfigurator.PresentationModels
{
public class MotorCommandsVm : MonitorVm
{
public MotorCommandsVm(CommsSession _sp)
: base(_sp)
{
}
public override string Name
{
get { return "Motor Commands"; }
}
public int MotorFront { get; set; }
public int MotorRear { get; set; }
public int MotorLeft { get; set; }
public int MotorRight { get; set; }
public void SendCommand()
{
}
public void StopCommand()
{
}
protected override void OnDeactivated()
{
}
protected override void OnActivated()
{
}
protected override void OnStringReceived(string strReceived)
{
}
}
}