Big changes
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Raytheon.Instruments.LSPS
|
||||
{
|
||||
public static class ChamberVacuum
|
||||
{
|
||||
public enum Command
|
||||
{
|
||||
GET_CVAC,
|
||||
GET_SVAC
|
||||
};
|
||||
|
||||
private const string name_ = "CVAC";
|
||||
|
||||
public static string GetFullCommand(Enum command)
|
||||
{
|
||||
return $"{name_} {command.ToString()}";
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user