1
0
mirror of https://github.com/zhaopeiym/IoTClient synced 2025-10-26 22:15:44 +08:00

新增 ModBusRtu实现、串口调试

This commit is contained in:
BennyZhao
2019-11-02 10:24:04 +08:00
parent 5092e857b0
commit 96542221ec
60 changed files with 11082 additions and 6 deletions

22
IoTClient.Tool/Program.cs Normal file
View File

@@ -0,0 +1,22 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace IoTClient.Tool
{
static class Program
{
/// <summary>
/// 应用程序的主入口点。
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new IndexForm());
}
}
}