Skip to content

Instantly share code, notes, and snippets.

@kerinin
Created December 6, 2012 17:06
Show Gist options
  • Save kerinin/4226126 to your computer and use it in GitHub Desktop.
Save kerinin/4226126 to your computer and use it in GitHub Desktop.
HTTP response
/* Handle content. */
while (http.connected())
{
while (http.available() > 0)
{
uint8_t byte = http.read();
if (!success)
Serial.write(byte);
}
delay(100);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment