串口操作库 Windup.SerialTalker

码农软件 · 软件分类 · 常用工具包 · 2019-08-17 18:43:59

软件介绍

Windup.SerialTalker 是基于 C# 的串口操作库,简洁的声明,方便的应用协议扩展。

示例代码:

var talker = new Talker () {
    PortName = "COM3",
    BaudRate = 9600,
    LineBreak = new LineBreak () { //set linebreak type
        Type = "nt",
    },
    Proc = list => { // data arrived process method(important)
        var str = string.Empty;        
        foreach (var i in list) {
        var ch = (char)i;
            str += ch;
        }
        Console.WriteLine ("echo str: {0}", str);
    }
};


本文地址:https://codercto.com/soft/d/12583.html

Software Engineering for Internet Applications

Software Engineering for Internet Applications

Eve Andersson、Philip Greenspun、Andrew Grumet / The MIT Press / 2006-03-06 / USD 35.00

After completing this self-contained course on server-based Internet applications software, students who start with only the knowledge of how to write and debug a computer program will have learned ho......一起来看看 《Software Engineering for Internet Applications》 这本书的介绍吧!

CSS 压缩/解压工具
CSS 压缩/解压工具

在线压缩/解压 CSS 代码

XML 在线格式化
XML 在线格式化

在线 XML 格式化压缩工具

html转js在线工具
html转js在线工具

html转js在线工具