1
0
mirror of https://github.com/arduino/Arduino.git synced 2025-01-30 19:52:13 +01:00

Added raw output to TwitterClient for debugging

This commit is contained in:
Tom Igoe 2012-03-09 21:44:15 -05:00
parent fe4b5703f7
commit d6b768d579

View File

@ -13,7 +13,7 @@
Circuit:
* WiFi shield attached to pins 10, 11, 12, 13
created 8 Mar 2012
created 9 Mar 2012
by Tom Igoe
This code is in the public domain.
@ -71,7 +71,9 @@ void loop()
if (client.available()) {
// read incoming bytes:
char inChar = client.read();
// print the incoming byte (for debugging):
Serial.write(inChar);
// add incoming byte to end of line:
currentLine += inChar;
@ -117,7 +119,8 @@ void connectToServer() {
Serial.println("making HTTP request...");
// make HTTP GET request to twitter:
client.println("GET /1/statuses/user_timeline.xml?screen_name=arduinoteam HTTP/1.1");
client.println("HOST:api.twitter.com");
client.println("Host:api.twitter.com");
client.println("Connection:close");
client.println();
}
// note the time of this connect attempt:
@ -132,7 +135,7 @@ void printWifiStatus() {
// print your WiFi shield's IP address:
IPAddress ip = WiFi.localIP();
Serial.print("IP Address: ");
Serial.print("IP Address: ");
Serial.println(ip);
// print the received signal strength:
@ -142,3 +145,4 @@ void printWifiStatus() {
Serial.println(" dBm");
}