资源简介
对COM发送指令并返回数据
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.IO.Ports;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
namespace SerialPortReceiveData
{
class Program
{
static void Main(string[] args)
{
float f1 = -0.970000f;
float f2 = -0.130000f;
Console.Write(f1);
Console.Write(‘=‘);
byte[] b1 = BitConverter.GetBytes(f1);
ConsoleBytes(b1);
Console.WriteLine();
Console.Write(f2);
Console.Write(‘=‘);
byte[] b2 = BitConverter.GetBytes(f2);
ConsoleBytes(b2);
Console.WriteLine();
byte[] byteFloat = { 0x02 0x03 0x04 0xff 0xc3 0x00 0x00 0x09 0x1b };
float fd = BitConverter.ToSingle(byteFloat 0);
ConsoleBytes(byteFloat);
Console.Write(‘=‘);
Console.WriteLine(fd);
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1362 2019-07-08 17:07 Properties\AssemblyInfo.cs
文件 189 2019-07-08 17:07 App.config
文件 4350 2019-07-12 13:50 Program.cs
文件 2585 2019-07-08 17:07 SerialPortReceiveData.csproj
文件 288 2019-07-12 10:50 SerialPortReceiveData.csproj.user
目录 0 2019-07-08 17:07 Properties
----------- --------- ---------- ----- ----
8774 6
- 上一篇:Windows7WIFI热点设置器
- 下一篇:C# 环境变量设置
相关资源
- pop3lib类库 +(这个不错) 附完整
- 基于com串口的文件发送和接收
- ztree应用
- 工作上
- MongoDB
- 非Com形式 创建 桌面快捷方式
- DCOM授权
- wpf gridsplit 布局
- Jsonp跨域登录 (同步登录 同步退出)
- 随机线条拼图
- C# 批量重命名文件名
- winds服务,发送邮件且禁用违法规则的
- VS批注批量修改CommentHelper
- C# 域名whois批量查询工具(检测是否注
- UART_veryhuo.com
- C# command模式 入门级
- RTX IM API 调用
- android mvp 入门级 实例源码下载14550
- C# 远程关闭重启计算机 实例源码下载
- nVelocity 模板引擎
- MCC
- c#代码
- joystick,百分比可以读
- winform调用webservice
- camera
- COMMonitor
- Com 基于C#语言的一个串口通信上位机
- tin 用C#编的三角网生成算法。操作方
- OPCClient c#写的opc客户端
- 06
评论
共有 条评论