释放双眼,带上耳机,听听看~!
在这个例子里,开发板读取一个串口输入字符串直到出现新行,然后如果字符是数字,就把字符串转换成数字。一旦你更新代码到你的开发板,打开Arduino IDE串口监视器,输入一些数字,然后按发送。开发板将会重复发送这些数字返回给你。观察当一个非数字字符被发送,会发生什么现象。
目录
简介
- toInt()函数允许你把一个字符串转换成一个整数。
- 在这个例子里,开发板读取一个串口输入字符串直到出现新行,然后如果字符是数字,就把字符串转换成数字。一旦你更新代码到你的开发板,打开Arduino IDE串口监视器,输入一些数字,然后按发送。开发板将会重复发送这些数字返回给你。观察当一个非数字字符被发送,会发生什么现象。
硬件要求
- Arduino or Genuino开发板
电路
- 这个例子不需要连接额外的电路,除了你的开发板需要连接到你的电脑,并且打开Arduino IDE的串口监视器窗口。
样例代码
String inString = ""; // string to hold input
void setup() {
// Open serial communications and wait for port to open:
Serial.begin(9600);
while (!Serial) {
; // wait for serial port to connect. Needed for native USB port only
}
// send an intro:
Serial.println("\n\nString toInt():");
Serial.println();
}
void loop() {
// Read serial input:
while (Serial.available() > 0) {
int inChar = Serial.read();
if (isDigit(inChar)) {
// convert the incoming byte to a char
// and add it to the string:
inString += (char)inChar;
}
// if you get a newline, print the string,
// then the string's value:
if (inChar == '\n') {
Serial.print("Value:");
Serial.println(inString.toInt());
Serial.print("String: ");
Serial.println(inString);
// clear the string for new input:
inString = "";
}
}
}