Arduino HTTPClient无法正常工作

时间:2011-11-09 23:42:11

标签: httpclient arduino

我有一个带有以太网屏蔽的Arduino。

我有httpclient库,我正在尝试运行PachubeClient示例。

当我编译时,它给了我很多错误:

PachubeClient.cpp:25:25: error: Credentials.h: No such file or directory
PachubeClient.cpp: In function 'void setup()':
PachubeClient:47: error: 'ssid' was not declared in this scope
PachubeClient:47: error: 'passphrase' was not declared in this scope
PachubeClient:55: error: a function-definition is not allowed here before '{' token
PachubeClient:95: error: expected `}' at end of input

为什么?

1 个答案:

答案 0 :(得分:1)

我根本没有玩过Arduino开发环境,但错误信息意味着您要么缺少Credentials.h文件,要么编译器不知道在哪里找到它。验证文件是否存在,然后检查编译器设置,以确保将传递给头文件的路径。