Big changes

This commit is contained in:
Duc
2025-03-13 12:04:22 -07:00
parent c689fcb7f9
commit ffa9905494
748 changed files with 199255 additions and 3743 deletions

View File

@@ -0,0 +1,35 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Raytheon.Instruments.LSPS
{
public static class BlackBody
{
public enum Command
{
CONTROL_SETPOINT,
GET_TEMP,
GET_SETPOINT,
GET_HTR,
GET_STABILITY,
GET_CONTROL_STATE,
GET_RATE_OF_CHANGE,
GET_TEMP_ERROR,
GET_TEMPA,
GET_TEMPB,
GET_CONTROL_SETPOINT,
GET_STATUS,
GET_BIT
};
private const string name_ = "BB";
public static string GetFullCommand(Enum command)
{
return $"{name_} {command.ToString()}";
}
}
}