我的 Arduino Web 服务器草图偶尔会失败:
EthernetClient client = server.available();
if (client)
今天早上,它在第一次运行时连接得很好。现在,它无法再次连接到客户端。几天前,它工作了几次,但也失败了几次。我通过以太网电缆将屏蔽连接到我的家庭路由器。我已经验证了分配给 Arduino 的 IP 地址。我已经尝试了端口 80 和 8080。可能出了什么问题,我还能尝试什么?我的 ISP 会在这里阻止某些东西吗?请不要害怕提出显而易见的建议,因为我对网络几乎一无所知。
如果相关,这里是一段较大的代码,它循环
Serial.println("Listening");
代码:
#include <SPI.h>
#include <Ethernet.h>n
// Enter a MAC address and IP address for your controller below.
// The IP address will be dependent on your local network:
byte mac[] = { 0x90, 0xA2, 0xDA, 0x00, 0xF7, 0x99 };
IPAddress ip(192,168,2,5);
// Initialize the Ethernet server library
// with the IP address and port you want to use
// (port 80 is default for HTTP):
EthernetServer server(80);
String roundOpenTag = "";
String roundCloseTag = "";
void setup()
{
// Start the Ethernet connection and the server:
Ethernet.begin(mac, ip);
server.begin();
int ledPin = 8;
// Initialize the digital pin as an output.
pinMode(ledPin, OUTPUT);
Serial.begin(9600);
Serial.println("Setting up");
}
void loop()
{
// Listen for incoming clients
EthernetClient client = server.available();
Serial.println("Listening");
if (client)
{
Serial.println("Server available");
// An HTTP request ends with a blank line
boolean currentLineIsBlank = true;
while (client.connected()) {
Serial.println("Client connected");
if (client.available())
{
char c = client.read();
我看不出包含草图的其余部分的目的。我真的很感谢你的帮助。