BOB/DeviceCommand/Device/ZXKS.cs
2025-11-17 13:12:15 +08:00

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();
}
}
}