tbf/TestBenchFramework/BenchControl/GenericDevices/IModbus.cs

13 lines
218 B
C#
Raw Normal View History

///
/// Copyright (c) 2015 Sensus Metering Systems
///
using TBF.BenchControl.Generic;
namespace TBF.BenchControl.GenericDevices
{
public interface IModbus : IComponent
{
void SendMessage(byte[] message);
}
}