You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.5 KiB
55 lines
1.5 KiB
namespace ArducopterConfigurator.PresentationModels |
|
{ |
|
/// <summary> |
|
/// Vm for Altitude hold settings |
|
/// </summary> |
|
/// <remarks> |
|
/// Todo: this one is weird because the APM sends and receives the values |
|
/// in a different order |
|
/// There is a unit test to cover it but it will need fixing. |
|
/// </remarks> |
|
public class AltitudeHoldConfigVm : MonitorVm |
|
{ |
|
public AltitudeHoldConfigVm(IComms sp) |
|
: base(sp) |
|
{ |
|
PropsInUpdateOrder = new[] { "P", "I", "D", }; |
|
|
|
RefreshCommand = new DelegateCommand(_ => RefreshValues()); |
|
UpdateCommand = new DelegateCommand(_ => UpdateValues()); |
|
} |
|
|
|
public ICommand RefreshCommand { get; private set; } |
|
public ICommand UpdateCommand { get; private set; } |
|
|
|
public float P { get; set; } |
|
public float I { get; set; } |
|
public float D { get; set; } |
|
|
|
|
|
private void RefreshValues() |
|
{ |
|
SendString("F"); |
|
} |
|
|
|
public void UpdateValues() |
|
{ |
|
SendPropsWithCommand("E"); |
|
} |
|
|
|
protected override void OnActivated() |
|
{ |
|
RefreshValues(); |
|
} |
|
|
|
protected override void OnStringReceived(string strReceived) |
|
{ |
|
PopulatePropsFromUpdate(strReceived,true); |
|
} |
|
|
|
public override string Name |
|
{ |
|
get { return "Altitude Hold"; } |
|
} |
|
} |
|
} |