1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-07-30 16:24:09 +03:00

removing TwitterClient since it does not include OAuth, which is now needed for Twitter logins. Adding TelnetClient examexample.

This commit is contained in:
Tom Igoe
2010-09-17 13:22:32 +00:00
parent 7392f8514d
commit ae0c8770ac
5 changed files with 99 additions and 144 deletions

View File

@ -10,6 +10,8 @@
created 18 Dec 2009
by David A. Mellis
modified 4 Sep 2010
by Tom Igoe
*/
@ -53,11 +55,11 @@ void loop()
client.println();
// output the value of each analog input pin
for (int i = 0; i < 6; i++) {
for (int analogChannel = 0; analogChannel < 6; analogChannel++) {
client.print("analog input ");
client.print(i);
client.print(analogChannel);
client.print(" is ");
client.print(analogRead(i));
client.print(analogRead(analogChannel));
client.println("<br />");
}
break;