2010-12-18 18:23:09 -04:00
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Diagnostics;
|
|
|
|
|
|
|
|
namespace ArducopterConfigurator.PresentationModels
|
|
|
|
{
|
2011-02-14 10:48:47 -04:00
|
|
|
public abstract class ConfigWithPidsBase : CrudVm
|
2010-12-18 18:23:09 -04:00
|
|
|
{
|
|
|
|
|
|
|
|
public float RollP { get; set; }
|
|
|
|
public float RollI { get; set; }
|
|
|
|
public float RollD { get; set; }
|
|
|
|
|
|
|
|
public float PitchP { get; set; }
|
|
|
|
public float PitchI { get; set; }
|
|
|
|
public float PitchD { get; set; }
|
|
|
|
|
|
|
|
public float YawP { get; set; }
|
|
|
|
public float YawI { get; set; }
|
|
|
|
public float YawD { get; set; }
|
2011-02-14 10:48:47 -04:00
|
|
|
|
|
|
|
|
2010-12-18 18:23:09 -04:00
|
|
|
}
|
|
|
|
}
|