Home | My Account | Customer Service |  Shopping Cart Shopping Cart 0 item(s) / Total: $0.00
Arduino
Wireless
RovingNetworks
Components
Electronics
Digital Oscilloscopes
Logic Analyzers
Test & Measurement
LCD
Breakout
LED
Robotics
Microcontrollers
FPGA
Specials
Classic Computer
Clearance
$0 - $24.99
$25 - $49.99
Over $50
Arduino Esplora Arduino Esplora
$59.95
OWON PDS battery
$59.00
DEV-11226 + SEN-10264 for ELEXP
$912.56
Home > Arduino > Shields
Arduino Ethernet Shield R2 without PoE module
Part Number ARD-0051
Arduino Ethernet Shield R2 without PoE module
Arduino Ethernet Shield
Email a friend   
Price
Retail Price:  $45.95
Your Savings:  $11.00
Your Price:   $39.99
On sale: 
$34.95
Availability:
In Stock
Quantity Price
10 - 99 $31.46
100+ $27.96
Quantity
 Add to Gift Registry  Add to Wish List
 Description
The Arduino Ethernet shield (This item is Ethernet shield R2) allows an Arduino board to connect to a LAN using the Ethernet library.

General Information and schematics

Features:

  • TCP/IP stack on board provided by the W5100 chip
  • Allows the Arduino / Freeduino to access the Internet, as a server or a client
  • Very small and efficient Library (Did I say the TCP/IP stack is embedded in the W5100 chip>)
  • The shield comes with stackable shields
  • Arduino communicates with the shield using SPI (But the complexity of SPI communication is hidden by the Library)
  • micro-SD socket (R2: with active voltage translators)
  • reset switch (R2: On board reset controller)
  • Compatible with Arduino MEGA
  • Power over Ethernet Ready (PoE Module not included)


Sample Code

With the following code, the Arduino can access Google and search for "Arduino" and bring the result to the serial port.

#include <Ethernet.h>

byte mac[] = { 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED };
byte ip[] = { 10, 0, 0, 177 };
byte server[] = { 64, 233, 187, 99 }; // Google


Client client(server, 80);


void setup()
{
Ethernet.begin(mac, ip);
Serial.begin(9600);


delay(1000);


Serial.println("connecting...");


if (client.connect()) {
Serial.println("connected");
client.println("GET /search?q=arduino HTTP/1.0");
client.println();
} else {
Serial.println("connection failed");
}
}


void loop()
{
if (client.available()) {
char c = client.read();
Serial.print(c);
}


if (!client.connected()) {
Serial.println();
Serial.println("disconnecting.");
client.stop();
for(;;)
;
}
}

This is the official Arduino Ethernet Shield, designed and manufactured by the Arduino team in Italy.
Accessories
Arduino Ethernet Shield R2 without PoE module
Arduino Ethernet Shield R2 without PoE module
Your Price: $39.99
On sale: $34.95  
  
Related Items
Arduino Duemilanove
Arduino Duemilanove
Your Price: $19.95
Seeeduino V3.0 (ATmega328)
Seeeduino V3.0 (ATmega328)
Your Price: $24.95
Seeeduino MEGA
Seeeduino MEGA
Your Price: $49.50
Arduino UNO R3
Arduino UNO R3
Your Price: $29.95
On sale: $24.95  
Arduino MEGA 2560 R3
Arduino MEGA 2560 R3
Your Price: $59.95
On sale: $44.95  
 
2
3.5mm earphone jack stereo 3-pin black
$1.00
$0.50
more »
3
SOIC to DIP Adapter 16-pin
$1.95 more »
Privacy Policy by TRUSTe