Skip to main content
2 of 2
Edits for grammar and clarity. Also tidied up code indentation.

Here is what I found:

You need to have a special character like "*" (a delimiter), from which important data will flow through.

char z = '*';
int s=0;

void setup()
{ 
  // usual initialization  
} 

void loop()
{
  if (client.available())  
  {
    char c = client.read();
    // Serial.print(c);
    if (z == c)
    {
      s=1;
    }

  if(s == 1)
  {
    int i=0;
    k[i] = c;
    i=i+1;
    // Serial.print(k);
  }

  place +=k;

  Serial.print(place);

  }

.......
}
Manihatty
  • 395
  • 1
  • 5
  • 16