You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
563 B
C#
23 lines
563 B
C#
using HslCommunication;
|
|
using Mesnac.Action.ChemicalWeighing.Pl;
|
|
|
|
namespace Mesnac.Action.ChemicalWeighing
|
|
{
|
|
public static class LjHelp
|
|
{
|
|
|
|
//开门狗
|
|
public static int WatchDog
|
|
{
|
|
get
|
|
{
|
|
OperateResult<byte[]> read = PlcConnect.Instance.Read("DB2107.2.0", 2);
|
|
|
|
var content = read.Content;
|
|
|
|
return PlcConnect.Instance.ByteTransform.TransInt16(content, 0);
|
|
}
|
|
}
|
|
//BasePlcHelper.Instance.WatchDog.LastValue.ToInt();
|
|
}
|
|
} |