gpt4 book ai didi

c - Arduino - 我怎样才能使以太网+ LED 开关模块工作?使用以太网模块时 LED 没有反应

转载 作者:行者123 更新时间:2023-11-30 17:48:15 29 4
gpt4 key购买 nike

当我使用Ethernet.begin(mac,ip)时,LED灯不会打开和关闭。但是当我不使用那条线时它就可以工作。但我需要使用以太网和 UPP 模块来打开和关闭。我怎样才能?

板卡型号:以太网08Twinker 套件,Twinker 继电器

enter image description here

#include <TinkerKit.h>
#include <SPI.h> // needed for Arduino versions later than 0018
#include <Ethernet.h>
#include <EthernetUdp.h> // UDP library from: bjoern@cs.stanford.edu 12/30/2008

TKLed led(O5); //O0 does not work
byte mac[] = { 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED };
IPAddress ip(192, 168, 1, 177);
unsigned int localPort = 8888; // local port to listen on
char packetBuffer[UDP_TX_PACKET_MAX_SIZE]; //buffer to hold incoming packet,
char ReplyBuffer[] = "ackv1"; // a string to send back
EthernetUDP Udp;

void setup() {
Ethernet.begin(mac,ip);
Udp.begin(localPort);
}

void loop() {
int packetSize = Udp.parsePacket();
if(packetSize)
{
// check the switch state
delay(1000);
led.off();
delay(3000);
led.on();
// send a reply, to the IP address and port that sent us the packet we received
Udp.beginPacket(Udp.remoteIP(), Udp.remotePort());
Udp.write(ReplyBuffer);
Udp.endPacket();
}
delay(10);
}

编辑:

$ echo "hello" | nc -4u 192.168.1.177 8888
ackv1

最佳答案

根据您的描述,听起来以太网 I/O 正在干扰 LED I/O。

请注意:

TKLed led(O0);

这可能将 LED 定义为端口 0。您需要确定以太网使用哪些端口。 (我会告诉你,但这是一个很好的教训。)

如果(您需要阅读文档)LED 端口号和以太网端口号之间存在冲突,那么您将需要移动 LED,因为以太网端口需要串行 I/O,而 LED 仅需要一个+5V 或 0V。

关于c - Arduino - 我怎样才能使以太网+ LED 开关模块工作?使用以太网模块时 LED 没有反应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18646884/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com