0

esp8266 にデータを送信したい。

アルディーノfwを使用しています。

データは私がこれを試したURLにあります:

String request = client.readStringUntil('\n');

    char chars[1000];
    char data[100];
    bool startRead =false;
    request.toCharArray(chars,1000);
    int counter=0;
    for(int i =0;i<1000;i++){

      if(chars[i]=='>'){
        startRead=false;
      }

      if(startRead==true){
        data[counter]=chars[i];
        counter++;
      }

      if(chars[i]=='<')
        startRead=true;

    }
    String output(data);

     // Serial.println(request);
    Serial.println(output);
      client.flush();

いくつかのデータを取得しましたが、信頼できません。

「192.168.4.1/HelloWorld」を呼び出す場合、HelloWorld という文字列が必要です。

何か案は?ありがとう!

4

2 に答える 2