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