首页 > 代码库 > QT 串口通信 数据16进制发送
QT 串口通信 数据16进制发送
在QT中进行串口通信时,很多情况要用到发送16进制的数据。从网上找来了一段代码测试能用:
static QByteArray QString2Hex(QString str) { QByteArray senddata; int hexdata,lowhexdata; int hexdatalen = 0; int len = str.length(); senddata.resize(len/2); char lstr,hstr; for(int i=0; i<len; ) { hstr=str[i].toAscii(); if(hstr == ‘ ‘) { i++; continue; } i++; if(i >= len) break; lstr = str[i].toAscii(); hexdata = ConvertHexChar(hstr); lowhexdata = ConvertHexChar(lstr); if((hexdata =http://www.mamicode.com/= 16) || (lowhexdata =http://www.mamicode.com/= 16)) break; else hexdata = hexdata*16+lowhexdata; i++; senddata[hexdatalen] = (char)hexdata; hexdatalen++; } senddata.resize(hexdatalen); return senddata; }static char ConvertHexChar(char ch) { if((ch >= ‘0‘) && (ch <= ‘9‘)) return ch-0x30; else if((ch >= ‘A‘) && (ch <= ‘F‘)) return ch-‘A‘+10; else if((ch >= ‘a‘) && (ch <= ‘f‘)) return ch-‘a‘+10; else return (-1);}
上面的是转换函数,写入的时候像下面这样写就行了
QByteArray senddata = http://www.mamicode.com/Widget::QString2Hex(ui->lineEdit->text()); //转换为16进制
com->write(senddata);
QT 串口通信 数据16进制发送
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。