Arduino,返回字符数组的函数

arduino, function to return char array

本文关键字:函数 数组 字符 返回 Arduino      更新时间:2023-10-16
_10_11.ino: In function 'void loop()':
_10_11:73: error: initializer fails to determine size of 'results'
_10_11.ino: In function 'char getData()':
_10_11:160: error: invalid operands of types 'const char*' and 'const char [5]' to binary 'operator+'


简而言之,我有一个函数char getData()它返回char output[50] = "1: " + cmOne + " 2: " + cmTwo + " 3: " + cmThree + " 4: " + cmFour; int cmOne, cmTwo, cmThree, cmFour的位置。

在循环中,我调用:

char results[] = getData();
    client.println("1: %i", results[0]);
    client.println("2: %i", results[1]);
    client.println("3: %i", results[2]);
    client.println("4: %i", results[3]);

我知道我的数据类型、分配等是错误的,但我不知道如何做到最好,有什么建议吗?

这是不可能的,创建一个固定大小的数组,并将其作为指针传递给函数,并在函数中初始化它

char results[4];
getData(results); /* the getData function should take a 'char *' paramenter */
client.println("1: %i", results[0]);
client.println("2: %i", results[1]);
client.println("3: %i", results[2]);
client.println("4: %i", results[3]);

当然,如果阵列更大,只需char results[A_BIGGER_SIZE];

假设获取数据只是将字符串"ABC"放入result数组中,如下所示

void getData(char *dest)
{
    dest[0] = 'A';
    dest[1] = 'B';
    dest[2] = 'C';
    dest[3] = '';
}