我们正在尝试初始化一个字符数组,但是我们得到一个错误,说我们不能,因为我们不能混合整数和字符,但是我们没有初始化整数。
提前致谢
void setup()
{
Serial.begin(9600); //Set the serial monitor.
lcd.begin(16, 2); //Set the LCD
}
char line1 [5] = {0};
char line2 [] = {0};
void loop()
{
if (Serial.available() > 0) { //If the serial monitor is open it will read a value.
line1 = Serial.read();
delay(10);
Serial.print(line1);
lcd.print(line1);
}
}