This is the Interface library for WIZnet W5500 chip which forked of EthernetInterfaceW5500, WIZnetInterface and WIZ550ioInterface. This library has simple name as "W5500Interface". and can be used for Wiz550io users also.

Dependents:   EvrythngApi Websocket_Ethernet_HelloWorld_W5500 Websocket_Ethernet_W5500 CurrentWeatherData_W5500 ... more

Information

It has EthernetInterface class like official EthernetInterface , but uses Wiznet chip driver codes.

So this library can use only the WIZnet W5500 or WIZ550io users.

This library has referred to many project such as WIZ550ioInterface, WiflyInterface and WIZnet Library.

Thanks all.

Revision:
11:5499fa2d8898
Parent:
6:677dfa3984d1
--- a/EthernetInterface.h	Thu Oct 16 06:36:16 2014 +0000
+++ b/EthernetInterface.h	Tue Apr 28 13:52:23 2015 +0000
@@ -6,6 +6,8 @@
  /** Interface using Wiznet W5500 chip to connect to an IP-based network
  *
  */
+ 
+
 class EthernetInterface: public WIZnet_Chip {
 public:
 
@@ -76,11 +78,12 @@
   int IPrenew(int timeout_ms = 15*1000);
     
 private:
-    char ip_string[20];
-    char mask_string[20];
-    char gw_string[20];
+    char ip_string[17];
+    char mask_string[17];
+    char gw_string[17];
     char mac_string[20];
     bool ip_set;
+    void getip(void);
 };
 
 #include "TCPSocketConnection.h"