├── AUTHORS ├── README.adoc ├── examples ├── ESP32EthCamera.ino └── README.adoc ├── keywords.txt ├── library.properties └── src ├── Dhcp.cpp ├── Dhcp.h ├── Dns.cpp ├── Dns.h ├── Ethernet.cpp ├── EthernetClient.cpp ├── EthernetClient.h ├── EthernetSPI2.h ├── EthernetServer.cpp ├── EthernetServer.h ├── EthernetUdp.cpp ├── EthernetUdp.h ├── socket.cpp └── utility ├── w5500.cpp └── w5500.h /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arhi/EthernetSPI2/HEAD/AUTHORS -------------------------------------------------------------------------------- /README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arhi/EthernetSPI2/HEAD/README.adoc -------------------------------------------------------------------------------- /examples/ESP32EthCamera.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arhi/EthernetSPI2/HEAD/examples/ESP32EthCamera.ino -------------------------------------------------------------------------------- /examples/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arhi/EthernetSPI2/HEAD/examples/README.adoc -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arhi/EthernetSPI2/HEAD/keywords.txt -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arhi/EthernetSPI2/HEAD/library.properties -------------------------------------------------------------------------------- /src/Dhcp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arhi/EthernetSPI2/HEAD/src/Dhcp.cpp -------------------------------------------------------------------------------- /src/Dhcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arhi/EthernetSPI2/HEAD/src/Dhcp.h -------------------------------------------------------------------------------- /src/Dns.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arhi/EthernetSPI2/HEAD/src/Dns.cpp -------------------------------------------------------------------------------- /src/Dns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arhi/EthernetSPI2/HEAD/src/Dns.h -------------------------------------------------------------------------------- /src/Ethernet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arhi/EthernetSPI2/HEAD/src/Ethernet.cpp -------------------------------------------------------------------------------- /src/EthernetClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arhi/EthernetSPI2/HEAD/src/EthernetClient.cpp -------------------------------------------------------------------------------- /src/EthernetClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arhi/EthernetSPI2/HEAD/src/EthernetClient.h -------------------------------------------------------------------------------- /src/EthernetSPI2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arhi/EthernetSPI2/HEAD/src/EthernetSPI2.h -------------------------------------------------------------------------------- /src/EthernetServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arhi/EthernetSPI2/HEAD/src/EthernetServer.cpp -------------------------------------------------------------------------------- /src/EthernetServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arhi/EthernetSPI2/HEAD/src/EthernetServer.h -------------------------------------------------------------------------------- /src/EthernetUdp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arhi/EthernetSPI2/HEAD/src/EthernetUdp.cpp -------------------------------------------------------------------------------- /src/EthernetUdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arhi/EthernetSPI2/HEAD/src/EthernetUdp.h -------------------------------------------------------------------------------- /src/socket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arhi/EthernetSPI2/HEAD/src/socket.cpp -------------------------------------------------------------------------------- /src/utility/w5500.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arhi/EthernetSPI2/HEAD/src/utility/w5500.cpp -------------------------------------------------------------------------------- /src/utility/w5500.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arhi/EthernetSPI2/HEAD/src/utility/w5500.h --------------------------------------------------------------------------------