查看“ProtocolSer.write()”的源代码
←
ProtocolSer.write()
跳转至:
导航
、
搜索
因为以下原因,您没有权限编辑本页:
您所请求的操作仅限于该用户组的用户使用:
用户
您可以查看与复制此页面的源代码。
{| style="width: 800px;" |- | <p style="color: #666666;font-size:220%">'''ProtocolSer.write(uint8_t cmd, uint8_t *_data, uint8_t _len);'''</p> <br> <p style="color: #E87E05;font-size:135%">描述</p> 发送数据,将数组_data[]中的数据发送出去,长度为_len,并发送指令数据_cmd <br> 需要调用<code style="color: #E87E05">#include <Microduino_Protocol.h></code>头文件。 <br> <br> <p style="color: #E87E05;font-size:135%">参数</p> *'''*_cmd''':指令 *'''*_data''':存放数据的数组,数据为 uint8_t类型,一个字节 *'''_len''':数据长度 <br> <br> <p style="color: #E87E05;font-size:135%">返回值</p> 函数无返回值 <br> <br> <p style="color: #E87E05;font-size:135%">示例</p> <source lang="c++"> /* [head,2byte,0xAA 0xBB] [type,1byte,TYPE_NUM] [data,16byte] [body,1byte,getChecksum()] Example: AA BB C8 DC 05 DC 05 D0 07 EF 03 DC 05 DC 05 DC 05 DC 05 E3 */ #include <Microduino_Protocol.h> //Core UART Port: [SoftSerial] [D2,D3] #if defined (__AVR_ATmega168__) || defined (__AVR_ATmega328__) || defined (__AVR_ATmega328P__) || defined(__AVR_ATmega32U4__) #include <SoftwareSerial.h> SoftwareSerial mySerial(2, 3); /* RX:D2, TX:D3 */ #define ProSerial mySerial #endif //Core+ UART Port: [Serial1] [D2,D3] #if defined(__AVR_ATmega1284P__) || defined (__AVR_ATmega644P__) || defined(__AVR_ATmega128RFA1__) #define ProSerial Serial1 #endif ProtocolSer protocol(&ProSerial, 16); //采用ProSerial,数据长度为16个字节 uint16_t sendData[8] = {1500, 1500, 1500, 1500, 1000, 1000, 1000, 1000}; uint32_t sendTime; void setup() { Serial.begin(9600); protocol.begin(9600); //9600/19200/38400 sendTime = millis(); } void loop() { if(millis() - sendTime > 1000) { sendTime = millis(); protocol.write(0x01, (uint8_t *)sendData, 16); Serial.println("protocol send !"); } delay(10); } </source> <p style="color: #E87E05;font-size:135%">其他</p> *[[ProtocolSer.begin()|begin()]] *[[ProtocolSer.available()|available()]] *[[ProtocolSer.readBytes()|readBytes()]] *[[ProtocolSer.readWords()|readWords()]] |} <br> <br> <p style="font-size:115%">[[Protocol_Reference|返回Protocol_Reference界面]]</p>
返回至
ProtocolSer.write()
。
导航菜单
个人工具
创建账户
登录
名字空间
页面
讨论
变种
视图
阅读
查看源代码
查看历史
更多
搜索
Welcome
首页
创客大赛
大赛详情
3D打印
安装月球车
图形化编程
操控月球车
升级月球车
编程工具下载
软件下载
Arduino
Processing
Mixly
Scratch
模块套件
Microduino 102
mCookie 102
mCookie 202
mCookie 302
IBC
其他
应用套件
四轴飞行器
平衡车
小车CUBE
音乐播放器
刷卡音乐播放器
wifi气象站
彩虹音乐触摸灯
分贝检测仪
迎门汇报
LED点阵时钟
LED点阵屏幕
硬件
mCookie
Sensor
Microduino
MicroWrt
MicroNux
MicroRobot-Core
MicroRobot-CoreESP
ideaBoard
ideaBox
MicroMV
MicroAI
帮助
常见问题
帮助
工具
链入页面
相关更改
特殊页面
页面信息