解决了:
您可以使用以下方法更改字符缓冲区:
char *arg;
arg = SCmd.next();
int i;
sscanf(arg, "%d", &i);
Serial.print("String value ");
Serial.println(arg);
Serial.print("Integer value ");
Serial.println(i);
问题:
我似乎无法弄清楚如何将 char 缓冲区内容从存储的字符串更改为整数。
例如:
'1' 应该是 1,
'121' 应该是 121
这是我尝试过的。
void doIt()
{
char *arg;
arg = SCmd.next(); // Get the next argument from the SerialCommand object buffer
if (arg != NULL) // As long as it existed, do it
{
int argInted = (int)arg; // Cast char arg* -> int argInted.
Serial.print("String value ");
Serial.println(arg);
Serial.print("Integer value ");
Serial.println(argInted); // Print this new found integer.
}
else {
Serial.println("Fix your arguements");
}
}
这就是我得到的,它每次都评估为 371。我在指针缓冲区中存储了不同的东西,关于如何转换的任何想法?
Arduino Ready
> INPUT 1
String value 1
Integer value 371
> INPUT 2
String value 2
Integer value 371
> INPUT WHATSthisDO
String value WHATSthisDO
Integer value 371