arduino串口分割字符串

串口通信数据解析
本文介绍了一个Arduino程序,用于通过串口接收数据并解析。数据使用逗号分隔,读取后转换为字符串和整数数组,便于进一步处理。
 
String comdata = "";
void setup() {
  // put your setup code here, to run once:
  Serial.begin(115200);
  Serial.println();
  Serial.println();
  Serial.println();
}
 
void loop() {
  // put your main code here, to run repeatedly:
  SerialEvent();
}
 
void SerialEvent()
{
  while (Serial.available() > 0)  
    {
        comdata += char(Serial.read());
        delay(2);
    }
    //输入格式: a,10,b,20
    if (comdata.length() > 0)
    {       
        int s = 4; //词条总数,设置为偶数
        int pos = 0;       
        String str[s];
        String cmd[s/2];
        int num[s/2];
        for(int i=0;i<comdata.length();i++)
        {
            if(comdata[i] != ',')//逗号为分隔符
            {
              str[pos] += comdata[i];                                   
            }
            else
            {
              pos++;
            }
        }
        //
        for(int i=0;i<s;i++)
        {
          if(i%2 == 0){
            //偶数词条
            cmd[i] = st
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值