Serial.println(ssid,password);这段报错 no matching function for call to 'println(const char*&, const char*&)'怎么修改
时间: 2024-05-02 07:22:24 浏览: 129
javaSystem.out.println()输出byte[]、char[]异常的问题详析
, const char*)',该如何解决?
这个报错的原因是Serial.println()函数的参数不匹配,应该使用不同的参数类型进行调用。你可以将ssid和password转换为String类型的变量,再将其传递给Serial.println()函数,或者使用Serial.print()函数将它们打印出来。例如,可以这样写:
```
String ssid_str = String(ssid);
String password_str = String(password);
Serial.println(ssid_str + " " + password_str);
```
阅读全文