Files
GenericTeProgramLibrary/Source/TSRealLib/HAL/Implementations/LSPS/LspsChamber/Messages/Chopper.cs
2025-03-13 12:04:22 -07:00

33 lines
653 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Raytheon.Instruments.LSPS
{
public static class Chopper
{
public enum Command
{
CW_SET_SETPOINT,
CW_STOP_OPEN,
CW_STOP_CLOSED,
CW_TURN_OFF,
CW_GET_SETPOINT,
CW_GET_CHOP_FREQ,
CW_GET_STATE,
CW_GET_STATUS,
CW_GET_STABILITY,
GET_BIT
};
private const string name_ = "CHOPPER";
public static string GetFullCommand(Enum command)
{
return $"{name_} {command.ToString()}";
}
}
}