资源简介
基于C#的固定设备物联网小程序,采用OneNet平台进行通信,实测通过,分享出来,大家一起交流。
基于C#的固定设备物联网小程序,采用OneNet平台进行通信,实测通过,分享出来,大家一起交流。
基于C#的固定设备物联网小程序,采用OneNet平台进行通信,实测通过,分享出来,大家一起交流。
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.IO;
using System.Runtime.InteropServices;
using System.Windows.Forms;
using System.Threading;
using System.IO.Ports;
using System.Net.Sockets;
using System.Net;
using System.Reflection;
using System.Collections.Specialized;
namespace Catcher
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
timertemp1 = new System.Timers.Timer(2000);
timertemp1.AutoReset = true;
timertemp1.Elapsed += new System.Timers.ElapsedEventHandler(timertemp1_Elapsed);
CheckForIllegalCrossThreadCalls = false;
}
private System.Timers.Timer timertemp1;//面向设备定时器
void timertemp1_Elapsed(object sender System.Timers.ElapsedEventArgs e)
{
Ask();
Post();
}//定时器事件
private void Form1_Load(object sender EventArgs e)
{
}//界面载入
TcpClient tcpclient = new TcpClient();
bool zt = false;
#region 网络监听
public void conn()
{
try
{
int port = Convert.ToInt32(textBox2.Text);
tcpclient.Connect(IPAddress.Parse(textBox1.Text) port);
textBox6.Text = “已成功连接!“;
button1.Text = “断开“;
zt = true;
Thread threadRead = new Thread(Listingsever);
threadRead.Start();
}
catch (Exception ex)
{
MessageBox.Show(ex.Message “错误“ MessageBoxButtons.OK MessageBoxIcon.Error);
}
}//网络连接
int[] received = new int[40];//int32串数组
string Creceived = null;//字符串数组
byte[] buffer = new byte[256];//字节接收缓存区
byte[] buffer1 = new byte[256];//转接字节数组
string[] aArray = new string[256];//显示数组
string state01 = “0“;
byte[] head = new byte[1];//接收信息头字符
public void Listingsever()
{
while (zt)
{
NetworkStream ns = tcpclient.GetStream();
ns = tcpclient.GetStream();
ns.Read(buffer 0 buffer.Length);
Creceived = System.Text.Encoding.ASCII.GetString(buffer) + “ “;//将字节流转为字符串
textBox4.Text = (“接收到的信息:“ + Creceived);//显示接收数据
state01 = Creceived.Substring(22 1);//从第23位开始截取1位 @@当前机柜状态值@@
head = System.Text.Encoding.ASCII.GetBytes(Creceived.Substring(0 1));//截取头字符
if (head[0] == 2)
{
if (state01 == “$“)
{
textBox3.Text = “off“;
}
else if (state01 == “#“)
{
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2018-11-23 14:06 远程监控\
目录 0 2018-11-23 14:06 远程监控\Catcher\
目录 0 2018-11-23 14:06 远程监控\Catcher\.git\
文件 2581 2018-11-23 10:40 远程监控\Catcher\.gitattributes
文件 4565 2018-11-23 10:40 远程监控\Catcher\.gitignore
文件 40 2018-11-23 10:40 远程监控\Catcher\.git\COMMIT_EDITMSG
文件 722 2018-11-23 10:40 远程监控\Catcher\.git\config
文件 73 2018-11-23 10:40 远程监控\Catcher\.git\desc
文件 23 2018-11-23 10:40 远程监控\Catcher\.git\HEAD
目录 0 2018-11-23 14:06 远程监控\Catcher\.git\hooks\
文件 478 2018-11-23 10:40 远程监控\Catcher\.git\hooks\applypatch-msg.sample
文件 896 2018-11-23 10:40 远程监控\Catcher\.git\hooks\commit-msg.sample
文件 3327 2018-11-23 10:40 远程监控\Catcher\.git\hooks\fsmonitor-watchman.sample
文件 189 2018-11-23 10:40 远程监控\Catcher\.git\hooks\post-update.sample
文件 424 2018-11-23 10:40 远程监控\Catcher\.git\hooks\pre-applypatch.sample
文件 1642 2018-11-23 10:40 远程监控\Catcher\.git\hooks\pre-commit.sample
文件 1348 2018-11-23 10:40 远程监控\Catcher\.git\hooks\pre-push.sample
文件 4898 2018-11-23 10:40 远程监控\Catcher\.git\hooks\pre-reba
文件 544 2018-11-23 10:40 远程监控\Catcher\.git\hooks\pre-receive.sample
文件 1239 2018-11-23 10:40 远程监控\Catcher\.git\hooks\prepare-commit-msg.sample
文件 3610 2018-11-23 10:40 远程监控\Catcher\.git\hooks\update.sample
文件 1318 2018-11-23 10:40 远程监控\Catcher\.git\index
目录 0 2018-11-23 14:06 远程监控\Catcher\.git\info\
文件 240 2018-11-23 10:40 远程监控\Catcher\.git\info\exclude
目录 0 2018-11-23 14:06 远程监控\Catcher\.git\logs\
文件 193 2018-11-23 10:40 远程监控\Catcher\.git\logs\HEAD
目录 0 2018-11-23 14:06 远程监控\Catcher\.git\logs\refs\
目录 0 2018-11-23 14:06 远程监控\Catcher\.git\logs\refs\heads\
文件 193 2018-11-23 10:40 远程监控\Catcher\.git\logs\refs\heads\master
目录 0 2018-11-23 14:06 远程监控\Catcher\.git\ob
目录 0 2018-11-23 14:06 远程监控\Catcher\.git\ob
............此处省略196个文件信息
相关资源
- C# 调用win32 api函数-user32.dll详细说明
- C# 调用BarTender打印条码DEMO
- 大型比赛竞赛抽签系统 可打印 c# vs
- C#编写的Gerber查看器
- lua C# .Net4.0 vs2010 LuaInterface
- C#十六进制编辑器
- 明华URF-35H读卡器 C#读写源码 为大家
- C#文件流读取CSV文件
- c#读写PDF文件sql
- C# winform Socket大文件传输
- c#车牌识别系统附30张测试图片
- 《C#面向对象程序设计》源代码(CS)
- 金旭亮《C#面向对象程序设计》教案
- 试题库管理系统毕业论文(C#)源程序
- 学校网站原代码(C#.NET)
- C#-数据库操作技术-员工管理系统
- c#web开发入门经典
- C#与Matlab混合编程的几种方式
- c# 开发与 mysql数据库实现的增删改查
- C#异步操作 异步查询数据库 异步处理
- Basler相机通过IO触发源码
- [源代码] 《领域驱动设计 (C# 2008 实
- 松下PLC与C#通讯串口调试入门教程.z
- USB 继电器控制器 LCUS-1 保证能用 c#
- C# AES加密解密小工具
- C#圆形按钮,非常漂亮动态~~
- [精]C#仿QQ右下角弹出提示框()
- C#进程间通信-共享内存代码
- 有史以来最简单的三层(C#)
- vb调用c#编写的串口DLL文件(vb源码
评论
共有 条评论