Commit 1f6775d2 顾剑亮

coding

1 个父辈 5c9b274e
正在显示 68 个修改的文件 包含 959 行增加1298 行删除
此文件类型无法预览
......@@ -11,6 +11,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AIOBOX_Debug_old", "AIOBOX_
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WindowsFormsApp1", "WindowsFormsApp1\WindowsFormsApp1.csproj", "{7F7C9D6D-D088-410E-8340-3FB5EEA78B37}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AIOBOX_Debug", "AIOBOX_Debug\AIOBOX_Debug.csproj", "{E48F1646-79E1-43A3-93A1-6F8ECDCE7843}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
......@@ -51,6 +53,14 @@ Global
{7F7C9D6D-D088-410E-8340-3FB5EEA78B37}.Release|Any CPU.Build.0 = Release|Any CPU
{7F7C9D6D-D088-410E-8340-3FB5EEA78B37}.Release|x86.ActiveCfg = Release|Any CPU
{7F7C9D6D-D088-410E-8340-3FB5EEA78B37}.Release|x86.Build.0 = Release|Any CPU
{E48F1646-79E1-43A3-93A1-6F8ECDCE7843}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{E48F1646-79E1-43A3-93A1-6F8ECDCE7843}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E48F1646-79E1-43A3-93A1-6F8ECDCE7843}.Debug|x86.ActiveCfg = Debug|Any CPU
{E48F1646-79E1-43A3-93A1-6F8ECDCE7843}.Debug|x86.Build.0 = Debug|Any CPU
{E48F1646-79E1-43A3-93A1-6F8ECDCE7843}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E48F1646-79E1-43A3-93A1-6F8ECDCE7843}.Release|Any CPU.Build.0 = Release|Any CPU
{E48F1646-79E1-43A3-93A1-6F8ECDCE7843}.Release|x86.ActiveCfg = Release|Any CPU
{E48F1646-79E1-43A3-93A1-6F8ECDCE7843}.Release|x86.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
......
......@@ -37,13 +37,13 @@ namespace Asa.IOModule
//private System.Collections.Concurrent.ConcurrentQueue<byte[]> _writeDO;
private log4net.ILog log;
private readonly Box_Type _typeInput; //输入类型
private readonly Box_Type _typeOutput; //输出类型
private readonly byte[] _addressInput; //输入地址
private readonly byte[] _addressOutput; //输出地址
private Box_Type _typeInput; //输入类型
private Box_Type _typeOutput; //输出类型
private byte[] _addressInput; //输入地址
private byte[] _addressOutput; //输出地址
private const int SEND_SLEEP = 50; //每条命令发送的间隔
private const int PORT = 502; //端口
private const int UPLOAD_TIME = 8000; //8
private const int UPLOAD_TIME = 3000; //5
private Thread tRecon; //重连线程
private Thread tSend; //发送命令处理
......@@ -56,32 +56,12 @@ namespace Asa.IOModule
/// <summary>
/// 零点IO模块操作类
/// </summary>
/// <param name="input">输入类型</param>
/// <param name="inputCount">输入数量</param>
/// <param name="output">输出类型</param>
/// <param name="outputCount">输出数量</param>
public AIOBOX(Box_Type input, int inputCount, Box_Type output, int outputCount)
/// <param name="logName"></param>
public AIOBOX(string logName = "AIOBOX")
{
_typeInput = input;
_typeOutput = output;
log = log4net.LogManager.GetLogger("AIOBOX");
byte n = 0;
_addressInput = new byte[inputCount];
for (int i = 0; i < inputCount; i++)
_addressInput[i] = n++;
_addressOutput = new byte[outputCount];
for (int i = 0; i < outputCount; i++)
_addressOutput[i] = n++;
_stateDI = new Box_Sta[inputCount];
_stateDO = new Box_Sta[outputCount];
_valueAI = new int[inputCount];
_valueAO = new int[outputCount];
log = log4net.LogManager.GetLogger(logName);
}
/// <summary>
/// IP地址
/// </summary>
......@@ -90,7 +70,7 @@ namespace Asa.IOModule
/// <summary>
/// 输入主动上传
/// </summary>
public bool Upload { set; get; } = false;
public bool Upload { set; get; } = true;
/// <summary>
/// 是否连接
......@@ -98,37 +78,72 @@ namespace Asa.IOModule
public bool IsConn { get; private set; } = false;
/// <summary>
/// 错误信息
/// DI总数
/// </summary>
//public string ErrInfo { get; private set; } = "";
public int InputCount
{
get
{
if (_addressInput == null)
return 0;
else
return _addressInput.Length;
}
}
/// <summary>
/// 监控DI输入,索引数组
/// DO总数
/// </summary>
public int[] MonitorDI { get; set; }
public int OutputCount
{
get
{
if (_addressOutput == null)
return 0;
else
return _addressOutput.Length;
}
}
/// <summary>
/// 监控DO输出,索引数组
/// 设置输入输出的类型
/// </summary>
public int[] MonitorDO { get; set; }
/// <param name="input"></param>
/// <param name="inputCount"></param>
/// <param name="output"></param>
/// <param name="outputCount"></param>
public void SetType(Box_Type input, int inputCount, Box_Type output, int outputCount)
{
_typeInput = input;
_typeOutput = output;
byte n = 0;
_addressInput = new byte[inputCount];
for (int i = 0; i < inputCount; i++)
_addressInput[i] = n++;
_addressOutput = new byte[outputCount];
for (int i = 0; i < outputCount; i++)
_addressOutput[i] = n++;
_stateDI = new Box_Sta[inputCount];
_stateDO = new Box_Sta[outputCount];
_valueAI = new int[inputCount];
_valueAO = new int[outputCount];
}
/// <summary>
/// 连接
/// </summary>
public void Connect()
/// <returns></returns>
public bool Connect()
{
_loop = true;
_uid = 0;
IsConn = false;
_receive = new List<byte>();
//_writeDO = new System.Collections.Concurrent.ConcurrentQueue<byte[]>();
//test
//IsConn = true;
tRecon = new Thread(new ThreadStart(Reconn)) { Name = "Reconnect" };
tSend = new Thread(new ThreadStart(Send)) { Name = "Send" };
......@@ -136,7 +151,18 @@ namespace Asa.IOModule
tRecon.Start();
tSend.Start();
tListen.Start();
log.Info("Connect");
log.Info("Connect[" + IP + "]");
int time = 3000;
while (time > 0)
{
Thread.Sleep(10);
if (IsConn)
break;
else
time -= 10;
}
return IsConn;
}
/// <summary>
......@@ -154,7 +180,7 @@ namespace Asa.IOModule
_client.Shutdown(SocketShutdown.Both);
_client.Close();
}
log.Info("Close");
log.Info("Close[" + IP + "]");
}
catch (Exception ex)
{
......@@ -167,6 +193,13 @@ namespace Asa.IOModule
}
/// <summary>
/// 相反状态(ON/OFF)
/// </summary>
......@@ -291,7 +324,7 @@ namespace Asa.IOModule
{
try
{
log.Info("call WriteDO");
log.Debug("Enter WriteDO[" + IP + "] add=" + add + " sta=" + sta.ToString());
byte[] data = Command();
byte[] buff = new byte[12];
......@@ -301,20 +334,34 @@ namespace Asa.IOModule
buff[9] = _addressOutput[add]; //地址
buff[10] = (byte)sta; //写入值
//_writeDO.Enqueue(buff);
//return true;
_client.Send(buff);
log.Debug("Send: " + HexBuff(buff));
log.Debug("WriteDO[" + IP + "]: " + HexBuff(buff));
return true;
}
catch (Exception ex)
{
log.Error("WriteDO ", ex);
log.Error("WriteDO", ex);
return false;
}
}
/// <summary>
/// 获取本地IPv4地址
/// </summary>
/// <returns></returns>
public string[] GetLocalIP()
{
List<string> str = new List<string>();
IPAddress[] add = Dns.GetHostEntry(Dns.GetHostName()).AddressList;
foreach (IPAddress ip in add)
{
if (ip.AddressFamily.ToString() == "InterNetwork")
str.Add(ip.ToString());
}
return str.ToArray();
}
......@@ -324,10 +371,7 @@ namespace Asa.IOModule
/// </summary>
private void Send()
{
bool shift = true; //切换
int time = 0; //上传时间
int writeTimer = 0; //写入DO次数
bool writeStop = false; //写入命令停止
int time = UPLOAD_TIME; //上传时间
while (_loop)
{
......@@ -335,6 +379,7 @@ namespace Asa.IOModule
if (!IsConn) continue;
byte[] buff;
if (Upload) //主动上传
{
if (time >= UPLOAD_TIME)
......@@ -344,95 +389,23 @@ namespace Asa.IOModule
}
else
{
//2020年5月25日
time += SEND_SLEEP;
continue;
// if (_writeDO.TryDequeue(out buff))
// {
// }
//else
// {
// continue;
// }
//2020年5月23日
// if (writeTimer >= 3) //连续发送WriteDO3次,强制发送DO
// {
// buff = GetReadDO_Command();
// writeTimer = 0;
// }
// else
// {
// if (_writeDO.TryDequeue(out buff))
// {
// writeTimer++;
// }
// else
// {
// buff = GetReadDO_Command();
// writeTimer = 0;
// }
// }
}
}
else
{
//2020年5月25日
buff = GetReadDI_Command();
//if (_writeDO.TryDequeue(out buff))
//{
//}
//else
//{
// buff = GetReadDI_Command();
//}
//2020年5月23日
//if (writeTimer >= 3) //连续发送WriteDO3次,强制发送DI和DO
//{
// if (shift)
// buff = GetReadDI_Command();
// else
// buff = GetReadDO_Command();
// shift = !shift;
// if (writeStop)
// writeTimer = 0;
// else
// writeStop = true;
//}
//else
//{
// if (_writeDO.TryDequeue(out buff))
// {
// writeTimer++;
// writeStop = false;
// }
// else
// {
// if (shift)
// buff = GetReadDI_Command();
// else
// buff = GetReadDO_Command();
// shift = !shift;
// writeTimer = 0;
// }
//}
}
try
{
_client.Send(buff);
log.Debug("Send: " + HexBuff(buff));
log.Debug("Send[" + IP + "]: " + HexBuff(buff));
}
catch (Exception ex)
{
log.Error("Send ", ex);
log.Info("Socket Close");
log.Error("Send", ex);
IsConn = false;
}
}
......@@ -481,7 +454,7 @@ namespace Asa.IOModule
{
while (_loop)
{
Thread.Sleep(10);
Thread.Sleep(5);
if (!IsConn) continue;
if (_client == null) continue;
......@@ -494,6 +467,7 @@ namespace Asa.IOModule
byte[] temp = new byte[count];
Array.Copy(buff, 0, temp, 0, count);
_receive.AddRange(temp);
while (_receive.Count > 6) //分解连包
{
......@@ -502,14 +476,15 @@ namespace Asa.IOModule
byte[] cmd = new byte[len];
_receive.CopyTo(0, cmd, 0, len);
_receive.RemoveRange(0, len);
log.Debug("Receive: " + HexBuff(cmd));
System.Threading.Tasks.Task.Run(() => CommandProcess(cmd));
log.Debug("Receive[" + IP + "]: " + HexBuff(cmd));
//System.Threading.Tasks.Task.Run(() => CommandProcess(cmd));
CommandProcess(cmd);
}
}
}
catch (Exception ex)
{
log.Error("Listen ", ex);
log.Error("Listen", ex);
IsConn = false;
}
}
......@@ -544,15 +519,9 @@ namespace Asa.IOModule
}
}
Array.Copy(_stateDO, 0, staDO, 0, staDO.Length);
if (MonitorDO != null)
{
str = "MonitorDO ";
for (int i = 0; i < MonitorDO.Length; i++)
str += string.Format("[{0}]{1} ", MonitorDO[i], _stateDO[MonitorDO[i]].ToString());
log.Info(str);
}
}
DO_Changed_Event?.Invoke(this, staDO);
System.Threading.Tasks.Task.Run(() => DO_Changed_Event?.Invoke(this, staDO));
}
else if (cmd[7] == 2) //ReadDI
{
......@@ -571,15 +540,9 @@ namespace Asa.IOModule
}
}
Array.Copy(_stateDI, 0, staDI, 0, staDI.Length);
if (MonitorDI != null)
{
str = "MonitorDI ";
for (int i = 0; i < MonitorDI.Length; i++)
str += string.Format("[{0}]{1} ", MonitorDI[i], _stateDI[MonitorDI[i]].ToString());
log.Info(str);
}
}
DI_Changed_Event?.Invoke(this, staDI);
System.Threading.Tasks.Task.Run(() => DI_Changed_Event?.Invoke(this, staDI));
}
else if (cmd[7] == 5)
{
......@@ -592,7 +555,8 @@ namespace Asa.IOModule
_stateDO[idx] = cmd[10] == 0xFF ? Box_Sta.On : Box_Sta.Off;
Array.Copy(_stateDO, staDO, staDO.Length);
}
DO_Changed_Event?.Invoke(this, staDO);
System.Threading.Tasks.Task.Run(() => DO_Changed_Event?.Invoke(this, staDO));
}
}
}
......@@ -636,16 +600,17 @@ namespace Asa.IOModule
_client = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
_client.SetSocketOption(SocketOptionLevel.Socket, SocketOptionName.SendTimeout, 500);
_client.SetSocketOption(SocketOptionLevel.Socket, SocketOptionName.ReceiveTimeout, 500);
_client.SetSocketOption(SocketOptionLevel.Socket, SocketOptionName.NoDelay, 1);
_client.SetSocketOption(SocketOptionLevel.Socket, SocketOptionName.NoDelay, true);
_client.NoDelay = true;
_client.Connect(IPAddress.Parse(IP), PORT);
Thread.Sleep(100); //需要等待一会才能获取连接状态
IsConn = true;
log.Info("Socket Connect");
log.Info("Socket[" + IP + "] Connect");
}
catch (Exception ex)
{
IsConn = false;
log.Error("Open ", ex);
log.Error("Open", ex);
}
}
......@@ -654,7 +619,7 @@ namespace Asa.IOModule
/// </summary>
/// <param name="ip"></param>
/// <returns></returns>
private bool CheckIP(string ip)
public bool CheckIP(string ip)
{
//IP合法
string pattern = @"^((2[0-4]\d|25[0-5]|[01]?\d\d?)\.){3}(2[0-4]\d|25[0-5]|[01]?\d\d?)$";
......@@ -682,7 +647,7 @@ namespace Asa.IOModule
/// </summary>
/// <param name="localIP">本地IP地址</param>
/// <returns></returns>
private bool AutoIP(string localIP)
public bool AutoIP(string localIP)
{
try
{
......
......@@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
// 可以指定所有值,也可以使用以下所示的 "*" 预置版本号和修订号
//通过使用 "*",如下所示:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.4.0.2")]
[assembly: AssemblyFileVersion("2.4.0.2")]
[assembly: AssemblyVersion("2.4.0.3")]
[assembly: AssemblyFileVersion("2.4.0.3")]
......@@ -26,14 +26,11 @@
自动读取DO事件触发
</summary>
</member>
<member name="M:Asa.IOModule.AIOBOX.#ctor(Asa.IOModule.Box_Type,System.Int32,Asa.IOModule.Box_Type,System.Int32)">
<member name="M:Asa.IOModule.AIOBOX.#ctor(System.String)">
<summary>
零点IO模块操作类
</summary>
<param name="input">输入类型</param>
<param name="inputCount">输入数量</param>
<param name="output">输出类型</param>
<param name="outputCount">输出数量</param>
<param name="logName"></param>
</member>
<member name="P:Asa.IOModule.AIOBOX.IP">
<summary>
......@@ -50,20 +47,30 @@
是否连接
</summary>
</member>
<member name="P:Asa.IOModule.AIOBOX.MonitorDI">
<member name="P:Asa.IOModule.AIOBOX.InputCount">
<summary>
监控DI输入,索引数组
DI总数
</summary>
</member>
<member name="P:Asa.IOModule.AIOBOX.MonitorDO">
<member name="P:Asa.IOModule.AIOBOX.OutputCount">
<summary>
监控DO输出,索引数组
DO总数
</summary>
</member>
<member name="M:Asa.IOModule.AIOBOX.SetType(Asa.IOModule.Box_Type,System.Int32,Asa.IOModule.Box_Type,System.Int32)">
<summary>
设置输入输出的类型
</summary>
<param name="input"></param>
<param name="inputCount"></param>
<param name="output"></param>
<param name="outputCount"></param>
</member>
<member name="M:Asa.IOModule.AIOBOX.Connect">
<summary>
连接
</summary>
<returns></returns>
</member>
<member name="M:Asa.IOModule.AIOBOX.Close">
<summary>
......@@ -151,6 +158,12 @@
<param name="sta"></param>
<returns></returns>
</member>
<member name="M:Asa.IOModule.AIOBOX.GetLocalIP">
<summary>
获取本地IPv4地址
</summary>
<returns></returns>
</member>
<member name="M:Asa.IOModule.AIOBOX.Send">
<summary>
发送命令线程
......
......@@ -6,4 +6,3 @@ D:\OneDrive - 上海挚锦科技有限公司\SMD\AIOBOX\AIOBOX\obj\Debug\Asa.IOM
D:\OneDrive - 上海挚锦科技有限公司\SMD\AIOBOX\AIOBOX\obj\Debug\Asa.IOModule.AIOBOX.pdb
D:\OneDrive - 上海挚锦科技有限公司\SMD\AIOBOX\AIOBOX\bin\Debug\log4net.dll
D:\OneDrive - 上海挚锦科技有限公司\SMD\AIOBOX\AIOBOX\obj\Debug\AIOBOX.csproj.CopyComplete
D:\OneDrive - 上海挚锦科技有限公司\SMD\AIOBOX\AIOBOX\obj\Debug\AIOBOX.csprojAssemblyReference.cache
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{E48F1646-79E1-43A3-93A1-6F8ECDCE7843}</ProjectGuid>
<OutputType>WinExe</OutputType>
<RootNamespace>AIOBOX_Debug</RootNamespace>
<AssemblyName>AIOBOX_Debug</AssemblyName>
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<Deterministic>true</Deterministic>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Deployment" />
<Reference Include="System.Drawing" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Form1.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="Form1.Designer.cs">
<DependentUpon>Form1.cs</DependentUpon>
</Compile>
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<EmbeddedResource Include="Form1.resx">
<DependentUpon>Form1.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
<SubType>Designer</SubType>
</EmbeddedResource>
<Compile Include="Properties\Resources.Designer.cs">
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
<None Include="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
<Compile Include="Properties\Settings.Designer.cs">
<AutoGen>True</AutoGen>
<DependentUpon>Settings.settings</DependentUpon>
<DesignTimeSharedInput>True</DesignTimeSharedInput>
</Compile>
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" />
</startup>
</configuration>
\ No newline at end of file
namespace AIOBOX_Debug
{
partial class Form1
{
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
/// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows 窗体设计器生成的代码
/// <summary>
/// 设计器支持所需的方法 - 不要修改
/// 使用代码编辑器修改此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.SuspendLayout();
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(800, 450);
this.Name = "Form1";
this.Text = "Form1";
this.Load += new System.EventHandler(this.Form1_Load);
this.ResumeLayout(false);
}
#endregion
}
}
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace AIOBOX_Debug
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
}
}
}
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
</root>
\ No newline at end of file
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace AIOBOX_Debug
{
static class Program
{
/// <summary>
/// 应用程序的主入口点。
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// 有关程序集的一般信息由以下
// 控制。更改这些特性值可修改
// 与程序集关联的信息。
[assembly: AssemblyTitle("AIOBOX_Debug")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("AIOBOX_Debug")]
[assembly: AssemblyCopyright("Copyright © 2020")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// 将 ComVisible 设置为 false 会使此程序集中的类型
//对 COM 组件不可见。如果需要从 COM 访问此程序集中的类型
//请将此类型的 ComVisible 特性设置为 true。
[assembly: ComVisible(false)]
// 如果此项目向 COM 公开,则下列 GUID 用于类型库的 ID
[assembly: Guid("e48f1646-79e1-43a3-93a1-6f8ecdce7843")]
// 程序集的版本信息由下列四个值组成:
//
// 主版本
// 次版本
// 生成号
// 修订号
//
//可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值
//通过使用 "*",如下所示:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
// 运行时版本: 4.0.30319.42000
//
// 对此文件的更改可能导致不正确的行为,如果
// 重新生成代码,则所做更改将丢失。
// </auto-generated>
//------------------------------------------------------------------------------
namespace AIOBOX_Debug.Properties
{
/// <summary>
/// 强类型资源类,用于查找本地化字符串等。
/// </summary>
// 此类是由 StronglyTypedResourceBuilder
// 类通过类似于 ResGen 或 Visual Studio 的工具自动生成的。
// 若要添加或删除成员,请编辑 .ResX 文件,然后重新运行 ResGen
// (以 /str 作为命令选项),或重新生成 VS 项目。
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class Resources
{
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal Resources()
{
}
/// <summary>
/// 返回此类使用的缓存 ResourceManager 实例。
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager
{
get
{
if ((resourceMan == null))
{
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("AIOBOX_Debug.Properties.Resources", typeof(Resources).Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// 覆盖当前线程的 CurrentUICulture 属性
/// 使用此强类型的资源类的资源查找。
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture
{
get
{
return resourceCulture;
}
set
{
resourceCulture = value;
}
}
}
}
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
</root>
\ No newline at end of file
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace AIOBOX_Debug.Properties
{
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")]
internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase
{
private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
public static Settings Default
{
get
{
return defaultInstance;
}
}
}
}
<?xml version='1.0' encoding='utf-8'?>
<SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)">
<Profiles>
<Profile Name="(Default)" />
</Profiles>
<Settings />
</SettingsFile>
......@@ -8,10 +8,11 @@
<OutputType>WinExe</OutputType>
<RootNamespace>AIOBOX_Debug</RootNamespace>
<AssemblyName>AIOBOX_Debug</AssemblyName>
<TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<Deterministic>true</Deterministic>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
......@@ -55,6 +56,10 @@
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<Reference Include="log4net, Version=2.0.8.0, Culture=neutral, PublicKeyToken=669e0ddf0bb1aa2a, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\..\DLL\log4net.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
......@@ -107,6 +112,7 @@
<Compile Include="Properties\Resources.Designer.cs">
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
<DesignTime>True</DesignTime>
</Compile>
<None Include="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
......@@ -122,9 +128,9 @@
<None Include="App.config" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\AIOBOX_old\AIOBOX_old.csproj">
<Project>{64600160-a389-4b09-af59-a4c9aca039de}</Project>
<Name>AIOBOX_old</Name>
<ProjectReference Include="..\AIOBOX\AIOBOX.csproj">
<Project>{e8d77b2a-a00d-4618-987d-c8a7ddd41b0b}</Project>
<Name>AIOBOX</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
......
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6" />
</startup>
<configSections>
<section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler,log4net"/>
</configSections>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" />
</startup>
<log4net>
<appender name="AIOBOX" type="log4net.Appender.RollingFileAppender">
<file value="logs/AIOBOX.log"/>
<param name="Encoding" value="UTF-8"/>
<appendToFile value="true"/>
<rollingStyle value="Date"/>
<datePattern value="yyyy-MM-dd"/>
<layout type="log4net.Layout.PatternLayout">
<conversionPattern value="[%date][%t]%-5p %m%n"/>
</layout>
</appender>
<root>
<level value="Debug"/>
<appender-ref ref="AIOBOX"/>
</root>
</log4net>
</configuration>
\ No newline at end of file
......@@ -7,12 +7,7 @@ namespace Asa
public static IOModule.AIOBOX box;
public static string[] localIP;
public static int localIndex;
public static int inputCount;
public static int outputCount;
public static int inputSleep;
public static int outputSleep;
public static bool autoUpload;
public static bool autoRead;
public delegate void DO_Event(int index);
}
......
......@@ -29,9 +29,6 @@
private void InitializeComponent()
{
this.checkBox1 = new System.Windows.Forms.CheckBox();
this.label4 = new System.Windows.Forms.Label();
this.numericUpDown3 = new System.Windows.Forms.NumericUpDown();
this.numericUpDown4 = new System.Windows.Forms.NumericUpDown();
this.label3 = new System.Windows.Forms.Label();
this.BtnCancel = new System.Windows.Forms.Button();
this.BtnOK = new System.Windows.Forms.Button();
......@@ -39,9 +36,6 @@
this.numericUpDown1 = new System.Windows.Forms.NumericUpDown();
this.label2 = new System.Windows.Forms.Label();
this.label1 = new System.Windows.Forms.Label();
this.checkBox2 = new System.Windows.Forms.CheckBox();
((System.ComponentModel.ISupportInitialize)(this.numericUpDown3)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.numericUpDown4)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.numericUpDown2)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).BeginInit();
this.SuspendLayout();
......@@ -56,59 +50,6 @@
this.checkBox1.Text = "Auto Upload";
this.checkBox1.UseVisualStyleBackColor = true;
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(125, 11);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(77, 12);
this.label4.TabIndex = 25;
this.label4.Text = "AutoRead(ms)";
//
// numericUpDown3
//
this.numericUpDown3.Location = new System.Drawing.Point(123, 26);
this.numericUpDown3.Maximum = new decimal(new int[] {
10000,
0,
0,
0});
this.numericUpDown3.Minimum = new decimal(new int[] {
1,
0,
0,
0});
this.numericUpDown3.Name = "numericUpDown3";
this.numericUpDown3.Size = new System.Drawing.Size(80, 21);
this.numericUpDown3.TabIndex = 24;
this.numericUpDown3.Value = new decimal(new int[] {
1,
0,
0,
0});
//
// numericUpDown4
//
this.numericUpDown4.Location = new System.Drawing.Point(123, 53);
this.numericUpDown4.Maximum = new decimal(new int[] {
10000,
0,
0,
0});
this.numericUpDown4.Minimum = new decimal(new int[] {
1,
0,
0,
0});
this.numericUpDown4.Name = "numericUpDown4";
this.numericUpDown4.Size = new System.Drawing.Size(80, 21);
this.numericUpDown4.TabIndex = 23;
this.numericUpDown4.Value = new decimal(new int[] {
1,
0,
0,
0});
//
// label3
//
this.label3.AutoSize = true;
......@@ -192,26 +133,12 @@
this.label1.TabIndex = 16;
this.label1.Text = "Input";
//
// checkBox2
//
this.checkBox2.AutoSize = true;
this.checkBox2.Location = new System.Drawing.Point(209, 56);
this.checkBox2.Name = "checkBox2";
this.checkBox2.Size = new System.Drawing.Size(78, 16);
this.checkBox2.TabIndex = 29;
this.checkBox2.Text = "Auto Read";
this.checkBox2.UseVisualStyleBackColor = true;
//
// FrmIO
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(313, 156);
this.Controls.Add(this.checkBox2);
this.Controls.Add(this.checkBox1);
this.Controls.Add(this.label4);
this.Controls.Add(this.numericUpDown3);
this.Controls.Add(this.numericUpDown4);
this.Controls.Add(this.label3);
this.Controls.Add(this.BtnCancel);
this.Controls.Add(this.BtnOK);
......@@ -226,8 +153,6 @@
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "FrmIO";
this.Load += new System.EventHandler(this.FrmIO_Load);
((System.ComponentModel.ISupportInitialize)(this.numericUpDown3)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.numericUpDown4)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.numericUpDown2)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).EndInit();
this.ResumeLayout(false);
......@@ -238,9 +163,6 @@
#endregion
private System.Windows.Forms.CheckBox checkBox1;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.NumericUpDown numericUpDown3;
private System.Windows.Forms.NumericUpDown numericUpDown4;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.Button BtnCancel;
private System.Windows.Forms.Button BtnOK;
......@@ -248,6 +170,5 @@
private System.Windows.Forms.NumericUpDown numericUpDown1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.CheckBox checkBox2;
}
}
\ No newline at end of file
......@@ -19,39 +19,17 @@ namespace AIOBOX_Debug
private void FrmIO_Load(object sender, EventArgs e)
{
numericUpDown1.Value = Asa.Common.inputCount;
numericUpDown2.Value = Asa.Common.outputCount;
numericUpDown3.Value = Asa.Common.inputSleep;
numericUpDown4.Value = Asa.Common.outputSleep;
checkBox1.Checked = Asa.Common.autoUpload;
checkBox2.Checked = Asa.Common.autoRead;
numericUpDown1.Value = Asa.Common.box.InputCount;
numericUpDown2.Value = Asa.Common.box.OutputCount;
checkBox1.Checked = Asa.Common.box.Upload;
}
private void BtnOK_Click(object sender, EventArgs e)
{
int n;
n = Convert.ToInt32(numericUpDown1.Value);
Asa.Common.box.SetInput(Asa.IOModule.Box_Type.DI, n);
Asa.Common.inputCount = n;
n = Convert.ToInt32(numericUpDown2.Value);
Asa.Common.box.SetOutput(Asa.IOModule.Box_Type.DO, n);
Asa.Common.outputCount = n;
n = Convert.ToInt32(numericUpDown3.Value);
Asa.Common.inputSleep = n;
if (checkBox1.Checked)
Asa.Common.box.AutoReadInput(true);
else
Asa.Common.box.AutoReadInput(true, n);
n = Convert.ToInt32(numericUpDown4.Value);
Asa.Common.box.AutoReadOutput(checkBox2.Checked, n);
Asa.Common.outputSleep = n;
Asa.Common.autoUpload = checkBox1.Checked;
Asa.Common.autoRead = checkBox2.Checked;
int input = Convert.ToInt32(numericUpDown1.Value);
int output = Convert.ToInt32(numericUpDown2.Value);
Asa.Common.box.SetType(Asa.IOModule.Box_Type.DI, input, Asa.IOModule.Box_Type.DO, output);
Asa.Common.box.Upload = checkBox1.Checked;
DialogResult = DialogResult.OK;
}
......
......@@ -37,7 +37,7 @@ namespace AIOBOX_Debug
else
{
label3.ForeColor = Color.Red;
label3.Text = Asa.Common.box.ErrInfo;
//label3.Text = Asa.Common.box.ErrInfo;
}
}
......@@ -64,7 +64,7 @@ namespace AIOBOX_Debug
else
{
label3.ForeColor = Color.Red;
label3.Text = Asa.Common.box.ErrInfo;
//label3.Text = Asa.Common.box.ErrInfo;
}
}
}
......
......@@ -33,7 +33,6 @@
this.BtnIO = new System.Windows.Forms.Button();
this.BtnCon = new System.Windows.Forms.Button();
this.pictureBox2 = new System.Windows.Forms.PictureBox();
this.ChkLog = new System.Windows.Forms.CheckBox();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
this.SuspendLayout();
......@@ -88,22 +87,11 @@
this.pictureBox2.TabIndex = 4;
this.pictureBox2.TabStop = false;
//
// ChkLog
//
this.ChkLog.AutoSize = true;
this.ChkLog.Location = new System.Drawing.Point(255, 16);
this.ChkLog.Name = "ChkLog";
this.ChkLog.Size = new System.Drawing.Size(84, 16);
this.ChkLog.TabIndex = 5;
this.ChkLog.Text = "Log output";
this.ChkLog.UseVisualStyleBackColor = true;
//
// FrmMain
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(531, 393);
this.Controls.Add(this.ChkLog);
this.Controls.Add(this.pictureBox2);
this.Controls.Add(this.BtnCon);
this.Controls.Add(this.BtnIO);
......@@ -119,7 +107,6 @@
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
......@@ -130,7 +117,6 @@
private System.Windows.Forms.Button BtnIO;
private System.Windows.Forms.Button BtnCon;
private System.Windows.Forms.PictureBox pictureBox2;
private System.Windows.Forms.CheckBox ChkLog;
}
}
......@@ -30,17 +30,12 @@ namespace AIOBOX_Debug
output.DO_Click += Output_DO_Click;
Common.box = new Asa.IOModule.AIOBOX();
Common.box.SetType(Asa.IOModule.Box_Type.DI, 16, Asa.IOModule.Box_Type.DO, 16);
Common.box.DI_Changed_Event += DI_Changed;
Common.box.DO_Changed_Event += DO_Changed;
Common.localIP = Common.box.GetLocalIP();
Common.localIndex = 0;
Common.inputCount = 16;
Common.outputCount = 16;
Common.inputSleep = 100;
Common.outputSleep = 100;
Common.autoUpload = false;
Common.autoRead = false;
}
private void FrmMain_FormClosing(object sender, FormClosingEventArgs e)
......@@ -80,8 +75,7 @@ namespace AIOBOX_Debug
{
if (frm.ShowDialog() == DialogResult.OK)
{
input.SetCount(Common.inputCount);
output.SetCount(Common.outputCount);
}
}
}
......@@ -97,10 +91,8 @@ namespace AIOBOX_Debug
}
else
{
if (ChkLog.Checked)
Common.box.LogPath(Application.StartupPath + "\\", Asa.IOModule.LogType.All);
else
Common.box.LogPath(null, Asa.IOModule.LogType.All);
Common.box.Connect();
if (Common.box.IsConn)
{
......@@ -110,7 +102,7 @@ namespace AIOBOX_Debug
}
else
{
MessageBox.Show(Common.box.ErrInfo);
MessageBox.Show("no");
}
}
}
......
using System;
using log4net.Config;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
......@@ -14,6 +15,7 @@ namespace AIOBOX_Debug
[STAThread]
static void Main()
{
XmlConfigurator.Configure();
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new FrmMain());
......
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
// 运行时版本: 4.0.30319.42000
// 运行时版本:4.0.30319.42000
//
// 对此文件的更改可能导致不正确的行为,如果
// 重新生成代码,则所做更改将丢失。
// 对此文件的更改可能会导致不正确的行为,并且如果
// 重新生成代码,这些更改将会丢失。
// </auto-generated>
//------------------------------------------------------------------------------
namespace AIOBOX_Debug.Properties
{
namespace AIOBOX_Debug.Properties {
using System;
/// <summary>
/// 强类型资源类,用于查找本地化字符串等。
/// 一个强类型的资源类,用于查找本地化的字符串等。
/// </summary>
// 此类是由 StronglyTypedResourceBuilder
// 类通过类似于 ResGen 或 Visual Studio 的工具自动生成的。
// 若要添加或除成员,请编辑 .ResX 文件,然后重新运行 ResGen
// 若要添加或除成员,请编辑 .ResX 文件,然后重新运行 ResGen
// (以 /str 作为命令选项),或重新生成 VS 项目。
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class Resources
{
internal class Resources {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal Resources()
{
internal Resources() {
}
/// <summary>
/// 返回此类使用的缓存 ResourceManager 实例。
/// 返回此类使用的缓存 ResourceManager 实例。
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager
{
get
{
if ((resourceMan == null))
{
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("AIOBOX_Debug.Properties.Resources", typeof(Resources).Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// 覆盖当前线程的 CurrentUICulture 属性
/// 使用此强类型的资源类的资源查找
/// 重写当前线程的 CurrentUICulture 属性
/// 重写当前线程的 CurrentUICulture 属性
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture
{
get
{
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set
{
set {
resourceCulture = value;
}
}
......
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
// 此代码由工具生成。
// 运行时版本:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// 对此文件的更改可能会导致不正确的行为,并且如果
// 重新生成代码,这些更改将会丢失。
// </auto-generated>
//------------------------------------------------------------------------------
namespace AIOBOX_Debug.Properties
{
namespace AIOBOX_Debug.Properties {
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")]
internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase
{
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "16.5.0.0")]
internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase {
private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
public static Settings Default
{
get
{
public static Settings Default {
get {
return defaultInstance;
}
}
......
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6" />
</startup>
<configSections>
<section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler,log4net"/>
</configSections>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" />
</startup>
<log4net>
<appender name="AIOBOX" type="log4net.Appender.RollingFileAppender">
<file value="logs/AIOBOX.log"/>
<param name="Encoding" value="UTF-8"/>
<appendToFile value="true"/>
<rollingStyle value="Date"/>
<datePattern value="yyyy-MM-dd"/>
<layout type="log4net.Layout.PatternLayout">
<conversionPattern value="[%date][%t]%-5p %m%n"/>
</layout>
</appender>
<root>
<level value="Debug"/>
<appender-ref ref="AIOBOX"/>
</root>
</log4net>
</configuration>
\ No newline at end of file
......@@ -6,19 +6,7 @@
<members>
<member name="T:Asa.IOModule.AIOBOX">
<summary>
AIOBOX操作类
</summary>
</member>
<member name="F:Asa.IOModule.AIOBOX.SEND_SLEEP">
<summary>
每条命令发送的间隔
不能小于15,会出现IO接收不到的情况
小于30时,会出现接收数据连包的情况
</summary>
</member>
<member name="F:Asa.IOModule.AIOBOX.PORT">
<summary>
ModBus端口
零点IO模块操作类
</summary>
</member>
<member name="T:Asa.IOModule.AIOBOX.DIO_Changed">
......@@ -38,108 +26,57 @@
自动读取DO事件触发
</summary>
</member>
<member name="T:Asa.IOModule.AIOBOX.AIO_Changed">
<summary>
自动读取AI委托
</summary>
<param name="box">AIOBOX</param>
<param name="val">所有AI的值</param>
</member>
<member name="E:Asa.IOModule.AIOBOX.AI_Changed_Event">
<summary>
自动读取AI事件触发
</summary>
</member>
<member name="E:Asa.IOModule.AIOBOX.AO_Changed_Event">
<member name="M:Asa.IOModule.AIOBOX.#ctor(System.String)">
<summary>
自动读取AO事件触发
</summary>
</member>
<member name="M:Asa.IOModule.AIOBOX.#ctor">
<summary>
AIOBOX
零点IO模块操作类
</summary>
<param name="logName"></param>
</member>
<member name="P:Asa.IOModule.AIOBOX.IP">
<summary>
IP地址
</summary>
</member>
<member name="P:Asa.IOModule.AIOBOX.IsConn">
<summary>
是否连接
</summary>
</member>
<member name="P:Asa.IOModule.AIOBOX.ErrInfo">
<summary>
错误信息
</summary>
</member>
<member name="M:Asa.IOModule.AIOBOX.LogPath(System.String,Asa.IOModule.LogType)">
<member name="P:Asa.IOModule.AIOBOX.Upload">
<summary>
日志路径,连接前设置路径会自动保存日志
输入主动上传
</summary>
<param name="path">文件夹路径</param>
<param name="type">输出类型</param>
</member>
<member name="M:Asa.IOModule.AIOBOX.SetInput(Asa.IOModule.Box_Type,System.Int32)">
<member name="P:Asa.IOModule.AIOBOX.IsConn">
<summary>
设置输入端
是否连接
</summary>
<param name="type">类型</param>
<param name="count">数量</param>
</member>
<member name="M:Asa.IOModule.AIOBOX.SetOutput(Asa.IOModule.Box_Type,System.Int32)">
<member name="P:Asa.IOModule.AIOBOX.InputCount">
<summary>
设置输出端
DI总数
</summary>
<param name="type">类型</param>
<param name="count">数量</param>
</member>
<member name="M:Asa.IOModule.AIOBOX.AutoIP(System.String)">
<member name="P:Asa.IOModule.AIOBOX.OutputCount">
<summary>
自动获取IP地址,未连接前使用,必须在同一网段
DO总数
</summary>
<param name="localIP">本地IP地址</param>
<returns></returns>
</member>
<member name="M:Asa.IOModule.AIOBOX.CheckIP(System.String)">
<member name="M:Asa.IOModule.AIOBOX.SetType(Asa.IOModule.Box_Type,System.Int32,Asa.IOModule.Box_Type,System.Int32)">
<summary>
检查IP地址
设置输入输出的类型
</summary>
<param name="ip"></param>
<returns></returns>
<param name="input"></param>
<param name="inputCount"></param>
<param name="output"></param>
<param name="outputCount"></param>
</member>
<member name="M:Asa.IOModule.AIOBOX.Connect">
<summary>
连接
</summary>
<returns></returns>
</member>
<member name="M:Asa.IOModule.AIOBOX.Close">
<summary>
关闭连接
</summary>
</member>
<member name="M:Asa.IOModule.AIOBOX.AutoReadInput(System.Boolean,System.Int32)">
<summary>
自动读取输入端并触发事件(主动上传数据 = 禁止)
</summary>
<param name="read">是否自动读取</param>
<param name="sleep">间隔,必须大于等于15ms</param>
</member>
<member name="M:Asa.IOModule.AIOBOX.AutoReadInput(System.Boolean)">
<summary>
自动读取输入端并触发事件(主动上传数据 = 使能)
</summary>
<param name="read">是否自动读取</param>
</member>
<member name="M:Asa.IOModule.AIOBOX.AutoReadOutput(System.Boolean,System.Int32)">
<summary>
自动读取输出端,触发事件
</summary>
<param name="read">是否自动读取</param>
<param name="sleep">间隔,必须大于等于15ms</param>
</member>
<member name="M:Asa.IOModule.AIOBOX.ReverseStatus(Asa.IOModule.Box_Sta)">
<summary>
相反状态(ON/OFF)
......@@ -229,67 +166,66 @@
</member>
<member name="M:Asa.IOModule.AIOBOX.Send">
<summary>
发送命令
</summary>
</member>
<member name="M:Asa.IOModule.AIOBOX.Receive">
<summary>
接收命令
发送命令线程
</summary>
</member>
<member name="M:Asa.IOModule.AIOBOX.ReadSingle(System.Byte[])">
<member name="M:Asa.IOModule.AIOBOX.GetReadDI_Command">
<summary>
读取写入单个DO,功能码5
获取ReadDI的命令
</summary>
<param name="buff"></param>
<returns></returns>
</member>
<member name="M:Asa.IOModule.AIOBOX.ReadDO(System.Byte[])">
<member name="M:Asa.IOModule.AIOBOX.GetReadDO_Command">
<summary>
读取所有DO状态,功能码1
获取ReadDO的命令
</summary>
<param name="buff"></param>
<returns></returns>
</member>
<member name="M:Asa.IOModule.AIOBOX.ReadDI(System.Byte[])">
<member name="M:Asa.IOModule.AIOBOX.Listen">
<summary>
读取所有DI状态,功能码2
监听网络线程
</summary>
</member>
<member name="M:Asa.IOModule.AIOBOX.ReadAI(System.Byte[])">
<member name="M:Asa.IOModule.AIOBOX.CommandProcess(System.Byte[])">
<summary>
读取所有AI的值,功能码4
接收到的命令处理方法,(task多线程)
</summary>
<param name="buff"></param>
<param name="cmd"></param>
</member>
<member name="M:Asa.IOModule.AIOBOX.Command">
<member name="M:Asa.IOModule.AIOBOX.Reconn">
<summary>
命令,前7个字节
重连线程
</summary>
<returns></returns>
</member>
<member name="M:Asa.IOModule.AIOBOX.TriggerDIO">
<member name="M:Asa.IOModule.AIOBOX.Open">
<summary>
触发DIO改变事件
打开socket建立连接
</summary>
</member>
<member name="M:Asa.IOModule.AIOBOX.AutoReadInput">
<member name="M:Asa.IOModule.AIOBOX.CheckIP(System.String)">
<summary>
自动读取输入端线程
检查IP地址
</summary>
<param name="ip"></param>
<returns></returns>
</member>
<member name="M:Asa.IOModule.AIOBOX.AutoReadOutput">
<member name="M:Asa.IOModule.AIOBOX.AutoIP(System.String)">
<summary>
自动读取输出端线程
自动获取IP地址,未连接前使用,必须在同一网段
</summary>
<param name="localIP">本地IP地址</param>
<returns></returns>
</member>
<member name="M:Asa.IOModule.AIOBOX.Listen">
<member name="M:Asa.IOModule.AIOBOX.GetIP">
<summary>
监听结果线程
获取IO模块IP地址
</summary>
</member>
<member name="M:Asa.IOModule.AIOBOX.TestMethod">
<member name="M:Asa.IOModule.AIOBOX.Command">
<summary>
测试方法锁
命令,前7个字节
</summary>
<returns></returns>
</member>
<member name="T:Asa.IOModule.Box_Type">
<summary>
......@@ -331,62 +267,5 @@
闭合,打开,高电平
</summary>
</member>
<member name="T:Asa.IOModule.LogType">
<summary>
日志类型
</summary>
</member>
<member name="F:Asa.IOModule.LogType.OnlyError">
<summary>
仅错误信息
</summary>
</member>
<member name="F:Asa.IOModule.LogType.All">
<summary>
所有
</summary>
</member>
<member name="T:Asa.IOModule.LogFile">
<summary>
日志操作类
</summary>
</member>
<member name="M:Asa.IOModule.LogFile.#ctor(System.String,System.String)">
<summary>
日志
</summary>
<param name="path">文件夹路径</param>
<param name="ip"></param>
</member>
<member name="M:Asa.IOModule.LogFile.Close">
<summary>
关闭文件
</summary>
</member>
<member name="M:Asa.IOModule.LogFile.OutError(System.String)">
<summary>
输出错误
</summary>
<param name="s"></param>
</member>
<member name="M:Asa.IOModule.LogFile.OutInfo(System.String)">
<summary>
输出信息
</summary>
<param name="s"></param>
</member>
<member name="M:Asa.IOModule.LogFile.OutData(System.String,System.Byte[])">
<summary>
输出数据
</summary>
<param name="tr"></param>
<param name="buff"></param>
</member>
<member name="M:Asa.IOModule.LogFile.OutData(System.String)">
<summary>
输出数据
</summary>
<param name="s"></param>
</member>
</members>
</doc>
此文件类型无法预览
272f251626441dc9b6a7d4299113b50176819cc3
ecacc4f6f8c94371b8970d4f613e33846da4701f
......@@ -14,3 +14,4 @@ D:\OneDrive - 上海挚锦科技有限公司\SMD\AIOBOX\AIOBOX_Debug_old\bin\Deb
D:\OneDrive - 上海挚锦科技有限公司\SMD\AIOBOX\AIOBOX_Debug_old\bin\Debug\Asa.IOModule.AIOBOX.pdb
D:\OneDrive - 上海挚锦科技有限公司\SMD\AIOBOX\AIOBOX_Debug_old\bin\Debug\Asa.IOModule.AIOBOX.xml
D:\OneDrive - 上海挚锦科技有限公司\SMD\AIOBOX\AIOBOX_Debug_old\obj\Debug\AIOBOX_Debug_old.csproj.CopyComplete
D:\OneDrive - 上海挚锦科技有限公司\SMD\AIOBOX\AIOBOX_Debug_old\bin\Debug\log4net.dll
......@@ -8,7 +8,7 @@
</startup>
<log4net>
<appender name="AIOBOX" type="log4net.Appender.RollingFileAppender">
<file value="logs/ACStore-RC29-1.log"/>
<file value="logs/AIOBOX.log"/>
<param name="Encoding" value="UTF-8"/>
<appendToFile value="true"/>
<rollingStyle value="Date"/>
......
......@@ -30,11 +30,17 @@
{
this.button1 = new System.Windows.Forms.Button();
this.button2 = new System.Windows.Forms.Button();
this.checkBox1 = new System.Windows.Forms.CheckBox();
this.numericUpDown1 = new System.Windows.Forms.NumericUpDown();
this.numericUpDown2 = new System.Windows.Forms.NumericUpDown();
this.button3 = new System.Windows.Forms.Button();
((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.numericUpDown2)).BeginInit();
this.SuspendLayout();
//
// button1
//
this.button1.Location = new System.Drawing.Point(255, 154);
this.button1.Location = new System.Drawing.Point(12, 12);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(193, 75);
this.button1.TabIndex = 0;
......@@ -44,7 +50,7 @@
//
// button2
//
this.button2.Location = new System.Drawing.Point(255, 235);
this.button2.Location = new System.Drawing.Point(12, 93);
this.button2.Name = "button2";
this.button2.Size = new System.Drawing.Size(193, 75);
this.button2.TabIndex = 1;
......@@ -52,18 +58,60 @@
this.button2.UseVisualStyleBackColor = true;
this.button2.Click += new System.EventHandler(this.button2_Click);
//
// checkBox1
//
this.checkBox1.AutoSize = true;
this.checkBox1.Location = new System.Drawing.Point(469, 93);
this.checkBox1.Name = "checkBox1";
this.checkBox1.Size = new System.Drawing.Size(66, 16);
this.checkBox1.TabIndex = 3;
this.checkBox1.Text = "WriteDO";
this.checkBox1.UseVisualStyleBackColor = true;
this.checkBox1.CheckedChanged += new System.EventHandler(this.checkBox1_CheckedChanged);
//
// numericUpDown1
//
this.numericUpDown1.Location = new System.Drawing.Point(469, 66);
this.numericUpDown1.Name = "numericUpDown1";
this.numericUpDown1.Size = new System.Drawing.Size(120, 21);
this.numericUpDown1.TabIndex = 4;
//
// numericUpDown2
//
this.numericUpDown2.Location = new System.Drawing.Point(269, 66);
this.numericUpDown2.Name = "numericUpDown2";
this.numericUpDown2.Size = new System.Drawing.Size(120, 21);
this.numericUpDown2.TabIndex = 5;
//
// button3
//
this.button3.Location = new System.Drawing.Point(269, 93);
this.button3.Name = "button3";
this.button3.Size = new System.Drawing.Size(75, 23);
this.button3.TabIndex = 6;
this.button3.Text = "button3";
this.button3.UseVisualStyleBackColor = true;
this.button3.Click += new System.EventHandler(this.button3_Click);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(800, 450);
this.Controls.Add(this.button3);
this.Controls.Add(this.numericUpDown2);
this.Controls.Add(this.numericUpDown1);
this.Controls.Add(this.checkBox1);
this.Controls.Add(this.button2);
this.Controls.Add(this.button1);
this.Name = "Form1";
this.Text = "Form1";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form1_FormClosing);
this.Load += new System.EventHandler(this.Form1_Load);
((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.numericUpDown2)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
......@@ -71,6 +119,10 @@
private System.Windows.Forms.Button button1;
private System.Windows.Forms.Button button2;
private System.Windows.Forms.CheckBox checkBox1;
private System.Windows.Forms.NumericUpDown numericUpDown1;
private System.Windows.Forms.NumericUpDown numericUpDown2;
private System.Windows.Forms.Button button3;
}
}
......@@ -21,13 +21,13 @@ namespace WindowsFormsApp1
private void button1_Click(object sender, EventArgs e)
{
box.IP = "192.168.200.24";
box.Connect();
}
private void Form1_Load(object sender, EventArgs e)
{
box.Upload = true;
//box.Upload = true;
}
private void Form1_FormClosing(object sender, FormClosingEventArgs e)
......@@ -39,5 +39,16 @@ namespace WindowsFormsApp1
{
box.Close();
}
private void checkBox1_CheckedChanged(object sender, EventArgs e)
{
box.WriteDO(Convert.ToInt32(numericUpDown1.Value), checkBox1.Checked ? Asa.IOModule.Box_Sta.On : Asa.IOModule.Box_Sta.Off);
}
private void button3_Click(object sender, EventArgs e)
{
Asa.IOModule.Box_Sta sta = box.ReadDI(Convert.ToInt32(numericUpDown2.Value));
button3.Text = sta == Asa.IOModule.Box_Sta.On ? "ON" : "OFF";
}
}
}
......@@ -50,14 +50,14 @@
是否连接
</summary>
</member>
<member name="P:Asa.IOModule.AIOBOX.MonitorDI">
<member name="P:Asa.IOModule.AIOBOX.InputCount">
<summary>
监控DI输入,索引数组
DI总数
</summary>
</member>
<member name="P:Asa.IOModule.AIOBOX.MonitorDO">
<member name="P:Asa.IOModule.AIOBOX.OutputCount">
<summary>
监控DO输出,索引数组
DO总数
</summary>
</member>
<member name="M:Asa.IOModule.AIOBOX.Connect">
......@@ -151,6 +151,12 @@
<param name="sta"></param>
<returns></returns>
</member>
<member name="M:Asa.IOModule.AIOBOX.GetLocalIP">
<summary>
获取本地IPv4地址
</summary>
<returns></returns>
</member>
<member name="M:Asa.IOModule.AIOBOX.Send">
<summary>
发送命令线程
......
......@@ -8,7 +8,7 @@
</startup>
<log4net>
<appender name="AIOBOX" type="log4net.Appender.RollingFileAppender">
<file value="logs/ACStore-RC29-1.log"/>
<file value="logs/AIOBOX.log"/>
<param name="Encoding" value="UTF-8"/>
<appendToFile value="true"/>
<rollingStyle value="Date"/>
......
[2020-05-19 10:38:26,139][1]INFO Connect
[2020-05-19 10:38:26,189][4]DEBUG Send: 00 01 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:26,241][4]DEBUG Send: 00 02 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:26,292][4]DEBUG Send: 00 03 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:26,343][4]DEBUG Send: 00 04 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:26,394][4]DEBUG Send: 00 05 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:26,445][4]DEBUG Send: 00 06 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:26,496][4]DEBUG Send: 00 07 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:26,547][4]DEBUG Send: 00 08 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:26,598][4]DEBUG Send: 00 09 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:26,649][4]DEBUG Send: 00 0A 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:26,700][4]DEBUG Send: 00 0B 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:26,751][4]DEBUG Send: 00 0C 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:26,802][4]DEBUG Send: 00 0D 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:26,853][4]DEBUG Send: 00 0E 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:26,904][4]DEBUG Send: 00 0F 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:26,955][4]DEBUG Send: 00 10 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:27,006][4]DEBUG Send: 00 11 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:27,057][4]DEBUG Send: 00 12 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:27,108][4]DEBUG Send: 00 13 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:27,159][4]DEBUG Send: 00 14 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:27,210][4]DEBUG Send: 00 15 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:27,261][4]DEBUG Send: 00 16 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:27,312][4]DEBUG Send: 00 17 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:27,363][4]DEBUG Send: 00 18 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:27,414][4]DEBUG Send: 00 19 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:27,465][4]DEBUG Send: 00 1A 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:27,515][4]DEBUG Send: 00 1B 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:27,566][4]DEBUG Send: 00 1C 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:27,617][4]DEBUG Send: 00 1D 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:27,668][4]DEBUG Send: 00 1E 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:27,719][4]DEBUG Send: 00 1F 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:27,770][4]DEBUG Send: 00 20 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:27,821][4]DEBUG Send: 00 21 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:27,872][4]DEBUG Send: 00 22 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:27,923][4]DEBUG Send: 00 23 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:27,974][4]DEBUG Send: 00 24 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:28,025][4]DEBUG Send: 00 25 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:28,076][4]DEBUG Send: 00 26 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:28,126][4]DEBUG Send: 00 27 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:28,177][4]DEBUG Send: 00 28 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:28,228][4]DEBUG Send: 00 29 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:28,279][4]DEBUG Send: 00 2A 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:28,330][4]DEBUG Send: 00 2B 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:28,381][4]DEBUG Send: 00 2C 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:28,432][4]DEBUG Send: 00 2D 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:28,483][4]DEBUG Send: 00 2E 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:28,534][4]DEBUG Send: 00 2F 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:28,585][4]DEBUG Send: 00 30 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:28,636][4]DEBUG Send: 00 31 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:28,687][4]DEBUG Send: 00 32 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:28,738][4]DEBUG Send: 00 33 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:28,789][4]DEBUG Send: 00 34 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:28,840][4]DEBUG Send: 00 35 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:28,891][4]DEBUG Send: 00 36 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:28,942][4]DEBUG Send: 00 37 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:28,993][4]DEBUG Send: 00 38 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:29,044][4]DEBUG Send: 00 39 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:29,095][4]DEBUG Send: 00 3A 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:29,146][4]DEBUG Send: 00 3B 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:29,197][4]DEBUG Send: 00 3C 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:29,248][4]DEBUG Send: 00 3D 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:29,299][4]DEBUG Send: 00 3E 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:29,350][4]DEBUG Send: 00 3F 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:29,401][4]DEBUG Send: 00 40 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:29,452][4]DEBUG Send: 00 41 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:29,503][4]DEBUG Send: 00 42 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:29,554][4]DEBUG Send: 00 43 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:29,605][4]DEBUG Send: 00 44 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:29,656][4]DEBUG Send: 00 45 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:29,707][4]DEBUG Send: 00 46 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:29,758][4]DEBUG Send: 00 47 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:29,809][4]DEBUG Send: 00 48 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:29,860][4]DEBUG Send: 00 49 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:29,911][4]DEBUG Send: 00 4A 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:29,962][4]DEBUG Send: 00 4B 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:30,013][4]DEBUG Send: 00 4C 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:30,064][4]DEBUG Send: 00 4D 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:30,115][4]DEBUG Send: 00 4E 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:30,166][4]DEBUG Send: 00 4F 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:30,217][4]DEBUG Send: 00 50 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:30,268][4]DEBUG Send: 00 51 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:30,319][4]DEBUG Send: 00 52 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:30,370][4]DEBUG Send: 00 53 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:30,421][4]DEBUG Send: 00 54 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:30,472][4]DEBUG Send: 00 55 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:30,523][4]DEBUG Send: 00 56 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:30,574][4]DEBUG Send: 00 57 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:30,625][4]DEBUG Send: 00 58 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:30,676][4]DEBUG Send: 00 59 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:30,727][4]DEBUG Send: 00 5A 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:30,778][4]DEBUG Send: 00 5B 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:30,829][4]DEBUG Send: 00 5C 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:30,880][4]DEBUG Send: 00 5D 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:30,931][4]DEBUG Send: 00 5E 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:30,982][4]DEBUG Send: 00 5F 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:31,033][4]DEBUG Send: 00 60 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:31,084][4]DEBUG Send: 00 61 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:31,135][4]DEBUG Send: 00 62 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:31,186][4]DEBUG Send: 00 63 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:31,237][4]DEBUG Send: 00 64 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:31,288][4]DEBUG Send: 00 65 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:31,339][4]DEBUG Send: 00 66 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:31,390][4]DEBUG Send: 00 67 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:31,441][4]DEBUG Send: 00 68 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:31,492][4]DEBUG Send: 00 69 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:31,543][4]DEBUG Send: 00 6A 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:31,594][4]DEBUG Send: 00 6B 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:31,645][4]DEBUG Send: 00 6C 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:31,696][4]DEBUG Send: 00 6D 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:31,747][4]DEBUG Send: 00 6E 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:31,798][4]DEBUG Send: 00 6F 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:31,849][4]DEBUG Send: 00 70 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:31,900][4]DEBUG Send: 00 71 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:31,951][4]DEBUG Send: 00 72 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:32,002][4]DEBUG Send: 00 73 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:32,053][4]DEBUG Send: 00 74 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:32,104][4]DEBUG Send: 00 75 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:32,155][4]DEBUG Send: 00 76 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:32,206][4]DEBUG Send: 00 77 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:32,257][4]DEBUG Send: 00 78 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:32,308][4]DEBUG Send: 00 79 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:32,359][4]DEBUG Send: 00 7A 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:32,410][4]DEBUG Send: 00 7B 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:32,461][4]DEBUG Send: 00 7C 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:32,512][4]DEBUG Send: 00 7D 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:32,563][4]DEBUG Send: 00 7E 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:32,614][4]DEBUG Send: 00 7F 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:32,665][4]DEBUG Send: 00 80 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:32,716][4]DEBUG Send: 00 81 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:32,767][4]DEBUG Send: 00 82 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:32,818][4]DEBUG Send: 00 83 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:32,869][4]DEBUG Send: 00 84 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:32,920][4]DEBUG Send: 00 85 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:32,971][4]DEBUG Send: 00 86 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:33,022][4]DEBUG Send: 00 87 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:33,073][4]DEBUG Send: 00 88 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:33,124][4]DEBUG Send: 00 89 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:33,175][4]DEBUG Send: 00 8A 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:33,226][4]DEBUG Send: 00 8B 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:33,277][4]DEBUG Send: 00 8C 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:33,328][4]DEBUG Send: 00 8D 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:33,379][4]DEBUG Send: 00 8E 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:33,430][4]DEBUG Send: 00 8F 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:33,481][4]DEBUG Send: 00 90 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:33,532][4]DEBUG Send: 00 91 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:33,583][4]DEBUG Send: 00 92 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:33,634][4]DEBUG Send: 00 93 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:33,685][4]DEBUG Send: 00 94 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:33,736][4]DEBUG Send: 00 95 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:33,787][4]DEBUG Send: 00 96 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:33,838][4]DEBUG Send: 00 97 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:33,889][4]DEBUG Send: 00 98 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:33,940][4]DEBUG Send: 00 99 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:33,991][4]DEBUG Send: 00 9A 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:34,042][4]DEBUG Send: 00 9B 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:34,093][4]DEBUG Send: 00 9C 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:34,144][4]DEBUG Send: 00 9D 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:34,195][4]DEBUG Send: 00 9E 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:34,246][4]DEBUG Send: 00 9F 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:34,297][4]DEBUG Send: 00 A0 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:34,348][4]DEBUG Send: 00 A1 00 00 00 06 FF 02 00 00 00 10
[2020-05-19 10:38:34,399][4]DEBUG Send: 00 A2 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:34,449][4]DEBUG Send: 00 A3 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:34,500][4]DEBUG Send: 00 A4 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:34,551][4]DEBUG Send: 00 A5 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:34,602][4]DEBUG Send: 00 A6 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:34,653][4]DEBUG Send: 00 A7 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:34,704][4]DEBUG Send: 00 A8 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:34,755][4]DEBUG Send: 00 A9 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:34,806][4]DEBUG Send: 00 AA 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:34,857][4]DEBUG Send: 00 AB 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:34,908][4]DEBUG Send: 00 AC 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:34,959][4]DEBUG Send: 00 AD 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:35,010][4]DEBUG Send: 00 AE 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:35,061][4]DEBUG Send: 00 AF 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:35,112][4]DEBUG Send: 00 B0 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:35,163][4]DEBUG Send: 00 B1 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:35,214][4]DEBUG Send: 00 B2 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:35,265][4]DEBUG Send: 00 B3 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:35,316][4]DEBUG Send: 00 B4 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:35,367][4]DEBUG Send: 00 B5 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:35,418][4]DEBUG Send: 00 B6 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:35,469][4]DEBUG Send: 00 B7 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:35,519][4]DEBUG Send: 00 B8 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:35,570][4]DEBUG Send: 00 B9 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:35,621][4]DEBUG Send: 00 BA 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:35,672][4]DEBUG Send: 00 BB 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:35,723][4]DEBUG Send: 00 BC 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:35,774][4]DEBUG Send: 00 BD 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:35,825][4]DEBUG Send: 00 BE 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:35,876][4]DEBUG Send: 00 BF 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:35,927][4]DEBUG Send: 00 C0 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:35,978][4]DEBUG Send: 00 C1 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:36,029][4]DEBUG Send: 00 C2 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:36,080][4]DEBUG Send: 00 C3 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:36,131][4]DEBUG Send: 00 C4 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:36,182][4]DEBUG Send: 00 C5 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:36,233][4]DEBUG Send: 00 C6 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:36,284][4]DEBUG Send: 00 C7 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:36,335][4]DEBUG Send: 00 C8 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:36,386][4]DEBUG Send: 00 C9 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:36,437][4]DEBUG Send: 00 CA 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:36,488][4]DEBUG Send: 00 CB 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:36,539][4]DEBUG Send: 00 CC 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:36,590][4]DEBUG Send: 00 CD 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:36,641][4]DEBUG Send: 00 CE 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:36,692][4]DEBUG Send: 00 CF 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:36,743][4]DEBUG Send: 00 D0 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:36,794][4]DEBUG Send: 00 D1 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:36,845][4]DEBUG Send: 00 D2 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:36,896][4]DEBUG Send: 00 D3 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:36,947][4]DEBUG Send: 00 D4 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:36,998][4]DEBUG Send: 00 D5 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:37,049][4]DEBUG Send: 00 D6 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:37,100][4]DEBUG Send: 00 D7 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:37,151][4]DEBUG Send: 00 D8 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:37,202][4]DEBUG Send: 00 D9 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:37,253][4]DEBUG Send: 00 DA 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:37,304][4]DEBUG Send: 00 DB 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:37,355][4]DEBUG Send: 00 DC 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:37,406][4]DEBUG Send: 00 DD 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:37,457][4]DEBUG Send: 00 DE 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:37,508][4]DEBUG Send: 00 DF 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:37,559][4]DEBUG Send: 00 E0 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:37,610][4]DEBUG Send: 00 E1 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:37,661][4]DEBUG Send: 00 E2 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:37,712][4]DEBUG Send: 00 E3 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:37,763][4]DEBUG Send: 00 E4 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:37,814][4]DEBUG Send: 00 E5 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:37,865][4]DEBUG Send: 00 E6 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:37,916][4]DEBUG Send: 00 E7 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:37,967][4]DEBUG Send: 00 E8 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:38,018][4]DEBUG Send: 00 E9 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:38,069][4]DEBUG Send: 00 EA 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:38,120][4]DEBUG Send: 00 EB 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:38,171][4]DEBUG Send: 00 EC 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:38,222][4]DEBUG Send: 00 ED 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:38,273][4]DEBUG Send: 00 EE 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:38,324][4]DEBUG Send: 00 EF 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:38,375][4]DEBUG Send: 00 F0 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:38,426][4]DEBUG Send: 00 F1 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:38,477][4]DEBUG Send: 00 F2 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:38,528][4]DEBUG Send: 00 F3 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:38,579][4]DEBUG Send: 00 F4 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:38,630][4]DEBUG Send: 00 F5 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:38,681][4]DEBUG Send: 00 F6 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:38,732][4]DEBUG Send: 00 F7 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:38,783][4]DEBUG Send: 00 F8 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:38,834][4]DEBUG Send: 00 F9 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:38,885][4]DEBUG Send: 00 FA 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:38,936][4]DEBUG Send: 00 FB 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:38,987][4]DEBUG Send: 00 FC 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:39,038][4]DEBUG Send: 00 FD 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:39,089][4]DEBUG Send: 00 FE 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:39,140][4]DEBUG Send: 00 FF 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:39,191][4]DEBUG Send: 01 00 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:39,242][4]DEBUG Send: 01 01 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:39,293][4]DEBUG Send: 01 02 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:39,344][4]DEBUG Send: 01 03 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:39,395][4]DEBUG Send: 01 04 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:39,446][4]DEBUG Send: 01 05 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:39,497][4]DEBUG Send: 01 06 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:39,548][4]DEBUG Send: 01 07 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:39,599][4]DEBUG Send: 01 08 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:39,650][4]DEBUG Send: 01 09 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:39,701][4]DEBUG Send: 01 0A 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:39,752][4]DEBUG Send: 01 0B 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:39,803][4]DEBUG Send: 01 0C 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:39,854][4]DEBUG Send: 01 0D 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:39,905][4]DEBUG Send: 01 0E 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:39,956][4]DEBUG Send: 01 0F 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:40,007][4]DEBUG Send: 01 10 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:40,058][4]DEBUG Send: 01 11 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:40,109][4]DEBUG Send: 01 12 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:40,160][4]DEBUG Send: 01 13 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:40,211][4]DEBUG Send: 01 14 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:40,262][4]DEBUG Send: 01 15 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:40,313][4]DEBUG Send: 01 16 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:40,364][4]DEBUG Send: 01 17 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:40,415][4]DEBUG Send: 01 18 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:40,466][4]DEBUG Send: 01 19 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:40,516][4]DEBUG Send: 01 1A 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:40,567][4]DEBUG Send: 01 1B 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:40,618][4]DEBUG Send: 01 1C 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:40,669][4]DEBUG Send: 01 1D 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:40,720][4]DEBUG Send: 01 1E 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:40,771][4]DEBUG Send: 01 1F 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:40,822][4]DEBUG Send: 01 20 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:40,873][4]DEBUG Send: 01 21 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:40,924][4]DEBUG Send: 01 22 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:40,975][4]DEBUG Send: 01 23 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:41,026][4]DEBUG Send: 01 24 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:41,076][4]DEBUG Send: 01 25 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:41,127][4]DEBUG Send: 01 26 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:41,178][4]DEBUG Send: 01 27 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:41,229][4]DEBUG Send: 01 28 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:41,280][4]DEBUG Send: 01 29 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:41,331][4]DEBUG Send: 01 2A 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:41,382][4]DEBUG Send: 01 2B 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:41,433][4]DEBUG Send: 01 2C 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:41,484][4]DEBUG Send: 01 2D 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:41,535][4]DEBUG Send: 01 2E 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:41,586][4]DEBUG Send: 01 2F 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:41,637][4]DEBUG Send: 01 30 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:41,688][4]DEBUG Send: 01 31 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:41,739][4]DEBUG Send: 01 32 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:41,790][4]DEBUG Send: 01 33 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:41,841][4]DEBUG Send: 01 34 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:41,892][4]DEBUG Send: 01 35 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:41,943][4]DEBUG Send: 01 36 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:41,994][4]DEBUG Send: 01 37 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:42,045][4]DEBUG Send: 01 38 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:42,096][4]DEBUG Send: 01 39 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:42,147][4]DEBUG Send: 01 3A 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:42,198][4]DEBUG Send: 01 3B 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:42,249][4]DEBUG Send: 01 3C 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:42,300][4]DEBUG Send: 01 3D 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:42,351][4]DEBUG Send: 01 3E 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:42,402][4]DEBUG Send: 01 3F 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:42,453][4]DEBUG Send: 01 40 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:42,504][4]DEBUG Send: 01 41 00 00 00 06 FF 02 00 00 00 10
[2020-05-19 10:38:42,555][4]DEBUG Send: 01 42 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:42,606][4]DEBUG Send: 01 43 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:42,657][4]DEBUG Send: 01 44 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:42,708][4]DEBUG Send: 01 45 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:42,759][4]DEBUG Send: 01 46 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:42,810][4]DEBUG Send: 01 47 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:42,861][4]DEBUG Send: 01 48 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:42,912][4]DEBUG Send: 01 49 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:42,963][4]DEBUG Send: 01 4A 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:43,014][4]DEBUG Send: 01 4B 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:43,065][4]DEBUG Send: 01 4C 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:43,116][4]DEBUG Send: 01 4D 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:43,167][4]DEBUG Send: 01 4E 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:43,218][4]DEBUG Send: 01 4F 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:43,269][4]DEBUG Send: 01 50 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:43,320][4]DEBUG Send: 01 51 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:43,371][4]DEBUG Send: 01 52 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:43,422][4]DEBUG Send: 01 53 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:43,473][4]DEBUG Send: 01 54 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:43,524][4]DEBUG Send: 01 55 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:43,575][4]DEBUG Send: 01 56 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:43,626][4]DEBUG Send: 01 57 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:43,677][4]DEBUG Send: 01 58 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:43,728][4]DEBUG Send: 01 59 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:43,779][4]DEBUG Send: 01 5A 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:43,830][4]DEBUG Send: 01 5B 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:43,881][4]DEBUG Send: 01 5C 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:43,932][4]DEBUG Send: 01 5D 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:43,983][4]DEBUG Send: 01 5E 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:44,034][4]DEBUG Send: 01 5F 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:44,085][4]DEBUG Send: 01 60 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:44,136][4]DEBUG Send: 01 61 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:44,187][4]DEBUG Send: 01 62 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:44,238][4]DEBUG Send: 01 63 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:44,289][4]DEBUG Send: 01 64 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:44,340][4]DEBUG Send: 01 65 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:44,391][4]DEBUG Send: 01 66 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:44,442][4]DEBUG Send: 01 67 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:44,493][4]DEBUG Send: 01 68 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:44,544][4]DEBUG Send: 01 69 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:44,595][4]DEBUG Send: 01 6A 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:44,646][4]DEBUG Send: 01 6B 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:44,697][4]DEBUG Send: 01 6C 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:44,748][4]DEBUG Send: 01 6D 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:44,799][4]DEBUG Send: 01 6E 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:44,850][4]DEBUG Send: 01 6F 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:44,901][4]DEBUG Send: 01 70 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:44,952][4]DEBUG Send: 01 71 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:45,003][4]DEBUG Send: 01 72 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:45,054][4]DEBUG Send: 01 73 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:45,105][4]DEBUG Send: 01 74 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:45,156][4]DEBUG Send: 01 75 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:45,207][4]DEBUG Send: 01 76 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:45,258][4]DEBUG Send: 01 77 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:45,309][4]DEBUG Send: 01 78 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:45,360][4]DEBUG Send: 01 79 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:45,411][4]DEBUG Send: 01 7A 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:45,462][4]DEBUG Send: 01 7B 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:45,513][4]DEBUG Send: 01 7C 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:45,564][4]DEBUG Send: 01 7D 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:45,615][4]DEBUG Send: 01 7E 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:45,666][4]DEBUG Send: 01 7F 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:45,717][4]DEBUG Send: 01 80 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:45,768][4]DEBUG Send: 01 81 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:45,819][4]DEBUG Send: 01 82 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:45,870][4]DEBUG Send: 01 83 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:45,921][4]DEBUG Send: 01 84 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:45,972][4]DEBUG Send: 01 85 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:46,023][4]DEBUG Send: 01 86 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:46,074][4]DEBUG Send: 01 87 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:46,125][4]DEBUG Send: 01 88 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:46,176][4]DEBUG Send: 01 89 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:46,227][4]DEBUG Send: 01 8A 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:46,278][4]DEBUG Send: 01 8B 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:46,329][4]DEBUG Send: 01 8C 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:46,380][4]DEBUG Send: 01 8D 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:46,431][4]DEBUG Send: 01 8E 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:46,482][4]DEBUG Send: 01 8F 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:46,533][4]DEBUG Send: 01 90 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:46,584][4]DEBUG Send: 01 91 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:46,635][4]DEBUG Send: 01 92 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:46,686][4]DEBUG Send: 01 93 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:46,737][4]DEBUG Send: 01 94 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:46,788][4]DEBUG Send: 01 95 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:46,839][4]DEBUG Send: 01 96 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:46,890][4]DEBUG Send: 01 97 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:46,941][4]DEBUG Send: 01 98 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:46,992][4]DEBUG Send: 01 99 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:47,043][4]DEBUG Send: 01 9A 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:47,094][4]DEBUG Send: 01 9B 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:47,145][4]DEBUG Send: 01 9C 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:47,196][4]DEBUG Send: 01 9D 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:47,247][4]DEBUG Send: 01 9E 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:47,298][4]DEBUG Send: 01 9F 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:47,349][4]DEBUG Send: 01 A0 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:47,400][4]DEBUG Send: 01 A1 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:47,451][4]DEBUG Send: 01 A2 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:47,502][4]DEBUG Send: 01 A3 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:47,553][4]DEBUG Send: 01 A4 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:47,604][4]DEBUG Send: 01 A5 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:47,655][4]DEBUG Send: 01 A6 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:47,706][4]DEBUG Send: 01 A7 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:47,757][4]DEBUG Send: 01 A8 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:47,808][4]DEBUG Send: 01 A9 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:47,859][4]DEBUG Send: 01 AA 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:47,910][4]DEBUG Send: 01 AB 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:47,961][4]DEBUG Send: 01 AC 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:48,012][4]DEBUG Send: 01 AD 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:48,063][4]DEBUG Send: 01 AE 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:48,114][4]DEBUG Send: 01 AF 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:48,165][4]DEBUG Send: 01 B0 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:48,216][4]DEBUG Send: 01 B1 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:48,267][4]DEBUG Send: 01 B2 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:48,318][4]DEBUG Send: 01 B3 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:48,369][4]DEBUG Send: 01 B4 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:48,420][4]DEBUG Send: 01 B5 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:48,471][4]DEBUG Send: 01 B6 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:48,522][4]DEBUG Send: 01 B7 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:48,573][4]DEBUG Send: 01 B8 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:48,624][4]DEBUG Send: 01 B9 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:48,675][4]DEBUG Send: 01 BA 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:48,726][4]DEBUG Send: 01 BB 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:48,777][4]DEBUG Send: 01 BC 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:48,828][4]DEBUG Send: 01 BD 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:48,879][4]DEBUG Send: 01 BE 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:48,930][4]DEBUG Send: 01 BF 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:48,981][4]DEBUG Send: 01 C0 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:49,032][4]DEBUG Send: 01 C1 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:49,083][4]DEBUG Send: 01 C2 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:49,134][4]DEBUG Send: 01 C3 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:49,185][4]DEBUG Send: 01 C4 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:49,236][4]DEBUG Send: 01 C5 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:49,287][4]DEBUG Send: 01 C6 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:49,338][4]DEBUG Send: 01 C7 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:49,389][4]DEBUG Send: 01 C8 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:49,440][4]DEBUG Send: 01 C9 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:49,491][4]DEBUG Send: 01 CA 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:49,542][4]DEBUG Send: 01 CB 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:49,593][4]DEBUG Send: 01 CC 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:49,644][4]DEBUG Send: 01 CD 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:49,695][4]DEBUG Send: 01 CE 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:49,746][4]DEBUG Send: 01 CF 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:49,797][4]DEBUG Send: 01 D0 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:49,848][4]DEBUG Send: 01 D1 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:49,899][4]DEBUG Send: 01 D2 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:49,950][4]DEBUG Send: 01 D3 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:50,001][4]DEBUG Send: 01 D4 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:50,052][4]DEBUG Send: 01 D5 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:50,103][4]DEBUG Send: 01 D6 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:50,154][4]DEBUG Send: 01 D7 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:50,205][4]DEBUG Send: 01 D8 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:50,256][4]DEBUG Send: 01 D9 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:50,307][4]DEBUG Send: 01 DA 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:50,358][4]DEBUG Send: 01 DB 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:50,409][4]DEBUG Send: 01 DC 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:50,460][4]DEBUG Send: 01 DD 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:50,511][4]DEBUG Send: 01 DE 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:50,562][4]DEBUG Send: 01 DF 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:50,613][4]DEBUG Send: 01 E0 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:50,664][4]DEBUG Send: 01 E1 00 00 00 06 FF 02 00 00 00 10
[2020-05-19 10:38:50,715][4]DEBUG Send: 01 E2 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:50,766][4]DEBUG Send: 01 E3 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:50,817][4]DEBUG Send: 01 E4 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:50,868][4]DEBUG Send: 01 E5 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:50,919][4]DEBUG Send: 01 E6 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:50,970][4]DEBUG Send: 01 E7 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:51,021][4]DEBUG Send: 01 E8 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:51,072][4]DEBUG Send: 01 E9 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:51,123][4]DEBUG Send: 01 EA 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:51,174][4]DEBUG Send: 01 EB 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:51,225][4]DEBUG Send: 01 EC 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:51,276][4]DEBUG Send: 01 ED 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:51,327][4]DEBUG Send: 01 EE 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:51,378][4]DEBUG Send: 01 EF 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:51,429][4]DEBUG Send: 01 F0 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:51,480][4]DEBUG Send: 01 F1 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:51,531][4]DEBUG Send: 01 F2 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:51,582][4]DEBUG Send: 01 F3 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:51,633][4]DEBUG Send: 01 F4 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:51,684][4]DEBUG Send: 01 F5 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:51,735][4]DEBUG Send: 01 F6 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:51,786][4]DEBUG Send: 01 F7 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:51,837][4]DEBUG Send: 01 F8 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:51,888][4]DEBUG Send: 01 F9 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:51,939][4]DEBUG Send: 01 FA 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:51,990][4]DEBUG Send: 01 FB 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:52,041][4]DEBUG Send: 01 FC 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:52,092][4]DEBUG Send: 01 FD 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:52,143][4]DEBUG Send: 01 FE 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:52,194][4]DEBUG Send: 01 FF 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:52,245][4]DEBUG Send: 02 00 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:52,296][4]DEBUG Send: 02 01 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:52,347][4]DEBUG Send: 02 02 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:52,398][4]DEBUG Send: 02 03 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:52,449][4]DEBUG Send: 02 04 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:52,500][4]DEBUG Send: 02 05 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:52,551][4]DEBUG Send: 02 06 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:52,602][4]DEBUG Send: 02 07 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:52,653][4]DEBUG Send: 02 08 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:52,704][4]DEBUG Send: 02 09 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:52,755][4]DEBUG Send: 02 0A 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:52,806][4]DEBUG Send: 02 0B 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:52,857][4]DEBUG Send: 02 0C 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:52,908][4]DEBUG Send: 02 0D 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:52,959][4]DEBUG Send: 02 0E 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:53,010][4]DEBUG Send: 02 0F 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:53,061][4]DEBUG Send: 02 10 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:53,112][4]DEBUG Send: 02 11 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:53,163][4]DEBUG Send: 02 12 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:53,214][4]DEBUG Send: 02 13 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:53,265][4]DEBUG Send: 02 14 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:53,316][4]DEBUG Send: 02 15 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:53,367][4]DEBUG Send: 02 16 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:53,418][4]DEBUG Send: 02 17 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:53,469][4]DEBUG Send: 02 18 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:53,520][4]DEBUG Send: 02 19 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:53,571][4]DEBUG Send: 02 1A 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:53,622][4]DEBUG Send: 02 1B 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:53,673][4]DEBUG Send: 02 1C 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:53,724][4]DEBUG Send: 02 1D 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:53,775][4]DEBUG Send: 02 1E 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:53,826][4]DEBUG Send: 02 1F 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:53,877][4]DEBUG Send: 02 20 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:53,928][4]DEBUG Send: 02 21 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:53,979][4]DEBUG Send: 02 22 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:54,030][4]DEBUG Send: 02 23 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:54,081][4]DEBUG Send: 02 24 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:54,132][4]DEBUG Send: 02 25 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:54,183][4]DEBUG Send: 02 26 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:54,234][4]DEBUG Send: 02 27 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:54,285][4]DEBUG Send: 02 28 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:54,336][4]DEBUG Send: 02 29 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:54,387][4]DEBUG Send: 02 2A 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:54,438][4]DEBUG Send: 02 2B 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:54,489][4]DEBUG Send: 02 2C 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:54,540][4]DEBUG Send: 02 2D 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:54,591][4]DEBUG Send: 02 2E 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:54,642][4]DEBUG Send: 02 2F 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:54,693][4]DEBUG Send: 02 30 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:54,744][4]DEBUG Send: 02 31 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:54,795][4]DEBUG Send: 02 32 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:54,846][4]DEBUG Send: 02 33 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:54,897][4]DEBUG Send: 02 34 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:54,948][4]DEBUG Send: 02 35 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:54,999][4]DEBUG Send: 02 36 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:55,050][4]DEBUG Send: 02 37 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:55,101][4]DEBUG Send: 02 38 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:55,152][4]DEBUG Send: 02 39 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:55,203][4]DEBUG Send: 02 3A 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:55,254][4]DEBUG Send: 02 3B 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:55,305][4]DEBUG Send: 02 3C 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:55,356][4]DEBUG Send: 02 3D 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:55,407][4]DEBUG Send: 02 3E 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:55,458][4]DEBUG Send: 02 3F 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:55,509][4]DEBUG Send: 02 40 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:55,560][4]DEBUG Send: 02 41 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:55,611][4]DEBUG Send: 02 42 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:55,662][4]DEBUG Send: 02 43 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:55,713][4]DEBUG Send: 02 44 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:55,764][4]DEBUG Send: 02 45 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:55,815][4]DEBUG Send: 02 46 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:55,866][4]DEBUG Send: 02 47 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:55,917][4]DEBUG Send: 02 48 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:55,968][4]DEBUG Send: 02 49 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:56,019][4]DEBUG Send: 02 4A 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:56,070][4]DEBUG Send: 02 4B 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:56,121][4]DEBUG Send: 02 4C 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:56,172][4]DEBUG Send: 02 4D 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:56,223][4]DEBUG Send: 02 4E 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:56,274][4]DEBUG Send: 02 4F 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:56,325][4]DEBUG Send: 02 50 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:56,376][4]DEBUG Send: 02 51 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:56,427][4]DEBUG Send: 02 52 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:56,478][4]DEBUG Send: 02 53 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:56,529][4]DEBUG Send: 02 54 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:56,580][4]DEBUG Send: 02 55 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:56,631][4]DEBUG Send: 02 56 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:56,682][4]DEBUG Send: 02 57 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:56,733][4]DEBUG Send: 02 58 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:56,784][4]DEBUG Send: 02 59 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:56,835][4]DEBUG Send: 02 5A 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:56,886][4]DEBUG Send: 02 5B 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:56,937][4]DEBUG Send: 02 5C 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:56,988][4]DEBUG Send: 02 5D 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:57,039][4]DEBUG Send: 02 5E 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:57,090][4]DEBUG Send: 02 5F 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:57,141][4]DEBUG Send: 02 60 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:57,192][4]DEBUG Send: 02 61 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:57,243][4]DEBUG Send: 02 62 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:57,294][4]DEBUG Send: 02 63 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:57,345][4]DEBUG Send: 02 64 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:57,396][4]DEBUG Send: 02 65 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:57,447][4]DEBUG Send: 02 66 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:57,498][4]DEBUG Send: 02 67 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:57,549][4]DEBUG Send: 02 68 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:57,600][4]DEBUG Send: 02 69 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:57,651][4]DEBUG Send: 02 6A 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:57,702][4]DEBUG Send: 02 6B 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:57,753][4]DEBUG Send: 02 6C 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:57,804][4]DEBUG Send: 02 6D 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:57,855][4]DEBUG Send: 02 6E 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:57,906][4]DEBUG Send: 02 6F 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:57,957][4]DEBUG Send: 02 70 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:58,008][4]DEBUG Send: 02 71 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:58,059][4]DEBUG Send: 02 72 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:58,110][4]DEBUG Send: 02 73 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:58,161][4]DEBUG Send: 02 74 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:58,212][4]DEBUG Send: 02 75 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:58,263][4]DEBUG Send: 02 76 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:58,314][4]DEBUG Send: 02 77 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:58,365][4]DEBUG Send: 02 78 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:58,416][4]DEBUG Send: 02 79 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:58,467][4]DEBUG Send: 02 7A 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:58,518][4]DEBUG Send: 02 7B 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:58,569][4]DEBUG Send: 02 7C 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:58,620][4]DEBUG Send: 02 7D 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:58,671][4]DEBUG Send: 02 7E 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:58,722][4]DEBUG Send: 02 7F 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:58,773][4]DEBUG Send: 02 80 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:58,824][4]DEBUG Send: 02 81 00 00 00 06 FF 02 00 00 00 10
[2020-05-19 10:38:58,875][4]DEBUG Send: 02 82 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:58,926][4]DEBUG Send: 02 83 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:58,977][4]DEBUG Send: 02 84 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:59,028][4]DEBUG Send: 02 85 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:59,079][4]DEBUG Send: 02 86 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:59,130][4]DEBUG Send: 02 87 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:59,181][4]DEBUG Send: 02 88 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:59,232][4]DEBUG Send: 02 89 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:59,283][4]DEBUG Send: 02 8A 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:59,334][4]DEBUG Send: 02 8B 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:59,385][4]DEBUG Send: 02 8C 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:59,436][4]DEBUG Send: 02 8D 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:59,487][4]DEBUG Send: 02 8E 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:59,538][4]DEBUG Send: 02 8F 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:59,589][4]DEBUG Send: 02 90 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:59,640][4]DEBUG Send: 02 91 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:59,691][4]DEBUG Send: 02 92 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:59,742][4]DEBUG Send: 02 93 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:59,793][4]DEBUG Send: 02 94 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:59,844][4]DEBUG Send: 02 95 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:59,895][4]DEBUG Send: 02 96 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:59,946][4]DEBUG Send: 02 97 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:38:59,997][4]DEBUG Send: 02 98 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:00,048][4]DEBUG Send: 02 99 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:00,099][4]DEBUG Send: 02 9A 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:00,150][4]DEBUG Send: 02 9B 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:00,201][4]DEBUG Send: 02 9C 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:00,252][4]DEBUG Send: 02 9D 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:00,303][4]DEBUG Send: 02 9E 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:00,354][4]DEBUG Send: 02 9F 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:00,405][4]DEBUG Send: 02 A0 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:00,456][4]DEBUG Send: 02 A1 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:00,507][4]DEBUG Send: 02 A2 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:00,558][4]DEBUG Send: 02 A3 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:00,609][4]DEBUG Send: 02 A4 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:00,660][4]DEBUG Send: 02 A5 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:00,711][4]DEBUG Send: 02 A6 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:00,762][4]DEBUG Send: 02 A7 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:00,813][4]DEBUG Send: 02 A8 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:00,864][4]DEBUG Send: 02 A9 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:00,915][4]DEBUG Send: 02 AA 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:00,966][4]DEBUG Send: 02 AB 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:01,017][4]DEBUG Send: 02 AC 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:01,068][4]DEBUG Send: 02 AD 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:01,119][4]DEBUG Send: 02 AE 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:01,170][4]DEBUG Send: 02 AF 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:01,221][4]DEBUG Send: 02 B0 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:01,272][4]DEBUG Send: 02 B1 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:01,323][4]DEBUG Send: 02 B2 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:01,374][4]DEBUG Send: 02 B3 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:01,425][4]DEBUG Send: 02 B4 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:01,476][4]DEBUG Send: 02 B5 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:01,527][4]DEBUG Send: 02 B6 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:01,578][4]DEBUG Send: 02 B7 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:01,629][4]DEBUG Send: 02 B8 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:01,680][4]DEBUG Send: 02 B9 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:01,731][4]DEBUG Send: 02 BA 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:01,782][4]DEBUG Send: 02 BB 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:01,833][4]DEBUG Send: 02 BC 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:01,884][4]DEBUG Send: 02 BD 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:01,935][4]DEBUG Send: 02 BE 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:01,986][4]DEBUG Send: 02 BF 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:02,037][4]DEBUG Send: 02 C0 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:02,088][4]DEBUG Send: 02 C1 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:02,139][4]DEBUG Send: 02 C2 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:02,190][4]DEBUG Send: 02 C3 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:02,241][4]DEBUG Send: 02 C4 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:02,292][4]DEBUG Send: 02 C5 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:02,343][4]DEBUG Send: 02 C6 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:02,394][4]DEBUG Send: 02 C7 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:02,445][4]DEBUG Send: 02 C8 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:02,496][4]DEBUG Send: 02 C9 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:02,547][4]DEBUG Send: 02 CA 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:02,598][4]DEBUG Send: 02 CB 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:02,649][4]DEBUG Send: 02 CC 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:02,700][4]DEBUG Send: 02 CD 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:02,751][4]DEBUG Send: 02 CE 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:02,802][4]DEBUG Send: 02 CF 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:02,853][4]DEBUG Send: 02 D0 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:02,904][4]DEBUG Send: 02 D1 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:02,955][4]DEBUG Send: 02 D2 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:03,006][4]DEBUG Send: 02 D3 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:03,057][4]DEBUG Send: 02 D4 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:03,108][4]DEBUG Send: 02 D5 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:03,159][4]DEBUG Send: 02 D6 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:03,210][4]DEBUG Send: 02 D7 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:03,261][4]DEBUG Send: 02 D8 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:03,312][4]DEBUG Send: 02 D9 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:03,363][4]DEBUG Send: 02 DA 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:03,414][4]DEBUG Send: 02 DB 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:03,465][4]DEBUG Send: 02 DC 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:03,516][4]DEBUG Send: 02 DD 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:03,567][4]DEBUG Send: 02 DE 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:03,618][4]DEBUG Send: 02 DF 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:03,669][4]DEBUG Send: 02 E0 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:03,720][4]DEBUG Send: 02 E1 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:03,771][4]DEBUG Send: 02 E2 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:03,822][4]DEBUG Send: 02 E3 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:03,873][4]DEBUG Send: 02 E4 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:03,924][4]DEBUG Send: 02 E5 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:03,975][4]DEBUG Send: 02 E6 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:04,026][4]DEBUG Send: 02 E7 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:04,077][4]DEBUG Send: 02 E8 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:04,128][4]DEBUG Send: 02 E9 00 00 00 06 FF 01 00 10 00 10
[2020-05-19 10:39:04,172][1]INFO Close

\ No newline at end of file
此文件的差异太大,无法显示。
支持 Markdown 格式
你添加了 0 到此讨论。请谨慎行事。
Finish editing this message first!