我正在从我的Arduino上的一个模拟引脚获得一个int值。如何将其连接到String
,然后将String
转换为char[]
有人建议我尝试使用char msg[] = myString.getChars();
,但我收到一条消息,提示getChars
不存在。
发布于 2014-05-27 10:15:56
作为参考,下面是一个如何使用动态长度在String
和char[]
之间进行转换的示例-
// Define
String str = "This is my string";
// Length (with one extra character for the null terminator)
int str_len = str.length() + 1;
// Prepare the character array (the buffer)
char char_array[str_len];
// Copy it over
str.toCharArray(char_array, str_len);
是的,对于像类型转换这样简单的事情来说,这是非常迟钝的,但不知何故,这是最简单的方法。
发布于 2019-05-25 16:43:29
如果不需要可修改的字符串,可以使用以下命令将其转换为char*:
(char*) yourString.c_str();
当您希望通过arduino中的MQTT发布字符串变量时,这将非常有用。
发布于 2016-08-31 09:41:48
这些东西都不管用。这里有一个简单得多的方法..标签字符串是指向数组的指针...
String str = String(yourNumber, DEC); // Obviously .. get your int or byte into the string
str = str + '\r' + '\n'; // Add the required carriage return, optional line feed
byte str_len = str.length();
// Get the length of the whole lot .. C will kindly
// place a null at the end of the string which makes
// it by default an array[].
// The [0] element is the highest digit... so we
// have a separate place counter for the array...
byte arrayPointer = 0;
while (str_len)
{
// I was outputting the digits to the TX buffer
if ((UCSR0A & (1<<UDRE0))) // Is the TX buffer empty?
{
UDR0 = str[arrayPointer];
--str_len;
++arrayPointer;
}
}
https://stackoverflow.com/questions/7383606
复制相似问题