0

嗨,我正在尝试测试 nodemcu 板的值,我正在使用 arduino ide 进行编码,并修改了 WIFIClient 示例以使用 GET 将值发送到我的本地主机。它给了我错误的请求错误。任何帮助或建议表示赞赏

修改后的WIFIClinet

#include <ESP8266WiFi.h>

const char* ssid     = "ssid";
const char* password = "pwd";


const char* host = "http://10.0.0.39/edu/arduino.php";



void setup() {
  Serial.begin(115200);
  delay(10);

  // We start by connecting to a WiFi network

  Serial.println();
  Serial.println();
  Serial.print("Connecting to ");
  Serial.println(ssid);

  WiFi.begin(ssid, password);

  while (WiFi.status() != WL_CONNECTED) {
    delay(500);
    Serial.print(".");
  }

  Serial.println("");
  Serial.println("WiFi connected");  
  Serial.println("IP address: ");
  Serial.println(WiFi.localIP());
}

int value = 0;

void loop() {
  delay(5000);
  ++value;

  Serial.print("connecting to ");
  Serial.println(host);

  // Use WiFiClient class to create TCP connections
  WiFiClient client;
  const int httpPort = 80;
  if (!client.connect(host, httpPort)) {
    Serial.println("connection failed");
    return;
  }




  // We now create a URI for the request
  String url ="?v=we";
//  
//  
 Serial.print("Requesting URL: ");
  Serial.println(url);

// This will send the request to the server
  client.print(String("GET ") + url + " HTTP/1.1\r\n" +
              "Host: " + host + "\r\n" + 
               "Connection: close\r\n\r\n");
//
unsigned long timeout = millis();
  while (client.available() == 0) {
    if (millis() - timeout > 5000) {
      Serial.println(">>> Client Timeout !");
      client.stop();
      return;
    }
  }

  // Read all the lines of the reply from server and print them to Serial
  while(client.available()){
    String line = client.readStringUntil('\r');
    Serial.print(line);
  }

  Serial.println();
  Serial.println("closing connection");

}

串行监视器的输出

connecting to http://10.0.0.39/edu/arduino.php
Requesting URL: ?v=we
HTTP/1.0 400 Bad Request
Server: httpd
Date: Sat, 01 Jan 2011 22:02:19 GMT
Content-Type: text/html
Connection: close

<HTML><HEAD><TITLE>400 Bad Request</TITLE></HEAD>
<BODY BGCOLOR="#cc9999"><H4>400 Bad Request</H4>
Bad filename.
</BODY></HTML>
4

1 回答 1

1

我希望这对在我更改的本地主机上运行它的人有所帮助

const char* host = "http://10.0.0.39/edu/arduino.php";
to 
const char* host = "10.0.0.39"; 

String url ="?v=we";
to 

String url ="/edu/arduino.php?v=we";
于 2016-10-16T14:48:16.100 回答