Arduino以太网屏蔽不起作用
Posted
技术标签:
【中文标题】Arduino以太网屏蔽不起作用【英文标题】:Arduino ethernet shield not working 【发布时间】:2014-07-14 12:37:37 【问题描述】:我有一个 arduino 以太网屏蔽,我正在尝试在其上运行“Webserver”示例。我将屏蔽板放在 arduino 的顶部,arduino 通过 USB 连接到我的电脑,屏蔽板也通过 RJ45 以太网电缆连接到我的电脑。我正在使用我大学的 wifi 网络连接到互联网,并且无法访问任何路由器。所以这是我的问题:当我在命令行上键入 ipconfig 时,我看到我的计算机的 IP 地址是 143.215.98.213。因此,在 arduino IDE 中给出的“Webserver”示例代码中,我所做的唯一更改是将 IP 地址设置为: IP地址 ip(143,215,98,2); (我ping了地址143.215.98.2,它没有被使用,所以我猜没关系)。 Webserver 代码应该从 arduino 读取模拟输入并将其打印在 html 页面上。当我将代码上传到 arduino 并在浏览器中输入地址 143.215.98.2 时,浏览器无法连接到任何页面。 TX 和 RX LED 不亮。此外,我尝试在代码运行时 ping t143.215.98.2,但没有得到任何响应(arduino 上的 LED 也不闪烁)。这是我正在使用的网络服务器示例代码:
#include <SPI.h>
#include <Ethernet.h>
// Enter a MAC address and IP address for your controller below.
// The IP address will be dependent on your local network:
byte mac[] =
0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED ;
IPAddress ip(143,215,98,2);
//IPAddress ip(128,61,79,1);
//IPAddress ip(192,168,1,1);
// Initialize the Ethernet server library
// with the IP address and port you want to use
// (port 80 is default for HTTP):
EthernetServer server(80);
void setup()
// Open serial communications and wait for port to open:
Serial.begin(9600);
while (!Serial)
; // wait for serial port to connect. Needed for Leonardo only
// start the Ethernet connection and the server:
Ethernet.begin(mac, ip);
server.begin();
Serial.print("server is at ");
Serial.println(Ethernet.localIP());
void loop()
// listen for incoming clients
EthernetClient client = server.available();
if (client)
Serial.println("new client");
// an http request ends with a blank line
boolean currentLineIsBlank = true;
while (client.connected())
if (client.available())
char c = client.read();
Serial.write(c);
// if you've gotten to the end of the line (received a newline
// character) and the line is blank, the http request has ended,
// so you can send a reply
if (c == '\n' && currentLineIsBlank)
// send a standard http response header
client.println("HTTP/1.1 200 OK");
client.println("Content-Type: text/html");
client.println("Connection: close");
client.println("Refresh: 5"); // refresh the page automatically every 5 sec
client.println();
client.println("<!DOCTYPE HTML>");
client.println("<html>");
// output the value of each analog input pin
for (int analogChannel = 0; analogChannel < 6; analogChannel++)
int sensorReading = analogRead(analogChannel);
client.print("analog input ");
client.print(analogChannel);
client.print(" is ");
client.print(sensorReading);
client.println("<br />");
client.println("</html>");
break;
if (c == '\n')
// you're starting a new line
currentLineIsBlank = true;
else if (c != '\r')
// you've gotten a character on the current line
currentLineIsBlank = false;
// give the web browser time to receive the data
delay(1);
// close the connection:
client.stop();
Serial.println("client disonnected");
那么可能是什么问题?
【问题讨论】:
我也有同样的问题。即使我有一个动态IP,它仍然无法连接到互联网。我的大学使用cyberoam,我无法绕过代理。 【参考方案1】:我认为问题出在 IP 地址上。是否可以从 DHCP 获取自动 ip?如果是这样,您应该删除 IP 地址并使用 Ethernet.begin(mac) 启动服务器。
如果无法获得自动 ip.. 您可以向网络管理员索取网络上的免费 ip 部分。 (如果他把那种信息泄露出去)
无论如何,祝你好运!
【讨论】:
【参考方案2】:正确检查您的 IP 地址。无论您使用的是静态类型还是动态类型。
转到 INTERNET 协议。选择以下 IP 地址并配置为并包含在程序中它应该可以工作
IPAddress ip(192,168,1, 177);
IPAddress gateway(192,168,1, 1);
IPAddress subnet(255, 255, 0, 0);
【讨论】:
【参考方案3】:很多延迟,但我写在这里是为了帮助有类似问题的人。
我要为中文 Arduino Ethernet Shield 疯狂了: 有的开关可以用,有的开关不行。 然后在网上大量搜索后,我发现了这个: https://reedpaper.wordpress.com/2018/09/17/arduino-ethernet-w5100-how-to-fix-the-wrong-board/ 问题就解决了!
在某些中文板中,以太网连接器附近的 49.9ohm 电阻器存在错误。 他们没有安装 510 阵列电阻器,而是使用 511 阵列,因此有一个 510 欧姆的电阻代替 510 欧姆,连接结果是不可预测的。
【讨论】:
以上是关于Arduino以太网屏蔽不起作用的主要内容,如果未能解决你的问题,请参考以下文章
为啥我的 python 串行代码不起作用,而从 arduino 串行监视器发送相同的数据?
基于 Arduino 的加速度计鼠标的 Python 脚本不起作用
从 Arduino Uno 切换到 NodeMCU esp8266 的 LED 灯条颜色更改代码不起作用
当“objectCaching”为假时,使用“globalCompositionOperation”设置为“source-atop”的屏蔽不起作用