You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
510 B
31 lines
510 B
2 years ago
|
namespace EC.AutoWeightServer.IfManager.Light
|
||
|
{
|
||
|
public interface ILightManager
|
||
|
{
|
||
|
#region Start & Stop Server
|
||
|
|
||
|
public bool StartServer();
|
||
|
|
||
|
public bool StopServer();
|
||
|
|
||
|
public bool IsOpen();
|
||
|
|
||
|
#endregion Start & Stop Server
|
||
|
|
||
|
#region Control Lights
|
||
|
|
||
|
public bool OpenAllLight();
|
||
|
|
||
|
public bool CloseAllLight();
|
||
|
|
||
|
public bool OpenLight(int index);
|
||
|
|
||
|
public bool CloseLight(int index);
|
||
|
|
||
|
public bool LockLightOn(int index);
|
||
|
|
||
|
public bool LockLightOff(int index);
|
||
|
|
||
|
#endregion Control Lights
|
||
|
}
|
||
|
}
|