21 lines
396 B
C#
21 lines
396 B
C#
using Common.Attributes;
|
|
using DeviceCommand.Base;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DeviceCommand.Device
|
|
{
|
|
[BOBCommand]
|
|
public class ZXKS:ModbusTcp
|
|
{
|
|
public ZXKS()
|
|
{
|
|
ConfigureDevice("127.0.0.1", 502, 3000, 3000);
|
|
ConnectAsync();
|
|
}
|
|
}
|
|
}
|