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
916 B
34 lines
916 B
14 years ago
|
using System;
|
||
|
|
||
|
namespace ArducopterConfigurator.PresentationModels
|
||
|
{
|
||
14 years ago
|
public class AcroModeConfigVm : ConfigWithPidsBase
|
||
14 years ago
|
{
|
||
14 years ago
|
public AcroModeConfigVm()
|
||
14 years ago
|
{
|
||
14 years ago
|
updateString = "O";
|
||
|
refreshString = "P";
|
||
|
|
||
14 years ago
|
PropsInUpdateOrder = new[]
|
||
|
{
|
||
|
"RollP",
|
||
|
"RollI",
|
||
|
"RollD",
|
||
|
"PitchP",
|
||
|
"PitchI",
|
||
|
"PitchD",
|
||
|
"YawP",
|
||
|
"YawI",
|
||
|
"YawD",
|
||
|
"TransmitterFactor",
|
||
|
};
|
||
|
}
|
||
|
|
||
14 years ago
|
public float TransmitterFactor { get; set; }
|
||
14 years ago
|
|
||
14 years ago
|
public override string Name
|
||
14 years ago
|
{
|
||
14 years ago
|
get { return "Acro Mode"; }
|
||
14 years ago
|
}
|
||
|
}
|
||
|
}
|