The Ethernet library lets you connect to the Internet or a local network.
- ioShield, WIZ550io (used in W5500)
- W5200 Ethernet Shield, WIZ820io (used in W5200)
- Ethernet Shield (used in W5100)
- ioShield
- W5200 Ethernet Shield
- Ethernet Shield
Download all files and overwrite onto the"Arduino\libraries\Ethernet" folder in your project in sketch.
Uncomment device(shiel) you want to use.
//Arduino\libraries\Ethernet\utility\w5100.h
#ifndef W5100_H_INCLUDED
#define W5100_H_INCLUDED
#include <avr/pgmspace.h>
#include <SPI.h>
typedef uint8_t SOCKET;
//#define W5100_ETHERNET_SHIELD
//#define W5200_ETHERNET_SHIELD
#define W5500_ETHERNET_SHIELD
All other steps are the same as the steps from the Arduino Ethernet Shield. You can find examples in the Arduino IDE, go to Files->Examples->Ethernet, open any example, then copy it to your sketch file (gr_sketch.cpp) and change configuration values properly. After that, you can check if it is work well. For example, if you choose 'WebServer', you should change IP Address first and compile and download it. Then you can access web server page through your web browser of your PC or something.
Initial Release : 14 August 2013