Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以在 Arduino 代码的设置区域执行 Serial.Read?我需要我的主循环速度很快,并且不希望它被一段只需要运行一次的代码减慢。
您可以将 Serial.read() 放入 setup() 函数中。确保将它放在 Serial.begin() 之后。由于 Serial.read() 是“非阻塞”的,因此您需要添加一些额外的代码来循环并等待读取某些内容。如果串行输入缓冲区中没有数据等待,Serial.read() 返回 -1。
这是 Serial.Read() 函数示例:-单击
这是串行事件示例:-单击