我有以下代码:
char msg[10];
int len = acc.read(msg, sizeof(msg), 1); // This will read "R#" where # can be any number.
int number = getNumber(msg);
该函数getNumber
如下所示:
int getNumber(char* pMsg){
Serial.println(positionMsg);
positionMsg += 1;
Serial.print('[');
Serial.print(positionMsg);
Serial.println(']');
}
这个函数打印出来:
R115
[115]
当消息中的数字是115
。如何返回整数115
?
我来自Java背景,我不懂指针。