0

我目前正在使用EtherTen尝试将 Arduino 连接到Twitter。但是,我不断收到一条错误消息,说“'twitter'没有命名类型”。我该如何解决这个问题?

#if defined(ARDUINO) && ARDUINO > 18   // Arduino 0019 or later
#include <SPI.h>
#endif

#include <Ethernet.h>
#include <EthernetDNS.h>  //Only needed in Arduino 0022 or earlier
#include <Twitter.h>

byte MACaddress[] = { 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED };
byte IPaddress[] = { 10, 0, 0, 177 };
Twitter twitter("MY TOKEN HERE");
char msg[] = "Hello, World! I'm Arduino!";

void setup()
{
    delay(1000);
    Ethernet.begin(MACaddress, IPaddress);
    Serial.begin(9600);

    Serial.println("connecting ...");
    if (twitter.post(msg)) {
        int status = twitter.wait();
        if (status == 200) {
            Serial.println("OK.");
        }
        else {
            Serial.print("failed : code ");
            Serial.println(status);
        }
    }
    else {
        Serial.println("connection failed.");
    }
}

void loop()
{
}
4

1 回答 1

0

这是一个公平的问题。它看起来很像示例代码。我要尝试的第一件事是从构造函数中删除“<<<”和“>>>”?

    Twitter twitter("1521141456-FjH4fHVENG3xxxxxxxxxxxxxxxxxx");

如果那没有帮助,您可以查看您的 Ethernet.begin 。

Ethernet.begin(mac, ip, gateway, subnet);

而不是

Ethernet.begin(mac, ip);

注意您应该小心在论坛上发布您的 twitter 令牌 ID。我认为您应该编辑您的帖子以隐藏您的令牌。

于 2013-06-17T12:27:36.223 回答