io commander
This commit is contained in:
22
VisionBuilder.UI.IOCommander/NoDebugView.cs
Normal file
22
VisionBuilder.UI.IOCommander/NoDebugView.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
using Serilog;
|
||||
using VisionBuilder.UI.IOCommander.Interfaces;
|
||||
|
||||
namespace VisionBuilder.UI.IOCommander;
|
||||
|
||||
public class NoDebugView: IIOCommanderDebugViewService
|
||||
{
|
||||
public void SetInputPinStatus(int pin, bool state)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public void SetOutputPinStatus(int pin, bool state)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public void ShowDebugView()
|
||||
{
|
||||
Log.Warning("Debug view is not available.");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user