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.
34 lines
1.0 KiB
34 lines
1.0 KiB
14 years ago
|
using System;
|
||
|
|
||
14 years ago
|
namespace ArducopterConfigurator.PresentationModels
|
||
|
{
|
||
14 years ago
|
public class PositionHoldConfigVm : ConfigWithPidsBase
|
||
14 years ago
|
{
|
||
14 years ago
|
public PositionHoldConfigVm()
|
||
14 years ago
|
{
|
||
14 years ago
|
updateString = "C";
|
||
|
refreshString = "D";
|
||
|
|
||
14 years ago
|
PropsInUpdateOrder = new[]
|
||
|
{
|
||
|
"RollP",
|
||
|
"RollI",
|
||
|
"RollD",
|
||
|
"PitchP",
|
||
|
"PitchI",
|
||
|
"PitchD",
|
||
|
"MaximumAngle",
|
||
|
"GeoCorrectionFactor",
|
||
|
};
|
||
|
}
|
||
|
|
||
|
public float MaximumAngle { get; set; }
|
||
|
|
||
|
public float GeoCorrectionFactor { get; set; }
|
||
|
|
||
14 years ago
|
public override string Name
|
||
14 years ago
|
{
|
||
|
get { return "Position Hold"; }
|
||
14 years ago
|
}
|
||
|
}
|
||
|
}
|