D:\Arduino相关资料\3.例程(含接线图)\1.Hello World\Hello_World\Hello_World.ino: In function 'float getTemperature()': Hello_World:75:21: error: 'doc' was not declared in this scope Hello_World:75:26: error: 'humidity' was not declared in this scope; did you mean 'getHumidity'? Hello_World:79:10: error: 'value' was not declared in this scope怎么解决
时间: 2023-06-14 13:05:53 浏览: 99
这个错误提示表明在函数 `getTemperature()` 中使用了未定义的变量或者对象。可能的原因是你没有定义 `doc` 或者 `humidity` 变量,或者在调用 `value` 变量的时候没有正确的引用它。
你需要检查代码,确保所有变量和对象都已经定义,并且在使用它们之前进行了初始化。如果你不确定如何解决这个问题,可以将代码贴在论坛或者社区中,以便其他人帮助你解决问题。
阅读全文