Mbed library for ENC28J60 Ethernet modules. Full support for TCP/IP and UDP Server, Client and HTTP server (webserver). DHCP and DNS is included.

Dependents:   mBuino_ENC28_MQTT Nucleo_Web_ENC28J60 Nucleo_Web_ENC28J60_ADC Serial_over_Ethernet ... more

Library for ENC28J60 Ethernet modules.

/media/uploads/hudakz/enc28j60_module01.jpg

Ported to mbed from Norbert Truchsess's UIPEthernet library for Arduino. Thank you Norbert!

  • Full support for persistent (streaming) TCP/IP and UDP connections Client and Server each, ARP, ICMP, DHCP and DNS.
  • Works with both Mbed OS 2 and Mbed OS 5.

Usage:

  • Import the library into your project.
  • Add #include "UipEthernet.h" to main.cpp
  • Create one instance of the UipEthernet class initialized with the MAC address you'd like to use and SPI pins of the connected Mbed board.

Example programs:

Import programWebSwitch_ENC28J60

HTTP Server serving a simple webpage which enables to remotely turn a digital output on/off. Compile, download, run and type 'IP_address/secret/' (don't forget the last '/') into your web browser and hit ENTER.

Import programHTTPServer_Echo_ENC28J60

A simple HTTP server echoing received requests. Ethernet connection is over an ENC28J60 board. Usage: Type the server's IP address into you web browser and hit <ENTER>.

Import programTcpServer_ENC28J60

Simple TCP/IP Server using the UIPEthernet library for ENC28J60 Ethernet boards.

Import programTcpClient_ENC28J60

Simple TCP/IP Client using the UIPEthernet library for ENC28J60 Ethernet boards.

Import programUdpServer_ENC28J60

Simple UDP Server using the UIPEthernet library for ENC28J60 Ethernet boards.

Import programUdpClient_ENC28J60

Simple UDP Client using the UIPEthernet library for ENC28J60 Ethernet boards.

Import programMQTT_Hello_ENC28J60

MQTT Client example program. Ethernet connection is via an ENC28J60 module.

Changes

RevisionDateWhoCommit message
18:8d5738a6646e 2020-07-23 hudakz Mbed library for ENC28J60 Ethernet modules. default tip
17:1123c3fe86ca 2020-06-05 hudakz Library for the ENC28J60 Ethernet modules.
16:269f652b4d0b 2020-06-05 hudakz Library for ENC28J60 Ethernet modules.
15:53715cc81c63 2019-09-07 hudakz Timeout parameter added for the 'connect' function, SPI speed reduced from 20 to 10 Mb/s, debug messages fixed ...
14:7648334eb41b 2019-09-03 hudakz UDP socket improved.
13:95c00132cd98 2019-08-31 hudakz TcpClient, TcpServer and UipEthernet modified to make TcpClient work.
12:1dd995402b99 2019-08-30 hudakz "TcpClient::close()" modified.
11:647d53d146f1 2019-08-30 hudakz "set_network" method of Mbed style added.
10:e4ddab81e6a8 2019-08-27 hudakz Added methods for TcpClient to get remote client's IP address and peer name.
9:a156d3de5647 2019-08-27 hudakz Mbed OS 5 support added and API modified.
8:4acb22344932 2017-06-30 hudakz 'UIPEthernet' renamed to 'uIPEthernet'; 'UIPEthernetClass' renamed to 'UIPEthernet'; added IPAddress::toString() to support printing; added print support for debugging; bugs preventing offline build with GCC ARM toolchain fixed.
7:1bc7e6120801 2016-04-26 hudakz Validation of IP address string in inet_aton() fixed and DHCP search improved.
6:10e42359e217 2015-11-29 hudakz UIPClient modified to make MQTTClient work with the recent revision of mbed library.
5:59a504be7998 2015-11-27 hudakz Bug fixed for using DHCP. See 'HTTPServer_Echo_ENC28J60'.
4:d774541a34da 2015-03-08 hudakz Version 1.09 (fixed leaking client-data caused by race-condition on remote close)
3:5b17e4656dd0 2014-12-20 hudakz 02 Name clash with "Ethernet" fixed for LPC1768
2:049ce85163c5 2014-12-20 hudakz 02 Name clash with "Ethernet" fixed for LPC1768
1:01c2344f98a3 2014-11-20 hudakz rev. 01
0:5350a66d5279 2014-09-15 hudakz rev. 00