20240301_JSEQ_upperpc/JiangsuEarthquakeNow/JiangsuEarthquake/Models/BaseStationGestureModel.cs
XuMin 3b6c570800 1 经过电控腔测试和升压站测试;
2 解决了后一个通信连接会影响前一个通信连接的问题;
3 测试过程中存在的问题修改;
2024-09-03 16:30:34 +08:00

83 lines
1.7 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JiangsuEarthquake.Models
{
public class BaseStationGestureModel : ParameterModel
{
private float rollAngle;
/// <summary>
/// 横滚角
/// </summary>
public float RollAngle
{
get { return rollAngle; }
set { rollAngle = value; this.DoNotify(); }
}
private float pitchAngle;
/// <summary>
/// 俯仰角
/// </summary>
public float PitchAngle
{
get { return pitchAngle; }
set { pitchAngle = value; this.DoNotify(); }
}
private float headingAngle;
/// <summary>
/// 航向角
/// </summary>
public float HeadingAngle
{
get { return headingAngle; }
set { headingAngle = value; this.DoNotify(); }
}
private float pY_HG;
/// <summary>
/// 横滚角偏移度数
/// </summary>
public float PY_HG
{
get { return pY_HG; }
set { pY_HG = value; this.DoNotify(); }
}
private float pY_FY;
/// <summary>
/// 俯仰角度偏移度数
/// </summary>
public float PY_FY
{
get { return pY_FY; }
set { pY_FY = value; this.DoNotify(); }
}
private float pY_PH;
/// <summary>
/// 航向角偏移度数
/// </summary>
public float PY_PH
{
get { return pY_PH; }
set { pY_PH = value; this.DoNotify(); }
}
}
}