0

私はArduinoを初めて使用するので、これは単純な問題かもしれませんが、解決策を見つけることができませんでした.

Intel Galileo Gen. 2 ボードを使用しています。私は、要求に応じてセンサーから取得した値を返す Web サーバーを提供する単純なプログラムを作成しようとしています (任意のテキストで問題が解決します)。ネットワークを正常に構成し、値を取得しましたが、サーバーへのすべての要求で「動作します!」というメッセージが表示されます。応答としてのメッセージ。さまざまなブラウザー (chromw から lynx まで) とさまざまなネットワークの場所で試しました。

これは私が使用しているコードです:

#include <SPI.h>
#include <Ethernet.h>

byte mac[] = { 0x98, 0x4F, 0xEE, 0x05, 0x65, 0x02 };
char SENSORNAME[ ] = "galileo01";
IPAddress ip(192, 168, 15, 177);
IPAddress dnServer(8, 8, 8, 8);

EthernetServer server(80);

int sensorPin = A0;    // select the input pin for the potentiometer
int readValue = 0;
int prevValue = 0;

void setup() {
  Serial.begin(9600);

  system("ifconfig enp0s20f6 down ");
  system("ip link set enp0s20f6 name eth0");
  system("ifconfig eth0 up");
  Ethernet.begin(mac, ip, dnServer);
  server.begin();

}

void loop() {
  readValue = analogRead(sensorPin);
  EthernetClient client = server.available();
  if (client) {
    boolean currentLineIsBlank = true;
    while (client.connected()) {
      if (client.available()) {
        char c = client.read();
        Serial.write(c);
        if (c == '\n' && currentLineIsBlank) {
          client.println("HTTP/1.1 200 OK");
          client.println("Content-Type: text/html");
          client.println("Connection: close");
          client.println();
          client.print("{\"sensor\":\"");
          client.print(SENSORNAME);
          client.print( "\",\"value\":\"");
          client.print(readValue);
          client.println("\"}");
          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");
  }
}

私が間違っていることは何ですか?

ありがとう。


アップデート:

私が見ているのは、リクエストを行うときに loop() 関数がそれを処理していないということです。センサーの読み取り結果を確認できますが、if 句を通過することはありません。

 EthernetClient client = server.available();
  if (client) {

内部 Web サーバーはありますか? どうすればオフにできますか?

4

1 に答える 1