mirror of
https://github.com/arduino/Arduino.git
synced 2025-02-11 05:54:16 +01:00
edited some ethernet ad wifi examples
This commit is contained in:
parent
afc9ad2663
commit
2e6023bc2a
@ -1,81 +0,0 @@
|
|||||||
/*
|
|
||||||
DNS and DHCP-based Web client
|
|
||||||
|
|
||||||
This sketch connects to a website (http://www.google.com)
|
|
||||||
using an Arduino Wiznet Ethernet shield.
|
|
||||||
|
|
||||||
Circuit:
|
|
||||||
* Ethernet shield attached to pins 10, 11, 12, 13
|
|
||||||
|
|
||||||
created 18 Dec 2009
|
|
||||||
by David A. Mellis
|
|
||||||
modified 9 Apr 2012
|
|
||||||
by Tom Igoe, based on work by Adrian McEwen
|
|
||||||
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include <SPI.h>
|
|
||||||
#include <Ethernet.h>
|
|
||||||
|
|
||||||
// Enter a MAC address for your controller below.
|
|
||||||
// Newer Ethernet shields have a MAC address printed on a sticker on the shield
|
|
||||||
byte mac[] = { 0x00, 0xAA, 0xBB, 0xCC, 0xDE, 0x02 };
|
|
||||||
char serverName[] = "www.google.com";
|
|
||||||
|
|
||||||
// Initialize the Ethernet client library
|
|
||||||
// with the IP address and port of the server
|
|
||||||
// that you want to connect to (port 80 is default for HTTP):
|
|
||||||
EthernetClient client;
|
|
||||||
|
|
||||||
void setup() {
|
|
||||||
// Open serial communications and wait for port to open:
|
|
||||||
Serial.begin(9600);
|
|
||||||
while (!Serial) {
|
|
||||||
; // wait for serial port to connect. Needed for Leonardo only
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// start the Ethernet connection:
|
|
||||||
if (Ethernet.begin(mac) == 0) {
|
|
||||||
Serial.println("Failed to configure Ethernet using DHCP");
|
|
||||||
// no point in carrying on, so do nothing forevermore:
|
|
||||||
while(true);
|
|
||||||
}
|
|
||||||
// give the Ethernet shield a second to initialize:
|
|
||||||
delay(1000);
|
|
||||||
Serial.println("connecting...");
|
|
||||||
|
|
||||||
// if you get a connection, report back via serial:
|
|
||||||
|
|
||||||
if (client.connect(serverName, 80)) {
|
|
||||||
Serial.println("connected");
|
|
||||||
// Make a HTTP request:
|
|
||||||
client.println("GET /search?q=arduino HTTP/1.0");
|
|
||||||
client.println();
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
// kf you didn't get a connection to the server:
|
|
||||||
Serial.println("connection failed");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void loop()
|
|
||||||
{
|
|
||||||
// if there are incoming bytes available
|
|
||||||
// from the server, read them and print them:
|
|
||||||
if (client.available()) {
|
|
||||||
char c = client.read();
|
|
||||||
Serial.print(c);
|
|
||||||
}
|
|
||||||
|
|
||||||
// if the server's disconnected, stop the client:
|
|
||||||
if (!client.connected()) {
|
|
||||||
Serial.println();
|
|
||||||
Serial.println("disconnecting.");
|
|
||||||
client.stop();
|
|
||||||
|
|
||||||
// do nothing forevermore:
|
|
||||||
while(true);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -127,6 +127,7 @@ void connectToServer() {
|
|||||||
// make HTTP GET request to twitter:
|
// make HTTP GET request to twitter:
|
||||||
client.println("GET /1/statuses/user_timeline.xml?screen_name=arduino&count=1 HTTP/1.1");
|
client.println("GET /1/statuses/user_timeline.xml?screen_name=arduino&count=1 HTTP/1.1");
|
||||||
client.println("HOST: api.twitter.com");
|
client.println("HOST: api.twitter.com");
|
||||||
|
client.println("Connection: close");
|
||||||
client.println();
|
client.println();
|
||||||
}
|
}
|
||||||
// note the time of this connect attempt:
|
// note the time of this connect attempt:
|
||||||
|
@ -8,8 +8,9 @@
|
|||||||
* Ethernet shield attached to pins 10, 11, 12, 13
|
* Ethernet shield attached to pins 10, 11, 12, 13
|
||||||
|
|
||||||
created 18 Dec 2009
|
created 18 Dec 2009
|
||||||
modified 9 Apr 2012
|
|
||||||
by David A. Mellis
|
by David A. Mellis
|
||||||
|
modified 9 Apr 2012
|
||||||
|
by Tom Igoe, based on work by Adrian McEwen
|
||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -19,7 +20,13 @@
|
|||||||
// Enter a MAC address for your controller below.
|
// Enter a MAC address for your controller below.
|
||||||
// Newer Ethernet shields have a MAC address printed on a sticker on the shield
|
// Newer Ethernet shields have a MAC address printed on a sticker on the shield
|
||||||
byte mac[] = { 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED };
|
byte mac[] = { 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED };
|
||||||
IPAddress server(173,194,33,104); // Google
|
// if you don't want to use DNS (and reduce your sketch size)
|
||||||
|
// use the numeric IP instead of the name for the server:
|
||||||
|
//IPAddress server(74,125,232,128); // numeric IP for Google (no DNS)
|
||||||
|
char server[] = "www.google.com"; // name address for Google (using DNS)
|
||||||
|
|
||||||
|
// Set the static IP address to use if the DHCP fails to assign
|
||||||
|
IPAddress ip(192,168,0,177);
|
||||||
|
|
||||||
// Initialize the Ethernet client library
|
// Initialize the Ethernet client library
|
||||||
// with the IP address and port of the server
|
// with the IP address and port of the server
|
||||||
@ -37,8 +44,8 @@ void setup() {
|
|||||||
if (Ethernet.begin(mac) == 0) {
|
if (Ethernet.begin(mac) == 0) {
|
||||||
Serial.println("Failed to configure Ethernet using DHCP");
|
Serial.println("Failed to configure Ethernet using DHCP");
|
||||||
// no point in carrying on, so do nothing forevermore:
|
// no point in carrying on, so do nothing forevermore:
|
||||||
for(;;)
|
// try to congifure using IP address instead of DHCP:
|
||||||
;
|
Ethernet.begin(mac, ip);
|
||||||
}
|
}
|
||||||
// give the Ethernet shield a second to initialize:
|
// give the Ethernet shield a second to initialize:
|
||||||
delay(1000);
|
delay(1000);
|
||||||
@ -48,7 +55,9 @@ void setup() {
|
|||||||
if (client.connect(server, 80)) {
|
if (client.connect(server, 80)) {
|
||||||
Serial.println("connected");
|
Serial.println("connected");
|
||||||
// Make a HTTP request:
|
// Make a HTTP request:
|
||||||
client.println("GET /search?q=arduino HTTP/1.0");
|
client.println("GET /search?q=arduino HTTP/1.1");
|
||||||
|
client.println("Host: www.google.com");
|
||||||
|
client.println("Connection: close");
|
||||||
client.println();
|
client.println();
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
@ -73,8 +82,7 @@ void loop()
|
|||||||
client.stop();
|
client.stop();
|
||||||
|
|
||||||
// do nothing forevermore:
|
// do nothing forevermore:
|
||||||
for(;;)
|
while(true);
|
||||||
;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -31,8 +31,8 @@ int keyIndex = 0; // your network key Index number (needed only for W
|
|||||||
int status = WL_IDLE_STATUS;
|
int status = WL_IDLE_STATUS;
|
||||||
// if you don't want to use DNS (and reduce your sketch size)
|
// if you don't want to use DNS (and reduce your sketch size)
|
||||||
// use the numeric IP instead of the name for the server:
|
// use the numeric IP instead of the name for the server:
|
||||||
IPAddress server(173,194,73,105); // numeric IP for Google (no DNS)
|
//IPAddress server(74,125,232,128); // numeric IP for Google (no DNS)
|
||||||
//char server[] = "www.google.com"; // name address for Google (using DNS)
|
char server[] = "www.google.com"; // name address for Google (using DNS)
|
||||||
|
|
||||||
// Initialize the Ethernet client library
|
// Initialize the Ethernet client library
|
||||||
// with the IP address and port of the server
|
// with the IP address and port of the server
|
Loading…
x
Reference in New Issue
Block a user