Sic.Framework-Nanjing-Baishi/MECF.Framework.Common/Aitex/Core/RT/Device/IModuleDevice.cs

18 lines
244 B
C#

namespace Aitex.Core.RT.Device
{
public interface IModuleDevice
{
string Module { get; }
bool IsInstalled { get; }
bool IsReady { get; }
bool IsError { get; }
bool IsInit { get; }
bool Home(out string reason);
}
}