2010-12-18 18:23:09 -04:00
|
|
|
using System;
|
|
|
|
|
|
|
|
namespace ArducopterConfigurator.PresentationModels
|
|
|
|
{
|
2011-02-14 10:48:47 -04:00
|
|
|
public class AcroModeConfigVm : ConfigWithPidsBase
|
2010-12-18 18:23:09 -04:00
|
|
|
{
|
2011-02-13 05:25:54 -04:00
|
|
|
public AcroModeConfigVm()
|
2010-12-18 18:23:09 -04:00
|
|
|
{
|
2011-02-14 10:48:47 -04:00
|
|
|
updateString = "O";
|
|
|
|
refreshString = "P";
|
|
|
|
|
2010-12-18 18:23:09 -04:00
|
|
|
PropsInUpdateOrder = new[]
|
|
|
|
{
|
|
|
|
"RollP",
|
|
|
|
"RollI",
|
|
|
|
"RollD",
|
|
|
|
"PitchP",
|
|
|
|
"PitchI",
|
|
|
|
"PitchD",
|
|
|
|
"YawP",
|
|
|
|
"YawI",
|
|
|
|
"YawD",
|
|
|
|
"TransmitterFactor",
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2010-12-22 02:42:16 -04:00
|
|
|
public float TransmitterFactor { get; set; }
|
2010-12-18 18:23:09 -04:00
|
|
|
|
2011-02-14 10:48:47 -04:00
|
|
|
public override string Name
|
2010-12-18 18:23:09 -04:00
|
|
|
{
|
2011-02-13 05:25:54 -04:00
|
|
|
get { return "Acro Mode"; }
|
2010-12-18 18:23:09 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|