User Manual
{
int c;
// Print out any bytes available from the TCP server
while ( (c = tcp.read())> 0 )
{
Serial.write( (isprint(c) || iscntrl(c)) ? ((char)c) : '.');
}
}
void disconnect_callback(void)
{
Serial.println();
Serial.println("-------------------");
Serial.println("DISCONNECT CALLBACK");
Serial.println("-------------------");
Serial.println();
}
© Adafruit Industries https://learn.adafruit.com/introducing-the-adafruit-wiced-feather-wifi Page 82 of 202










