mirror of https://github.com/ArduPilot/ardupilot
55 lines
1.7 KiB
C#
55 lines
1.7 KiB
C#
namespace ArducopterConfigurator.PresentationModels
|
|
{
|
|
public class StableModeConfigVm : ConfigWithPidsBase
|
|
{
|
|
public StableModeConfigVm(IComms sp)
|
|
: base(sp)
|
|
{
|
|
PropsInUpdateOrder = new[]
|
|
{
|
|
"RollP",
|
|
"RollI",
|
|
"RollD",
|
|
"PitchP",
|
|
"PitchI",
|
|
"PitchD",
|
|
"YawP",
|
|
"YawI",
|
|
"YawD",
|
|
"KPrate",
|
|
"MagnetometerEnable",
|
|
};
|
|
|
|
RefreshCommand = new DelegateCommand(_ => RefreshValues());
|
|
UpdateCommand = new DelegateCommand(_ => UpdateValues());
|
|
}
|
|
|
|
public ICommand RefreshCommand { get; private set; }
|
|
|
|
public ICommand UpdateCommand { get; private set; }
|
|
|
|
public float KPrate { get; set; }
|
|
|
|
public bool MagnetometerEnable { get; set; }
|
|
|
|
private void RefreshValues()
|
|
{
|
|
SendString("B");
|
|
}
|
|
|
|
public void UpdateValues()
|
|
{
|
|
SendPropsWithCommand("A");
|
|
}
|
|
|
|
protected override void OnActivated()
|
|
{
|
|
RefreshValues();
|
|
}
|
|
|
|
public override string Name
|
|
{
|
|
get { return "Stable Mode"; }
|
|
}
|
|
}
|
|
} |