Arduino Ethernet Shield连接到套接字服务器

时间:2014-08-22 15:02:37

标签: sockets tcp arduino ethernet

我使用以太网屏蔽Arduino将其连接到套接字服务器(不同的计算机),以便我可以从它接收消息以激活某些例程。这是我的代码:

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

byte mac[] = { 0x90, 0xA2, 0xDA, 0x0F, 0x5A, 0x21 };
byte ip[] = { 192,168,1,11 }; //ip shield
byte server[] = { 192,168,1,7 }; // ip server

EthernetClient client;
String readString;

int ledPins[] = {19, 17, 2,3, 5, 6, 7, 8, 9};  // leds pins
int pinCount = 8;// number of leds
int const PINEYES = 9; //pin for different led
int const TIMERLEDS = 1000; 
int const TIMERTOOFF= 3000; 

//--------------------------------------------------------------------------

void setup() {
  turnOffLeds();
  Ethernet.begin(mac, ip);
  Serial.begin(9600);
  delay(1000);
  Serial.println("connecting...");
  if (client.connect(server, 1400)) {
    Serial.println("connected");
    client.println();
  } else {
    Serial.println("connection failed");
  }
  pinMode(PINEYES, OUTPUT);      
  int thisPin;
  for (int thisPin = 0; thisPin < pinCount; thisPin++)  {
    pinMode(ledPins[thisPin], OUTPUT);      
  }
}

//--------------------------------------------------------------------------    
void loop() {
  if (client.available()) {
    char c = client.read();

    if (readString.length() < 30) {
      if(c!='|')
        readString.concat(c);
      else {
        client.flush();
        //if (readString == "START_SENSATIONS") {
        if (readString == "on") {
          Serial.println("recebi");
          client.stop();
          turnOnMaya();
        }
        resetString();
      }
    }
    Serial.println(readString);
  }
  if (!client.connected()) {
    Serial.println();
    Serial.println("disconnecting.");
    client.stop();
    for(;;)
      ;
  }
}

//--------------------------------------------------------------------------
void turnOnMaya(){
  turnOnLeds();
  for (int thisPin = 0; thisPin < pinCount; thisPin++) { 
     delay(TIMERLEDS);                  
     digitalWrite(ledPins[thisPin], LOW);    
  }
  turnOnEyes();
  delay(TIMERTOOFF);    
  turnOffLeds();
  digitalWrite(PINEYES, LOW);   
  client.connect(server, 1400);
}

//--------------------------------------------------------------------------
void turnOnLeds(){
  for (int thisPin = 0; thisPin < pinCount; thisPin++) { 
    digitalWrite(ledPins[thisPin], HIGH);   
  }
}

//--------------------------------------------------------------------------
void turnOffLeds(){
  for (int thisPin = 0; thisPin < pinCount; thisPin++) { 
    digitalWrite(ledPins[thisPin], LOW);   
  }
}

//--------------------------------------------------------------------------
void turnOnEyes(){
  digitalWrite(PINEYES, 255);
}

//--------------------------------------------------------------------------
void resetString() {
  readString = "";
}

问题是,当我的服务器停止或暂时不可用时,我需要我的Arduino继续尝试连接它,直到它再次可用。但我无法做到这一点。 我试过这个:

  while(!client.available()){
    Serial.println("connection failed, trying again...");
    client.connect(server, 1400);
    delay(1000);
  }

但它不起作用。它只是打印&#34;连接失败,再次尝试......&#34; 永远。我怎样才能做到这一点? 谢谢!

1 个答案:

答案 0 :(得分:1)

我假设您的PC中的服务器是普通javac(或任何其他标准tcp服务器)

但您的arduino客户端并未指定它是TCP。所以要么改变你的服务器或客户端(比如在here - 这使用wifi连接)。 如果你的服务器是在java中,它可能是这样的:

int port=9999;
    try{
        System.out.println("Starting server...");
        ServerSocket ss=new ServerSocket(port);
        Socket clientSocket=ss.accept();
        System.out.println("Connection has been established...");
        PrintWriter out=new PrintWriter(clientSocket.getOutputStream(),true);
        BufferedReader br=new BufferedReader(new InputStreamReader(clientSocket.getInputStream()));
        String inputLine;
        System.out.println("Listening.....");
        while((inputLine=br.readLine())!=null)
            System.out.println(inputLine);
    }catch(Exception e){System.out.println(e.getMessage());}
相关问题