大约有 2,100 项符合查询结果(耗时:0.0053秒) [XML]

https://bbs.tsingfun.com/thread-1784-1-1.html 

APP INVENTOR硬件交互学习教程04——蓝牙控制继电器 - 创客硬件开发 - 清泛...

...、板子程序 串口接收字符,并输出控制继电器 // 引脚定义 const int ledPin1 =  5;// the number of the LED pin const int ledPin2 =  6; const int ledPin3 =  3; const int bluePin =  6;// the number of the LED pin const int greenPin = &...
https://bbs.tsingfun.com/thread-1792-1-1.html 

APP INVENTOR硬件交互学习教程06——硬件参数上报 - 创客硬件开发 - 清泛IT...

... 增加接收处理和显示判断 3.arduino nano代码 // 引脚定义 const int ledPin1 =  5;// the number of the LED pin const int ledPin2 =  6; const int ledPin3 =  3; const int bluePin =  6;// the number of the LED pin const int greenPin = &n...
https://bbs.tsingfun.com/thread-1794-1-1.html 

APP INVENTOR硬件交互学习教程07——多个参数上报 - 创客硬件开发 - 清泛IT...

... 3.arduino nano代码,温度和电位计使用随机数生成 // 引脚定义 const int ledPin1 =  5;// the number of the LED pin const int ledPin2 =  6; const int ledPin3 =  3; const int bluePin =  6;// the number of the LED pin const int greenPin = ...
https://bbs.tsingfun.com/thread-1993-1-1.html 

界面很多按钮时,如何获取当前被点击的按钮的文本? - App Inventor 2 中文...

...: 另外,要输入每次累计点击的数值,可以考虑定义一个文本变量把每次的文本拼接上。 开发计算器App的话,通常做法定义一个前值,一个后值,当按下符号后进行切换,最终前值、符号、后值就能计算最终结果了。 ...
https://bbs.tsingfun.com/thread-2639-1-1.html 

【二进制】UrsAI2ByteArray 字节数组扩展:读写二进制数据,二进制文件读写...

...32位数字[0..4,294,967,296]) 对于AddWord和AddDWord,MsbFirst属性定义了字节添加到数组的顺序(字节序)。可以使用Append方法将另一个字节数组的内容添加到数组中。Fill函数用指定数量的指定值元素填充数组。InsertByteAt函数在指定位...
https://www.tsingfun.com/it/tech/659.html 

ros 基本调试 - 更多技术 - 清泛网 - 专注C/C++及内核技术

..."调试功能,"ros类型"有如下特点: • 每个文件通常都定义了verbosity级别。 • 一共只有两个消息级别。 1. 总是可用(DPRINT1) 2. 仅当NDEBUG未被定义时才可用(DPRINT) 通过下面这两行代码,遵循以上特点的文件可以被轻易...
https://www.tsingfun.com/it/tech/1239.html 

软件测试中的性能测试、负载测试、压力测试 - 更多技术 - 清泛网 - 专注C/C...

...压力测试(Stress Test)。这三种效率测试类型,不仅在具体定义上面有不同的侧重点,同时相互之间又是密切关联的。 1)性能测试 性能测试主要评价系统或组件的性能是否和具体的性能需求一致,例如:对访问速度的性能需求或...
https://www.tsingfun.com/it/cpp/1878.html 

重构理论及实践——用工厂模式重构c++后台代码 - C/C++ - 清泛网 - 专注C/C...

...w出对应的MsgProcessor类。 3)而真正干活的MsgProcessor的定义如下。由于在C++里没有接口一说,所以这里用纯虚函数的方式,定义出来类似接口的纯虚基类。而原来ServerCenter中的各种公共资源,如各种连接资源和收发包的缓冲,...
https://www.tsingfun.com/ilife/tech/1000.html 

大数据:用数据指导APP运营 - 资讯 - 清泛网 - 专注C/C++及内核技术

...我也不知道进阶篇能说到啥程度,但先说着吧。1 数据的定义...数据问题一直是很多运营人员头疼的问题。之前的回答说了一些,但都没有展开说,我也不知道进阶篇能说到啥程度,但先说着吧。 1 数据的定义 数据,其实就是...
https://www.tsingfun.com/it/cpp/1343.html 

libevent+protobuf轻松搭建tcpserver - C/C++ - 清泛网 - 专注C/C++及内核技术

...)请求 request_t req; // 请求的数据结构(通过protobuf定义) response_t res; // 回应的数据结构(通过protobuf定义) // 调用处理函数对request进行处理,并把结果写到response中 req.ParseFromArray((const void*)client->data, client...