0Pricing
Arduino & IoT Academy · 课时

读取您输入的命令

使用串行输入,通过键盘触发操作

读取您输入的命令 是 CoddyKit 上的免费 Arduino & IoT Academy 课时。 这是第 4 节课,共 4 节。 你可以在下方免费阅读本课时的完整内容 — 然后在浏览器中使用内置代码编辑器和全天候 AI 导师进行实践。 这是 Arduino & IoT Academy 学习路径的一部分,你的进度在网页和 CoddyKit 应用中同步。 Arduino & IoT Academy 课程共包含 4 节课。

本课时的部分内容尚未翻译,以英文显示。

Talk Back to Your Board

Serial works both ways. You can type into the Monitor and your board will read it, letting you send commands from your keyboard. ⌨️

Is Anything Waiting?

First check if data has arrived with Serial.available(). It returns how many bytes are sitting in the buffer, ready to read.

if (Serial.available() > 0) {
}

Why Check First

Reading when nothing is there gives junk. So you guard your read with available() and only act when real data exists.

Read One Character

Grab a single incoming character with Serial.read(). It pulls one byte from the buffer and hands it to you.

char c = Serial.read();

React to a Command

Now branch on what you got. Compare the character and run different actions, like turning an LED on or off.

if (c == '1') digitalWrite(13, HIGH);
if (c == '0') digitalWrite(13, LOW);

Mind the Quotes

Notice the single quotes around '1'. That is a character, not the number one, and matching it correctly matters.

Reading Whole Words

For full commands like on or off, read a whole line with readStringUntil(), stopping at the newline you send.

String cmd = Serial.readStringUntil('\n');

Compare the Text

Then test the whole word. If the String equals on, do one thing; if it equals off, do another.

if (cmd == "on") digitalWrite(13, HIGH);

Set the Line Ending

In the Monitor, pick a line ending like Newline. It tells readStringUntil where each typed command stops.

Confirm Back

Good feedback feels great. After acting on a command, println a confirmation so you know the board heard you.

Serial.println("LED is on");

Now It Is Interactive

You just built a tiny command interface. Type, the board reads, acts, and replies. That is real two-way control. 🚀

Quick Check

Which function tells you whether typed data has arrived and is waiting to be read?

Recap

You made the board listen: checking available(), reading characters or full lines, acting on commands, and confirming back. Two-way Serial done! 🎉

常见问题解答

「读取您输入的命令」课时是免费的吗?

是的 — 「读取您输入的命令」的完整文本可在网页上免费阅读。要进行交互式练习(内置代码编辑器和全天候 AI 导师)并解锁 Arduino & IoT Academy 课程的其余内容,请升级到 CoddyKit PRO。 Arduino & IoT Academy 课程共包含 4 节课。

「读取您输入的命令」这节课中我会学到什么?

使用串行输入,通过键盘触发操作 你通过在浏览器中直接运行的动手代码来练习 Arduino & IoT Academy,全天候 AI 导师会在你学习这节课的过程中回答你的问题。

学习 Arduino & IoT Academy 需要有经验吗?

无需任何先前经验。CoddyKit 上的 Arduino & IoT Academy 课程适合初学者到高级学习者,你可以从这里开始或从头开始,按照自己的节奏学习。 这是第 4 节课,共 4 节。

「读取您输入的命令」课时需要多长时间?

大多数 CoddyKit 课程大约需要 5–10 分钟。每节课都很精短且互动,所以你能稳步进步,并在网页和应用中从离开的地方继续。

我能在这节 Arduino & IoT Academy 课中编写并运行代码吗?

能。每节 Arduino & IoT Academy 课都包含内置代码编辑器,你可以在浏览器中直接编写并运行真实代码,并获得即时 AI 反馈 — 无需本地设置。

此课程中的所有课时

  1. Serial.begin 与波特率
  2. Serial.print 与 println
  3. 实时查看传感器数值
  4. 读取您输入的命令
← 返回 Arduino & IoT Academy