mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-03 22:48:29 -04:00
b37c09d56e
git-svn-id: https://arducopter.googlecode.com/svn/trunk@1654 f9c3cf11-9bcb-44bc-f272-b75c42450872
34 lines
1.0 KiB
C#
34 lines
1.0 KiB
C#
using System;
|
|
|
|
namespace ArducopterConfigurator.PresentationModels
|
|
{
|
|
public class PositionHoldConfigVm : ConfigWithPidsBase
|
|
{
|
|
public PositionHoldConfigVm()
|
|
{
|
|
updateString = "C";
|
|
refreshString = "D";
|
|
|
|
PropsInUpdateOrder = new[]
|
|
{
|
|
"RollP",
|
|
"RollI",
|
|
"RollD",
|
|
"PitchP",
|
|
"PitchI",
|
|
"PitchD",
|
|
"MaximumAngle",
|
|
"GeoCorrectionFactor",
|
|
};
|
|
}
|
|
|
|
public float MaximumAngle { get; set; }
|
|
|
|
public float GeoCorrectionFactor { get; set; }
|
|
|
|
public override string Name
|
|
{
|
|
get { return "Position Hold"; }
|
|
}
|
|
}
|
|
} |