前端之家收集整理的这篇文章主要介绍了
arduino – 如何将String转换为float或int?,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在Arduino程序中,我正在通过USB将坐标传送到arduino.因此,传入坐标存储为字符串.有没有办法将GPS坐标转换为浮点或整数?
我试过int gpslong = atoi(curlongitude)和float gpslong = atof(curlongitude),但它们都会导致Arduino给出错误:
error: cannot convert 'String' to 'const char*' for argument '1' to 'int atoi(const char*)'
有没有人有什么建议?
您可以通过在String对象上
调用
toInt
(例如curlongitude.toInt())从String
获取一个int.
如果你想要一个浮点数,你可以使用atof与toCharArray
方法:
char floatbuf[32]; // make this at least big enough for the whole string
curLongitude.tocharArray(floatbuf,sizeof(floatbuf));
float f = atof(floatbuf);
原文链接:https://www.f2er.com/css/217263.html