gpt4 book ai didi

C++ 从 'const char*' 到 'char' 的无效转换

转载 作者:行者123 更新时间:2023-11-30 01:46:38 26 4
gpt4 key购买 nike

<分区>

我是 Arduino 和 C++ 的新手。我想制作一个程序,它将从串行端口读取输入。但是,当我尝试编译它时,似乎出现了一些问题。

我收到的错误信息是:

invalid conversion from const char* to char

这是我的代码:

#define nombreBouteille 10
#define nombreCocktail 8

String cocktail[nombreCocktail][nombreBouteille][2];
String bouteille[nombreBouteille];
int serialValue;


void loop() {

if (Serial.available() > 0)
int serialValue = Serial.read();
if (serialValue == '1') {
readBouteille();
readCocktail();
}
}


//Read and set the bottles content
void readBouteille() {

for( int i = 0; i < nombreBouteille; i++) {
bouteille[i] = Serial.readStringUntil(" ");
}
}


//Read the cocktail
void readCocktail() {

for( int i = 0; i < nombreCocktail; i++) {
for ( int j = 0; j < nombreBouteille; j++) {
cocktail[i][j][0] = Serial.readStringUntil(" ");
cocktail[i][j][1] = Serial.parseInt();
}
}
}

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com