c++ Arduino的代码块:无此文件或目录

zyfwsgd6  于 2023-01-15  发布在  其他
关注(0)|答案(3)|浏览(459)

我的问题基本上是这样的:我已经安装了带有Arduino插件的CodeBlocks,可以编译和运行测试程序(LED Flink ),现在我正在尝试编写使用以太网模块的测试程序,但我收到以下错误:

C:\Users\Dai\Documents\Projects\test\sketch.cpp|2|fatal error: Ethernet.h: No such file or directory|

代码如下所示:

#include <Arduino.h>
#include <Ethernet.h>

byte mac[] = {0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED};
byte ip[] {192,168,0,2};
byte gateway[] = {192,168,0,1};
byte subnet[] = {255,255,255,0};

Server server = Server(23);
void setup()
{
    pinMode(9, OUTPUT);
    Ethernet.begin(mac, ip, gateway, subnet);

    server.begin();
}

void loop()
{
    Client client = server.available();

    if(client == true) {
        //server.write(client.read());
        digitalWrite(9, HIGH);
    }
    else {
        digitalWrite(9, LOW);
    }
}

并且列出的所有头文件及其. cpp文件似乎都存在。
有人知道我做错了什么吗?

yrefmtwq

yrefmtwq1#

这不是代码的问题,而是配置的问题。
当编译器看到下面的行时,它会尝试包含库文件。

#include <Ethernet.h>

并且它不能包含它。检查插件以查看库文件应该放置在哪里,并将库文件复制到该目录,您的问题应该得到解决。

hgqdbh6s

hgqdbh6s2#

也许现在回答已经太晚了,但只是为了记录在案;创建一个新项目,右键单击名称-〉递归添加文件-〉浏览到libraries文件夹并选择它,单击ok,然后构建并......开始。

yfwxisqw

yfwxisqw3#

在Makefile上,找到INCLUDE_LIBS变量并设置所需的库,例如:

INCLUDE_LIBS=EEPROM;SD;LiquidCrystal;Ethernet;

相关问题