Datasheet

Run Example Code
We have a basic demo that works with all Feathers, so restart the IDE and compile/upload this sketch
/*
Web client
This sketch connects to a website (http://www.adafruit.com)
using an Arduino Wiznet Ethernet shield/FeatherWing.
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 <Ethernet2.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[] = { 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED };
// 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)
#define URLHOST "wifitest.adafruit.com" // name address for Adafruit (using DNS)
#define URLPATH "/testwifi/index.html" // url to grab
// Set the static IP address to use if the DHCP fails to assign
IPAddress ip(192, 168, 0, 177);
// Initialize the Ethernet client library
// with the IP address and port of the server
© Adafruit Industries https://learn.adafruit.com/adafruit-wiz5500-wiznet-ethernet-featherwing Page 15 of 20