|
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace BPASmartClient.MorkCL.Model.Control
- {
- internal interface IModbus
- {
- void Init(string IP = "", int Port = 502, string PortName = "");
-
- void WriteValue<T>(string address, T value);
- }
- }
|